diff --git a/Open-XML-SDK.sln b/Open-XML-SDK.sln index c40ab24fc..e58e3da20 100644 --- a/Open-XML-SDK.sln +++ b/Open-XML-SDK.sln @@ -43,6 +43,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IsolatedStorageExceptionWor EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SunburstChartExample", "samples\SunburstChartExample\SunburstChartExample.csproj", "{5034C012-FED8-4DE5-B422-C1E4DF9EDBF2}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocumentFormat.OpenXml.Linq", "src\DocumentFormat.OpenXml.Linq\DocumentFormat.OpenXml.Linq.csproj", "{8DB6A050-4584-4210-8DE1-CB299A08EA4F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DocumentFormat.OpenXml.CodeGeneration.Linq", "src\DocumentFormat.OpenXml.CodeGeneration.Linq\DocumentFormat.OpenXml.CodeGeneration.Linq.csproj", "{4E3D124A-B027-46C3-B962-6F01B9B03AB8}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -81,6 +85,14 @@ Global {5034C012-FED8-4DE5-B422-C1E4DF9EDBF2}.Debug|Any CPU.Build.0 = Debug|Any CPU {5034C012-FED8-4DE5-B422-C1E4DF9EDBF2}.Release|Any CPU.ActiveCfg = Release|Any CPU {5034C012-FED8-4DE5-B422-C1E4DF9EDBF2}.Release|Any CPU.Build.0 = Release|Any CPU + {8DB6A050-4584-4210-8DE1-CB299A08EA4F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8DB6A050-4584-4210-8DE1-CB299A08EA4F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8DB6A050-4584-4210-8DE1-CB299A08EA4F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8DB6A050-4584-4210-8DE1-CB299A08EA4F}.Release|Any CPU.Build.0 = Release|Any CPU + {4E3D124A-B027-46C3-B962-6F01B9B03AB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4E3D124A-B027-46C3-B962-6F01B9B03AB8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4E3D124A-B027-46C3-B962-6F01B9B03AB8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4E3D124A-B027-46C3-B962-6F01B9B03AB8}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -94,6 +106,8 @@ Global {65D509D0-46DC-4883-AEB3-FF7E521B1E9F} = {0782A132-968D-4BDD-911A-2C3074EAF886} {F38D119D-A5B7-4027-83B1-804432922E55} = {7DAF7304-40CC-4180-88A5-9A89DD13C565} {5034C012-FED8-4DE5-B422-C1E4DF9EDBF2} = {7DAF7304-40CC-4180-88A5-9A89DD13C565} + {8DB6A050-4584-4210-8DE1-CB299A08EA4F} = {A4DF60EB-3AA5-48F0-B4D2-3F94B8E62F03} + {4E3D124A-B027-46C3-B962-6F01B9B03AB8} = {A4DF60EB-3AA5-48F0-B4D2-3F94B8E62F03} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {6F476383-E917-43D1-A1E5-9A61A47DA3F5} diff --git a/src/DocumentFormat.OpenXml.CodeGeneration.Linq/DocumentFormat.OpenXml.CodeGeneration.Linq.csproj b/src/DocumentFormat.OpenXml.CodeGeneration.Linq/DocumentFormat.OpenXml.CodeGeneration.Linq.csproj new file mode 100644 index 000000000..27e61bc17 --- /dev/null +++ b/src/DocumentFormat.OpenXml.CodeGeneration.Linq/DocumentFormat.OpenXml.CodeGeneration.Linq.csproj @@ -0,0 +1,59 @@ + + + + + $(SamplesFrameworks) + Exe + enable + $(NoWarn);3003 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/DocumentFormat.OpenXml.CodeGeneration.Linq/Program.Empty.cs b/src/DocumentFormat.OpenXml.CodeGeneration.Linq/Program.Empty.cs new file mode 100644 index 000000000..ea313bce8 --- /dev/null +++ b/src/DocumentFormat.OpenXml.CodeGeneration.Linq/Program.Empty.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System; + +namespace DocumentFormat.OpenXml.CodeGeneration.Linq +{ + internal class Program + { + private static void Main() + { + Console.WriteLine("Tool only available on .NET 5.0 builds"); + } + } +} diff --git a/src/DocumentFormat.OpenXml.CodeGeneration.Linq/Program.cs b/src/DocumentFormat.OpenXml.CodeGeneration.Linq/Program.cs new file mode 100644 index 000000000..eba7f03bf --- /dev/null +++ b/src/DocumentFormat.OpenXml.CodeGeneration.Linq/Program.cs @@ -0,0 +1,550 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using DocumentFormat.OpenXml.Framework; +using DocumentFormat.OpenXml.Framework.Metadata; +using System; +using System.CodeDom.Compiler; +using System.Collections.Generic; +using System.IO; +using System.Linq; + +namespace DocumentFormat.OpenXml.CodeGeneration.Linq +{ + /// + /// Code generator for the namespace-related Linq-to-Xml classes. + /// + public static class Program + { + private const string EmptyNamespace = "NoNamespace"; + + /// + /// Generates the namespace-related classes for the Linq-to-XML feature, taking + /// one optional parameter that specifies the absolute or relative path to the + /// folder into which the generated code is written. + /// + /// The command line arguments. + public static void Main(string[] args) + { + const string defaultDirectoryName = "..\\..\\..\\..\\src\\DocumentFormat.OpenXml.Linq\\GeneratedCode"; + string directoryName = args.Length > 0 ? args[0] : defaultDirectoryName; + directoryName = Path.GetFullPath(directoryName); + + Console.WriteLine($@"Generating code in '{directoryName}' ..."); + + var fieldInfos = new Dictionary(); + IEnumerable elementMetadataCollection = AssembleElementMetadata(fieldInfos); + AssembleAttributeMetadata(elementMetadataCollection, fieldInfos); + + IEnumerable> fieldInfoGroupings = fieldInfos.Values + .GroupBy(fi => fi.Prefix) + .OrderBy(g => g.Key) + .ToList(); + + // Assign and register unique and valid field names. + using var provider = CodeDomProvider.CreateProvider("C#"); + + foreach (IGrouping fieldInfoGrouping in fieldInfoGroupings) + { + string prefix = fieldInfoGrouping.Key; + var fieldNames = new HashSet(); + + foreach (FieldInfo info in fieldInfoGrouping.OrderBy(fi => fi.LocalName)) + { + // Some names contain dashes, which we need to replace. + string fieldName = info.LocalName.Replace('-', '_'); + + // Ensure the field name is not equal to the prefix, which we use for the XNamespace field. + fieldName = fieldName != prefix ? fieldName : fieldName + "_"; + + // Ensure CLS-compliance by making field names unique. + while (!fieldNames.Add(fieldName.ToLowerInvariant())) + { + fieldName += "_"; + } + + // Finally, ensure the field name is a valid identifier. + if (!provider.IsValidIdentifier(fieldName)) + { + fieldName = '@' + fieldName; + } + + info.FieldName = fieldName; + } + } + + // Generate classes. + Directory.CreateDirectory(directoryName); + + foreach (IGrouping fieldInfoGrouping in fieldInfoGroupings) + { + string prefix = fieldInfoGrouping.Key; + string namespaceName = fieldInfoGrouping.First().NamespaceName; + IEnumerable classFieldInfos = fieldInfoGrouping.OrderBy(fi => fi.LocalName); + + string className = GetClassName(prefix); + string fileName = className + ".g.cs"; + string path = Path.GetFullPath(Path.Combine(directoryName, fileName)); + + Console.WriteLine($@"Generating class {className} ..."); + + using var stream = new FileStream(path, FileMode.Create); + using var output = new StreamWriter(stream); + + GenerateClassFilePreamble(output); + GenerateClass(output, prefix, namespaceName, classFieldInfos, fieldInfos); + GenerateClassFilePostamble(output); + } + } + + private static string GetClassName(string prefix) + { + return string.IsNullOrEmpty(prefix) ? EmptyNamespace : prefix.ToUpperInvariant(); + } + + private static void GenerateClassFilePreamble(TextWriter output) + { + output.WriteLine("// Copyright (c) Microsoft. All rights reserved."); + output.WriteLine("// Licensed under the MIT license. See LICENSE file in the project root for full license information."); + output.WriteLine(); + output.WriteLine("using System.Xml.Linq;"); + output.WriteLine(); + output.WriteLine("namespace DocumentFormat.OpenXml.Linq"); + output.WriteLine("{"); + } + + private static void GenerateClassFilePostamble(TextWriter output) + { + // End namespace. + output.WriteLine("}"); + } + + private static void GenerateClass( + TextWriter output, + string prefix, + string namespaceName, + IEnumerable classFieldInfos, + IDictionary fieldInfos) + { + // Determine the namespace identifier for the class comment: + // - 'empty', + // - 'xmlns="namespaceName"', or + // - 'xmlns:prefix="namespaceName"'. + string xmlnsAttribute = string.IsNullOrEmpty(prefix) + ? string.IsNullOrEmpty(namespaceName) ? "empty" : $"xmlns=\"{namespaceName}\"" + : $"xmlns:{prefix}=\"{namespaceName}\""; + + // Determine what we are declaring in the namespace-related class: + // - "XNamespace and XName fields" or + // - "XName fields". + string theSubjectMatter = xmlnsAttribute != "empty" ? "XNamespace and XName fields" : "XName fields"; + + // Derive the class name from the prefix. If the prefix is empty, use + // "NoNamespace" for compatibility with the Open XML PowerTools. + string className = GetClassName(prefix); + + // Emit the class comment. + output.WriteLine(@" /// "); + output.WriteLine($" /// Declares {theSubjectMatter} for the {xmlnsAttribute} namespace."); + output.WriteLine(@" /// "); + + // Begin the class declaration. + output.WriteLine($" public static class {className}"); + output.WriteLine(@" {"); + + // Emit the XNamespace field and determine the RHS prefix of the field declaration. + string fieldRhsPrefix; + + if (!string.IsNullOrEmpty(namespaceName)) + { + output.WriteLine(@" /// "); + output.WriteLine($" /// Defines the XML namespace associated with the {prefix} prefix."); + output.WriteLine(@" /// "); + + if (!string.IsNullOrEmpty(prefix)) + { + output.WriteLine($" public static readonly XNamespace {prefix} = \"{namespaceName}\";"); + fieldRhsPrefix = $"{prefix} + "; + } + else + { + output.WriteLine($" public static readonly XNamespace Namespace = \"{namespaceName}\";"); + fieldRhsPrefix = "Namespace + "; + } + } + else + { + fieldRhsPrefix = string.Empty; + } + + foreach (FieldInfo info in classFieldInfos) + { + string qualifiedName = string.IsNullOrEmpty(info.Prefix) ? info.LocalName : info.Prefix + ":" + info.LocalName; + + List parentQualifiedNames = info.ParentQualifiedNames.ToList(); + List childQualifiedNames = info.ChildQualifiedNames.ToList(); + List elementAttributeQualifiedNames = info.ElementAttributeQualifiedNames.ToList(); + + List attributeContainerQualifiedNames = info.AttributeContainerQualifiedNames.ToList(); + + List elementClassNames = info.ElementClassNames.ToList(); + string elements = elementClassNames.Count switch + { + 0 => string.Empty, + 1 => "element", + _ => "elements", + }; + + List attributePropertyNames = info.AttributePropertyNames.ToList(); + string attributes = attributePropertyNames.Count switch + { + 0 => string.Empty, + 1 => "attribute", + _ => "attributes", + }; + + string elementsAndOrAttributes = elements != string.Empty && attributes != string.Empty + ? elements + " and " + attributes + : elements + attributes; + + output.WriteLine(string.Empty); + output.WriteLine(@" /// "); + output.WriteLine($" /// Represents the {qualifiedName} XML {elementsAndOrAttributes}."); + output.WriteLine(@" /// "); + + string See(OpenXmlQualifiedName qName) + { + FieldInfo fieldInfo = fieldInfos[qName]; + string reference = fieldInfo.Prefix == prefix + ? fieldInfo.FieldName + : fieldInfo.QualifiedFieldName; + + return $""; + } + + bool hasRemarks = elements != string.Empty || attributes != string.Empty; + if (hasRemarks) + { + output.WriteLine(@" /// "); + } + + if (elements != string.Empty) + { + output.WriteLine(@" /// As an XML element, it:"); + output.WriteLine(@" /// "); + + if (parentQualifiedNames.Any()) + { + string csv = string.Join(", ", parentQualifiedNames.Select(See)); + output.WriteLine($" /// has the following parent XML elements: {csv}."); + } + + if (childQualifiedNames.Any()) + { + string csv = string.Join(", ", childQualifiedNames.Select(See)); + output.WriteLine($" /// has the following child XML elements: {csv}."); + } + + if (elementAttributeQualifiedNames.Any()) + { + string csv = string.Join(", ", elementAttributeQualifiedNames.Select(See)); + output.WriteLine($" /// has the following XML attributes: {csv}."); + } + + if (elementClassNames.Any()) + { + string csv = string.Join(", ", elementClassNames); + output.WriteLine($" /// corresponds to the following strongly-typed classes: {csv}."); + } + + output.WriteLine(@" /// "); + } + + if (attributes != string.Empty) + { + output.WriteLine(@" /// As an XML attribute, it:"); + output.WriteLine(@" /// "); + + if (attributeContainerQualifiedNames.Any()) + { + string csv = string.Join(", ", attributeContainerQualifiedNames.Select(See)); + output.WriteLine($" /// is contained in the following XML elements: {csv}."); + } + + if (attributePropertyNames.Any()) + { + string csv = string.Join(", ", attributePropertyNames); + output.WriteLine($" /// corresponds to the following strongly-typed properties: {csv}."); + } + + output.WriteLine(@" /// "); + } + + if (hasRemarks) + { + output.WriteLine(@" /// "); + } + + // Emit field declaration. + output.WriteLine($" public static readonly XName {info.FieldName} = {fieldRhsPrefix}\"{info.LocalName}\";"); + } + + // End class declaration. + output.WriteLine(@" }"); + } + + private static IEnumerable AssembleElementMetadata( + IDictionary fieldInfos) + { + var visitedElementTypes = new HashSet(); + var elementMetadataCollection = new List(); + + foreach (ElementLookup.ElementChild elementChild in ElementLookup.Parts.Elements) + { + AssembleElementMetatata(ElementMetadata.None, elementChild, visitedElementTypes, elementMetadataCollection, fieldInfos); + } + + return elementMetadataCollection; + } + + private static ElementMetadata AssembleElementMetatata( + ElementMetadata parentMetadata, + ElementLookup.ElementChild elementChild, + HashSet visitedTypes, + ICollection elementMetadataCollection, + IDictionary fieldInfos) + { + OpenXmlElement element = elementChild.Create(); + var elementMetadata = ElementMetadata.Create(element); + elementMetadataCollection.Add(elementMetadata); + + if (!fieldInfos.TryGetValue(elementMetadata.QName, out FieldInfo? fieldInfo)) + { + fieldInfo = new FieldInfo(elementMetadata.QName); + fieldInfos[elementMetadata.QName] = fieldInfo; + } + + fieldInfo.AddParentElementMetadata(parentMetadata); + fieldInfo.AddElementMetadata(elementMetadata); + + if (visitedTypes.Add(element.GetType())) + { + foreach (ElementLookup.ElementChild child in elementMetadata.Children.Elements) + { + fieldInfo.AddChildElementMetadata( + AssembleElementMetatata(elementMetadata, child, visitedTypes, elementMetadataCollection, fieldInfos)); + } + } + + return elementMetadata; + } + + private static void AssembleAttributeMetadata( + IEnumerable elementMetadataCollection, + IDictionary fieldInfos) + { + foreach (ElementMetadata elementMetadata in elementMetadataCollection) + { + AssembleAttributeMetadata(elementMetadata, fieldInfos); + } + } + + private static void AssembleAttributeMetadata( + ElementMetadata elementMetadata, + IDictionary fieldInfos) + { + foreach (AttributeMetadata attributeMetadata in elementMetadata.Attributes) + { + if (!fieldInfos.TryGetValue(attributeMetadata.QName, out FieldInfo? fieldInfo)) + { + fieldInfo = new FieldInfo(attributeMetadata.QName); + fieldInfos[attributeMetadata.QName] = fieldInfo; + } + + fieldInfo.AddAttributeMetadata(elementMetadata, attributeMetadata); + } + } + + /// + /// Represents an XName field. + /// + internal class FieldInfo : IComparable, IEquatable + { + private readonly HashSet _elementMetadata = new(); + private readonly HashSet _parentMetadata = new(); + private readonly HashSet _childMetadata = new(); + + private readonly HashSet _attributeContainerMetadata = new(); + private readonly HashSet _attributeMetadata = new(); + + private readonly SortedSet _attributePropertyNames = new(); + + /// + /// Initializes a new instance with the given . + /// + /// The . + public FieldInfo(OpenXmlQualifiedName qName) + { + QName = qName; + FieldName = qName.Name; + } + + /// + /// Gets the . + /// + public OpenXmlQualifiedName QName { get; } + + /// + /// Gets or sets the field name, e.g., "document". + /// + public string FieldName { get; set; } + + /// + /// Gets the qualified field name, e.g., "W.document". + /// + public string QualifiedFieldName => + Prefix != string.Empty + ? Prefix.ToUpperInvariant() + "." + FieldName + : EmptyNamespace + "." + FieldName; + + /// + /// Gets the XML prefix, e.g., "w". + /// + public string Prefix => QName.Namespace.Prefix; + + /// + /// Gets the XML namespace name, e.g., "http://schemas.openxmlformats.org/wordprocessingml/2006/main". + /// + public string NamespaceName => QName.Namespace.Uri; + + /// + /// Gets the XML local name, e.g., "document". + /// + public string LocalName => QName.Name; + + /// + /// Gets the XML qualified name, e.g., "w:document". + /// + public string QualifiedName => string.IsNullOrEmpty(Prefix) ? LocalName : Prefix + ":" + LocalName; + + public IEnumerable ParentQualifiedNames => + _parentMetadata + .OrderBy(GetQualifiedName) + .Select(em => em.QName) + .Distinct(); + + public IEnumerable ChildQualifiedNames => + _childMetadata + .OrderBy(GetQualifiedName) + .Select(em => em.QName) + .Distinct(); + + public IEnumerable AttributeContainerQualifiedNames => + _attributeContainerMetadata + .OrderBy(GetQualifiedName) + .Select(em => em.QName) + .Distinct(); + + public IEnumerable ElementAttributeQualifiedNames => + _elementMetadata + .SelectMany(em => em.Attributes) + .OrderBy(GetQualifiedName) + .Select(am => am.QName) + .Distinct(); + + public IEnumerable ElementClassNames => + _elementMetadata + .Select(e => e.Type.Name) + .Distinct() + .OrderBy(name => name); + + public IEnumerable AttributePropertyNames => _attributePropertyNames; + + private static string GetQualifiedName(ElementMetadata metadata) + { + return GetQualifiedName(metadata.QName); + } + + private static string GetQualifiedName(AttributeMetadata metadata) + { + return GetQualifiedName(metadata.QName); + } + + private static string GetQualifiedName(OpenXmlQualifiedName qName) + { + string prefix = qName.Namespace.Prefix; + return string.IsNullOrEmpty(prefix) ? qName.Name : prefix + ":" + qName.Name; + } + + public void AddElementMetadata(ElementMetadata element) + { + _elementMetadata.Add(element); + } + + public void AddParentElementMetadata(ElementMetadata parent) + { + if (parent != ElementMetadata.None) + { + _parentMetadata.Add(parent); + } + } + + public void AddChildElementMetadata(ElementMetadata child) + { + _childMetadata.Add(child); + } + + public void AddAttributeMetadata(ElementMetadata element, AttributeMetadata attribute) + { + _attributeContainerMetadata.Add(element); + _attributeMetadata.Add(attribute); + + _attributePropertyNames.Add(element.Type.Name + "." + attribute.PropertyName); + } + + /// + public int CompareTo(FieldInfo? other) + { + return other is null ? 1 : QName.CompareTo(other.QName); + } + + /// + public bool Equals(FieldInfo? other) + { + return QName.Equals(other?.QName); + } + + /// + public override bool Equals(object? obj) + { + if (obj is null) + { + return false; + } + + if (ReferenceEquals(this, obj)) + { + return true; + } + + return obj.GetType() == GetType() && Equals((FieldInfo)obj); + } + + /// + public override int GetHashCode() + { + return QName.GetHashCode(); + } + + public static bool operator ==(FieldInfo? left, FieldInfo? right) + { + return Equals(left, right); + } + + public static bool operator !=(FieldInfo? left, FieldInfo? right) + { + return !Equals(left, right); + } + } + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/DocumentFormat.OpenXml.Linq.csproj b/src/DocumentFormat.OpenXml.Linq/DocumentFormat.OpenXml.Linq.csproj new file mode 100644 index 000000000..ba3456723 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/DocumentFormat.OpenXml.Linq.csproj @@ -0,0 +1,73 @@ + + + + + + enable + true + $(ProductTargetFrameworks) + $(NoWarn);3003 + true + + + + true + snupkg + true + true + true + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A.g.cs new file mode 100644 index 000000000..cc6840861 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A.g.cs @@ -0,0 +1,4223 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" namespace. + /// + public static class A + { + /// + /// Defines the XML namespace associated with the a prefix. + /// + public static readonly XNamespace a = "http://schemas.openxmlformats.org/drawingml/2006/main"; + + /// + /// Represents the a:accent1 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Accent1Color. + /// + /// + public static readonly XName accent1 = a + "accent1"; + + /// + /// Represents the a:accent2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Accent2Color. + /// + /// + public static readonly XName accent2 = a + "accent2"; + + /// + /// Represents the a:accent3 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Accent3Color. + /// + /// + public static readonly XName accent3 = a + "accent3"; + + /// + /// Represents the a:accent4 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Accent4Color. + /// + /// + public static readonly XName accent4 = a + "accent4"; + + /// + /// Represents the a:accent5 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Accent5Color. + /// + /// + public static readonly XName accent5 = a + "accent5"; + + /// + /// Represents the a:accent6 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Accent6Color. + /// + /// + public static readonly XName accent6 = a + "accent6"; + + /// + /// Represents the a:ahLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: AdjustHandleList. + /// + /// + public static readonly XName ahLst = a + "ahLst"; + + /// + /// Represents the a:ahPolar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: AdjustHandlePolar. + /// + /// + public static readonly XName ahPolar = a + "ahPolar"; + + /// + /// Represents the a:ahXY XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: AdjustHandleXY. + /// + /// + public static readonly XName ahXY = a + "ahXY"; + + /// + /// Represents the a:alpha XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Alpha. + /// + /// + public static readonly XName alpha = a + "alpha"; + + /// + /// Represents the a:alphaBiLevel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlphaBiLevel. + /// + /// + public static readonly XName alphaBiLevel = a + "alphaBiLevel"; + + /// + /// Represents the a:alphaCeiling XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: AlphaCeiling. + /// + /// + public static readonly XName alphaCeiling = a + "alphaCeiling"; + + /// + /// Represents the a:alphaFloor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: AlphaFloor. + /// + /// + public static readonly XName alphaFloor = a + "alphaFloor"; + + /// + /// Represents the a:alphaInv XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: AlphaInverse. + /// + /// + public static readonly XName alphaInv = a + "alphaInv"; + + /// + /// Represents the a:alphaMod XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlphaModulation, AlphaModulationEffect. + /// + /// + public static readonly XName alphaMod = a + "alphaMod"; + + /// + /// Represents the a:alphaModFix XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlphaModulationFixed. + /// + /// + public static readonly XName alphaModFix = a + "alphaModFix"; + + /// + /// Represents the a:alphaOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlphaOffset. + /// + /// + public static readonly XName alphaOff = a + "alphaOff"; + + /// + /// Represents the a:alphaOutset XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlphaOutset. + /// + /// + public static readonly XName alphaOutset = a + "alphaOutset"; + + /// + /// Represents the a:alphaRepl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlphaReplace. + /// + /// + public static readonly XName alphaRepl = a + "alphaRepl"; + + /// + /// Represents the a:anchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Anchor. + /// + /// + public static readonly XName anchor = a + "anchor"; + + /// + /// Represents the a:arcTo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ArcTo. + /// + /// + public static readonly XName arcTo = a + "arcTo"; + + /// + /// Represents the a:audioCd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: AudioFromCD. + /// + /// + public static readonly XName audioCd = a + "audioCd"; + + /// + /// Represents the a:audioFile XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AudioFromFile. + /// + /// + public static readonly XName audioFile = a + "audioFile"; + + /// + /// Represents the a:avLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AdjustValueList. + /// + /// + public static readonly XName avLst = a + "avLst"; + + /// + /// Represents the a:backdrop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Backdrop. + /// + /// + public static readonly XName backdrop = a + "backdrop"; + + /// + /// Represents the a:band1H XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Band1Horizontal. + /// + /// + public static readonly XName band1H = a + "band1H"; + + /// + /// Represents the a:band1V XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Band1Vertical. + /// + /// + public static readonly XName band1V = a + "band1V"; + + /// + /// Represents the a:band2H XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Band2Horizontal. + /// + /// + public static readonly XName band2H = a + "band2H"; + + /// + /// Represents the a:band2V XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Band2Vertical. + /// + /// + public static readonly XName band2V = a + "band2V"; + + /// + /// Represents the a:bevel XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Bevel, LineJoinBevel. + /// + /// + public static readonly XName bevel = a + "bevel"; + + /// + /// Represents the a:bevelB XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: BevelBottom. + /// + /// + public static readonly XName bevelB = a + "bevelB"; + + /// + /// Represents the a:bevelT XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: BevelTop. + /// + /// + public static readonly XName bevelT = a + "bevelT"; + + /// + /// Represents the a:bgClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: BackgroundColor. + /// + /// + public static readonly XName bgClr = a + "bgClr"; + + /// + /// Represents the a:bgFillStyleLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: BackgroundFillStyleList. + /// + /// + public static readonly XName bgFillStyleLst = a + "bgFillStyleLst"; + + /// + /// Represents the a:biLevel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BiLevel. + /// + /// + public static readonly XName biLevel = a + "biLevel"; + + /// + /// Represents the a:bldChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BuildChart. + /// + /// + public static readonly XName bldChart = a + "bldChart"; + + /// + /// Represents the a:bldDgm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BuildDiagram. + /// + /// + public static readonly XName bldDgm = a + "bldDgm"; + + /// + /// Represents the a:blend XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Blend. + /// + /// + public static readonly XName blend = a + "blend"; + + /// + /// Represents the a:blip XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Blip. + /// + /// + public static readonly XName blip = a + "blip"; + + /// + /// Represents the a:blipFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BlipFill. + /// + /// + public static readonly XName blipFill = a + "blipFill"; + + /// + /// Represents the a:blue XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Blue. + /// + /// + public static readonly XName blue = a + "blue"; + + /// + /// Represents the a:blueMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BlueModulation. + /// + /// + public static readonly XName blueMod = a + "blueMod"; + + /// + /// Represents the a:blueOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BlueOffset. + /// + /// + public static readonly XName blueOff = a + "blueOff"; + + /// + /// Represents the a:blur XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Blur. + /// + /// + public static readonly XName blur = a + "blur"; + + /// + /// Represents the a:bodyPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BodyProperties. + /// + /// + public static readonly XName bodyPr = a + "bodyPr"; + + /// + /// Represents the a:bottom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: BottomBorder. + /// + /// + public static readonly XName bottom = a + "bottom"; + + /// + /// Represents the a:br XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Break. + /// + /// + public static readonly XName br = a + "br"; + + /// + /// Represents the a:buAutoNum XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: AutoNumberedBullet. + /// + /// + public static readonly XName buAutoNum = a + "buAutoNum"; + + /// + /// Represents the a:buBlip XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PictureBullet. + /// + /// + public static readonly XName buBlip = a + "buBlip"; + + /// + /// Represents the a:buChar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CharacterBullet. + /// + /// + public static readonly XName buChar = a + "buChar"; + + /// + /// Represents the a:buClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: BulletColor. + /// + /// + public static readonly XName buClr = a + "buClr"; + + /// + /// Represents the a:buClrTx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BulletColorText. + /// + /// + public static readonly XName buClrTx = a + "buClrTx"; + + /// + /// Represents the a:buFont XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: BulletFont. + /// + /// + public static readonly XName buFont = a + "buFont"; + + /// + /// Represents the a:buFontTx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BulletFontText. + /// + /// + public static readonly XName buFontTx = a + "buFontTx"; + + /// + /// Represents the a:buNone XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: NoBullet. + /// + /// + public static readonly XName buNone = a + "buNone"; + + /// + /// Represents the a:buSzPct XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BulletSizePercentage. + /// + /// + public static readonly XName buSzPct = a + "buSzPct"; + + /// + /// Represents the a:buSzPts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BulletSizePoints. + /// + /// + public static readonly XName buSzPts = a + "buSzPts"; + + /// + /// Represents the a:buSzTx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BulletSizeText. + /// + /// + public static readonly XName buSzTx = a + "buSzTx"; + + /// + /// Represents the a:camera XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Camera. + /// + /// + public static readonly XName camera = a + "camera"; + + /// + /// Represents the a:cell3D XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Cell3DProperties. + /// + /// + public static readonly XName cell3D = a + "cell3D"; + + /// + /// Represents the a:chart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Chart. + /// + /// + public static readonly XName chart = a + "chart"; + + /// + /// Represents the a:chExt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ChildExtents. + /// + /// + public static readonly XName chExt = a + "chExt"; + + /// + /// Represents the a:chOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ChildOffset. + /// + /// + public static readonly XName chOff = a + "chOff"; + + /// + /// Represents the a:close XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CloseShapePath. + /// + /// + public static readonly XName close = a + "close"; + + /// + /// Represents the a:clrChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColorChange. + /// + /// + public static readonly XName clrChange = a + "clrChange"; + + /// + /// Represents the a:clrFrom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ColorFrom. + /// + /// + public static readonly XName clrFrom = a + "clrFrom"; + + /// + /// Represents the a:clrMap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ColorMap. + /// + /// + public static readonly XName clrMap = a + "clrMap"; + + /// + /// Represents the a:clrRepl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ColorReplacement. + /// + /// + public static readonly XName clrRepl = a + "clrRepl"; + + /// + /// Represents the a:clrScheme XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColorScheme. + /// + /// + public static readonly XName clrScheme = a + "clrScheme"; + + /// + /// Represents the a:clrTo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ColorTo. + /// + /// + public static readonly XName clrTo = a + "clrTo"; + + /// + /// Represents the a:cNvCxnSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: NonVisualConnectorShapeDrawingProperties. + /// + /// + public static readonly XName cNvCxnSpPr = a + "cNvCxnSpPr"; + + /// + /// Represents the a:cNvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameDrawingProperties. + /// + /// + public static readonly XName cNvGraphicFramePr = a + "cNvGraphicFramePr"; + + /// + /// Represents the a:cNvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupShapeDrawingProperties. + /// + /// + public static readonly XName cNvGrpSpPr = a + "cNvGrpSpPr"; + + /// + /// Represents the a:cNvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualPictureDrawingProperties. + /// + /// + public static readonly XName cNvPicPr = a + "cNvPicPr"; + + /// + /// Represents the a:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = a + "cNvPr"; + + /// + /// Represents the a:cNvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualShapeDrawingProperties. + /// + /// + public static readonly XName cNvSpPr = a + "cNvSpPr"; + + /// + /// Represents the a:comp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Complement. + /// + /// + public static readonly XName comp = a + "comp"; + + /// + /// Represents the a:cont XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: EffectContainer. + /// + /// + public static readonly XName cont = a + "cont"; + + /// + /// Represents the a:contourClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ContourColor. + /// + /// + public static readonly XName contourClr = a + "contourClr"; + + /// + /// Represents the a:cs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ComplexScriptFont. + /// + /// + public static readonly XName cs = a + "cs"; + + /// + /// Represents the a:cubicBezTo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CubicBezierCurveTo. + /// + /// + public static readonly XName cubicBezTo = a + "cubicBezTo"; + + /// + /// Represents the a:custClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomColor. + /// + /// + public static readonly XName custClr = a + "custClr"; + + /// + /// Represents the a:custClrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CustomColorList. + /// + /// + public static readonly XName custClrLst = a + "custClrLst"; + + /// + /// Represents the a:custDash XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CustomDash. + /// + /// + public static readonly XName custDash = a + "custDash"; + + /// + /// Represents the a:custGeom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: CustomGeometry. + /// + /// + public static readonly XName custGeom = a + "custGeom"; + + /// + /// Represents the a:cxn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConnectionSite. + /// + /// + public static readonly XName cxn = a + "cxn"; + + /// + /// Represents the a:cxnLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ConnectionSiteList. + /// + /// + public static readonly XName cxnLst = a + "cxnLst"; + + /// + /// Represents the a:cxnSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ConnectionShape. + /// + /// + public static readonly XName cxnSp = a + "cxnSp"; + + /// + /// Represents the a:cxnSpLocks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ConnectionShapeLocks. + /// + /// + public static readonly XName cxnSpLocks = a + "cxnSpLocks"; + + /// + /// Represents the a:defPPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DefaultParagraphProperties. + /// + /// + public static readonly XName defPPr = a + "defPPr"; + + /// + /// Represents the a:defRPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DefaultRunProperties. + /// + /// + public static readonly XName defRPr = a + "defRPr"; + + /// + /// Represents the a:dgm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Diagram. + /// + /// + public static readonly XName dgm = a + "dgm"; + + /// + /// Represents the a:dk1 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Dark1Color. + /// + /// + public static readonly XName dk1 = a + "dk1"; + + /// + /// Represents the a:dk2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Dark2Color. + /// + /// + public static readonly XName dk2 = a + "dk2"; + + /// + /// Represents the a:ds XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DashStop. + /// + /// + public static readonly XName ds = a + "ds"; + + /// + /// Represents the a:duotone XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: Duotone. + /// + /// + public static readonly XName duotone = a + "duotone"; + + /// + /// Represents the a:ea XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: EastAsianFont. + /// + /// + public static readonly XName ea = a + "ea"; + + /// + /// Represents the a:effect XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Effect, EffectPropertiesType. + /// + /// + public static readonly XName effect = a + "effect"; + + /// + /// Represents the a:effectDag XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: EffectDag. + /// + /// + public static readonly XName effectDag = a + "effectDag"; + + /// + /// Represents the a:effectLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: EffectList. + /// + /// + public static readonly XName effectLst = a + "effectLst"; + + /// + /// Represents the a:effectRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EffectReference. + /// + /// + public static readonly XName effectRef = a + "effectRef"; + + /// + /// Represents the a:effectStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: EffectStyle. + /// + /// + public static readonly XName effectStyle = a + "effectStyle"; + + /// + /// Represents the a:effectStyleLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: EffectStyleList. + /// + /// + public static readonly XName effectStyleLst = a + "effectStyleLst"; + + /// + /// Represents the a:end XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: EndTime. + /// + /// + public static readonly XName end = a + "end"; + + /// + /// Represents the a:endCxn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: EndConnection. + /// + /// + public static readonly XName endCxn = a + "endCxn"; + + /// + /// Represents the a:endParaRPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: EndParagraphRunProperties. + /// + /// + public static readonly XName endParaRPr = a + "endParaRPr"; + + /// + /// Represents the a:ext XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: BlipExtension, ConnectorLockingExtension, DataModelExtension, Extension, Extents, GvmlGroupShapeExtension, HyperlinkExtension, NonVisualDrawingPropertiesExtension, NonVisualGroupDrawingShapePropsExtension, NonVisualPicturePropertiesExtension, OfficeStyleSheetExtension, PtExtension, ShapePropertiesExtension. + /// + /// + public static readonly XName ext = a + "ext"; + + /// + /// Represents the a:extLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: BlipExtensionList, ConnectorLockingExtensionList, ExtensionList, GvmlGroupShapeExtensionList, HyperlinkExtensionList, NonVisualDrawingPropertiesExtensionList, NonVisualGroupDrawingShapePropsExtensionList, NonVisualPicturePropertiesExtensionList, OfficeStyleSheetExtensionList, ShapePropertiesExtensionList. + /// + /// + public static readonly XName extLst = a + "extLst"; + + /// + /// Represents the a:extraClrScheme XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ExtraColorScheme. + /// + /// + public static readonly XName extraClrScheme = a + "extraClrScheme"; + + /// + /// Represents the a:extraClrSchemeLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ExtraColorSchemeList. + /// + /// + public static readonly XName extraClrSchemeLst = a + "extraClrSchemeLst"; + + /// + /// Represents the a:extrusionClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ExtrusionColor. + /// + /// + public static readonly XName extrusionClr = a + "extrusionClr"; + + /// + /// Represents the a:fgClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ForegroundColor. + /// + /// + public static readonly XName fgClr = a + "fgClr"; + + /// + /// Represents the a:fill XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: Fill, FillProperties. + /// + /// + public static readonly XName fill = a + "fill"; + + /// + /// Represents the a:fillOverlay XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FillOverlay. + /// + /// + public static readonly XName fillOverlay = a + "fillOverlay"; + + /// + /// Represents the a:fillRect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: FillRectangle. + /// + /// + public static readonly XName fillRect = a + "fillRect"; + + /// + /// Represents the a:fillRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FillReference. + /// + /// + public static readonly XName fillRef = a + "fillRef"; + + /// + /// Represents the a:fillStyleLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: FillStyleList. + /// + /// + public static readonly XName fillStyleLst = a + "fillStyleLst"; + + /// + /// Represents the a:fillToRect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: FillToRectangle. + /// + /// + public static readonly XName fillToRect = a + "fillToRect"; + + /// + /// Represents the a:firstCol XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: FirstColumn. + /// + /// + public static readonly XName firstCol = a + "firstCol"; + + /// + /// Represents the a:firstRow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: FirstRow. + /// + /// + public static readonly XName firstRow = a + "firstRow"; + + /// + /// Represents the a:flatTx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FlatText. + /// + /// + public static readonly XName flatTx = a + "flatTx"; + + /// + /// Represents the a:fld XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Field. + /// + /// + public static readonly XName fld = a + "fld"; + + /// + /// Represents the a:fmtScheme XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FormatScheme. + /// + /// + public static readonly XName fmtScheme = a + "fmtScheme"; + + /// + /// Represents the a:folHlink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: FollowedHyperlinkColor. + /// + /// + public static readonly XName folHlink = a + "folHlink"; + + /// + /// Represents the a:font XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Fonts, SupplementalFont. + /// + /// + public static readonly XName font = a + "font"; + + /// + /// Represents the a:fontRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontReference. + /// + /// + public static readonly XName fontRef = a + "fontRef"; + + /// + /// Represents the a:fontScheme XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontScheme. + /// + /// + public static readonly XName fontScheme = a + "fontScheme"; + + /// + /// Represents the a:gamma XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Gamma. + /// + /// + public static readonly XName gamma = a + "gamma"; + + /// + /// Represents the a:gd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ShapeGuide. + /// + /// + public static readonly XName gd = a + "gd"; + + /// + /// Represents the a:gdLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ShapeGuideList. + /// + /// + public static readonly XName gdLst = a + "gdLst"; + + /// + /// Represents the a:glow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Glow. + /// + /// + public static readonly XName glow = a + "glow"; + + /// + /// Represents the a:gradFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: GradientFill. + /// + /// + public static readonly XName gradFill = a + "gradFill"; + + /// + /// Represents the a:graphic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Graphic. + /// + /// + public static readonly XName graphic = a + "graphic"; + + /// + /// Represents the a:graphicData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GraphicData. + /// + /// + public static readonly XName graphicData = a + "graphicData"; + + /// + /// Represents the a:graphicFrame XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: GraphicFrame. + /// + /// + public static readonly XName graphicFrame = a + "graphicFrame"; + + /// + /// Represents the a:graphicFrameLocks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: GraphicFrameLocks. + /// + /// + public static readonly XName graphicFrameLocks = a + "graphicFrameLocks"; + + /// + /// Represents the a:gray XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Gray. + /// + /// + public static readonly XName gray = a + "gray"; + + /// + /// Represents the a:grayscl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: Grayscale. + /// + /// + public static readonly XName grayscl = a + "grayscl"; + + /// + /// Represents the a:green XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Green. + /// + /// + public static readonly XName green = a + "green"; + + /// + /// Represents the a:greenMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GreenModulation. + /// + /// + public static readonly XName greenMod = a + "greenMod"; + + /// + /// Represents the a:greenOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GreenOffset. + /// + /// + public static readonly XName greenOff = a + "greenOff"; + + /// + /// Represents the a:gridCol XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GridColumn. + /// + /// + public static readonly XName gridCol = a + "gridCol"; + + /// + /// Represents the a:grpFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: GroupFill. + /// + /// + public static readonly XName grpFill = a + "grpFill"; + + /// + /// Represents the a:grpSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: GroupShape. + /// + /// + public static readonly XName grpSp = a + "grpSp"; + + /// + /// Represents the a:grpSpLocks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: GroupShapeLocks. + /// + /// + public static readonly XName grpSpLocks = a + "grpSpLocks"; + + /// + /// Represents the a:grpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VisualGroupShapeProperties. + /// + /// + public static readonly XName grpSpPr = a + "grpSpPr"; + + /// + /// Represents the a:gs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GradientStop. + /// + /// + public static readonly XName gs = a + "gs"; + + /// + /// Represents the a:gsLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: GradientStopList. + /// + /// + public static readonly XName gsLst = a + "gsLst"; + + /// + /// Represents the a:headEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: HeadEnd. + /// + /// + public static readonly XName headEnd = a + "headEnd"; + + /// + /// Represents the a:highlight XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: Highlight. + /// + /// + public static readonly XName highlight = a + "highlight"; + + /// + /// Represents the a:hlink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Hyperlink. + /// + /// + public static readonly XName hlink = a + "hlink"; + + /// + /// Represents the a:hlinkClick XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: HyperlinkOnClick. + /// + /// + public static readonly XName hlinkClick = a + "hlinkClick"; + + /// + /// Represents the a:hlinkHover XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: HyperlinkOnHover. + /// + /// + public static readonly XName hlinkHover = a + "hlinkHover"; + + /// + /// Represents the a:hlinkMouseOver XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: HyperlinkOnMouseOver. + /// + /// + public static readonly XName hlinkMouseOver = a + "hlinkMouseOver"; + + /// + /// Represents the a:hsl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Hsl. + /// + /// + public static readonly XName hsl = a + "hsl"; + + /// + /// Represents the a:hslClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: HslColor. + /// + /// + public static readonly XName hslClr = a + "hslClr"; + + /// + /// Represents the a:hue XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Hue. + /// + /// + public static readonly XName hue = a + "hue"; + + /// + /// Represents the a:hueMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HueModulation. + /// + /// + public static readonly XName hueMod = a + "hueMod"; + + /// + /// Represents the a:hueOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HueOffset. + /// + /// + public static readonly XName hueOff = a + "hueOff"; + + /// + /// Represents the a:innerShdw XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: InnerShadow. + /// + /// + public static readonly XName innerShdw = a + "innerShdw"; + + /// + /// Represents the a:insideH XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: InsideHorizontalBorder. + /// + /// + public static readonly XName insideH = a + "insideH"; + + /// + /// Represents the a:insideV XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: InsideVerticalBorder. + /// + /// + public static readonly XName insideV = a + "insideV"; + + /// + /// Represents the a:inv XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Inverse. + /// + /// + public static readonly XName inv = a + "inv"; + + /// + /// Represents the a:invGamma XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: InverseGamma. + /// + /// + public static readonly XName invGamma = a + "invGamma"; + + /// + /// Represents the a:lastCol XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: LastColumn. + /// + /// + public static readonly XName lastCol = a + "lastCol"; + + /// + /// Represents the a:lastRow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: LastRow. + /// + /// + public static readonly XName lastRow = a + "lastRow"; + + /// + /// Represents the a:latin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: LatinFont. + /// + /// + public static readonly XName latin = a + "latin"; + + /// + /// Represents the a:left XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: LeftBorder. + /// + /// + public static readonly XName left = a + "left"; + + /// + /// Represents the a:lightRig XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LightRig. + /// + /// + public static readonly XName lightRig = a + "lightRig"; + + /// + /// Represents the a:lin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LinearGradientFill. + /// + /// + public static readonly XName lin = a + "lin"; + + /// + /// Represents the a:ln XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Outline. + /// + /// + public static readonly XName ln = a + "ln"; + + /// + /// Represents the a:lnB XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: BottomBorderLineProperties. + /// + /// + public static readonly XName lnB = a + "lnB"; + + /// + /// Represents the a:lnBlToTr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: BottomLeftToTopRightBorderLineProperties. + /// + /// + public static readonly XName lnBlToTr = a + "lnBlToTr"; + + /// + /// Represents the a:lnDef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: LineDefault. + /// + /// + public static readonly XName lnDef = a + "lnDef"; + + /// + /// Represents the a:lnL XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: LeftBorderLineProperties. + /// + /// + public static readonly XName lnL = a + "lnL"; + + /// + /// Represents the a:lnR XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: RightBorderLineProperties. + /// + /// + public static readonly XName lnR = a + "lnR"; + + /// + /// Represents the a:lnRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LineReference. + /// + /// + public static readonly XName lnRef = a + "lnRef"; + + /// + /// Represents the a:lnSpc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: LineSpacing. + /// + /// + public static readonly XName lnSpc = a + "lnSpc"; + + /// + /// Represents the a:lnStyleLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LineStyleList. + /// + /// + public static readonly XName lnStyleLst = a + "lnStyleLst"; + + /// + /// Represents the a:lnT XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: TopBorderLineProperties. + /// + /// + public static readonly XName lnT = a + "lnT"; + + /// + /// Represents the a:lnTlToBr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: TopLeftToBottomRightBorderLineProperties. + /// + /// + public static readonly XName lnTlToBr = a + "lnTlToBr"; + + /// + /// Represents the a:lnTo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LineTo. + /// + /// + public static readonly XName lnTo = a + "lnTo"; + + /// + /// Represents the a:lstStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ListStyle. + /// + /// + public static readonly XName lstStyle = a + "lstStyle"; + + /// + /// Represents the a:lt1 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Light1Color. + /// + /// + public static readonly XName lt1 = a + "lt1"; + + /// + /// Represents the a:lt2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Light2Color. + /// + /// + public static readonly XName lt2 = a + "lt2"; + + /// + /// Represents the a:lum XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Luminance, LuminanceEffect. + /// + /// + public static readonly XName lum = a + "lum"; + + /// + /// Represents the a:lumMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LuminanceModulation. + /// + /// + public static readonly XName lumMod = a + "lumMod"; + + /// + /// Represents the a:lumOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LuminanceOffset. + /// + /// + public static readonly XName lumOff = a + "lumOff"; + + /// + /// Represents the a:lvl1pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level1ParagraphProperties. + /// + /// + public static readonly XName lvl1pPr = a + "lvl1pPr"; + + /// + /// Represents the a:lvl2pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level2ParagraphProperties. + /// + /// + public static readonly XName lvl2pPr = a + "lvl2pPr"; + + /// + /// Represents the a:lvl3pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level3ParagraphProperties. + /// + /// + public static readonly XName lvl3pPr = a + "lvl3pPr"; + + /// + /// Represents the a:lvl4pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level4ParagraphProperties. + /// + /// + public static readonly XName lvl4pPr = a + "lvl4pPr"; + + /// + /// Represents the a:lvl5pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level5ParagraphProperties. + /// + /// + public static readonly XName lvl5pPr = a + "lvl5pPr"; + + /// + /// Represents the a:lvl6pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level6ParagraphProperties. + /// + /// + public static readonly XName lvl6pPr = a + "lvl6pPr"; + + /// + /// Represents the a:lvl7pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level7ParagraphProperties. + /// + /// + public static readonly XName lvl7pPr = a + "lvl7pPr"; + + /// + /// Represents the a:lvl8pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level8ParagraphProperties. + /// + /// + public static readonly XName lvl8pPr = a + "lvl8pPr"; + + /// + /// Represents the a:lvl9pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Level9ParagraphProperties. + /// + /// + public static readonly XName lvl9pPr = a + "lvl9pPr"; + + /// + /// Represents the a:majorFont XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: MajorFont. + /// + /// + public static readonly XName majorFont = a + "majorFont"; + + /// + /// Represents the a:masterClrMapping XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: MasterColorMapping. + /// + /// + public static readonly XName masterClrMapping = a + "masterClrMapping"; + + /// + /// Represents the a:minorFont XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: MinorFont. + /// + /// + public static readonly XName minorFont = a + "minorFont"; + + /// + /// Represents the a:miter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Miter. + /// + /// + public static readonly XName miter = a + "miter"; + + /// + /// Represents the a:moveTo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MoveTo. + /// + /// + public static readonly XName moveTo = a + "moveTo"; + + /// + /// Represents the a:neCell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NortheastCell. + /// + /// + public static readonly XName neCell = a + "neCell"; + + /// + /// Represents the a:noAutofit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: NoAutoFit. + /// + /// + public static readonly XName noAutofit = a + "noAutofit"; + + /// + /// Represents the a:noFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: NoFill. + /// + /// + public static readonly XName noFill = a + "noFill"; + + /// + /// Represents the a:norm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Normal. + /// + /// + public static readonly XName norm = a + "norm"; + + /// + /// Represents the a:normAutofit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NormalAutoFit. + /// + /// + public static readonly XName normAutofit = a + "normAutofit"; + + /// + /// Represents the a:nvCxnSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualConnectionShapeProperties. + /// + /// + public static readonly XName nvCxnSpPr = a + "nvCxnSpPr"; + + /// + /// Represents the a:nvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameProperties. + /// + /// + public static readonly XName nvGraphicFramePr = a + "nvGraphicFramePr"; + + /// + /// Represents the a:nvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupShapeProperties. + /// + /// + public static readonly XName nvGrpSpPr = a + "nvGrpSpPr"; + + /// + /// Represents the a:nvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualPictureProperties. + /// + /// + public static readonly XName nvPicPr = a + "nvPicPr"; + + /// + /// Represents the a:nvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualShapeProperties. + /// + /// + public static readonly XName nvSpPr = a + "nvSpPr"; + + /// + /// Represents the a:nwCell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NorthwestCell. + /// + /// + public static readonly XName nwCell = a + "nwCell"; + + /// + /// Represents the a:objectDefaults XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ObjectDefaults. + /// + /// + public static readonly XName objectDefaults = a + "objectDefaults"; + + /// + /// Represents the a:off XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Offset. + /// + /// + public static readonly XName off = a + "off"; + + /// + /// Represents the a:outerShdw XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: OuterShadow. + /// + /// + public static readonly XName outerShdw = a + "outerShdw"; + + /// + /// Represents the a:overrideClrMapping XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: OverrideColorMapping. + /// + /// + public static readonly XName overrideClrMapping = a + "overrideClrMapping"; + + /// + /// Represents the a:p XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: Paragraph. + /// + /// + public static readonly XName p = a + "p"; + + /// + /// Represents the a:path XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Path, PathGradientFill. + /// + /// + public static readonly XName path = a + "path"; + + /// + /// Represents the a:pathLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PathList. + /// + /// + public static readonly XName pathLst = a + "pathLst"; + + /// + /// Represents the a:pattFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PatternFill. + /// + /// + public static readonly XName pattFill = a + "pattFill"; + + /// + /// Represents the a:pic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Picture. + /// + /// + public static readonly XName pic = a + "pic"; + + /// + /// Represents the a:picLocks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PictureLocks. + /// + /// + public static readonly XName picLocks = a + "picLocks"; + + /// + /// Represents the a:pos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Position. + /// + /// + public static readonly XName pos = a + "pos"; + + /// + /// Represents the a:pPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ParagraphProperties. + /// + /// + public static readonly XName pPr = a + "pPr"; + + /// + /// Represents the a:prstClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PresetColor. + /// + /// + public static readonly XName prstClr = a + "prstClr"; + + /// + /// Represents the a:prstDash XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PresetDash. + /// + /// + public static readonly XName prstDash = a + "prstDash"; + + /// + /// Represents the a:prstGeom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PresetGeometry. + /// + /// + public static readonly XName prstGeom = a + "prstGeom"; + + /// + /// Represents the a:prstShdw XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: PresetShadow. + /// + /// + public static readonly XName prstShdw = a + "prstShdw"; + + /// + /// Represents the a:prstTxWarp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PresetTextWrap. + /// + /// + public static readonly XName prstTxWarp = a + "prstTxWarp"; + + /// + /// Represents the a:pt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Point. + /// + /// + public static readonly XName pt = a + "pt"; + + /// + /// Represents the a:quadBezTo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: QuadraticBezierCurveTo. + /// + /// + public static readonly XName quadBezTo = a + "quadBezTo"; + + /// + /// Represents the a:quickTimeFile XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: QuickTimeFromFile. + /// + /// + public static readonly XName quickTimeFile = a + "quickTimeFile"; + + /// + /// Represents the a:r XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Run. + /// + /// + public static readonly XName r = a + "r"; + + /// + /// Represents the a:rect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Rectangle. + /// + /// + public static readonly XName rect = a + "rect"; + + /// + /// Represents the a:red XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Red. + /// + /// + public static readonly XName red = a + "red"; + + /// + /// Represents the a:redMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RedModulation. + /// + /// + public static readonly XName redMod = a + "redMod"; + + /// + /// Represents the a:redOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RedOffset. + /// + /// + public static readonly XName redOff = a + "redOff"; + + /// + /// Represents the a:reflection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Reflection. + /// + /// + public static readonly XName reflection = a + "reflection"; + + /// + /// Represents the a:relOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RelativeOffset. + /// + /// + public static readonly XName relOff = a + "relOff"; + + /// + /// Represents the a:right XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: RightBorder. + /// + /// + public static readonly XName right = a + "right"; + + /// + /// Represents the a:rot XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Rotation. + /// + /// + public static readonly XName rot = a + "rot"; + + /// + /// Represents the a:round XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Round. + /// + /// + public static readonly XName round = a + "round"; + + /// + /// Represents the a:rPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RunProperties. + /// + /// + public static readonly XName rPr = a + "rPr"; + + /// + /// Represents the a:rtl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RightToLeft. + /// + /// + public static readonly XName rtl = a + "rtl"; + + /// + /// Represents the a:sat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Saturation. + /// + /// + public static readonly XName sat = a + "sat"; + + /// + /// Represents the a:satMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SaturationModulation. + /// + /// + public static readonly XName satMod = a + "satMod"; + + /// + /// Represents the a:satOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SaturationOffset. + /// + /// + public static readonly XName satOff = a + "satOff"; + + /// + /// Represents the a:scene3d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Scene3DType. + /// + /// + public static readonly XName scene3d = a + "scene3d"; + + /// + /// Represents the a:schemeClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SchemeColor. + /// + /// + public static readonly XName schemeClr = a + "schemeClr"; + + /// + /// Represents the a:scrgbClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: RgbColorModelPercentage. + /// + /// + public static readonly XName scrgbClr = a + "scrgbClr"; + + /// + /// Represents the a:seCell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SoutheastCell. + /// + /// + public static readonly XName seCell = a + "seCell"; + + /// + /// Represents the a:shade XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Shade. + /// + /// + public static readonly XName shade = a + "shade"; + + /// + /// Represents the a:snd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: HyperlinkSound. + /// + /// + public static readonly XName snd = a + "snd"; + + /// + /// Represents the a:softEdge XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SoftEdge. + /// + /// + public static readonly XName softEdge = a + "softEdge"; + + /// + /// Represents the a:solidFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: SolidFill. + /// + /// + public static readonly XName solidFill = a + "solidFill"; + + /// + /// Represents the a:sp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName sp = a + "sp"; + + /// + /// Represents the a:sp3d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Shape3DType. + /// + /// + public static readonly XName sp3d = a + "sp3d"; + + /// + /// Represents the a:spAutoFit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: ShapeAutoFit. + /// + /// + public static readonly XName spAutoFit = a + "spAutoFit"; + + /// + /// Represents the a:spcAft XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SpaceAfter. + /// + /// + public static readonly XName spcAft = a + "spcAft"; + + /// + /// Represents the a:spcBef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SpaceBefore. + /// + /// + public static readonly XName spcBef = a + "spcBef"; + + /// + /// Represents the a:spcPct XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SpacingPercent. + /// + /// + public static readonly XName spcPct = a + "spcPct"; + + /// + /// Represents the a:spcPts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SpacingPoints. + /// + /// + public static readonly XName spcPts = a + "spcPts"; + + /// + /// Represents the a:spDef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: ShapeDefault. + /// + /// + public static readonly XName spDef = a + "spDef"; + + /// + /// Represents the a:spLocks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ShapeLocks. + /// + /// + public static readonly XName spLocks = a + "spLocks"; + + /// + /// Represents the a:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = a + "spPr"; + + /// + /// Represents the a:srcRect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: SourceRectangle. + /// + /// + public static readonly XName srcRect = a + "srcRect"; + + /// + /// Represents the a:srgbClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RgbColorModelHex. + /// + /// + public static readonly XName srgbClr = a + "srgbClr"; + + /// + /// Represents the a:st XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: StartTime. + /// + /// + public static readonly XName st = a + "st"; + + /// + /// Represents the a:stCxn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: StartConnection. + /// + /// + public static readonly XName stCxn = a + "stCxn"; + + /// + /// Represents the a:stretch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Stretch. + /// + /// + public static readonly XName stretch = a + "stretch"; + + /// + /// Represents the a:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ShapeStyle. + /// + /// + public static readonly XName style = a + "style"; + + /// + /// Represents the a:swCell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SouthwestCell. + /// + /// + public static readonly XName swCell = a + "swCell"; + + /// + /// Represents the a:sx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ScaleX. + /// + /// + public static readonly XName sx = a + "sx"; + + /// + /// Represents the a:sy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ScaleY. + /// + /// + public static readonly XName sy = a + "sy"; + + /// + /// Represents the a:sym XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: SymbolFont. + /// + /// + public static readonly XName sym = a + "sym"; + + /// + /// Represents the a:sysClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SystemColor. + /// + /// + public static readonly XName sysClr = a + "sysClr"; + + /// + /// Represents the a:t XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: Text. + /// + /// + public static readonly XName t = a + "t"; + + /// + /// Represents the a:tab XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TabStop. + /// + /// + public static readonly XName tab = a + "tab"; + + /// + /// Represents the a:tableStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TableStyle. + /// + /// + public static readonly XName tableStyle = a + "tableStyle"; + + /// + /// Represents the a:tableStyleId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: TableStyleId. + /// + /// + public static readonly XName tableStyleId = a + "tableStyleId"; + + /// + /// Represents the a:tabLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TabStopList. + /// + /// + public static readonly XName tabLst = a + "tabLst"; + + /// + /// Represents the a:tailEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TailEnd. + /// + /// + public static readonly XName tailEnd = a + "tailEnd"; + + /// + /// Represents the a:tbl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Table. + /// + /// + public static readonly XName tbl = a + "tbl"; + + /// + /// Represents the a:tblBg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: TableBackground. + /// + /// + public static readonly XName tblBg = a + "tblBg"; + + /// + /// Represents the a:tblGrid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TableGrid. + /// + /// + public static readonly XName tblGrid = a + "tblGrid"; + + /// + /// Represents the a:tblPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: TableProperties. + /// + /// + public static readonly XName tblPr = a + "tblPr"; + + /// + /// Represents the a:tblStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TableStyleEntry. + /// + /// + public static readonly XName tblStyle = a + "tblStyle"; + + /// + /// Represents the a:tblStyleLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableStyleList. + /// + /// + public static readonly XName tblStyleLst = a + "tblStyleLst"; + + /// + /// Represents the a:tc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: TableCell. + /// + /// + public static readonly XName tc = a + "tc"; + + /// + /// Represents the a:tcBdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: TableCellBorders. + /// + /// + public static readonly XName tcBdr = a + "tcBdr"; + + /// + /// Represents the a:tcPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: TableCellProperties. + /// + /// + public static readonly XName tcPr = a + "tcPr"; + + /// + /// Represents the a:tcStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: TableCellStyle. + /// + /// + public static readonly XName tcStyle = a + "tcStyle"; + + /// + /// Represents the a:tcTxStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TableCellTextStyle. + /// + /// + public static readonly XName tcTxStyle = a + "tcTxStyle"; + + /// + /// Represents the a:theme XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Theme. + /// + /// + public static readonly XName theme = a + "theme"; + + /// + /// Represents the a:themeElements XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ThemeElements. + /// + /// + public static readonly XName themeElements = a + "themeElements"; + + /// + /// Represents the a:themeManager XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ThemeManager. + /// + /// + public static readonly XName themeManager = a + "themeManager"; + + /// + /// Represents the a:themeOverride XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: ThemeOverride. + /// + /// + public static readonly XName themeOverride = a + "themeOverride"; + + /// + /// Represents the a:tile XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Tile. + /// + /// + public static readonly XName tile = a + "tile"; + + /// + /// Represents the a:tileRect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: TileRectangle. + /// + /// + public static readonly XName tileRect = a + "tileRect"; + + /// + /// Represents the a:tint XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Tint, TintEffect. + /// + /// + public static readonly XName tint = a + "tint"; + + /// + /// Represents the a:tl2br XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: TopLeftToBottomRightBorder. + /// + /// + public static readonly XName tl2br = a + "tl2br"; + + /// + /// Represents the a:top XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: TopBorder. + /// + /// + public static readonly XName top = a + "top"; + + /// + /// Represents the a:tr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableRow. + /// + /// + public static readonly XName tr = a + "tr"; + + /// + /// Represents the a:tr2bl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: TopRightToBottomLeftBorder. + /// + /// + public static readonly XName tr2bl = a + "tr2bl"; + + /// + /// Represents the a:txBody XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: TextBody. + /// + /// + public static readonly XName txBody = a + "txBody"; + + /// + /// Represents the a:txDef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: TextDefault. + /// + /// + public static readonly XName txDef = a + "txDef"; + + /// + /// Represents the a:txSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: TextShape. + /// + /// + public static readonly XName txSp = a + "txSp"; + + /// + /// Represents the a:uFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: UnderlineFill. + /// + /// + public static readonly XName uFill = a + "uFill"; + + /// + /// Represents the a:uFillTx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: UnderlineFillText. + /// + /// + public static readonly XName uFillTx = a + "uFillTx"; + + /// + /// Represents the a:uLn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Underline. + /// + /// + public static readonly XName uLn = a + "uLn"; + + /// + /// Represents the a:uLnTx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: UnderlineFollowsText. + /// + /// + public static readonly XName uLnTx = a + "uLnTx"; + + /// + /// Represents the a:up XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: UpVector. + /// + /// + public static readonly XName up = a + "up"; + + /// + /// Represents the a:useSpRect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: UseShapeRectangle. + /// + /// + public static readonly XName useSpRect = a + "useSpRect"; + + /// + /// Represents the a:videoFile XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VideoFromFile. + /// + /// + public static readonly XName videoFile = a + "videoFile"; + + /// + /// Represents the a:wavAudioFile XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: WaveAudioFile. + /// + /// + public static readonly XName wavAudioFile = a + "wavAudioFile"; + + /// + /// Represents the a:wholeTbl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: WholeTable. + /// + /// + public static readonly XName wholeTbl = a + "wholeTbl"; + + /// + /// Represents the a:xfrm XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Transform2D, TransformEffect, TransformGroup. + /// + /// + public static readonly XName xfrm = a + "xfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A14.g.cs new file mode 100644 index 000000000..ae713c4ff --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A14.g.cs @@ -0,0 +1,689 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main" namespace. + /// + public static class A14 + { + /// + /// Defines the XML namespace associated with the a14 prefix. + /// + public static readonly XNamespace a14 = "http://schemas.microsoft.com/office/drawing/2010/main"; + + /// + /// Represents the a14:artisticBlur XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ArtisticBlur. + /// + /// + public static readonly XName artisticBlur = a14 + "artisticBlur"; + + /// + /// Represents the a14:artisticCement XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticCement. + /// + /// + public static readonly XName artisticCement = a14 + "artisticCement"; + + /// + /// Represents the a14:artisticChalkSketch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticChalkSketch. + /// + /// + public static readonly XName artisticChalkSketch = a14 + "artisticChalkSketch"; + + /// + /// Represents the a14:artisticCrisscrossEtching XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticCrisscrossEtching. + /// + /// + public static readonly XName artisticCrisscrossEtching = a14 + "artisticCrisscrossEtching"; + + /// + /// Represents the a14:artisticCutout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticCutout. + /// + /// + public static readonly XName artisticCutout = a14 + "artisticCutout"; + + /// + /// Represents the a14:artisticFilmGrain XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticFilmGrain. + /// + /// + public static readonly XName artisticFilmGrain = a14 + "artisticFilmGrain"; + + /// + /// Represents the a14:artisticGlass XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticGlass. + /// + /// + public static readonly XName artisticGlass = a14 + "artisticGlass"; + + /// + /// Represents the a14:artisticGlowDiffused XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticGlowDiffused. + /// + /// + public static readonly XName artisticGlowDiffused = a14 + "artisticGlowDiffused"; + + /// + /// Represents the a14:artisticGlowEdges XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticGlowEdges. + /// + /// + public static readonly XName artisticGlowEdges = a14 + "artisticGlowEdges"; + + /// + /// Represents the a14:artisticLightScreen XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticLightScreen. + /// + /// + public static readonly XName artisticLightScreen = a14 + "artisticLightScreen"; + + /// + /// Represents the a14:artisticLineDrawing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticLineDrawing. + /// + /// + public static readonly XName artisticLineDrawing = a14 + "artisticLineDrawing"; + + /// + /// Represents the a14:artisticMarker XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticMarker. + /// + /// + public static readonly XName artisticMarker = a14 + "artisticMarker"; + + /// + /// Represents the a14:artisticMosiaicBubbles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticMosaicBubbles. + /// + /// + public static readonly XName artisticMosiaicBubbles = a14 + "artisticMosiaicBubbles"; + + /// + /// Represents the a14:artisticPaintBrush XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticPaintBrush. + /// + /// + public static readonly XName artisticPaintBrush = a14 + "artisticPaintBrush"; + + /// + /// Represents the a14:artisticPaintStrokes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticPaintStrokes. + /// + /// + public static readonly XName artisticPaintStrokes = a14 + "artisticPaintStrokes"; + + /// + /// Represents the a14:artisticPastelsSmooth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticPastelsSmooth. + /// + /// + public static readonly XName artisticPastelsSmooth = a14 + "artisticPastelsSmooth"; + + /// + /// Represents the a14:artisticPencilGrayscale XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticPencilGrayscale. + /// + /// + public static readonly XName artisticPencilGrayscale = a14 + "artisticPencilGrayscale"; + + /// + /// Represents the a14:artisticPencilSketch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticPencilSketch. + /// + /// + public static readonly XName artisticPencilSketch = a14 + "artisticPencilSketch"; + + /// + /// Represents the a14:artisticPhotocopy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticPhotocopy. + /// + /// + public static readonly XName artisticPhotocopy = a14 + "artisticPhotocopy"; + + /// + /// Represents the a14:artisticPlasticWrap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticPlasticWrap. + /// + /// + public static readonly XName artisticPlasticWrap = a14 + "artisticPlasticWrap"; + + /// + /// Represents the a14:artisticTexturizer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticTexturizer. + /// + /// + public static readonly XName artisticTexturizer = a14 + "artisticTexturizer"; + + /// + /// Represents the a14:artisticWatercolorSponge XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ArtisticWatercolorSponge. + /// + /// + public static readonly XName artisticWatercolorSponge = a14 + "artisticWatercolorSponge"; + + /// + /// Represents the a14:backgroundMark XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: BackgroundMark. + /// + /// + public static readonly XName backgroundMark = a14 + "backgroundMark"; + + /// + /// Represents the a14:backgroundRemoval XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: BackgroundRemoval. + /// + /// + public static readonly XName backgroundRemoval = a14 + "backgroundRemoval"; + + /// + /// Represents the a14:brightnessContrast XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BrightnessContrast. + /// + /// + public static readonly XName brightnessContrast = a14 + "brightnessContrast"; + + /// + /// Represents the a14:cameraTool XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CameraTool. + /// + /// + public static readonly XName cameraTool = a14 + "cameraTool"; + + /// + /// Represents the a14:cNvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualInkContentPartProperties. + /// + /// + public static readonly XName cNvContentPartPr = a14 + "cNvContentPartPr"; + + /// + /// Represents the a14:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = a14 + "cNvPr"; + + /// + /// Represents the a14:colorTemperature XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColorTemperature. + /// + /// + public static readonly XName colorTemperature = a14 + "colorTemperature"; + + /// + /// Represents the a14:compatExt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CompatExtension. + /// + /// + public static readonly XName compatExt = a14 + "compatExt"; + + /// + /// Represents the a14:contentPart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: GvmlContentPart. + /// + /// + public static readonly XName contentPart = a14 + "contentPart"; + + /// + /// Represents the a14:cpLocks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ContentPartLocks. + /// + /// + public static readonly XName cpLocks = a14 + "cpLocks"; + + /// + /// Represents the a14:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = a14 + "extLst"; + + /// + /// Represents the a14:foregroundMark XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ForegroundMark. + /// + /// + public static readonly XName foregroundMark = a14 + "foregroundMark"; + + /// + /// Represents the a14:hiddenEffects XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: HiddenEffectsProperties. + /// + /// + public static readonly XName hiddenEffects = a14 + "hiddenEffects"; + + /// + /// Represents the a14:hiddenFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: HiddenFillProperties. + /// + /// + public static readonly XName hiddenFill = a14 + "hiddenFill"; + + /// + /// Represents the a14:hiddenLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: HiddenLineProperties. + /// + /// + public static readonly XName hiddenLine = a14 + "hiddenLine"; + + /// + /// Represents the a14:hiddenScene3d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: HiddenScene3D. + /// + /// + public static readonly XName hiddenScene3d = a14 + "hiddenScene3d"; + + /// + /// Represents the a14:hiddenSp3d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: HiddenShape3D. + /// + /// + public static readonly XName hiddenSp3d = a14 + "hiddenSp3d"; + + /// + /// Represents the a14:imgEffect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ImageEffect. + /// + /// + public static readonly XName imgEffect = a14 + "imgEffect"; + + /// + /// Represents the a14:imgLayer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ImageLayer. + /// + /// + public static readonly XName imgLayer = a14 + "imgLayer"; + + /// + /// Represents the a14:imgProps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ImageProperties. + /// + /// + public static readonly XName imgProps = a14 + "imgProps"; + + /// + /// Represents the a14:isCanvas XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: IsCanvas. + /// + /// + public static readonly XName isCanvas = a14 + "isCanvas"; + + /// + /// Represents the a14:legacySpreadsheetColorIndex XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RgbColorModelHex.LegacySpreadsheetColorIndex. + /// + /// + public static readonly XName legacySpreadsheetColorIndex = a14 + "legacySpreadsheetColorIndex"; + + /// + /// Represents the a14:m XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: TextMath. + /// + /// + public static readonly XName m = a14 + "m"; + + /// + /// Represents the a14:nvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualContentPartProperties. + /// + /// + public static readonly XName nvContentPartPr = a14 + "nvContentPartPr"; + + /// + /// Represents the a14:saturation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Saturation. + /// + /// + public static readonly XName saturation = a14 + "saturation"; + + /// + /// Represents the a14:shadowObscured XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShadowObscured. + /// + /// + public static readonly XName shadowObscured = a14 + "shadowObscured"; + + /// + /// Represents the a14:sharpenSoften XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SharpenSoften. + /// + /// + public static readonly XName sharpenSoften = a14 + "sharpenSoften"; + + /// + /// Represents the a14:useLocalDpi XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseLocalDpi. + /// + /// + public static readonly XName useLocalDpi = a14 + "useLocalDpi"; + + /// + /// Represents the a14:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform2D. + /// + /// + public static readonly XName xfrm = a14 + "xfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A15.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A15.g.cs new file mode 100644 index 000000000..ad9d0db2d --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A15.g.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:a15="http://schemas.microsoft.com/office/drawing/2012/main" namespace. + /// + public static class A15 + { + /// + /// Defines the XML namespace associated with the a15 prefix. + /// + public static readonly XNamespace a15 = "http://schemas.microsoft.com/office/drawing/2012/main"; + + /// + /// Represents the a15:backgroundPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: BackgroundProperties. + /// + /// + public static readonly XName backgroundPr = a15 + "backgroundPr"; + + /// + /// Represents the a15:nonVisualGroupProps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualGroupProperties. + /// + /// + public static readonly XName nonVisualGroupProps = a15 + "nonVisualGroupProps"; + + /// + /// Represents the a15:objectPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ObjectProperties. + /// + /// + public static readonly XName objectPr = a15 + "objectPr"; + + /// + /// Represents the a15:signatureLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SignatureLine. + /// + /// + public static readonly XName signatureLine = a15 + "signatureLine"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A16.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A16.g.cs new file mode 100644 index 000000000..7c1f8007c --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A16.g.cs @@ -0,0 +1,83 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:a16="http://schemas.microsoft.com/office/drawing/2014/main" namespace. + /// + public static class A16 + { + /// + /// Defines the XML namespace associated with the a16 prefix. + /// + public static readonly XNamespace a16 = "http://schemas.microsoft.com/office/drawing/2014/main"; + + /// + /// Represents the a16:colId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColIdIdentifier. + /// + /// + public static readonly XName colId = a16 + "colId"; + + /// + /// Represents the a16:creationId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CreationId. + /// + /// + public static readonly XName creationId = a16 + "creationId"; + + /// + /// Represents the a16:cxnDERefs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ConnectableReferences. + /// + /// + public static readonly XName cxnDERefs = a16 + "cxnDERefs"; + + /// + /// Represents the a16:predDERef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PredecessorDrawingElementReference. + /// + /// + public static readonly XName predDERef = a16 + "predDERef"; + + /// + /// Represents the a16:rowId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RowIdIdentifier. + /// + /// + public static readonly XName rowId = a16 + "rowId"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A1611.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A1611.g.cs new file mode 100644 index 000000000..d9f554c7a --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/A1611.g.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:a1611="http://schemas.microsoft.com/office/drawing/2016/11/main" namespace. + /// + public static class A1611 + { + /// + /// Defines the XML namespace associated with the a1611 prefix. + /// + public static readonly XNamespace a1611 = "http://schemas.microsoft.com/office/drawing/2016/11/main"; + + /// + /// Represents the a1611:picAttrSrcUrl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PictureAttributionSourceURL. + /// + /// + public static readonly XName picAttrSrcUrl = a1611 + "picAttrSrcUrl"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AC.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AC.g.cs new file mode 100644 index 000000000..a6ef91fbf --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AC.g.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:ac="http://schemas.openxmlformats.org/officeDocument/2006/characteristics" namespace. + /// + public static class AC + { + /// + /// Defines the XML namespace associated with the ac prefix. + /// + public static readonly XNamespace ac = "http://schemas.openxmlformats.org/officeDocument/2006/characteristics"; + + /// + /// Represents the ac:additionalCharacteristics XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AdditionalCharacteristicsInfo. + /// + /// + public static readonly XName additionalCharacteristics = ac + "additionalCharacteristics"; + + /// + /// Represents the ac:characteristic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Characteristic. + /// + /// + public static readonly XName characteristic = ac + "characteristic"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/ADEC.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/ADEC.g.cs new file mode 100644 index 000000000..62589b048 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/ADEC.g.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:adec="http://schemas.microsoft.com/office/drawing/2017/decorative" namespace. + /// + public static class ADEC + { + /// + /// Defines the XML namespace associated with the adec prefix. + /// + public static readonly XNamespace adec = "http://schemas.microsoft.com/office/drawing/2017/decorative"; + + /// + /// Represents the adec:decorative XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Decorative. + /// + /// + public static readonly XName decorative = adec + "decorative"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AHYP.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AHYP.g.cs new file mode 100644 index 000000000..990e66d82 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AHYP.g.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:ahyp="http://schemas.microsoft.com/office/drawing/2018/hyperlinkcolor" namespace. + /// + public static class AHYP + { + /// + /// Defines the XML namespace associated with the ahyp prefix. + /// + public static readonly XNamespace ahyp = "http://schemas.microsoft.com/office/drawing/2018/hyperlinkcolor"; + + /// + /// Represents the ahyp:hlinkClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HyperlinkColor. + /// + /// + public static readonly XName hlinkClr = ahyp + "hlinkClr"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AP.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AP.g.cs new file mode 100644 index 000000000..14f4784b2 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/AP.g.cs @@ -0,0 +1,358 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:ap="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" namespace. + /// + public static class AP + { + /// + /// Defines the XML namespace associated with the ap prefix. + /// + public static readonly XNamespace ap = "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"; + + /// + /// Represents the ap:Application XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Application. + /// + /// + public static readonly XName Application = ap + "Application"; + + /// + /// Represents the ap:AppVersion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ApplicationVersion. + /// + /// + public static readonly XName AppVersion = ap + "AppVersion"; + + /// + /// Represents the ap:Characters XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Characters. + /// + /// + public static readonly XName Characters = ap + "Characters"; + + /// + /// Represents the ap:CharactersWithSpaces XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CharactersWithSpaces. + /// + /// + public static readonly XName CharactersWithSpaces = ap + "CharactersWithSpaces"; + + /// + /// Represents the ap:Company XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Company. + /// + /// + public static readonly XName Company = ap + "Company"; + + /// + /// Represents the ap:DigSig XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DigitalSignature. + /// + /// + public static readonly XName DigSig = ap + "DigSig"; + + /// + /// Represents the ap:DocSecurity XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DocumentSecurity. + /// + /// + public static readonly XName DocSecurity = ap + "DocSecurity"; + + /// + /// Represents the ap:HeadingPairs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: HeadingPairs. + /// + /// + public static readonly XName HeadingPairs = ap + "HeadingPairs"; + + /// + /// Represents the ap:HiddenSlides XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: HiddenSlides. + /// + /// + public static readonly XName HiddenSlides = ap + "HiddenSlides"; + + /// + /// Represents the ap:HLinks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: HyperlinkList. + /// + /// + public static readonly XName HLinks = ap + "HLinks"; + + /// + /// Represents the ap:HyperlinkBase XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: HyperlinkBase. + /// + /// + public static readonly XName HyperlinkBase = ap + "HyperlinkBase"; + + /// + /// Represents the ap:HyperlinksChanged XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: HyperlinksChanged. + /// + /// + public static readonly XName HyperlinksChanged = ap + "HyperlinksChanged"; + + /// + /// Represents the ap:Lines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Lines. + /// + /// + public static readonly XName Lines = ap + "Lines"; + + /// + /// Represents the ap:LinksUpToDate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: LinksUpToDate. + /// + /// + public static readonly XName LinksUpToDate = ap + "LinksUpToDate"; + + /// + /// Represents the ap:Manager XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Manager. + /// + /// + public static readonly XName Manager = ap + "Manager"; + + /// + /// Represents the ap:MMClips XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: MultimediaClips. + /// + /// + public static readonly XName MMClips = ap + "MMClips"; + + /// + /// Represents the ap:Notes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Notes. + /// + /// + public static readonly XName Notes = ap + "Notes"; + + /// + /// Represents the ap:Pages XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Pages. + /// + /// + public static readonly XName Pages = ap + "Pages"; + + /// + /// Represents the ap:Paragraphs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Paragraphs. + /// + /// + public static readonly XName Paragraphs = ap + "Paragraphs"; + + /// + /// Represents the ap:PresentationFormat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PresentationFormat. + /// + /// + public static readonly XName PresentationFormat = ap + "PresentationFormat"; + + /// + /// Represents the ap:Properties XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Properties. + /// + /// + public static readonly XName Properties = ap + "Properties"; + + /// + /// Represents the ap:ScaleCrop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScaleCrop. + /// + /// + public static readonly XName ScaleCrop = ap + "ScaleCrop"; + + /// + /// Represents the ap:SharedDoc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SharedDocument. + /// + /// + public static readonly XName SharedDoc = ap + "SharedDoc"; + + /// + /// Represents the ap:Slides XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Slides. + /// + /// + public static readonly XName Slides = ap + "Slides"; + + /// + /// Represents the ap:Template XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Template. + /// + /// + public static readonly XName Template = ap + "Template"; + + /// + /// Represents the ap:TitlesOfParts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TitlesOfParts. + /// + /// + public static readonly XName TitlesOfParts = ap + "TitlesOfParts"; + + /// + /// Represents the ap:TotalTime XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: TotalTime. + /// + /// + public static readonly XName TotalTime = ap + "TotalTime"; + + /// + /// Represents the ap:Words XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Words. + /// + /// + public static readonly XName Words = ap + "Words"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/ASVG.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/ASVG.g.cs new file mode 100644 index 000000000..468218fcc --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/ASVG.g.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:asvg="http://schemas.microsoft.com/office/drawing/2016/SVG/main" namespace. + /// + public static class ASVG + { + /// + /// Defines the XML namespace associated with the asvg prefix. + /// + public static readonly XNamespace asvg = "http://schemas.microsoft.com/office/drawing/2016/SVG/main"; + + /// + /// Represents the asvg:svgBlip XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SVGBlip. + /// + /// + public static readonly XName svgBlip = asvg + "svgBlip"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/B.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/B.g.cs new file mode 100644 index 000000000..9633d9ee9 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/B.g.cs @@ -0,0 +1,938 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" namespace. + /// + public static class B + { + /// + /// Defines the XML namespace associated with the b prefix. + /// + public static readonly XNamespace b = "http://schemas.openxmlformats.org/officeDocument/2006/bibliography"; + + /// + /// Represents the b:AbbreviatedCaseNumber XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AbbreviatedCaseNumber. + /// + /// + public static readonly XName AbbreviatedCaseNumber = b + "AbbreviatedCaseNumber"; + + /// + /// Represents the b:AlbumTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AlbumTitle. + /// + /// + public static readonly XName AlbumTitle = b + "AlbumTitle"; + + /// + /// Represents the b:Artist XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Artist. + /// + /// + public static readonly XName Artist = b + "Artist"; + + /// + /// Represents the b:Author XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Author, AuthorList. + /// + /// + public static readonly XName Author = b + "Author"; + + /// + /// Represents the b:BookAuthor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: BookAuthor. + /// + /// + public static readonly XName BookAuthor = b + "BookAuthor"; + + /// + /// Represents the b:BookTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: BookTitle. + /// + /// + public static readonly XName BookTitle = b + "BookTitle"; + + /// + /// Represents the b:Broadcaster XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Broadcaster. + /// + /// + public static readonly XName Broadcaster = b + "Broadcaster"; + + /// + /// Represents the b:BroadcastTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: BroadcastTitle. + /// + /// + public static readonly XName BroadcastTitle = b + "BroadcastTitle"; + + /// + /// Represents the b:CaseNumber XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CaseNumber. + /// + /// + public static readonly XName CaseNumber = b + "CaseNumber"; + + /// + /// Represents the b:ChapterNumber XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ChapterNumber. + /// + /// + public static readonly XName ChapterNumber = b + "ChapterNumber"; + + /// + /// Represents the b:City XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: City. + /// + /// + public static readonly XName City = b + "City"; + + /// + /// Represents the b:Comments XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Comments. + /// + /// + public static readonly XName Comments = b + "Comments"; + + /// + /// Represents the b:Compiler XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Compiler. + /// + /// + public static readonly XName Compiler = b + "Compiler"; + + /// + /// Represents the b:Composer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Composer. + /// + /// + public static readonly XName Composer = b + "Composer"; + + /// + /// Represents the b:Conductor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Conductor. + /// + /// + public static readonly XName Conductor = b + "Conductor"; + + /// + /// Represents the b:ConferenceName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ConferenceName. + /// + /// + public static readonly XName ConferenceName = b + "ConferenceName"; + + /// + /// Represents the b:Corporate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: Corporate. + /// + /// + public static readonly XName Corporate = b + "Corporate"; + + /// + /// Represents the b:Counsel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Counsel. + /// + /// + public static readonly XName Counsel = b + "Counsel"; + + /// + /// Represents the b:CountryRegion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CountryRegion. + /// + /// + public static readonly XName CountryRegion = b + "CountryRegion"; + + /// + /// Represents the b:Court XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Court. + /// + /// + public static readonly XName Court = b + "Court"; + + /// + /// Represents the b:Day XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Day. + /// + /// + public static readonly XName Day = b + "Day"; + + /// + /// Represents the b:DayAccessed XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DayAccessed. + /// + /// + public static readonly XName DayAccessed = b + "DayAccessed"; + + /// + /// Represents the b:Department XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Department. + /// + /// + public static readonly XName Department = b + "Department"; + + /// + /// Represents the b:Director XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Director. + /// + /// + public static readonly XName Director = b + "Director"; + + /// + /// Represents the b:Distributor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Distributor. + /// + /// + public static readonly XName Distributor = b + "Distributor"; + + /// + /// Represents the b:Edition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Edition. + /// + /// + public static readonly XName Edition = b + "Edition"; + + /// + /// Represents the b:Editor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Editor. + /// + /// + public static readonly XName Editor = b + "Editor"; + + /// + /// Represents the b:First XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: First. + /// + /// + public static readonly XName First = b + "First"; + + /// + /// Represents the b:Guid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: GuidString. + /// + /// + public static readonly XName Guid = b + "Guid"; + + /// + /// Represents the b:Institution XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Institution. + /// + /// + public static readonly XName Institution = b + "Institution"; + + /// + /// Represents the b:InternetSiteTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: InternetSiteTitle. + /// + /// + public static readonly XName InternetSiteTitle = b + "InternetSiteTitle"; + + /// + /// Represents the b:Interviewee XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Interviewee. + /// + /// + public static readonly XName Interviewee = b + "Interviewee"; + + /// + /// Represents the b:Interviewer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Interviewer. + /// + /// + public static readonly XName Interviewer = b + "Interviewer"; + + /// + /// Represents the b:Inventor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Inventor. + /// + /// + public static readonly XName Inventor = b + "Inventor"; + + /// + /// Represents the b:Issue XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Issue. + /// + /// + public static readonly XName Issue = b + "Issue"; + + /// + /// Represents the b:JournalName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: JournalName. + /// + /// + public static readonly XName JournalName = b + "JournalName"; + + /// + /// Represents the b:Last XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Last. + /// + /// + public static readonly XName Last = b + "Last"; + + /// + /// Represents the b:LCID XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: LcId. + /// + /// + public static readonly XName LCID = b + "LCID"; + + /// + /// Represents the b:Medium XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Medium. + /// + /// + public static readonly XName Medium = b + "Medium"; + + /// + /// Represents the b:Middle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Middle. + /// + /// + public static readonly XName Middle = b + "Middle"; + + /// + /// Represents the b:Month XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Month. + /// + /// + public static readonly XName Month = b + "Month"; + + /// + /// Represents the b:MonthAccessed XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: MonthAccessed. + /// + /// + public static readonly XName MonthAccessed = b + "MonthAccessed"; + + /// + /// Represents the b:NameList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: NameList. + /// + /// + public static readonly XName NameList = b + "NameList"; + + /// + /// Represents the b:NumberVolumes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: NumberVolumes. + /// + /// + public static readonly XName NumberVolumes = b + "NumberVolumes"; + + /// + /// Represents the b:Pages XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Pages. + /// + /// + public static readonly XName Pages = b + "Pages"; + + /// + /// Represents the b:PatentNumber XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PatentNumber. + /// + /// + public static readonly XName PatentNumber = b + "PatentNumber"; + + /// + /// Represents the b:Performer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Performer. + /// + /// + public static readonly XName Performer = b + "Performer"; + + /// + /// Represents the b:PeriodicalTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PeriodicalTitle. + /// + /// + public static readonly XName PeriodicalTitle = b + "PeriodicalTitle"; + + /// + /// Represents the b:Person XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Person. + /// + /// + public static readonly XName Person = b + "Person"; + + /// + /// Represents the b:ProducerName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ProducerName. + /// + /// + public static readonly XName ProducerName = b + "ProducerName"; + + /// + /// Represents the b:ProductionCompany XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ProductionCompany. + /// + /// + public static readonly XName ProductionCompany = b + "ProductionCompany"; + + /// + /// Represents the b:PublicationTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PublicationTitle. + /// + /// + public static readonly XName PublicationTitle = b + "PublicationTitle"; + + /// + /// Represents the b:Publisher XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Publisher. + /// + /// + public static readonly XName Publisher = b + "Publisher"; + + /// + /// Represents the b:RecordingNumber XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: RecordingNumber. + /// + /// + public static readonly XName RecordingNumber = b + "RecordingNumber"; + + /// + /// Represents the b:RefOrder XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ReferenceOrder. + /// + /// + public static readonly XName RefOrder = b + "RefOrder"; + + /// + /// Represents the b:Reporter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Reporter. + /// + /// + public static readonly XName Reporter = b + "Reporter"; + + /// + /// Represents the b:ShortTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ShortTitle. + /// + /// + public static readonly XName ShortTitle = b + "ShortTitle"; + + /// + /// Represents the b:Source XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Source. + /// + /// + public static readonly XName Source = b + "Source"; + + /// + /// Represents the b:Sources XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Sources. + /// + /// + public static readonly XName Sources = b + "Sources"; + + /// + /// Represents the b:SourceType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SourceType. + /// + /// + public static readonly XName SourceType = b + "SourceType"; + + /// + /// Represents the b:StandardNumber XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: StandardNumber. + /// + /// + public static readonly XName StandardNumber = b + "StandardNumber"; + + /// + /// Represents the b:StateProvince XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: StateProvince. + /// + /// + public static readonly XName StateProvince = b + "StateProvince"; + + /// + /// Represents the b:Station XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Station. + /// + /// + public static readonly XName Station = b + "Station"; + + /// + /// Represents the b:Tag XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Tag. + /// + /// + public static readonly XName Tag = b + "Tag"; + + /// + /// Represents the b:Theater XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Theater. + /// + /// + public static readonly XName Theater = b + "Theater"; + + /// + /// Represents the b:ThesisType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ThesisType. + /// + /// + public static readonly XName ThesisType = b + "ThesisType"; + + /// + /// Represents the b:Title XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Title. + /// + /// + public static readonly XName Title = b + "Title"; + + /// + /// Represents the b:Translator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Translator. + /// + /// + public static readonly XName Translator = b + "Translator"; + + /// + /// Represents the b:Type XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PatentType. + /// + /// + public static readonly XName Type = b + "Type"; + + /// + /// Represents the b:URL XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: UrlString. + /// + /// + public static readonly XName URL = b + "URL"; + + /// + /// Represents the b:Version XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Version. + /// + /// + public static readonly XName Version = b + "Version"; + + /// + /// Represents the b:Volume XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Volume. + /// + /// + public static readonly XName Volume = b + "Volume"; + + /// + /// Represents the b:Writer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Writer. + /// + /// + public static readonly XName Writer = b + "Writer"; + + /// + /// Represents the b:Year XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Year. + /// + /// + public static readonly XName Year = b + "Year"; + + /// + /// Represents the b:YearAccessed XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: YearAccessed. + /// + /// + public static readonly XName YearAccessed = b + "YearAccessed"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C.g.cs new file mode 100644 index 000000000..799aebde7 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C.g.cs @@ -0,0 +1,2890 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" namespace. + /// + public static class C + { + /// + /// Defines the XML namespace associated with the c prefix. + /// + public static readonly XNamespace c = "http://schemas.openxmlformats.org/drawingml/2006/chart"; + + /// + /// Represents the c:applyToEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ApplyToEnd. + /// + /// + public static readonly XName applyToEnd = c + "applyToEnd"; + + /// + /// Represents the c:applyToFront XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ApplyToFront. + /// + /// + public static readonly XName applyToFront = c + "applyToFront"; + + /// + /// Represents the c:applyToSides XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ApplyToSides. + /// + /// + public static readonly XName applyToSides = c + "applyToSides"; + + /// + /// Represents the c:area3DChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Area3DChart. + /// + /// + public static readonly XName area3DChart = c + "area3DChart"; + + /// + /// Represents the c:areaChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: AreaChart. + /// + /// + public static readonly XName areaChart = c + "areaChart"; + + /// + /// Represents the c:auto XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoLabeled. + /// + /// + public static readonly XName auto = c + "auto"; + + /// + /// Represents the c:autoTitleDeleted XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoTitleDeleted. + /// + /// + public static readonly XName autoTitleDeleted = c + "autoTitleDeleted"; + + /// + /// Represents the c:autoUpdate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoUpdate. + /// + /// + public static readonly XName autoUpdate = c + "autoUpdate"; + + /// + /// Represents the c:axId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AxisId. + /// + /// + public static readonly XName axId = c + "axId"; + + /// + /// Represents the c:axPos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AxisPosition. + /// + /// + public static readonly XName axPos = c + "axPos"; + + /// + /// Represents the c:backWall XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: BackWall. + /// + /// + public static readonly XName backWall = c + "backWall"; + + /// + /// Represents the c:backward XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Backward. + /// + /// + public static readonly XName backward = c + "backward"; + + /// + /// Represents the c:bandFmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: BandFormat. + /// + /// + public static readonly XName bandFmt = c + "bandFmt"; + + /// + /// Represents the c:bandFmts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: BandFormats. + /// + /// + public static readonly XName bandFmts = c + "bandFmts"; + + /// + /// Represents the c:bar3DChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Bar3DChart. + /// + /// + public static readonly XName bar3DChart = c + "bar3DChart"; + + /// + /// Represents the c:barChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BarChart. + /// + /// + public static readonly XName barChart = c + "barChart"; + + /// + /// Represents the c:barDir XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BarDirection. + /// + /// + public static readonly XName barDir = c + "barDir"; + + /// + /// Represents the c:baseTimeUnit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BaseTimeUnit. + /// + /// + public static readonly XName baseTimeUnit = c + "baseTimeUnit"; + + /// + /// Represents the c:bubble3D XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Bubble3D. + /// + /// + public static readonly XName bubble3D = c + "bubble3D"; + + /// + /// Represents the c:bubbleChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: BubbleChart. + /// + /// + public static readonly XName bubbleChart = c + "bubbleChart"; + + /// + /// Represents the c:bubbleScale XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BubbleScale. + /// + /// + public static readonly XName bubbleScale = c + "bubbleScale"; + + /// + /// Represents the c:bubbleSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: BubbleSize. + /// + /// + public static readonly XName bubbleSize = c + "bubbleSize"; + + /// + /// Represents the c:builtInUnit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BuiltInUnit. + /// + /// + public static readonly XName builtInUnit = c + "builtInUnit"; + + /// + /// Represents the c:cat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: CategoryAxisData. + /// + /// + public static readonly XName cat = c + "cat"; + + /// + /// Represents the c:catAx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CategoryAxis. + /// + /// + public static readonly XName catAx = c + "catAx"; + + /// + /// Represents the c:chart XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Chart, ChartReference. + /// + /// + public static readonly XName chart = c + "chart"; + + /// + /// Represents the c:chartObject XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ChartObject. + /// + /// + public static readonly XName chartObject = c + "chartObject"; + + /// + /// Represents the c:chartSpace XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ChartSpace. + /// + /// + public static readonly XName chartSpace = c + "chartSpace"; + + /// + /// Represents the c:clrMapOvr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ColorMapOverride. + /// + /// + public static readonly XName clrMapOvr = c + "clrMapOvr"; + + /// + /// Represents the c:crossAx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CrossingAxis. + /// + /// + public static readonly XName crossAx = c + "crossAx"; + + /// + /// Represents the c:crossBetween XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CrossBetween. + /// + /// + public static readonly XName crossBetween = c + "crossBetween"; + + /// + /// Represents the c:crosses XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Crosses. + /// + /// + public static readonly XName crosses = c + "crosses"; + + /// + /// Represents the c:crossesAt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CrossesAt. + /// + /// + public static readonly XName crossesAt = c + "crossesAt"; + + /// + /// Represents the c:custSplit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CustomSplit. + /// + /// + public static readonly XName custSplit = c + "custSplit"; + + /// + /// Represents the c:custUnit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomDisplayUnit. + /// + /// + public static readonly XName custUnit = c + "custUnit"; + + /// + /// Represents the c:data XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Data. + /// + /// + public static readonly XName data = c + "data"; + + /// + /// Represents the c:date1904 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Date1904. + /// + /// + public static readonly XName date1904 = c + "date1904"; + + /// + /// Represents the c:dateAx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DateAxis. + /// + /// + public static readonly XName dateAx = c + "dateAx"; + + /// + /// Represents the c:delete XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Delete. + /// + /// + public static readonly XName delete = c + "delete"; + + /// + /// Represents the c:depthPercent XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DepthPercent. + /// + /// + public static readonly XName depthPercent = c + "depthPercent"; + + /// + /// Represents the c:dispBlanksAs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DisplayBlanksAs. + /// + /// + public static readonly XName dispBlanksAs = c + "dispBlanksAs"; + + /// + /// Represents the c:dispEq XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DisplayEquation. + /// + /// + public static readonly XName dispEq = c + "dispEq"; + + /// + /// Represents the c:dispRSqr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DisplayRSquaredValue. + /// + /// + public static readonly XName dispRSqr = c + "dispRSqr"; + + /// + /// Represents the c:dispUnits XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: DisplayUnits. + /// + /// + public static readonly XName dispUnits = c + "dispUnits"; + + /// + /// Represents the c:dispUnitsLbl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: DisplayUnitsLabel. + /// + /// + public static readonly XName dispUnitsLbl = c + "dispUnitsLbl"; + + /// + /// Represents the c:dLbl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DataLabel. + /// + /// + public static readonly XName dLbl = c + "dLbl"; + + /// + /// Represents the c:dLblPos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataLabelPosition. + /// + /// + public static readonly XName dLblPos = c + "dLblPos"; + + /// + /// Represents the c:dLbls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DataLabels. + /// + /// + public static readonly XName dLbls = c + "dLbls"; + + /// + /// Represents the c:doughnutChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: DoughnutChart. + /// + /// + public static readonly XName doughnutChart = c + "doughnutChart"; + + /// + /// Represents the c:downBars XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DownBars. + /// + /// + public static readonly XName downBars = c + "downBars"; + + /// + /// Represents the c:dPt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: DataPoint. + /// + /// + public static readonly XName dPt = c + "dPt"; + + /// + /// Represents the c:dropLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DropLines. + /// + /// + public static readonly XName dropLines = c + "dropLines"; + + /// + /// Represents the c:dTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: DataTable. + /// + /// + public static readonly XName dTable = c + "dTable"; + + /// + /// Represents the c:errBars XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: ErrorBars. + /// + /// + public static readonly XName errBars = c + "errBars"; + + /// + /// Represents the c:errBarType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ErrorBarType. + /// + /// + public static readonly XName errBarType = c + "errBarType"; + + /// + /// Represents the c:errDir XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ErrorDirection. + /// + /// + public static readonly XName errDir = c + "errDir"; + + /// + /// Represents the c:errValType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ErrorBarValueType. + /// + /// + public static readonly XName errValType = c + "errValType"; + + /// + /// Represents the c:evenFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EvenFooter. + /// + /// + public static readonly XName evenFooter = c + "evenFooter"; + + /// + /// Represents the c:evenHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EvenHeader. + /// + /// + public static readonly XName evenHeader = c + "evenHeader"; + + /// + /// Represents the c:explosion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Explosion. + /// + /// + public static readonly XName explosion = c + "explosion"; + + /// + /// Represents the c:ext XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Area3DChartExtension, AreaChartExtension, AreaSerExtension, Bar3DChartExtension, BarChartExtension, BarSerExtension, BubbleChartExtension, BubbleSerExtension, CatAxExtension, ChartSpaceExtension, DataDisplayOptions16, DateAxExtension, DLblExtension, DLblsExtension, Extension, Line3DChartExtension, LineChartExtension, LineSerExtension, MultiLvlStrRefExtension, NumRefExtension, Pie3DChartExtension, PieChartExtension, PieSerExtension, RadarChartExtension, RadarSerExtension, ScatterChartExtension, ScatterSerExtension, SerAxExtension, StockChartExtension, StrDataExtension, StrRefExtension, Surface3DChartExtension, SurfaceChartExtension, SurfaceSerExtension, ValAxExtension. + /// + /// + public static readonly XName ext = c + "ext"; + + /// + /// Represents the c:externalData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ExternalData. + /// + /// + public static readonly XName externalData = c + "externalData"; + + /// + /// Represents the c:extLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Area3DChartExtensionList, AreaChartExtensionList, AreaSerExtensionList, Bar3DChartExtensionList, BarChartExtensionList, BarSerExtensionList, BubbleChartExtensionList, BubbleSerExtensionList, CatAxExtensionList, ChartExtensionList, ChartSpaceExtensionList, DateAxExtensionList, DLblExtensionList, DLblsExtensionList, ExtensionList, Line3DChartExtensionList, LineChartExtensionList, LineSerExtensionList, MultiLvlStrRefExtensionList, NumRefExtensionList, Pie3DChartExtensionList, PieChartExtensionList, PieSerExtensionList, RadarChartExtensionList, RadarSerExtensionList, ScatterChartExtensionList, ScatterSerExtensionList, SerAxExtensionList, StockChartExtensionList, StrDataExtensionList, StrRefExtensionList, Surface3DChartExtensionList, SurfaceChartExtensionList, SurfaceSerExtensionList, ValAxExtensionList. + /// + /// + public static readonly XName extLst = c + "extLst"; + + /// + /// Represents the c:f XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: Formula. + /// + /// + public static readonly XName f = c + "f"; + + /// + /// Represents the c:firstFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FirstFooter. + /// + /// + public static readonly XName firstFooter = c + "firstFooter"; + + /// + /// Represents the c:firstHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FirstHeader. + /// + /// + public static readonly XName firstHeader = c + "firstHeader"; + + /// + /// Represents the c:firstSliceAng XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FirstSliceAngle. + /// + /// + public static readonly XName firstSliceAng = c + "firstSliceAng"; + + /// + /// Represents the c:floor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Floor. + /// + /// + public static readonly XName floor = c + "floor"; + + /// + /// Represents the c:fmtId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FormatId. + /// + /// + public static readonly XName fmtId = c + "fmtId"; + + /// + /// Represents the c:formatCode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: FormatCode. + /// + /// + public static readonly XName formatCode = c + "formatCode"; + + /// + /// Represents the c:formatting XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Formatting. + /// + /// + public static readonly XName formatting = c + "formatting"; + + /// + /// Represents the c:forward XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Forward. + /// + /// + public static readonly XName forward = c + "forward"; + + /// + /// Represents the c:gapDepth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GapDepth. + /// + /// + public static readonly XName gapDepth = c + "gapDepth"; + + /// + /// Represents the c:gapWidth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GapWidth. + /// + /// + public static readonly XName gapWidth = c + "gapWidth"; + + /// + /// Represents the c:grouping XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BarGrouping, Grouping. + /// + /// + public static readonly XName grouping = c + "grouping"; + + /// + /// Represents the c:h XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Height. + /// + /// + public static readonly XName h = c + "h"; + + /// + /// Represents the c:headerFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: HeaderFooter. + /// + /// + public static readonly XName headerFooter = c + "headerFooter"; + + /// + /// Represents the c:hiLowLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: HighLowLines. + /// + /// + public static readonly XName hiLowLines = c + "hiLowLines"; + + /// + /// Represents the c:hMode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HeightMode. + /// + /// + public static readonly XName hMode = c + "hMode"; + + /// + /// Represents the c:holeSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HoleSize. + /// + /// + public static readonly XName holeSize = c + "holeSize"; + + /// + /// Represents the c:hPercent XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HeightPercent. + /// + /// + public static readonly XName hPercent = c + "hPercent"; + + /// + /// Represents the c:idx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Index. + /// + /// + public static readonly XName idx = c + "idx"; + + /// + /// Represents the c:intercept XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Intercept. + /// + /// + public static readonly XName intercept = c + "intercept"; + + /// + /// Represents the c:invertIfNegative XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: InvertIfNegative. + /// + /// + public static readonly XName invertIfNegative = c + "invertIfNegative"; + + /// + /// Represents the c:lang XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EditingLanguage. + /// + /// + public static readonly XName lang = c + "lang"; + + /// + /// Represents the c:layout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Layout. + /// + /// + public static readonly XName layout = c + "layout"; + + /// + /// Represents the c:layoutTarget XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LayoutTarget. + /// + /// + public static readonly XName layoutTarget = c + "layoutTarget"; + + /// + /// Represents the c:lblAlgn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LabelAlignment. + /// + /// + public static readonly XName lblAlgn = c + "lblAlgn"; + + /// + /// Represents the c:lblOffset XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LabelOffset. + /// + /// + public static readonly XName lblOffset = c + "lblOffset"; + + /// + /// Represents the c:leaderLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LeaderLines. + /// + /// + public static readonly XName leaderLines = c + "leaderLines"; + + /// + /// Represents the c:legacyDrawingHF XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LegacyDrawingHeaderFooter. + /// + /// + public static readonly XName legacyDrawingHF = c + "legacyDrawingHF"; + + /// + /// Represents the c:legend XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: Legend. + /// + /// + public static readonly XName legend = c + "legend"; + + /// + /// Represents the c:legendEntry XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: LegendEntry. + /// + /// + public static readonly XName legendEntry = c + "legendEntry"; + + /// + /// Represents the c:legendPos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LegendPosition. + /// + /// + public static readonly XName legendPos = c + "legendPos"; + + /// + /// Represents the c:line3DChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Line3DChart. + /// + /// + public static readonly XName line3DChart = c + "line3DChart"; + + /// + /// Represents the c:lineChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: LineChart. + /// + /// + public static readonly XName lineChart = c + "lineChart"; + + /// + /// Represents the c:logBase XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LogBase. + /// + /// + public static readonly XName logBase = c + "logBase"; + + /// + /// Represents the c:lvl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Level. + /// + /// + public static readonly XName lvl = c + "lvl"; + + /// + /// Represents the c:majorGridlines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MajorGridlines. + /// + /// + public static readonly XName majorGridlines = c + "majorGridlines"; + + /// + /// Represents the c:majorTickMark XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MajorTickMark. + /// + /// + public static readonly XName majorTickMark = c + "majorTickMark"; + + /// + /// Represents the c:majorTimeUnit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MajorTimeUnit. + /// + /// + public static readonly XName majorTimeUnit = c + "majorTimeUnit"; + + /// + /// Represents the c:majorUnit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MajorUnit. + /// + /// + public static readonly XName majorUnit = c + "majorUnit"; + + /// + /// Represents the c:manualLayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ManualLayout. + /// + /// + public static readonly XName manualLayout = c + "manualLayout"; + + /// + /// Represents the c:marker XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Marker, ShowMarker. + /// + /// + public static readonly XName marker = c + "marker"; + + /// + /// Represents the c:max XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MaxAxisValue. + /// + /// + public static readonly XName max = c + "max"; + + /// + /// Represents the c:min XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MinAxisValue. + /// + /// + public static readonly XName min = c + "min"; + + /// + /// Represents the c:minorGridlines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MinorGridlines. + /// + /// + public static readonly XName minorGridlines = c + "minorGridlines"; + + /// + /// Represents the c:minorTickMark XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MinorTickMark. + /// + /// + public static readonly XName minorTickMark = c + "minorTickMark"; + + /// + /// Represents the c:minorTimeUnit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MinorTimeUnit. + /// + /// + public static readonly XName minorTimeUnit = c + "minorTimeUnit"; + + /// + /// Represents the c:minorUnit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MinorUnit. + /// + /// + public static readonly XName minorUnit = c + "minorUnit"; + + /// + /// Represents the c:minus XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Minus. + /// + /// + public static readonly XName minus = c + "minus"; + + /// + /// Represents the c:multiLvlStrCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: MultiLevelStringCache. + /// + /// + public static readonly XName multiLvlStrCache = c + "multiLvlStrCache"; + + /// + /// Represents the c:multiLvlStrRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: MultiLevelStringReference. + /// + /// + public static readonly XName multiLvlStrRef = c + "multiLvlStrRef"; + + /// + /// Represents the c:name XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: PivotTableName, TrendlineName. + /// + /// + public static readonly XName name = c + "name"; + + /// + /// Represents the c:noEndCap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoEndCap. + /// + /// + public static readonly XName noEndCap = c + "noEndCap"; + + /// + /// Represents the c:noMultiLvlLbl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoMultiLevelLabels. + /// + /// + public static readonly XName noMultiLvlLbl = c + "noMultiLvlLbl"; + + /// + /// Represents the c:numCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: NumberingCache. + /// + /// + public static readonly XName numCache = c + "numCache"; + + /// + /// Represents the c:numFmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NumberingFormat. + /// + /// + public static readonly XName numFmt = c + "numFmt"; + + /// + /// Represents the c:numLit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: NumberLiteral. + /// + /// + public static readonly XName numLit = c + "numLit"; + + /// + /// Represents the c:numRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: NumberReference. + /// + /// + public static readonly XName numRef = c + "numRef"; + + /// + /// Represents the c:oddFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: OddFooter. + /// + /// + public static readonly XName oddFooter = c + "oddFooter"; + + /// + /// Represents the c:oddHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: OddHeader. + /// + /// + public static readonly XName oddHeader = c + "oddHeader"; + + /// + /// Represents the c:ofPieChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: OfPieChart. + /// + /// + public static readonly XName ofPieChart = c + "ofPieChart"; + + /// + /// Represents the c:ofPieType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OfPieType. + /// + /// + public static readonly XName ofPieType = c + "ofPieType"; + + /// + /// Represents the c:order XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Order, PolynomialOrder. + /// + /// + public static readonly XName order = c + "order"; + + /// + /// Represents the c:orientation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Orientation. + /// + /// + public static readonly XName orientation = c + "orientation"; + + /// + /// Represents the c:overlap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Overlap. + /// + /// + public static readonly XName overlap = c + "overlap"; + + /// + /// Represents the c:overlay XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Overlay. + /// + /// + public static readonly XName overlay = c + "overlay"; + + /// + /// Represents the c:pageMargins XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: PageMargins. + /// + /// + public static readonly XName pageMargins = c + "pageMargins"; + + /// + /// Represents the c:pageSetup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: PageSetup. + /// + /// + public static readonly XName pageSetup = c + "pageSetup"; + + /// + /// Represents the c:period XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Period. + /// + /// + public static readonly XName period = c + "period"; + + /// + /// Represents the c:perspective XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Perspective. + /// + /// + public static readonly XName perspective = c + "perspective"; + + /// + /// Represents the c:pictureFormat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PictureFormat. + /// + /// + public static readonly XName pictureFormat = c + "pictureFormat"; + + /// + /// Represents the c:pictureOptions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: PictureOptions. + /// + /// + public static readonly XName pictureOptions = c + "pictureOptions"; + + /// + /// Represents the c:pictureStackUnit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PictureStackUnit. + /// + /// + public static readonly XName pictureStackUnit = c + "pictureStackUnit"; + + /// + /// Represents the c:pie3DChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Pie3DChart. + /// + /// + public static readonly XName pie3DChart = c + "pie3DChart"; + + /// + /// Represents the c:pieChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: PieChart. + /// + /// + public static readonly XName pieChart = c + "pieChart"; + + /// + /// Represents the c:pivotFmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: PivotFormat. + /// + /// + public static readonly XName pivotFmt = c + "pivotFmt"; + + /// + /// Represents the c:pivotFmts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PivotFormats. + /// + /// + public static readonly XName pivotFmts = c + "pivotFmts"; + + /// + /// Represents the c:pivotSource XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: PivotSource. + /// + /// + public static readonly XName pivotSource = c + "pivotSource"; + + /// + /// Represents the c:plotArea XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PlotArea. + /// + /// + public static readonly XName plotArea = c + "plotArea"; + + /// + /// Represents the c:plotVisOnly XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PlotVisibleOnly. + /// + /// + public static readonly XName plotVisOnly = c + "plotVisOnly"; + + /// + /// Represents the c:plus XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Plus. + /// + /// + public static readonly XName plus = c + "plus"; + + /// + /// Represents the c:printSettings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: PrintSettings. + /// + /// + public static readonly XName printSettings = c + "printSettings"; + + /// + /// Represents the c:protection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Protection. + /// + /// + public static readonly XName protection = c + "protection"; + + /// + /// Represents the c:pt XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NumericPoint, StringPoint. + /// + /// + public static readonly XName pt = c + "pt"; + + /// + /// Represents the c:ptCount XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PointCount. + /// + /// + public static readonly XName ptCount = c + "ptCount"; + + /// + /// Represents the c:radarChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: RadarChart. + /// + /// + public static readonly XName radarChart = c + "radarChart"; + + /// + /// Represents the c:radarStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RadarStyle. + /// + /// + public static readonly XName radarStyle = c + "radarStyle"; + + /// + /// Represents the c:rAngAx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RightAngleAxes. + /// + /// + public static readonly XName rAngAx = c + "rAngAx"; + + /// + /// Represents the c:rich XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: RichText. + /// + /// + public static readonly XName rich = c + "rich"; + + /// + /// Represents the c:rotX XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RotateX. + /// + /// + public static readonly XName rotX = c + "rotX"; + + /// + /// Represents the c:rotY XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RotateY. + /// + /// + public static readonly XName rotY = c + "rotY"; + + /// + /// Represents the c:roundedCorners XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RoundedCorners. + /// + /// + public static readonly XName roundedCorners = c + "roundedCorners"; + + /// + /// Represents the c:scaling XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Scaling. + /// + /// + public static readonly XName scaling = c + "scaling"; + + /// + /// Represents the c:scatterChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ScatterChart. + /// + /// + public static readonly XName scatterChart = c + "scatterChart"; + + /// + /// Represents the c:scatterStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ScatterStyle. + /// + /// + public static readonly XName scatterStyle = c + "scatterStyle"; + + /// + /// Represents the c:secondPiePt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SecondPiePoint. + /// + /// + public static readonly XName secondPiePt = c + "secondPiePt"; + + /// + /// Represents the c:secondPieSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SecondPieSize. + /// + /// + public static readonly XName secondPieSize = c + "secondPieSize"; + + /// + /// Represents the c:selection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Selection. + /// + /// + public static readonly XName selection = c + "selection"; + + /// + /// Represents the c:separator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: Separator. + /// + /// + public static readonly XName separator = c + "separator"; + + /// + /// Represents the c:ser XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: AreaChartSeries, BarChartSeries, BubbleChartSeries, LineChartSeries, PieChartSeries, RadarChartSeries, ScatterChartSeries, SurfaceChartSeries. + /// + /// + public static readonly XName ser = c + "ser"; + + /// + /// Represents the c:serAx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SeriesAxis. + /// + /// + public static readonly XName serAx = c + "serAx"; + + /// + /// Represents the c:serLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SeriesLines. + /// + /// + public static readonly XName serLines = c + "serLines"; + + /// + /// Represents the c:shape XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName shape = c + "shape"; + + /// + /// Represents the c:showBubbleSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowBubbleSize. + /// + /// + public static readonly XName showBubbleSize = c + "showBubbleSize"; + + /// + /// Represents the c:showCatName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowCategoryName. + /// + /// + public static readonly XName showCatName = c + "showCatName"; + + /// + /// Represents the c:showDLblsOverMax XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowDataLabelsOverMaximum. + /// + /// + public static readonly XName showDLblsOverMax = c + "showDLblsOverMax"; + + /// + /// Represents the c:showHorzBorder XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowHorizontalBorder. + /// + /// + public static readonly XName showHorzBorder = c + "showHorzBorder"; + + /// + /// Represents the c:showKeys XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowKeys. + /// + /// + public static readonly XName showKeys = c + "showKeys"; + + /// + /// Represents the c:showLeaderLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowLeaderLines. + /// + /// + public static readonly XName showLeaderLines = c + "showLeaderLines"; + + /// + /// Represents the c:showLegendKey XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowLegendKey. + /// + /// + public static readonly XName showLegendKey = c + "showLegendKey"; + + /// + /// Represents the c:showNegBubbles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowNegativeBubbles. + /// + /// + public static readonly XName showNegBubbles = c + "showNegBubbles"; + + /// + /// Represents the c:showOutline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowOutlineBorder. + /// + /// + public static readonly XName showOutline = c + "showOutline"; + + /// + /// Represents the c:showPercent XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowPercent. + /// + /// + public static readonly XName showPercent = c + "showPercent"; + + /// + /// Represents the c:showSerName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowSeriesName. + /// + /// + public static readonly XName showSerName = c + "showSerName"; + + /// + /// Represents the c:showVal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowValue. + /// + /// + public static readonly XName showVal = c + "showVal"; + + /// + /// Represents the c:showVertBorder XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowVerticalBorder. + /// + /// + public static readonly XName showVertBorder = c + "showVertBorder"; + + /// + /// Represents the c:sideWall XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: SideWall. + /// + /// + public static readonly XName sideWall = c + "sideWall"; + + /// + /// Represents the c:size XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Size. + /// + /// + public static readonly XName size = c + "size"; + + /// + /// Represents the c:sizeRepresents XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SizeRepresents. + /// + /// + public static readonly XName sizeRepresents = c + "sizeRepresents"; + + /// + /// Represents the c:smooth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Smooth. + /// + /// + public static readonly XName smooth = c + "smooth"; + + /// + /// Represents the c:splitPos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SplitPosition. + /// + /// + public static readonly XName splitPos = c + "splitPos"; + + /// + /// Represents the c:splitType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SplitType. + /// + /// + public static readonly XName splitType = c + "splitType"; + + /// + /// Represents the c:spPr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ChartShapeProperties, ShapeProperties. + /// + /// + public static readonly XName spPr = c + "spPr"; + + /// + /// Represents the c:stockChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: StockChart. + /// + /// + public static readonly XName stockChart = c + "stockChart"; + + /// + /// Represents the c:strCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: StringCache. + /// + /// + public static readonly XName strCache = c + "strCache"; + + /// + /// Represents the c:strLit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: StringLiteral. + /// + /// + public static readonly XName strLit = c + "strLit"; + + /// + /// Represents the c:strRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: StringReference. + /// + /// + public static readonly XName strRef = c + "strRef"; + + /// + /// Represents the c:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Style. + /// + /// + public static readonly XName style = c + "style"; + + /// + /// Represents the c:surface3DChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: Surface3DChart. + /// + /// + public static readonly XName surface3DChart = c + "surface3DChart"; + + /// + /// Represents the c:surfaceChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: SurfaceChart. + /// + /// + public static readonly XName surfaceChart = c + "surfaceChart"; + + /// + /// Represents the c:symbol XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Symbol. + /// + /// + public static readonly XName symbol = c + "symbol"; + + /// + /// Represents the c:thickness XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Thickness. + /// + /// + public static readonly XName thickness = c + "thickness"; + + /// + /// Represents the c:tickLblPos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TickLabelPosition. + /// + /// + public static readonly XName tickLblPos = c + "tickLblPos"; + + /// + /// Represents the c:tickLblSkip XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TickLabelSkip. + /// + /// + public static readonly XName tickLblSkip = c + "tickLblSkip"; + + /// + /// Represents the c:tickMarkSkip XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TickMarkSkip. + /// + /// + public static readonly XName tickMarkSkip = c + "tickMarkSkip"; + + /// + /// Represents the c:title XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: Title. + /// + /// + public static readonly XName title = c + "title"; + + /// + /// Represents the c:trendline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Trendline. + /// + /// + public static readonly XName trendline = c + "trendline"; + + /// + /// Represents the c:trendlineLbl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: TrendlineLabel. + /// + /// + public static readonly XName trendlineLbl = c + "trendlineLbl"; + + /// + /// Represents the c:trendlineType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TrendlineType. + /// + /// + public static readonly XName trendlineType = c + "trendlineType"; + + /// + /// Represents the c:tx XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ChartText, SeriesText. + /// + /// + public static readonly XName tx = c + "tx"; + + /// + /// Represents the c:txPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: TextProperties. + /// + /// + public static readonly XName txPr = c + "txPr"; + + /// + /// Represents the c:upBars XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: UpBars. + /// + /// + public static readonly XName upBars = c + "upBars"; + + /// + /// Represents the c:upDownBars XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: UpDownBars. + /// + /// + public static readonly XName upDownBars = c + "upDownBars"; + + /// + /// Represents the c:userInterface XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UserInterface. + /// + /// + public static readonly XName userInterface = c + "userInterface"; + + /// + /// Represents the c:userShapes XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UserShapes, UserShapesReference. + /// + /// + public static readonly XName userShapes = c + "userShapes"; + + /// + /// Represents the c:v XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: NumericValue. + /// + /// + public static readonly XName v = c + "v"; + + /// + /// Represents the c:val XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ErrorBarValue, Values. + /// + /// + public static readonly XName val = c + "val"; + + /// + /// Represents the c:valAx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ValueAxis. + /// + /// + public static readonly XName valAx = c + "valAx"; + + /// + /// Represents the c:varyColors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VaryColors. + /// + /// + public static readonly XName varyColors = c + "varyColors"; + + /// + /// Represents the c:view3D XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: View3D. + /// + /// + public static readonly XName view3D = c + "view3D"; + + /// + /// Represents the c:w XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Width. + /// + /// + public static readonly XName w = c + "w"; + + /// + /// Represents the c:wireframe XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Wireframe. + /// + /// + public static readonly XName wireframe = c + "wireframe"; + + /// + /// Represents the c:wMode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WidthMode. + /// + /// + public static readonly XName wMode = c + "wMode"; + + /// + /// Represents the c:x XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Left. + /// + /// + public static readonly XName x = c + "x"; + + /// + /// Represents the c:xMode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LeftMode. + /// + /// + public static readonly XName xMode = c + "xMode"; + + /// + /// Represents the c:xVal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: XValues. + /// + /// + public static readonly XName xVal = c + "xVal"; + + /// + /// Represents the c:y XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Top. + /// + /// + public static readonly XName y = c + "y"; + + /// + /// Represents the c:yMode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TopMode. + /// + /// + public static readonly XName yMode = c + "yMode"; + + /// + /// Represents the c:yVal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: YValues. + /// + /// + public static readonly XName yVal = c + "yVal"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C14.g.cs new file mode 100644 index 000000000..3bdaa01bc --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C14.g.cs @@ -0,0 +1,175 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:c14="http://schemas.microsoft.com/office/drawing/2007/8/2/chart" namespace. + /// + public static class C14 + { + /// + /// Defines the XML namespace associated with the c14 prefix. + /// + public static readonly XNamespace c14 = "http://schemas.microsoft.com/office/drawing/2007/8/2/chart"; + + /// + /// Represents the c14:dropZoneCategories XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DropZoneCategories. + /// + /// + public static readonly XName dropZoneCategories = c14 + "dropZoneCategories"; + + /// + /// Represents the c14:dropZoneData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DropZoneData. + /// + /// + public static readonly XName dropZoneData = c14 + "dropZoneData"; + + /// + /// Represents the c14:dropZoneFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DropZoneFilter. + /// + /// + public static readonly XName dropZoneFilter = c14 + "dropZoneFilter"; + + /// + /// Represents the c14:dropZoneSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DropZoneSeries. + /// + /// + public static readonly XName dropZoneSeries = c14 + "dropZoneSeries"; + + /// + /// Represents the c14:dropZonesVisible XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DropZonesVisible. + /// + /// + public static readonly XName dropZonesVisible = c14 + "dropZonesVisible"; + + /// + /// Represents the c14:inSketchMode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: InSketchMode. + /// + /// + public static readonly XName inSketchMode = c14 + "inSketchMode"; + + /// + /// Represents the c14:invertSolidFillFmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: InvertSolidFillFormat. + /// + /// + public static readonly XName invertSolidFillFmt = c14 + "invertSolidFillFmt"; + + /// + /// Represents the c14:pivotOptions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: PivotOptions. + /// + /// + public static readonly XName pivotOptions = c14 + "pivotOptions"; + + /// + /// Represents the c14:showSketchBtn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowSketchButton. + /// + /// + public static readonly XName showSketchBtn = c14 + "showSketchBtn"; + + /// + /// Represents the c14:sketchOptions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SketchOptions. + /// + /// + public static readonly XName sketchOptions = c14 + "sketchOptions"; + + /// + /// Represents the c14:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = c14 + "spPr"; + + /// + /// Represents the c14:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Style. + /// + /// + public static readonly XName style = c14 + "style"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C15.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C15.g.cs new file mode 100644 index 000000000..0f317c9ef --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C15.g.cs @@ -0,0 +1,536 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:c15="http://schemas.microsoft.com/office/drawing/2012/chart" namespace. + /// + public static class C15 + { + /// + /// Defines the XML namespace associated with the c15 prefix. + /// + public static readonly XNamespace c15 = "http://schemas.microsoft.com/office/drawing/2012/chart"; + + /// + /// Represents the c15:autoCat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoGeneneratedCategories. + /// + /// + public static readonly XName autoCat = c15 + "autoCat"; + + /// + /// Represents the c15:bubble3D XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Bubble3D. + /// + /// + public static readonly XName bubble3D = c15 + "bubble3D"; + + /// + /// Represents the c15:cat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: AxisDataSourceType. + /// + /// + public static readonly XName cat = c15 + "cat"; + + /// + /// Represents the c15:categoryFilterException XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: CategoryFilterException. + /// + /// + public static readonly XName categoryFilterException = c15 + "categoryFilterException"; + + /// + /// Represents the c15:categoryFilterExceptions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CategoryFilterExceptions. + /// + /// + public static readonly XName categoryFilterExceptions = c15 + "categoryFilterExceptions"; + + /// + /// Represents the c15:datalabelsRange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: DataLabelsRange. + /// + /// + public static readonly XName datalabelsRange = c15 + "datalabelsRange"; + + /// + /// Represents the c15:dLbl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DataLabel. + /// + /// + public static readonly XName dLbl = c15 + "dLbl"; + + /// + /// Represents the c15:dlblFieldTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DataLabelFieldTable. + /// + /// + public static readonly XName dlblFieldTable = c15 + "dlblFieldTable"; + + /// + /// Represents the c15:dlblFieldTableCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: DataLabelFieldTableCache. + /// + /// + public static readonly XName dlblFieldTableCache = c15 + "dlblFieldTableCache"; + + /// + /// Represents the c15:dlblFTEntry XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: DataLabelFieldTableEntry. + /// + /// + public static readonly XName dlblFTEntry = c15 + "dlblFTEntry"; + + /// + /// Represents the c15:dlblRangeCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: DataLabelsRangeChache. + /// + /// + public static readonly XName dlblRangeCache = c15 + "dlblRangeCache"; + + /// + /// Represents the c15:explosion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Explosion. + /// + /// + public static readonly XName explosion = c15 + "explosion"; + + /// + /// Represents the c15:f XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: Formula. + /// + /// + public static readonly XName f = c15 + "f"; + + /// + /// Represents the c15:filteredAreaSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredAreaSeries. + /// + /// + public static readonly XName filteredAreaSeries = c15 + "filteredAreaSeries"; + + /// + /// Represents the c15:filteredBarSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredBarSeries. + /// + /// + public static readonly XName filteredBarSeries = c15 + "filteredBarSeries"; + + /// + /// Represents the c15:filteredBubbleSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredBubbleSeries. + /// + /// + public static readonly XName filteredBubbleSeries = c15 + "filteredBubbleSeries"; + + /// + /// Represents the c15:filteredCategoryTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredCategoryTitle. + /// + /// + public static readonly XName filteredCategoryTitle = c15 + "filteredCategoryTitle"; + + /// + /// Represents the c15:filteredLineSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredLineSeriesExtension. + /// + /// + public static readonly XName filteredLineSeries = c15 + "filteredLineSeries"; + + /// + /// Represents the c15:filteredPieSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredPieSeries. + /// + /// + public static readonly XName filteredPieSeries = c15 + "filteredPieSeries"; + + /// + /// Represents the c15:filteredRadarSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredRadarSeries. + /// + /// + public static readonly XName filteredRadarSeries = c15 + "filteredRadarSeries"; + + /// + /// Represents the c15:filteredScatterSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredScatterSeries. + /// + /// + public static readonly XName filteredScatterSeries = c15 + "filteredScatterSeries"; + + /// + /// Represents the c15:filteredSeriesTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredSeriesTitle. + /// + /// + public static readonly XName filteredSeriesTitle = c15 + "filteredSeriesTitle"; + + /// + /// Represents the c15:filteredSurfaceSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FilteredSurfaceSeries. + /// + /// + public static readonly XName filteredSurfaceSeries = c15 + "filteredSurfaceSeries"; + + /// + /// Represents the c15:formulaRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FormulaReference. + /// + /// + public static readonly XName formulaRef = c15 + "formulaRef"; + + /// + /// Represents the c15:fullRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FullReference. + /// + /// + public static readonly XName fullRef = c15 + "fullRef"; + + /// + /// Represents the c15:invertIfNegative XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: InvertIfNegativeBoolean. + /// + /// + public static readonly XName invertIfNegative = c15 + "invertIfNegative"; + + /// + /// Represents the c15:layout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Layout. + /// + /// + public static readonly XName layout = c15 + "layout"; + + /// + /// Represents the c15:leaderLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LeaderLines. + /// + /// + public static readonly XName leaderLines = c15 + "leaderLines"; + + /// + /// Represents the c15:levelRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LevelReference. + /// + /// + public static readonly XName levelRef = c15 + "levelRef"; + + /// + /// Represents the c15:marker XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Marker. + /// + /// + public static readonly XName marker = c15 + "marker"; + + /// + /// Represents the c15:numFmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NumberingFormat. + /// + /// + public static readonly XName numFmt = c15 + "numFmt"; + + /// + /// Represents the c15:pivotSource XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: PivotSource. + /// + /// + public static readonly XName pivotSource = c15 + "pivotSource"; + + /// + /// Represents the c15:ser XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: AreaChartSeries, BarChartSeries, BubbleChartSeries, LineChartSeries, PieChartSeries, RadarChartSeries, ScatterChartSeries, SurfaceChartSeries. + /// + /// + public static readonly XName ser = c15 + "ser"; + + /// + /// Represents the c15:showDataLabelsRange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowDataLabelsRange. + /// + /// + public static readonly XName showDataLabelsRange = c15 + "showDataLabelsRange"; + + /// + /// Represents the c15:showLeaderLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowLeaderLines. + /// + /// + public static readonly XName showLeaderLines = c15 + "showLeaderLines"; + + /// + /// Represents the c15:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = c15 + "spPr"; + + /// + /// Represents the c15:sqref XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: SequenceOfReferences. + /// + /// + public static readonly XName sqref = c15 + "sqref"; + + /// + /// Represents the c15:tx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: ChartText. + /// + /// + public static readonly XName tx = c15 + "tx"; + + /// + /// Represents the c15:txfldGUID XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: TextFieldGuid. + /// + /// + public static readonly XName txfldGUID = c15 + "txfldGUID"; + + /// + /// Represents the c15:xForSave XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ExceptionForSave. + /// + /// + public static readonly XName xForSave = c15 + "xForSave"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C16R3.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C16R3.g.cs new file mode 100644 index 000000000..df1c38b2e --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/C16R3.g.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:c16r3="http://schemas.microsoft.com/office/drawing/2017/03/chart" namespace. + /// + public static class C16R3 + { + /// + /// Defines the XML namespace associated with the c16r3 prefix. + /// + public static readonly XNamespace c16r3 = "http://schemas.microsoft.com/office/drawing/2017/03/chart"; + + /// + /// Represents the c16r3:dataDisplayOptions16 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DataDisplayOptions16. + /// + /// + public static readonly XName dataDisplayOptions16 = c16r3 + "dataDisplayOptions16"; + + /// + /// Represents the c16r3:dispNaAsBlank XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BooleanFalse. + /// + /// + public static readonly XName dispNaAsBlank = c16r3 + "dispNaAsBlank"; + + /// + /// Represents the c16r3:val XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BooleanFalse.Val. + /// + /// + public static readonly XName val = c16r3 + "val"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CDR.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CDR.g.cs new file mode 100644 index 000000000..9bdb64668 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CDR.g.cs @@ -0,0 +1,404 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:cdr="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing" namespace. + /// + public static class CDR + { + /// + /// Defines the XML namespace associated with the cdr prefix. + /// + public static readonly XNamespace cdr = "http://schemas.openxmlformats.org/drawingml/2006/chartDrawing"; + + /// + /// Represents the cdr:absSizeAnchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: AbsoluteAnchorSize. + /// + /// + public static readonly XName absSizeAnchor = cdr + "absSizeAnchor"; + + /// + /// Represents the cdr:blipFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BlipFill. + /// + /// + public static readonly XName blipFill = cdr + "blipFill"; + + /// + /// Represents the cdr:cNvCxnSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: NonVisualConnectionShapeProperties. + /// + /// + public static readonly XName cNvCxnSpPr = cdr + "cNvCxnSpPr"; + + /// + /// Represents the cdr:cNvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameDrawingProperties. + /// + /// + public static readonly XName cNvGraphicFramePr = cdr + "cNvGraphicFramePr"; + + /// + /// Represents the cdr:cNvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupShapeDrawingProperties. + /// + /// + public static readonly XName cNvGrpSpPr = cdr + "cNvGrpSpPr"; + + /// + /// Represents the cdr:cNvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualPictureDrawingProperties. + /// + /// + public static readonly XName cNvPicPr = cdr + "cNvPicPr"; + + /// + /// Represents the cdr:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = cdr + "cNvPr"; + + /// + /// Represents the cdr:cNvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualShapeDrawingProperties. + /// + /// + public static readonly XName cNvSpPr = cdr + "cNvSpPr"; + + /// + /// Represents the cdr:cxnSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ConnectionShape. + /// + /// + public static readonly XName cxnSp = cdr + "cxnSp"; + + /// + /// Represents the cdr:ext XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Extent. + /// + /// + public static readonly XName ext = cdr + "ext"; + + /// + /// Represents the cdr:from XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: FromAnchor. + /// + /// + public static readonly XName from = cdr + "from"; + + /// + /// Represents the cdr:graphicFrame XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: GraphicFrame. + /// + /// + public static readonly XName graphicFrame = cdr + "graphicFrame"; + + /// + /// Represents the cdr:grpSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: GroupShape. + /// + /// + public static readonly XName grpSp = cdr + "grpSp"; + + /// + /// Represents the cdr:grpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupShapeProperties. + /// + /// + public static readonly XName grpSpPr = cdr + "grpSpPr"; + + /// + /// Represents the cdr:nvCxnSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualConnectorShapeDrawingProperties. + /// + /// + public static readonly XName nvCxnSpPr = cdr + "nvCxnSpPr"; + + /// + /// Represents the cdr:nvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameProperties. + /// + /// + public static readonly XName nvGraphicFramePr = cdr + "nvGraphicFramePr"; + + /// + /// Represents the cdr:nvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupShapeProperties. + /// + /// + public static readonly XName nvGrpSpPr = cdr + "nvGrpSpPr"; + + /// + /// Represents the cdr:nvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualPictureProperties. + /// + /// + public static readonly XName nvPicPr = cdr + "nvPicPr"; + + /// + /// Represents the cdr:nvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualShapeProperties. + /// + /// + public static readonly XName nvSpPr = cdr + "nvSpPr"; + + /// + /// Represents the cdr:pic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Picture. + /// + /// + public static readonly XName pic = cdr + "pic"; + + /// + /// Represents the cdr:relSizeAnchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: RelativeAnchorSize. + /// + /// + public static readonly XName relSizeAnchor = cdr + "relSizeAnchor"; + + /// + /// Represents the cdr:sp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName sp = cdr + "sp"; + + /// + /// Represents the cdr:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = cdr + "spPr"; + + /// + /// Represents the cdr:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Style. + /// + /// + public static readonly XName style = cdr + "style"; + + /// + /// Represents the cdr:to XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ToAnchor. + /// + /// + public static readonly XName to = cdr + "to"; + + /// + /// Represents the cdr:txBody XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: TextBody. + /// + /// + public static readonly XName txBody = cdr + "txBody"; + + /// + /// Represents the cdr:x XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: XPosition. + /// + /// + public static readonly XName x = cdr + "x"; + + /// + /// Represents the cdr:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform. + /// + /// + public static readonly XName xfrm = cdr + "xfrm"; + + /// + /// Represents the cdr:y XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: YPosition. + /// + /// + public static readonly XName y = cdr + "y"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CDR14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CDR14.g.cs new file mode 100644 index 000000000..632e455db --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CDR14.g.cs @@ -0,0 +1,113 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:cdr14="http://schemas.microsoft.com/office/drawing/2010/chartDrawing" namespace. + /// + public static class CDR14 + { + /// + /// Defines the XML namespace associated with the cdr14 prefix. + /// + public static readonly XNamespace cdr14 = "http://schemas.microsoft.com/office/drawing/2010/chartDrawing"; + + /// + /// Represents the cdr14:cNvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualInkContentPartProperties. + /// + /// + public static readonly XName cNvContentPartPr = cdr14 + "cNvContentPartPr"; + + /// + /// Represents the cdr14:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = cdr14 + "cNvPr"; + + /// + /// Represents the cdr14:contentPart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ContentPart. + /// + /// + public static readonly XName contentPart = cdr14 + "contentPart"; + + /// + /// Represents the cdr14:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = cdr14 + "extLst"; + + /// + /// Represents the cdr14:nvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualContentPartProperties. + /// + /// + public static readonly XName nvContentPartPr = cdr14 + "nvContentPartPr"; + + /// + /// Represents the cdr14:nvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ApplicationNonVisualDrawingProperties. + /// + /// + public static readonly XName nvPr = cdr14 + "nvPr"; + + /// + /// Represents the cdr14:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform2D. + /// + /// + public static readonly XName xfrm = cdr14 + "xfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/COMP.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/COMP.g.cs new file mode 100644 index 000000000..89649492c --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/COMP.g.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:comp="http://schemas.openxmlformats.org/drawingml/2006/compatibility" namespace. + /// + public static class COMP + { + /// + /// Defines the XML namespace associated with the comp prefix. + /// + public static readonly XNamespace comp = "http://schemas.openxmlformats.org/drawingml/2006/compatibility"; + + /// + /// Represents the comp:legacyDrawing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LegacyDrawing. + /// + /// + public static readonly XName legacyDrawing = comp + "legacyDrawing"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CS.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CS.g.cs new file mode 100644 index 000000000..0382caa65 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CS.g.cs @@ -0,0 +1,629 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:cs="http://schemas.microsoft.com/office/drawing/2012/chartStyle" namespace. + /// + public static class CS + { + /// + /// Defines the XML namespace associated with the cs prefix. + /// + public static readonly XNamespace cs = "http://schemas.microsoft.com/office/drawing/2012/chartStyle"; + + /// + /// Represents the cs:axisTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AxisTitle. + /// + /// + public static readonly XName axisTitle = cs + "axisTitle"; + + /// + /// Represents the cs:bodyPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TextBodyProperties. + /// + /// + public static readonly XName bodyPr = cs + "bodyPr"; + + /// + /// Represents the cs:categoryAxis XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CategoryAxis. + /// + /// + public static readonly XName categoryAxis = cs + "categoryAxis"; + + /// + /// Represents the cs:chartArea XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ChartArea. + /// + /// + public static readonly XName chartArea = cs + "chartArea"; + + /// + /// Represents the cs:chartStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ChartStyle. + /// + /// + public static readonly XName chartStyle = cs + "chartStyle"; + + /// + /// Represents the cs:colorStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColorStyle. + /// + /// + public static readonly XName colorStyle = cs + "colorStyle"; + + /// + /// Represents the cs:dataLabel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataLabel. + /// + /// + public static readonly XName dataLabel = cs + "dataLabel"; + + /// + /// Represents the cs:dataLabelCallout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataLabelCallout. + /// + /// + public static readonly XName dataLabelCallout = cs + "dataLabelCallout"; + + /// + /// Represents the cs:dataPoint XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataPoint. + /// + /// + public static readonly XName dataPoint = cs + "dataPoint"; + + /// + /// Represents the cs:dataPoint3D XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataPoint3D. + /// + /// + public static readonly XName dataPoint3D = cs + "dataPoint3D"; + + /// + /// Represents the cs:dataPointLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataPointLine. + /// + /// + public static readonly XName dataPointLine = cs + "dataPointLine"; + + /// + /// Represents the cs:dataPointMarker XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataPointMarker. + /// + /// + public static readonly XName dataPointMarker = cs + "dataPointMarker"; + + /// + /// Represents the cs:dataPointMarkerLayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MarkerLayoutProperties. + /// + /// + public static readonly XName dataPointMarkerLayout = cs + "dataPointMarkerLayout"; + + /// + /// Represents the cs:dataPointWireframe XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataPointWireframe. + /// + /// + public static readonly XName dataPointWireframe = cs + "dataPointWireframe"; + + /// + /// Represents the cs:dataTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataTableStyle. + /// + /// + public static readonly XName dataTable = cs + "dataTable"; + + /// + /// Represents the cs:defRPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TextCharacterPropertiesType. + /// + /// + public static readonly XName defRPr = cs + "defRPr"; + + /// + /// Represents the cs:downBar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DownBar. + /// + /// + public static readonly XName downBar = cs + "downBar"; + + /// + /// Represents the cs:dropLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DropLine. + /// + /// + public static readonly XName dropLine = cs + "dropLine"; + + /// + /// Represents the cs:effectRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: EffectReference. + /// + /// + public static readonly XName effectRef = cs + "effectRef"; + + /// + /// Represents the cs:errorBar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ErrorBar. + /// + /// + public static readonly XName errorBar = cs + "errorBar"; + + /// + /// Represents the cs:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = cs + "extLst"; + + /// + /// Represents the cs:fillRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FillReference. + /// + /// + public static readonly XName fillRef = cs + "fillRef"; + + /// + /// Represents the cs:floor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Floor. + /// + /// + public static readonly XName floor = cs + "floor"; + + /// + /// Represents the cs:fontRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FontReference. + /// + /// + public static readonly XName fontRef = cs + "fontRef"; + + /// + /// Represents the cs:gridlineMajor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GridlineMajor. + /// + /// + public static readonly XName gridlineMajor = cs + "gridlineMajor"; + + /// + /// Represents the cs:gridlineMinor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GridlineMinor. + /// + /// + public static readonly XName gridlineMinor = cs + "gridlineMinor"; + + /// + /// Represents the cs:hiLoLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HiLoLine. + /// + /// + public static readonly XName hiLoLine = cs + "hiLoLine"; + + /// + /// Represents the cs:leaderLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LeaderLine. + /// + /// + public static readonly XName leaderLine = cs + "leaderLine"; + + /// + /// Represents the cs:legend XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LegendStyle. + /// + /// + public static readonly XName legend = cs + "legend"; + + /// + /// Represents the cs:lineWidthScale XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: LineWidthScale. + /// + /// + public static readonly XName lineWidthScale = cs + "lineWidthScale"; + + /// + /// Represents the cs:lnRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LineReference. + /// + /// + public static readonly XName lnRef = cs + "lnRef"; + + /// + /// Represents the cs:plotArea XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PlotArea. + /// + /// + public static readonly XName plotArea = cs + "plotArea"; + + /// + /// Represents the cs:plotArea3D XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PlotArea3D. + /// + /// + public static readonly XName plotArea3D = cs + "plotArea3D"; + + /// + /// Represents the cs:seriesAxis XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SeriesAxis. + /// + /// + public static readonly XName seriesAxis = cs + "seriesAxis"; + + /// + /// Represents the cs:seriesLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SeriesLine. + /// + /// + public static readonly XName seriesLine = cs + "seriesLine"; + + /// + /// Represents the cs:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = cs + "spPr"; + + /// + /// Represents the cs:styleClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StyleColor. + /// + /// + public static readonly XName styleClr = cs + "styleClr"; + + /// + /// Represents the cs:title XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TitleStyle. + /// + /// + public static readonly XName title = cs + "title"; + + /// + /// Represents the cs:trendline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TrendlineStyle. + /// + /// + public static readonly XName trendline = cs + "trendline"; + + /// + /// Represents the cs:trendlineLabel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TrendlineLabel. + /// + /// + public static readonly XName trendlineLabel = cs + "trendlineLabel"; + + /// + /// Represents the cs:upBar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UpBar. + /// + /// + public static readonly XName upBar = cs + "upBar"; + + /// + /// Represents the cs:valueAxis XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ValueAxis. + /// + /// + public static readonly XName valueAxis = cs + "valueAxis"; + + /// + /// Represents the cs:variation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ColorStyleVariation. + /// + /// + public static readonly XName variation = cs + "variation"; + + /// + /// Represents the cs:wall XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Wall. + /// + /// + public static readonly XName wall = cs + "wall"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CX.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CX.g.cs new file mode 100644 index 000000000..0e12c4e0f --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/CX.g.cs @@ -0,0 +1,854 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" namespace. + /// + public static class CX + { + /// + /// Defines the XML namespace associated with the cx prefix. + /// + public static readonly XNamespace cx = "http://schemas.microsoft.com/office/drawing/2014/chartex"; + + /// + /// Represents the cx:aggregation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Aggregation. + /// + /// + public static readonly XName aggregation = cx + "aggregation"; + + /// + /// Represents the cx:autoUpdate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ExternalData.AutoUpdate. + /// + /// + public static readonly XName autoUpdate = cx + "autoUpdate"; + + /// + /// Represents the cx:axis XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Axis. + /// + /// + public static readonly XName axis = cx + "axis"; + + /// + /// Represents the cx:axisId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AxisId. + /// + /// + public static readonly XName axisId = cx + "axisId"; + + /// + /// Represents the cx:binCount XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: BinCountXsdunsignedInt. + /// + /// + public static readonly XName binCount = cx + "binCount"; + + /// + /// Represents the cx:binning XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Binning. + /// + /// + public static readonly XName binning = cx + "binning"; + + /// + /// Represents the cx:binSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Xsddouble. + /// + /// + public static readonly XName binSize = cx + "binSize"; + + /// + /// Represents the cx:catScaling XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CategoryAxisScaling. + /// + /// + public static readonly XName catScaling = cx + "catScaling"; + + /// + /// Represents the cx:chart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Chart. + /// + /// + public static readonly XName chart = cx + "chart"; + + /// + /// Represents the cx:chartData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: ChartData. + /// + /// + public static readonly XName chartData = cx + "chartData"; + + /// + /// Represents the cx:chartSpace XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: ChartSpace. + /// + /// + public static readonly XName chartSpace = cx + "chartSpace"; + + /// + /// Represents the cx:clrMapOvr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ColorMappingType. + /// + /// + public static readonly XName clrMapOvr = cx + "clrMapOvr"; + + /// + /// Represents the cx:data XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Data. + /// + /// + public static readonly XName data = cx + "data"; + + /// + /// Represents the cx:dataId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataId. + /// + /// + public static readonly XName dataId = cx + "dataId"; + + /// + /// Represents the cx:dataLabel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DataLabel. + /// + /// + public static readonly XName dataLabel = cx + "dataLabel"; + + /// + /// Represents the cx:dataLabelHidden XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataLabelHidden. + /// + /// + public static readonly XName dataLabelHidden = cx + "dataLabelHidden"; + + /// + /// Represents the cx:dataLabels XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataLabels. + /// + /// + public static readonly XName dataLabels = cx + "dataLabels"; + + /// + /// Represents the cx:dataPt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataPoint. + /// + /// + public static readonly XName dataPt = cx + "dataPt"; + + /// + /// Represents the cx:evenFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EvenFooterXsdstring. + /// + /// + public static readonly XName evenFooter = cx + "evenFooter"; + + /// + /// Represents the cx:evenHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EvenHeaderXsdstring. + /// + /// + public static readonly XName evenHeader = cx + "evenHeader"; + + /// + /// Represents the cx:ext XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Extension2. + /// + /// + public static readonly XName ext = cx + "ext"; + + /// + /// Represents the cx:externalData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ExternalData. + /// + /// + public static readonly XName externalData = cx + "externalData"; + + /// + /// Represents the cx:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ExtensionList. + /// + /// + public static readonly XName extLst = cx + "extLst"; + + /// + /// Represents the cx:f XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Formula. + /// + /// + public static readonly XName f = cx + "f"; + + /// + /// Represents the cx:firstFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FirstFooterXsdstring. + /// + /// + public static readonly XName firstFooter = cx + "firstFooter"; + + /// + /// Represents the cx:firstHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FirstHeaderXsdstring. + /// + /// + public static readonly XName firstHeader = cx + "firstHeader"; + + /// + /// Represents the cx:headerFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: HeaderFooter. + /// + /// + public static readonly XName headerFooter = cx + "headerFooter"; + + /// + /// Represents the cx:idx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UnsignedIntegerType. + /// + /// + public static readonly XName idx = cx + "idx"; + + /// + /// Represents the cx:layoutPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: SeriesLayoutProperties. + /// + /// + public static readonly XName layoutPr = cx + "layoutPr"; + + /// + /// Represents the cx:legend XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Legend. + /// + /// + public static readonly XName legend = cx + "legend"; + + /// + /// Represents the cx:lvl XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NumericLevel, StringLevel. + /// + /// + public static readonly XName lvl = cx + "lvl"; + + /// + /// Represents the cx:majorGridlines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: MajorGridlinesGridlines. + /// + /// + public static readonly XName majorGridlines = cx + "majorGridlines"; + + /// + /// Represents the cx:majorTickMarks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MajorTickMarksTickMarks. + /// + /// + public static readonly XName majorTickMarks = cx + "majorTickMarks"; + + /// + /// Represents the cx:minorGridlines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: MinorGridlinesGridlines. + /// + /// + public static readonly XName minorGridlines = cx + "minorGridlines"; + + /// + /// Represents the cx:minorTickMarks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MinorTickMarksTickMarks. + /// + /// + public static readonly XName minorTickMarks = cx + "minorTickMarks"; + + /// + /// Represents the cx:numDim XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumericDimension. + /// + /// + public static readonly XName numDim = cx + "numDim"; + + /// + /// Represents the cx:numFmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NumberFormat. + /// + /// + public static readonly XName numFmt = cx + "numFmt"; + + /// + /// Represents the cx:oddFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: OddFooterXsdstring. + /// + /// + public static readonly XName oddFooter = cx + "oddFooter"; + + /// + /// Represents the cx:oddHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: OddHeaderXsdstring. + /// + /// + public static readonly XName oddHeader = cx + "oddHeader"; + + /// + /// Represents the cx:pageMargins XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: PageMargins. + /// + /// + public static readonly XName pageMargins = cx + "pageMargins"; + + /// + /// Represents the cx:pageSetup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: PageSetup. + /// + /// + public static readonly XName pageSetup = cx + "pageSetup"; + + /// + /// Represents the cx:parentLabelLayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ParentLabelLayout. + /// + /// + public static readonly XName parentLabelLayout = cx + "parentLabelLayout"; + + /// + /// Represents the cx:plotArea XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: PlotArea. + /// + /// + public static readonly XName plotArea = cx + "plotArea"; + + /// + /// Represents the cx:plotAreaRegion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: PlotAreaRegion. + /// + /// + public static readonly XName plotAreaRegion = cx + "plotAreaRegion"; + + /// + /// Represents the cx:plotSurface XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: PlotSurface. + /// + /// + public static readonly XName plotSurface = cx + "plotSurface"; + + /// + /// Represents the cx:printSettings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: PrintSettings. + /// + /// + public static readonly XName printSettings = cx + "printSettings"; + + /// + /// Represents the cx:pt XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ChartStringValue, NumericValue. + /// + /// + public static readonly XName pt = cx + "pt"; + + /// + /// Represents the cx:rich XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: RichTextBody. + /// + /// + public static readonly XName rich = cx + "rich"; + + /// + /// Represents the cx:separator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: SeparatorXsdstring. + /// + /// + public static readonly XName separator = cx + "separator"; + + /// + /// Represents the cx:series XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Series. + /// + /// + public static readonly XName series = cx + "series"; + + /// + /// Represents the cx:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = cx + "spPr"; + + /// + /// Represents the cx:statistics XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Statistics. + /// + /// + public static readonly XName statistics = cx + "statistics"; + + /// + /// Represents the cx:strDim XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StringDimension. + /// + /// + public static readonly XName strDim = cx + "strDim"; + + /// + /// Represents the cx:subtotals XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Subtotals. + /// + /// + public static readonly XName subtotals = cx + "subtotals"; + + /// + /// Represents the cx:tickLabels XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TickLabels. + /// + /// + public static readonly XName tickLabels = cx + "tickLabels"; + + /// + /// Represents the cx:title XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: AxisTitle, ChartTitle. + /// + /// + public static readonly XName title = cx + "title"; + + /// + /// Represents the cx:tx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Text. + /// + /// + public static readonly XName tx = cx + "tx"; + + /// + /// Represents the cx:txData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: TextData. + /// + /// + public static readonly XName txData = cx + "txData"; + + /// + /// Represents the cx:txPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: TxPrTextBody. + /// + /// + public static readonly XName txPr = cx + "txPr"; + + /// + /// Represents the cx:units XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AxisUnits. + /// + /// + public static readonly XName units = cx + "units"; + + /// + /// Represents the cx:unitsLabel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: AxisUnitsLabel. + /// + /// + public static readonly XName unitsLabel = cx + "unitsLabel"; + + /// + /// Represents the cx:v XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: VXsdstring. + /// + /// + public static readonly XName v = cx + "v"; + + /// + /// Represents the cx:valScaling XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ValueAxisScaling. + /// + /// + public static readonly XName valScaling = cx + "valScaling"; + + /// + /// Represents the cx:visibility XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: DataLabelVisibilities, SeriesElementVisibilities. + /// + /// + public static readonly XName visibility = cx + "visibility"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM.g.cs new file mode 100644 index 000000000..67015ee64 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM.g.cs @@ -0,0 +1,908 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:dgm="http://schemas.openxmlformats.org/drawingml/2006/diagram" namespace. + /// + public static class DGM + { + /// + /// Defines the XML namespace associated with the dgm prefix. + /// + public static readonly XNamespace dgm = "http://schemas.openxmlformats.org/drawingml/2006/diagram"; + + /// + /// Represents the dgm:adj XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Adjust. + /// + /// + public static readonly XName adj = dgm + "adj"; + + /// + /// Represents the dgm:adjLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AdjustList. + /// + /// + public static readonly XName adjLst = dgm + "adjLst"; + + /// + /// Represents the dgm:alg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Algorithm. + /// + /// + public static readonly XName alg = dgm + "alg"; + + /// + /// Represents the dgm:animLvl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AnimationLevel. + /// + /// + public static readonly XName animLvl = dgm + "animLvl"; + + /// + /// Represents the dgm:animOne XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AnimateOneByOne. + /// + /// + public static readonly XName animOne = dgm + "animOne"; + + /// + /// Represents the dgm:bg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Background. + /// + /// + public static readonly XName bg = dgm + "bg"; + + /// + /// Represents the dgm:bulletEnabled XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BulletEnabled. + /// + /// + public static readonly XName bulletEnabled = dgm + "bulletEnabled"; + + /// + /// Represents the dgm:cat XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Category, ColorTransformCategory, StyleDisplayCategory. + /// + /// + public static readonly XName cat = dgm + "cat"; + + /// + /// Represents the dgm:catLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CategoryList, ColorTransformCategories, StyleDisplayCategories. + /// + /// + public static readonly XName catLst = dgm + "catLst"; + + /// + /// Represents the dgm:chMax XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MaxNumberOfChildren. + /// + /// + public static readonly XName chMax = dgm + "chMax"; + + /// + /// Represents the dgm:choose XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Choose. + /// + /// + public static readonly XName choose = dgm + "choose"; + + /// + /// Represents the dgm:chPref XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PreferredNumberOfChildren. + /// + /// + public static readonly XName chPref = dgm + "chPref"; + + /// + /// Represents the dgm:clrData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColorData. + /// + /// + public static readonly XName clrData = dgm + "clrData"; + + /// + /// Represents the dgm:colorsDef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColorsDefinition. + /// + /// + public static readonly XName colorsDef = dgm + "colorsDef"; + + /// + /// Represents the dgm:colorsDefHdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ColorsDefinitionHeader. + /// + /// + public static readonly XName colorsDefHdr = dgm + "colorsDefHdr"; + + /// + /// Represents the dgm:colorsDefHdrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ColorsDefinitionHeaderList. + /// + /// + public static readonly XName colorsDefHdrLst = dgm + "colorsDefHdrLst"; + + /// + /// Represents the dgm:constr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Constraint. + /// + /// + public static readonly XName constr = dgm + "constr"; + + /// + /// Represents the dgm:constrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Constraints. + /// + /// + public static readonly XName constrLst = dgm + "constrLst"; + + /// + /// Represents the dgm:cxn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Connection. + /// + /// + public static readonly XName cxn = dgm + "cxn"; + + /// + /// Represents the dgm:cxnLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ConnectionList. + /// + /// + public static readonly XName cxnLst = dgm + "cxnLst"; + + /// + /// Represents the dgm:dataModel XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: DataModel, DataModelRoot. + /// + /// + public static readonly XName dataModel = dgm + "dataModel"; + + /// + /// Represents the dgm:desc XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColorTransformDescription, Description, StyleLabelDescription. + /// + /// + public static readonly XName desc = dgm + "desc"; + + /// + /// Represents the dgm:dir XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Direction. + /// + /// + public static readonly XName dir = dgm + "dir"; + + /// + /// Represents the dgm:effectClrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: EffectColorList. + /// + /// + public static readonly XName effectClrLst = dgm + "effectClrLst"; + + /// + /// Represents the dgm:else XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DiagramChooseElse. + /// + /// + public static readonly XName @else = dgm + "else"; + + /// + /// Represents the dgm:ext XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DiagramDefinitionExtension. + /// + /// + public static readonly XName ext = dgm + "ext"; + + /// + /// Represents the dgm:extLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: DataModelExtensionList, DiagramDefinitionExtensionList, ExtensionList, PtExtensionList. + /// + /// + public static readonly XName extLst = dgm + "extLst"; + + /// + /// Represents the dgm:fillClrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FillColorList. + /// + /// + public static readonly XName fillClrLst = dgm + "fillClrLst"; + + /// + /// Represents the dgm:forEach XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: ForEach. + /// + /// + public static readonly XName forEach = dgm + "forEach"; + + /// + /// Represents the dgm:hierBranch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HierarchyBranch. + /// + /// + public static readonly XName hierBranch = dgm + "hierBranch"; + + /// + /// Represents the dgm:if XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DiagramChooseIf. + /// + /// + public static readonly XName @if = dgm + "if"; + + /// + /// Represents the dgm:layoutDef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: LayoutDefinition. + /// + /// + public static readonly XName layoutDef = dgm + "layoutDef"; + + /// + /// Represents the dgm:layoutDefHdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: LayoutDefinitionHeader. + /// + /// + public static readonly XName layoutDefHdr = dgm + "layoutDefHdr"; + + /// + /// Represents the dgm:layoutDefHdrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LayoutDefinitionHeaderList. + /// + /// + public static readonly XName layoutDefHdrLst = dgm + "layoutDefHdrLst"; + + /// + /// Represents the dgm:layoutNode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: LayoutNode. + /// + /// + public static readonly XName layoutNode = dgm + "layoutNode"; + + /// + /// Represents the dgm:linClrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LineColorList. + /// + /// + public static readonly XName linClrLst = dgm + "linClrLst"; + + /// + /// Represents the dgm:orgChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OrganizationChart. + /// + /// + public static readonly XName orgChart = dgm + "orgChart"; + + /// + /// Represents the dgm:param XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Parameter. + /// + /// + public static readonly XName param = dgm + "param"; + + /// + /// Represents the dgm:presLayoutVars XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: PresentationLayoutVariables. + /// + /// + public static readonly XName presLayoutVars = dgm + "presLayoutVars"; + + /// + /// Represents the dgm:presOf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: PresentationOf. + /// + /// + public static readonly XName presOf = dgm + "presOf"; + + /// + /// Represents the dgm:prSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PropertySet. + /// + /// + public static readonly XName prSet = dgm + "prSet"; + + /// + /// Represents the dgm:pt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Point. + /// + /// + public static readonly XName pt = dgm + "pt"; + + /// + /// Represents the dgm:ptLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PointList. + /// + /// + public static readonly XName ptLst = dgm + "ptLst"; + + /// + /// Represents the dgm:relIds XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: RelationshipIds. + /// + /// + public static readonly XName relIds = dgm + "relIds"; + + /// + /// Represents the dgm:resizeHandles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ResizeHandles. + /// + /// + public static readonly XName resizeHandles = dgm + "resizeHandles"; + + /// + /// Represents the dgm:rule XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: Rule. + /// + /// + public static readonly XName rule = dgm + "rule"; + + /// + /// Represents the dgm:ruleLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: RuleList. + /// + /// + public static readonly XName ruleLst = dgm + "ruleLst"; + + /// + /// Represents the dgm:sampData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SampleData. + /// + /// + public static readonly XName sampData = dgm + "sampData"; + + /// + /// Represents the dgm:scene3d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Scene3D. + /// + /// + public static readonly XName scene3d = dgm + "scene3d"; + + /// + /// Represents the dgm:shape XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName shape = dgm + "shape"; + + /// + /// Represents the dgm:sp3d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Shape3D. + /// + /// + public static readonly XName sp3d = dgm + "sp3d"; + + /// + /// Represents the dgm:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = dgm + "spPr"; + + /// + /// Represents the dgm:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Style. + /// + /// + public static readonly XName style = dgm + "style"; + + /// + /// Represents the dgm:styleData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StyleData. + /// + /// + public static readonly XName styleData = dgm + "styleData"; + + /// + /// Represents the dgm:styleDef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: StyleDefinition. + /// + /// + public static readonly XName styleDef = dgm + "styleDef"; + + /// + /// Represents the dgm:styleDefHdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: StyleDefinitionHeader. + /// + /// + public static readonly XName styleDefHdr = dgm + "styleDefHdr"; + + /// + /// Represents the dgm:styleDefHdrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: StyleDefinitionHeaderList. + /// + /// + public static readonly XName styleDefHdrLst = dgm + "styleDefHdrLst"; + + /// + /// Represents the dgm:styleLbl XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColorTransformStyleLabel, StyleLabel. + /// + /// + public static readonly XName styleLbl = dgm + "styleLbl"; + + /// + /// Represents the dgm:t XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: TextBody. + /// + /// + public static readonly XName t = dgm + "t"; + + /// + /// Represents the dgm:title XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColorDefinitionTitle, StyleDefinitionTitle, Title. + /// + /// + public static readonly XName title = dgm + "title"; + + /// + /// Represents the dgm:txEffectClrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TextEffectColorList. + /// + /// + public static readonly XName txEffectClrLst = dgm + "txEffectClrLst"; + + /// + /// Represents the dgm:txFillClrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TextFillColorList. + /// + /// + public static readonly XName txFillClrLst = dgm + "txFillClrLst"; + + /// + /// Represents the dgm:txLinClrLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TextLineColorList. + /// + /// + public static readonly XName txLinClrLst = dgm + "txLinClrLst"; + + /// + /// Represents the dgm:txPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: TextProperties. + /// + /// + public static readonly XName txPr = dgm + "txPr"; + + /// + /// Represents the dgm:varLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: VariableList. + /// + /// + public static readonly XName varLst = dgm + "varLst"; + + /// + /// Represents the dgm:whole XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Whole. + /// + /// + public static readonly XName whole = dgm + "whole"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM14.g.cs new file mode 100644 index 000000000..14279f189 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM14.g.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:dgm14="http://schemas.microsoft.com/office/drawing/2010/diagram" namespace. + /// + public static class DGM14 + { + /// + /// Defines the XML namespace associated with the dgm14 prefix. + /// + public static readonly XNamespace dgm14 = "http://schemas.microsoft.com/office/drawing/2010/diagram"; + + /// + /// Represents the dgm14:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = dgm14 + "cNvPr"; + + /// + /// Represents the dgm14:recolorImg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RecolorImages. + /// + /// + public static readonly XName recolorImg = dgm14 + "recolorImg"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM1611.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM1611.g.cs new file mode 100644 index 000000000..de803d611 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM1611.g.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:dgm1611="http://schemas.microsoft.com/office/drawing/2016/11/diagram" namespace. + /// + public static class DGM1611 + { + /// + /// Defines the XML namespace associated with the dgm1611 prefix. + /// + public static readonly XNamespace dgm1611 = "http://schemas.microsoft.com/office/drawing/2016/11/diagram"; + + /// + /// Represents the dgm1611:autoBuNodeInfo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NumberDiagramInfo. + /// + /// + public static readonly XName autoBuNodeInfo = dgm1611 + "autoBuNodeInfo"; + + /// + /// Represents the dgm1611:autoBuNodeInfoLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: NumberDiagramInfoList. + /// + /// + public static readonly XName autoBuNodeInfoLst = dgm1611 + "autoBuNodeInfoLst"; + + /// + /// Represents the dgm1611:buPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DiagramAutoBullet. + /// + /// + public static readonly XName buPr = dgm1611 + "buPr"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM1612.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM1612.g.cs new file mode 100644 index 000000000..9f9890351 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DGM1612.g.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:dgm1612="http://schemas.microsoft.com/office/drawing/2016/12/diagram" namespace. + /// + public static class DGM1612 + { + /// + /// Defines the XML namespace associated with the dgm1612 prefix. + /// + public static readonly XNamespace dgm1612 = "http://schemas.microsoft.com/office/drawing/2016/12/diagram"; + + /// + /// Represents the dgm1612:lstStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TextListStyleType. + /// + /// + public static readonly XName lstStyle = dgm1612 + "lstStyle"; + + /// + /// Represents the dgm1612:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = dgm1612 + "spPr"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DS.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DS.g.cs new file mode 100644 index 000000000..f42f2d39d --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DS.g.cs @@ -0,0 +1,81 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml" namespace. + /// + public static class DS + { + /// + /// Defines the XML namespace associated with the ds prefix. + /// + public static readonly XNamespace ds = "http://schemas.openxmlformats.org/officeDocument/2006/customXml"; + + /// + /// Represents the ds:datastoreItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataStoreItem. + /// + /// + public static readonly XName datastoreItem = ds + "datastoreItem"; + + /// + /// Represents the ds:itemID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataStoreItem.ItemId. + /// + /// + public static readonly XName itemID = ds + "itemID"; + + /// + /// Represents the ds:schemaRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SchemaReference. + /// + /// + public static readonly XName schemaRef = ds + "schemaRef"; + + /// + /// Represents the ds:schemaRefs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SchemaReferences. + /// + /// + public static readonly XName schemaRefs = ds + "schemaRefs"; + + /// + /// Represents the ds:uri XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SchemaReference.Uri. + /// + /// + public static readonly XName uri = ds + "uri"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DSP.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DSP.g.cs new file mode 100644 index 000000000..f6701f49a --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/DSP.g.cs @@ -0,0 +1,232 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:dsp="http://schemas.microsoft.com/office/drawing/2008/diagram" namespace. + /// + public static class DSP + { + /// + /// Defines the XML namespace associated with the dsp prefix. + /// + public static readonly XNamespace dsp = "http://schemas.microsoft.com/office/drawing/2008/diagram"; + + /// + /// Represents the dsp:cNvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupDrawingShapeProperties. + /// + /// + public static readonly XName cNvGrpSpPr = dsp + "cNvGrpSpPr"; + + /// + /// Represents the dsp:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = dsp + "cNvPr"; + + /// + /// Represents the dsp:cNvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualDrawingShapeProperties. + /// + /// + public static readonly XName cNvSpPr = dsp + "cNvSpPr"; + + /// + /// Represents the dsp:dataModelExt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DataModelExtensionBlock. + /// + /// + public static readonly XName dataModelExt = dsp + "dataModelExt"; + + /// + /// Represents the dsp:drawing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Drawing. + /// + /// + public static readonly XName drawing = dsp + "drawing"; + + /// + /// Represents the dsp:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = dsp + "extLst"; + + /// + /// Represents the dsp:grpSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: GroupShape. + /// + /// + public static readonly XName grpSp = dsp + "grpSp"; + + /// + /// Represents the dsp:grpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupShapeProperties. + /// + /// + public static readonly XName grpSpPr = dsp + "grpSpPr"; + + /// + /// Represents the dsp:nvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: GroupShapeNonVisualProperties. + /// + /// + public static readonly XName nvGrpSpPr = dsp + "nvGrpSpPr"; + + /// + /// Represents the dsp:nvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ShapeNonVisualProperties. + /// + /// + public static readonly XName nvSpPr = dsp + "nvSpPr"; + + /// + /// Represents the dsp:sp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName sp = dsp + "sp"; + + /// + /// Represents the dsp:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = dsp + "spPr"; + + /// + /// Represents the dsp:spTree XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: ShapeTree. + /// + /// + public static readonly XName spTree = dsp + "spTree"; + + /// + /// Represents the dsp:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ShapeStyle. + /// + /// + public static readonly XName style = dsp + "style"; + + /// + /// Represents the dsp:txBody XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: TextBody. + /// + /// + public static readonly XName txBody = dsp + "txBody"; + + /// + /// Represents the dsp:txXfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform2D. + /// + /// + public static readonly XName txXfrm = dsp + "txXfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/EMMA.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/EMMA.g.cs new file mode 100644 index 000000000..733de9e93 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/EMMA.g.cs @@ -0,0 +1,631 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:emma="http://www.w3.org/2003/04/emma" namespace. + /// + public static class EMMA + { + /// + /// Defines the XML namespace associated with the emma prefix. + /// + public static readonly XNamespace emma = "http://www.w3.org/2003/04/emma"; + + /// + /// Represents the emma:arc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Arc. + /// + /// + public static readonly XName arc = emma + "arc"; + + /// + /// Represents the emma:confidence XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Confidence, Group.Confidence, Interpretation.Confidence, Node.Confidence, OneOf.Confidence, Sequence.Confidence. + /// + /// + public static readonly XName confidence = emma + "confidence"; + + /// + /// Represents the emma:cost XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Cost, Group.Cost, Interpretation.Cost, Node.Cost, OneOf.Cost, Sequence.Cost. + /// + /// + public static readonly XName cost = emma + "cost"; + + /// + /// Represents the emma:derivation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Derivation. + /// + /// + public static readonly XName derivation = emma + "derivation"; + + /// + /// Represents the emma:derived-from XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DerivedFrom. + /// + /// + public static readonly XName derived_from = emma + "derived-from"; + + /// + /// Represents the emma:dialog-turn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.DialogTurn, Interpretation.DialogTurn, OneOf.DialogTurn, Sequence.DialogTurn. + /// + /// + public static readonly XName dialog_turn = emma + "dialog-turn"; + + /// + /// Represents the emma:duration XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Arc.Duration, Group.Duration, Interpretation.Duration, OneOf.Duration, Sequence.Duration. + /// + /// + public static readonly XName duration = emma + "duration"; + + /// + /// Represents the emma:emma XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Emma. + /// + /// + public static readonly XName emma_ = emma + "emma"; + + /// + /// Represents the emma:end XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Arc.End, Group.End, Interpretation.End, OneOf.End, Sequence.End. + /// + /// + public static readonly XName end = emma + "end"; + + /// + /// Represents the emma:endpoint XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: EndPoint. + /// + /// + public static readonly XName endpoint = emma + "endpoint"; + + /// + /// Represents the emma:endpoint-address XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EndPoint.EndPointAddress. + /// + /// + public static readonly XName endpoint_address = emma + "endpoint-address"; + + /// + /// Represents the emma:endpoint-info XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EndPointInfo. + /// + /// + public static readonly XName endpoint_info = emma + "endpoint-info"; + + /// + /// Represents the emma:endpoint-info-ref XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.EndpointInfoRef, Interpretation.EndpointInfoRef, OneOf.EndpointInfoRef, Sequence.EndpointInfoRef. + /// + /// + public static readonly XName endpoint_info_ref = emma + "endpoint-info-ref"; + + /// + /// Represents the emma:endpoint-pair-ref XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EndPoint.EndpointPairRef. + /// + /// + public static readonly XName endpoint_pair_ref = emma + "endpoint-pair-ref"; + + /// + /// Represents the emma:endpoint-role XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EndPoint.EndpointRole. + /// + /// + public static readonly XName endpoint_role = emma + "endpoint-role"; + + /// + /// Represents the emma:function XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.Function, Interpretation.Function, OneOf.Function, Sequence.Function. + /// + /// + public static readonly XName function = emma + "function"; + + /// + /// Represents the emma:grammar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Grammar. + /// + /// + public static readonly XName grammar = emma + "grammar"; + + /// + /// Represents the emma:grammar-ref XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.GrammarRef, Interpretation.GrammarRef, OneOf.GrammarRef, Sequence.GrammarRef. + /// + /// + public static readonly XName grammar_ref = emma + "grammar-ref"; + + /// + /// Represents the emma:group XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Group. + /// + /// + public static readonly XName group = emma + "group"; + + /// + /// Represents the emma:group-info XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupInfo. + /// + /// + public static readonly XName group_info = emma + "group-info"; + + /// + /// Represents the emma:info XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Info. + /// + /// + public static readonly XName info = emma + "info"; + + /// + /// Represents the emma:interpretation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Interpretation. + /// + /// + public static readonly XName interpretation = emma + "interpretation"; + + /// + /// Represents the emma:lang XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Arc.Language, Group.Language, Interpretation.Language, OneOf.Language, Sequence.Language. + /// + /// + public static readonly XName lang = emma + "lang"; + + /// + /// Represents the emma:lattice XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Lattice. + /// + /// + public static readonly XName lattice = emma + "lattice"; + + /// + /// Represents the emma:literal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Literal. + /// + /// + public static readonly XName literal = emma + "literal"; + + /// + /// Represents the emma:media-type XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: EndPoint.MediaType, Group.MediaType, Interpretation.MediaType, OneOf.MediaType, Sequence.MediaType. + /// + /// + public static readonly XName media_type = emma + "media-type"; + + /// + /// Represents the emma:medium XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Medium, EndPoint.Medium, Group.Medium, Interpretation.Medium, OneOf.Medium, Sequence.Medium. + /// + /// + public static readonly XName medium = emma + "medium"; + + /// + /// Represents the emma:message-id XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EndPoint.MessageId. + /// + /// + public static readonly XName message_id = emma + "message-id"; + + /// + /// Represents the emma:mode XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Mode, EndPoint.Mode, Group.Mode, Interpretation.Mode, OneOf.Mode, Sequence.Mode. + /// + /// + public static readonly XName mode = emma + "mode"; + + /// + /// Represents the emma:model XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Model. + /// + /// + public static readonly XName model = emma + "model"; + + /// + /// Represents the emma:model-ref XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.ModelRef, Interpretation.ModelRef, OneOf.ModelRef, Sequence.ModelRef. + /// + /// + public static readonly XName model_ref = emma + "model-ref"; + + /// + /// Represents the emma:no-input XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Interpretation.NoInput. + /// + /// + public static readonly XName no_input = emma + "no-input"; + + /// + /// Represents the emma:node XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Node. + /// + /// + public static readonly XName node = emma + "node"; + + /// + /// Represents the emma:offset-to-start XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Arc.OffsetToStart, Group.OffsetToStart, Interpretation.OffsetToStart, OneOf.OffsetToStart, Sequence.OffsetToStart. + /// + /// + public static readonly XName offset_to_start = emma + "offset-to-start"; + + /// + /// Represents the emma:one-of XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: OneOf. + /// + /// + public static readonly XName one_of = emma + "one-of"; + + /// + /// Represents the emma:port-num XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EndPoint.PortNumber. + /// + /// + public static readonly XName port_num = emma + "port-num"; + + /// + /// Represents the emma:port-type XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EndPoint.PortType. + /// + /// + public static readonly XName port_type = emma + "port-type"; + + /// + /// Represents the emma:process XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.Process, Interpretation.Process, OneOf.Process, Sequence.Process. + /// + /// + public static readonly XName process = emma + "process"; + + /// + /// Represents the emma:sequence XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Sequence. + /// + /// + public static readonly XName sequence = emma + "sequence"; + + /// + /// Represents the emma:service-name XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EndPoint.ServiceName. + /// + /// + public static readonly XName service_name = emma + "service-name"; + + /// + /// Represents the emma:signal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.Signal, Interpretation.Signal, OneOf.Signal, Sequence.Signal. + /// + /// + public static readonly XName signal = emma + "signal"; + + /// + /// Represents the emma:signal-size XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.SignalSize, Interpretation.SignalSize, OneOf.SignalSize, Sequence.SignalSize. + /// + /// + public static readonly XName signal_size = emma + "signal-size"; + + /// + /// Represents the emma:source XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Arc.Source, Group.Source, Interpretation.Source, OneOf.Source, Sequence.Source. + /// + /// + public static readonly XName source = emma + "source"; + + /// + /// Represents the emma:start XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Arc.Start, Group.Start, Interpretation.Start, OneOf.Start, Sequence.Start. + /// + /// + public static readonly XName start = emma + "start"; + + /// + /// Represents the emma:time-ref-anchor-point XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Group.TimeReferenceAnchorPoint, Interpretation.TimeReferenceAnchorPoint, Lattice.TimeReferenceAnchorPoint, OneOf.TimeReferenceAnchorPoint, Sequence.TimeReferenceAnchorPoint. + /// + /// + public static readonly XName time_ref_anchor_point = emma + "time-ref-anchor-point"; + + /// + /// Represents the emma:time-ref-uri XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Group.TimeReference, Interpretation.TimeReference, Lattice.TimeReference, OneOf.TimeReference, Sequence.TimeReference. + /// + /// + public static readonly XName time_ref_uri = emma + "time-ref-uri"; + + /// + /// Represents the emma:tokens XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.Tokens, Interpretation.Tokens, OneOf.Tokens, Sequence.Tokens. + /// + /// + public static readonly XName tokens = emma + "tokens"; + + /// + /// Represents the emma:uninterpreted XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Interpretation.Uninterpreted. + /// + /// + public static readonly XName uninterpreted = emma + "uninterpreted"; + + /// + /// Represents the emma:verbal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Group.Verbal, Interpretation.Verbal, OneOf.Verbal, Sequence.Verbal. + /// + /// + public static readonly XName verbal = emma + "verbal"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/INKML.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/INKML.g.cs new file mode 100644 index 000000000..9269b2976 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/INKML.g.cs @@ -0,0 +1,381 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:inkml="http://www.w3.org/2003/InkML" namespace. + /// + public static class INKML + { + /// + /// Defines the XML namespace associated with the inkml prefix. + /// + public static readonly XNamespace inkml = "http://www.w3.org/2003/InkML"; + + /// + /// Represents the inkml:activeArea XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ActiveArea. + /// + /// + public static readonly XName activeArea = inkml + "activeArea"; + + /// + /// Represents the inkml:annotation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Annotation. + /// + /// + public static readonly XName annotation = inkml + "annotation"; + + /// + /// Represents the inkml:annotationXML XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: AnnotationXml. + /// + /// + public static readonly XName annotationXML = inkml + "annotationXML"; + + /// + /// Represents the inkml:bind XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Bind. + /// + /// + public static readonly XName bind = inkml + "bind"; + + /// + /// Represents the inkml:brush XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Brush. + /// + /// + public static readonly XName brush = inkml + "brush"; + + /// + /// Represents the inkml:brushProperty XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: BrushProperty. + /// + /// + public static readonly XName brushProperty = inkml + "brushProperty"; + + /// + /// Represents the inkml:canvas XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Canvas. + /// + /// + public static readonly XName canvas = inkml + "canvas"; + + /// + /// Represents the inkml:canvasTransform XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CanvasTransform. + /// + /// + public static readonly XName canvasTransform = inkml + "canvasTransform"; + + /// + /// Represents the inkml:channel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Channel. + /// + /// + public static readonly XName channel = inkml + "channel"; + + /// + /// Represents the inkml:channelProperties XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ChannelProperties. + /// + /// + public static readonly XName channelProperties = inkml + "channelProperties"; + + /// + /// Represents the inkml:channelProperty XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ChannelProperty. + /// + /// + public static readonly XName channelProperty = inkml + "channelProperty"; + + /// + /// Represents the inkml:context XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: Context. + /// + /// + public static readonly XName context = inkml + "context"; + + /// + /// Represents the inkml:definitions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Definitions. + /// + /// + public static readonly XName definitions = inkml + "definitions"; + + /// + /// Represents the inkml:ink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Ink. + /// + /// + public static readonly XName ink = inkml + "ink"; + + /// + /// Represents the inkml:inkSource XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: InkSource. + /// + /// + public static readonly XName inkSource = inkml + "inkSource"; + + /// + /// Represents the inkml:intermittentChannels XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: IntermittentChannels. + /// + /// + public static readonly XName intermittentChannels = inkml + "intermittentChannels"; + + /// + /// Represents the inkml:latency XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Latency. + /// + /// + public static readonly XName latency = inkml + "latency"; + + /// + /// Represents the inkml:mapping XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Mapping. + /// + /// + public static readonly XName mapping = inkml + "mapping"; + + /// + /// Represents the inkml:matrix XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Matrix. + /// + /// + public static readonly XName matrix = inkml + "matrix"; + + /// + /// Represents the inkml:sampleRate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SampleRate. + /// + /// + public static readonly XName sampleRate = inkml + "sampleRate"; + + /// + /// Represents the inkml:srcProperty XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SourceProperty. + /// + /// + public static readonly XName srcProperty = inkml + "srcProperty"; + + /// + /// Represents the inkml:table XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Table. + /// + /// + public static readonly XName table = inkml + "table"; + + /// + /// Represents the inkml:timestamp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Timestamp. + /// + /// + public static readonly XName timestamp = inkml + "timestamp"; + + /// + /// Represents the inkml:trace XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: Trace. + /// + /// + public static readonly XName trace = inkml + "trace"; + + /// + /// Represents the inkml:traceFormat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TraceFormat. + /// + /// + public static readonly XName traceFormat = inkml + "traceFormat"; + + /// + /// Represents the inkml:traceGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TraceGroup. + /// + /// + public static readonly XName traceGroup = inkml + "traceGroup"; + + /// + /// Represents the inkml:traceView XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: TraceView. + /// + /// + public static readonly XName traceView = inkml + "traceView"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/LC.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/LC.g.cs new file mode 100644 index 000000000..24106d034 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/LC.g.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:lc="http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas" namespace. + /// + public static class LC + { + /// + /// Defines the XML namespace associated with the lc prefix. + /// + public static readonly XNamespace lc = "http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas"; + + /// + /// Represents the lc:lockedCanvas XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: LockedCanvas. + /// + /// + public static readonly XName lockedCanvas = lc + "lockedCanvas"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/M.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/M.g.cs new file mode 100644 index 000000000..daccc3a4a --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/M.g.cs @@ -0,0 +1,1654 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" namespace. + /// + public static class M + { + /// + /// Defines the XML namespace associated with the m prefix. + /// + public static readonly XNamespace m = "http://schemas.openxmlformats.org/officeDocument/2006/math"; + + /// + /// Represents the m:acc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Accent. + /// + /// + public static readonly XName acc = m + "acc"; + + /// + /// Represents the m:accPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: AccentProperties. + /// + /// + public static readonly XName accPr = m + "accPr"; + + /// + /// Represents the m:aln XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Alignment. + /// + /// + public static readonly XName aln = m + "aln"; + + /// + /// Represents the m:alnAt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Break.AlignAt. + /// + /// + public static readonly XName alnAt = m + "alnAt"; + + /// + /// Represents the m:alnScr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlignScripts. + /// + /// + public static readonly XName alnScr = m + "alnScr"; + + /// + /// Represents the m:argPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ArgumentProperties. + /// + /// + public static readonly XName argPr = m + "argPr"; + + /// + /// Represents the m:argSz XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ArgumentSize. + /// + /// + public static readonly XName argSz = m + "argSz"; + + /// + /// Represents the m:bar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Bar. + /// + /// + public static readonly XName bar = m + "bar"; + + /// + /// Represents the m:barPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: BarProperties. + /// + /// + public static readonly XName barPr = m + "barPr"; + + /// + /// Represents the m:baseJc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BaseJustification. + /// + /// + public static readonly XName baseJc = m + "baseJc"; + + /// + /// Represents the m:begChr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BeginChar. + /// + /// + public static readonly XName begChr = m + "begChr"; + + /// + /// Represents the m:borderBox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: BorderBox. + /// + /// + public static readonly XName borderBox = m + "borderBox"; + + /// + /// Represents the m:borderBoxPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: BorderBoxProperties. + /// + /// + public static readonly XName borderBoxPr = m + "borderBoxPr"; + + /// + /// Represents the m:box XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Box. + /// + /// + public static readonly XName box = m + "box"; + + /// + /// Represents the m:boxPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: BoxProperties. + /// + /// + public static readonly XName boxPr = m + "boxPr"; + + /// + /// Represents the m:brk XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Break. + /// + /// + public static readonly XName brk = m + "brk"; + + /// + /// Represents the m:brkBin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BreakBinary. + /// + /// + public static readonly XName brkBin = m + "brkBin"; + + /// + /// Represents the m:brkBinSub XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BreakBinarySubtraction. + /// + /// + public static readonly XName brkBinSub = m + "brkBinSub"; + + /// + /// Represents the m:cGp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnGap. + /// + /// + public static readonly XName cGp = m + "cGp"; + + /// + /// Represents the m:cGpRule XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnGapRule. + /// + /// + public static readonly XName cGpRule = m + "cGpRule"; + + /// + /// Represents the m:chr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AccentChar. + /// + /// + public static readonly XName chr = m + "chr"; + + /// + /// Represents the m:count XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MatrixColumnCount. + /// + /// + public static readonly XName count = m + "count"; + + /// + /// Represents the m:cSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnSpacing. + /// + /// + public static readonly XName cSp = m + "cSp"; + + /// + /// Represents the m:ctrlPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: ControlProperties. + /// + /// + public static readonly XName ctrlPr = m + "ctrlPr"; + + /// + /// Represents the m:d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Delimiter. + /// + /// + public static readonly XName d = m + "d"; + + /// + /// Represents the m:defJc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DefaultJustification. + /// + /// + public static readonly XName defJc = m + "defJc"; + + /// + /// Represents the m:deg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Degree. + /// + /// + public static readonly XName deg = m + "deg"; + + /// + /// Represents the m:degHide XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideDegree. + /// + /// + public static readonly XName degHide = m + "degHide"; + + /// + /// Represents the m:den XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Denominator. + /// + /// + public static readonly XName den = m + "den"; + + /// + /// Represents the m:diff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Differential. + /// + /// + public static readonly XName diff = m + "diff"; + + /// + /// Represents the m:dispDef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DisplayDefaults. + /// + /// + public static readonly XName dispDef = m + "dispDef"; + + /// + /// Represents the m:dPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: DelimiterProperties. + /// + /// + public static readonly XName dPr = m + "dPr"; + + /// + /// Represents the m:e XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Base. + /// + /// + public static readonly XName e = m + "e"; + + /// + /// Represents the m:endChr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EndChar. + /// + /// + public static readonly XName endChr = m + "endChr"; + + /// + /// Represents the m:eqArr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: EquationArray. + /// + /// + public static readonly XName eqArr = m + "eqArr"; + + /// + /// Represents the m:eqArrPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: EquationArrayProperties. + /// + /// + public static readonly XName eqArrPr = m + "eqArrPr"; + + /// + /// Represents the m:f XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Fraction. + /// + /// + public static readonly XName f = m + "f"; + + /// + /// Represents the m:fName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: FunctionName. + /// + /// + public static readonly XName fName = m + "fName"; + + /// + /// Represents the m:fPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: FractionProperties. + /// + /// + public static readonly XName fPr = m + "fPr"; + + /// + /// Represents the m:func XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: MathFunction. + /// + /// + public static readonly XName func = m + "func"; + + /// + /// Represents the m:funcPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: FunctionProperties. + /// + /// + public static readonly XName funcPr = m + "funcPr"; + + /// + /// Represents the m:groupChr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: GroupChar. + /// + /// + public static readonly XName groupChr = m + "groupChr"; + + /// + /// Represents the m:groupChrPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: GroupCharProperties. + /// + /// + public static readonly XName groupChrPr = m + "groupChrPr"; + + /// + /// Represents the m:grow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GrowOperators. + /// + /// + public static readonly XName grow = m + "grow"; + + /// + /// Represents the m:hideBot XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideBottom. + /// + /// + public static readonly XName hideBot = m + "hideBot"; + + /// + /// Represents the m:hideLeft XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideLeft. + /// + /// + public static readonly XName hideLeft = m + "hideLeft"; + + /// + /// Represents the m:hideRight XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideRight. + /// + /// + public static readonly XName hideRight = m + "hideRight"; + + /// + /// Represents the m:hideTop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideTop. + /// + /// + public static readonly XName hideTop = m + "hideTop"; + + /// + /// Represents the m:interSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: InterSpacing. + /// + /// + public static readonly XName interSp = m + "interSp"; + + /// + /// Represents the m:intLim XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: IntegralLimitLocation. + /// + /// + public static readonly XName intLim = m + "intLim"; + + /// + /// Represents the m:intraSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: IntraSpacing. + /// + /// + public static readonly XName intraSp = m + "intraSp"; + + /// + /// Represents the m:jc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Justification. + /// + /// + public static readonly XName jc = m + "jc"; + + /// + /// Represents the m:lim XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Limit. + /// + /// + public static readonly XName lim = m + "lim"; + + /// + /// Represents the m:limLoc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LimitLocation. + /// + /// + public static readonly XName limLoc = m + "limLoc"; + + /// + /// Represents the m:limLow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: LimitLower. + /// + /// + public static readonly XName limLow = m + "limLow"; + + /// + /// Represents the m:limLowPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LimitLowerProperties. + /// + /// + public static readonly XName limLowPr = m + "limLowPr"; + + /// + /// Represents the m:limUpp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: LimitUpper. + /// + /// + public static readonly XName limUpp = m + "limUpp"; + + /// + /// Represents the m:limUppPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LimitUpperProperties. + /// + /// + public static readonly XName limUppPr = m + "limUppPr"; + + /// + /// Represents the m:lit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Literal. + /// + /// + public static readonly XName lit = m + "lit"; + + /// + /// Represents the m:lMargin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LeftMargin. + /// + /// + public static readonly XName lMargin = m + "lMargin"; + + /// + /// Represents the m:m XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Matrix. + /// + /// + public static readonly XName m_ = m + "m"; + + /// + /// Represents the m:mathFont XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MathFont. + /// + /// + public static readonly XName mathFont = m + "mathFont"; + + /// + /// Represents the m:mathPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: MathProperties. + /// + /// + public static readonly XName mathPr = m + "mathPr"; + + /// + /// Represents the m:maxDist XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MaxDistribution. + /// + /// + public static readonly XName maxDist = m + "maxDist"; + + /// + /// Represents the m:mc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MatrixColumn. + /// + /// + public static readonly XName mc = m + "mc"; + + /// + /// Represents the m:mcJc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MatrixColumnJustification. + /// + /// + public static readonly XName mcJc = m + "mcJc"; + + /// + /// Represents the m:mcPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: MatrixColumnProperties. + /// + /// + public static readonly XName mcPr = m + "mcPr"; + + /// + /// Represents the m:mcs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MatrixColumns. + /// + /// + public static readonly XName mcs = m + "mcs"; + + /// + /// Represents the m:mPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: MatrixProperties. + /// + /// + public static readonly XName mPr = m + "mPr"; + + /// + /// Represents the m:mr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MatrixRow. + /// + /// + public static readonly XName mr = m + "mr"; + + /// + /// Represents the m:nary XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Nary. + /// + /// + public static readonly XName nary = m + "nary"; + + /// + /// Represents the m:naryLim XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NaryLimitLocation. + /// + /// + public static readonly XName naryLim = m + "naryLim"; + + /// + /// Represents the m:naryPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: NaryProperties. + /// + /// + public static readonly XName naryPr = m + "naryPr"; + + /// + /// Represents the m:noBreak XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoBreak. + /// + /// + public static readonly XName noBreak = m + "noBreak"; + + /// + /// Represents the m:nor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NormalText. + /// + /// + public static readonly XName nor = m + "nor"; + + /// + /// Represents the m:num XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Numerator. + /// + /// + public static readonly XName num = m + "num"; + + /// + /// Represents the m:objDist XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ObjectDistribution. + /// + /// + public static readonly XName objDist = m + "objDist"; + + /// + /// Represents the m:oMath XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: OfficeMath. + /// + /// + public static readonly XName oMath = m + "oMath"; + + /// + /// Represents the m:oMathPara XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Paragraph. + /// + /// + public static readonly XName oMathPara = m + "oMathPara"; + + /// + /// Represents the m:oMathParaPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ParagraphProperties. + /// + /// + public static readonly XName oMathParaPr = m + "oMathParaPr"; + + /// + /// Represents the m:opEmu XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OperatorEmulator. + /// + /// + public static readonly XName opEmu = m + "opEmu"; + + /// + /// Represents the m:phant XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Phantom. + /// + /// + public static readonly XName phant = m + "phant"; + + /// + /// Represents the m:phantPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: PhantomProperties. + /// + /// + public static readonly XName phantPr = m + "phantPr"; + + /// + /// Represents the m:plcHide XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HidePlaceholder. + /// + /// + public static readonly XName plcHide = m + "plcHide"; + + /// + /// Represents the m:pos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Position. + /// + /// + public static readonly XName pos = m + "pos"; + + /// + /// Represents the m:postSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PostSpacing. + /// + /// + public static readonly XName postSp = m + "postSp"; + + /// + /// Represents the m:preSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PreSpacing. + /// + /// + public static readonly XName preSp = m + "preSp"; + + /// + /// Represents the m:r XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Run. + /// + /// + public static readonly XName r = m + "r"; + + /// + /// Represents the m:rad XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Radical. + /// + /// + public static readonly XName rad = m + "rad"; + + /// + /// Represents the m:radPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: RadicalProperties. + /// + /// + public static readonly XName radPr = m + "radPr"; + + /// + /// Represents the m:rMargin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RightMargin. + /// + /// + public static readonly XName rMargin = m + "rMargin"; + + /// + /// Represents the m:rPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: RunProperties. + /// + /// + public static readonly XName rPr = m + "rPr"; + + /// + /// Represents the m:rSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RowSpacing. + /// + /// + public static readonly XName rSp = m + "rSp"; + + /// + /// Represents the m:rSpRule XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RowSpacingRule. + /// + /// + public static readonly XName rSpRule = m + "rSpRule"; + + /// + /// Represents the m:scr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Script. + /// + /// + public static readonly XName scr = m + "scr"; + + /// + /// Represents the m:sepChr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SeparatorChar. + /// + /// + public static readonly XName sepChr = m + "sepChr"; + + /// + /// Represents the m:show XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowPhantom. + /// + /// + public static readonly XName show = m + "show"; + + /// + /// Represents the m:shp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName shp = m + "shp"; + + /// + /// Represents the m:smallFrac XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SmallFraction. + /// + /// + public static readonly XName smallFrac = m + "smallFrac"; + + /// + /// Represents the m:sPre XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: PreSubSuper. + /// + /// + public static readonly XName sPre = m + "sPre"; + + /// + /// Represents the m:sPrePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PreSubSuperProperties. + /// + /// + public static readonly XName sPrePr = m + "sPrePr"; + + /// + /// Represents the m:sSub XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Subscript. + /// + /// + public static readonly XName sSub = m + "sSub"; + + /// + /// Represents the m:sSubPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SubscriptProperties. + /// + /// + public static readonly XName sSubPr = m + "sSubPr"; + + /// + /// Represents the m:sSubSup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: SubSuperscript. + /// + /// + public static readonly XName sSubSup = m + "sSubSup"; + + /// + /// Represents the m:sSubSupPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SubSuperscriptProperties. + /// + /// + public static readonly XName sSubSupPr = m + "sSubSupPr"; + + /// + /// Represents the m:sSup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Superscript. + /// + /// + public static readonly XName sSup = m + "sSup"; + + /// + /// Represents the m:sSupPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SuperscriptProperties. + /// + /// + public static readonly XName sSupPr = m + "sSupPr"; + + /// + /// Represents the m:strikeBLTR XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StrikeBottomLeftToTopRight. + /// + /// + public static readonly XName strikeBLTR = m + "strikeBLTR"; + + /// + /// Represents the m:strikeH XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StrikeHorizontal. + /// + /// + public static readonly XName strikeH = m + "strikeH"; + + /// + /// Represents the m:strikeTLBR XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StrikeTopLeftToBottomRight. + /// + /// + public static readonly XName strikeTLBR = m + "strikeTLBR"; + + /// + /// Represents the m:strikeV XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StrikeVertical. + /// + /// + public static readonly XName strikeV = m + "strikeV"; + + /// + /// Represents the m:sty XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Style. + /// + /// + public static readonly XName sty = m + "sty"; + + /// + /// Represents the m:sub XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SubArgument. + /// + /// + public static readonly XName sub = m + "sub"; + + /// + /// Represents the m:subHide XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideSubArgument. + /// + /// + public static readonly XName subHide = m + "subHide"; + + /// + /// Represents the m:sup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SuperArgument. + /// + /// + public static readonly XName sup = m + "sup"; + + /// + /// Represents the m:supHide XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideSuperArgument. + /// + /// + public static readonly XName supHide = m + "supHide"; + + /// + /// Represents the m:t XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Text. + /// + /// + public static readonly XName t = m + "t"; + + /// + /// Represents the m:transp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Transparent. + /// + /// + public static readonly XName transp = m + "transp"; + + /// + /// Represents the m:type XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FractionType. + /// + /// + public static readonly XName type = m + "type"; + + /// + /// Represents the m:val XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AccentChar.Val, Alignment.Val, AlignScripts.Val, ArgumentSize.Val, BaseJustification.Val, BeginChar.Val, Break.Val, BreakBinary.Val, BreakBinarySubtraction.Val, ColumnGap.Val, ColumnGapRule.Val, ColumnSpacing.Val, DefaultJustification.Val, Differential.Val, DisplayDefaults.Val, EndChar.Val, FractionType.Val, GrowOperators.Val, HideBottom.Val, HideDegree.Val, HideLeft.Val, HidePlaceholder.Val, HideRight.Val, HideSubArgument.Val, HideSuperArgument.Val, HideTop.Val, IntegralLimitLocation.Val, InterSpacing.Val, IntraSpacing.Val, Justification.Val, LeftMargin.Val, LimitLocation.Val, Literal.Val, MathFont.Val, MatrixColumnCount.Val, MatrixColumnJustification.Val, MaxDistribution.Val, NaryLimitLocation.Val, NoBreak.Val, NormalText.Val, ObjectDistribution.Val, OperatorEmulator.Val, Position.Val, PostSpacing.Val, PreSpacing.Val, RightMargin.Val, RowSpacing.Val, RowSpacingRule.Val, Script.Val, SeparatorChar.Val, Shape.Val, ShowPhantom.Val, SmallFraction.Val, StrikeBottomLeftToTopRight.Val, StrikeHorizontal.Val, StrikeTopLeftToBottomRight.Val, StrikeVertical.Val, Style.Val, Transparent.Val, VerticalJustification.Val, WrapIndent.Val, WrapRight.Val, ZeroAscent.Val, ZeroDescent.Val, ZeroWidth.Val. + /// + /// + public static readonly XName val = m + "val"; + + /// + /// Represents the m:vertJc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VerticalJustification. + /// + /// + public static readonly XName vertJc = m + "vertJc"; + + /// + /// Represents the m:wrapIndent XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WrapIndent. + /// + /// + public static readonly XName wrapIndent = m + "wrapIndent"; + + /// + /// Represents the m:wrapRight XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WrapRight. + /// + /// + public static readonly XName wrapRight = m + "wrapRight"; + + /// + /// Represents the m:zeroAsc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ZeroAscent. + /// + /// + public static readonly XName zeroAsc = m + "zeroAsc"; + + /// + /// Represents the m:zeroDesc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ZeroDescent. + /// + /// + public static readonly XName zeroDesc = m + "zeroDesc"; + + /// + /// Represents the m:zeroWid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ZeroWidth. + /// + /// + public static readonly XName zeroWid = m + "zeroWid"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSINK.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSINK.g.cs new file mode 100644 index 000000000..b745da3da --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSINK.g.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:msink="http://schemas.microsoft.com/ink/2010/main" namespace. + /// + public static class MSINK + { + /// + /// Defines the XML namespace associated with the msink prefix. + /// + public static readonly XNamespace msink = "http://schemas.microsoft.com/ink/2010/main"; + + /// + /// Represents the msink:context XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ContextNode. + /// + /// + public static readonly XName context = msink + "context"; + + /// + /// Represents the msink:destinationLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DestinationLink. + /// + /// + public static readonly XName destinationLink = msink + "destinationLink"; + + /// + /// Represents the msink:property XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ContextNodeProperty. + /// + /// + public static readonly XName property = msink + "property"; + + /// + /// Represents the msink:sourceLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SourceLink. + /// + /// + public static readonly XName sourceLink = msink + "sourceLink"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSO.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSO.g.cs new file mode 100644 index 000000000..b729fd575 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSO.g.cs @@ -0,0 +1,432 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:mso="http://schemas.microsoft.com/office/2006/01/customui" namespace. + /// + public static class MSO + { + /// + /// Defines the XML namespace associated with the mso prefix. + /// + public static readonly XNamespace mso = "http://schemas.microsoft.com/office/2006/01/customui"; + + /// + /// Represents the mso:box XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Box. + /// + /// + public static readonly XName box = mso + "box"; + + /// + /// Represents the mso:button XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Button, UnsizedButton, VisibleButton. + /// + /// + public static readonly XName button = mso + "button"; + + /// + /// Represents the mso:buttonGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: ButtonGroup. + /// + /// + public static readonly XName buttonGroup = mso + "buttonGroup"; + + /// + /// Represents the mso:checkBox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CheckBox. + /// + /// + public static readonly XName checkBox = mso + "checkBox"; + + /// + /// Represents the mso:comboBox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ComboBox. + /// + /// + public static readonly XName comboBox = mso + "comboBox"; + + /// + /// Represents the mso:command XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: RepurposedCommand. + /// + /// + public static readonly XName command = mso + "command"; + + /// + /// Represents the mso:commands XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: RepurposedCommands. + /// + /// + public static readonly XName commands = mso + "commands"; + + /// + /// Represents the mso:contextualTabs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ContextualTabSets. + /// + /// + public static readonly XName contextualTabs = mso + "contextualTabs"; + + /// + /// Represents the mso:control XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ControlClone, QuickAccessToolbarControlClone, UnsizedControlClone. + /// + /// + public static readonly XName control = mso + "control"; + + /// + /// Represents the mso:customUI XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CustomUI. + /// + /// + public static readonly XName customUI = mso + "customUI"; + + /// + /// Represents the mso:dialogBoxLauncher XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DialogBoxLauncher. + /// + /// + public static readonly XName dialogBoxLauncher = mso + "dialogBoxLauncher"; + + /// + /// Represents the mso:documentControls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: DocumentSpecificQuickAccessToolbarControls. + /// + /// + public static readonly XName documentControls = mso + "documentControls"; + + /// + /// Represents the mso:dropDown XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DropDown. + /// + /// + public static readonly XName dropDown = mso + "dropDown"; + + /// + /// Represents the mso:dynamicMenu XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DynamicMenu, UnsizedDynamicMenu. + /// + /// + public static readonly XName dynamicMenu = mso + "dynamicMenu"; + + /// + /// Represents the mso:editBox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: EditBox. + /// + /// + public static readonly XName editBox = mso + "editBox"; + + /// + /// Represents the mso:gallery XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Gallery, UnsizedGallery. + /// + /// + public static readonly XName gallery = mso + "gallery"; + + /// + /// Represents the mso:group XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Group. + /// + /// + public static readonly XName group = mso + "group"; + + /// + /// Represents the mso:item XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Item. + /// + /// + public static readonly XName item = mso + "item"; + + /// + /// Represents the mso:labelControl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TextLabel. + /// + /// + public static readonly XName labelControl = mso + "labelControl"; + + /// + /// Represents the mso:menu XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Menu, MenuWithTitle, UnsizedMenu. + /// + /// + public static readonly XName menu = mso + "menu"; + + /// + /// Represents the mso:menuSeparator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: MenuSeparator. + /// + /// + public static readonly XName menuSeparator = mso + "menuSeparator"; + + /// + /// Represents the mso:officeMenu XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: OfficeMenu. + /// + /// + public static readonly XName officeMenu = mso + "officeMenu"; + + /// + /// Represents the mso:qat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: QuickAccessToolbar. + /// + /// + public static readonly XName qat = mso + "qat"; + + /// + /// Represents the mso:ribbon XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Ribbon. + /// + /// + public static readonly XName ribbon = mso + "ribbon"; + + /// + /// Represents the mso:separator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: VerticalSeparator. + /// + /// + public static readonly XName separator = mso + "separator"; + + /// + /// Represents the mso:sharedControls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: SharedQatControls. + /// + /// + public static readonly XName sharedControls = mso + "sharedControls"; + + /// + /// Represents the mso:splitButton XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SplitButton, SplitButtonWithTitle, UnsizedSplitButton. + /// + /// + public static readonly XName splitButton = mso + "splitButton"; + + /// + /// Represents the mso:tab XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Tab. + /// + /// + public static readonly XName tab = mso + "tab"; + + /// + /// Represents the mso:tabs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Tabs. + /// + /// + public static readonly XName tabs = mso + "tabs"; + + /// + /// Represents the mso:tabSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ContextualTabSet. + /// + /// + public static readonly XName tabSet = mso + "tabSet"; + + /// + /// Represents the mso:toggleButton XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ToggleButton, UnsizedToggleButton, VisibleToggleButton. + /// + /// + public static readonly XName toggleButton = mso + "toggleButton"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSO14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSO14.g.cs new file mode 100644 index 000000000..028dc14b7 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/MSO14.g.cs @@ -0,0 +1,676 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:mso14="http://schemas.microsoft.com/office/2009/07/customui" namespace. + /// + public static class MSO14 + { + /// + /// Defines the XML namespace associated with the mso14 prefix. + /// + public static readonly XNamespace mso14 = "http://schemas.microsoft.com/office/2009/07/customui"; + + /// + /// Represents the mso14:backstage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Backstage. + /// + /// + public static readonly XName backstage = mso14 + "backstage"; + + /// + /// Represents the mso14:bottomItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BottomItemsGroupControls. + /// + /// + public static readonly XName bottomItems = mso14 + "bottomItems"; + + /// + /// Represents the mso14:box XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Box. + /// + /// + public static readonly XName box = mso14 + "box"; + + /// + /// Represents the mso14:button XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageFastCommandButton, BackstageGroupButton, BackstageMenuButton, BackstageRegularButton, Button, ButtonRegular, VisibleButton. + /// + /// + public static readonly XName button = mso14 + "button"; + + /// + /// Represents the mso14:buttonGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: ButtonGroup. + /// + /// + public static readonly XName buttonGroup = mso14 + "buttonGroup"; + + /// + /// Represents the mso14:category XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TaskFormGroupCategory, TaskGroupCategory. + /// + /// + public static readonly XName category = mso14 + "category"; + + /// + /// Represents the mso14:checkBox XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageCheckBox, BackstageMenuCheckBox, CheckBox. + /// + /// + public static readonly XName checkBox = mso14 + "checkBox"; + + /// + /// Represents the mso14:comboBox XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageComboBox, ComboBox. + /// + /// + public static readonly XName comboBox = mso14 + "comboBox"; + + /// + /// Represents the mso14:command XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Command. + /// + /// + public static readonly XName command = mso14 + "command"; + + /// + /// Represents the mso14:commands XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Commands. + /// + /// + public static readonly XName commands = mso14 + "commands"; + + /// + /// Represents the mso14:contextMenu XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ContextMenu. + /// + /// + public static readonly XName contextMenu = mso14 + "contextMenu"; + + /// + /// Represents the mso14:contextMenus XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ContextMenus. + /// + /// + public static readonly XName contextMenus = mso14 + "contextMenus"; + + /// + /// Represents the mso14:contextualTabs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ContextualTabs. + /// + /// + public static readonly XName contextualTabs = mso14 + "contextualTabs"; + + /// + /// Represents the mso14:control XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ControlClone, ControlCloneQat, ControlCloneRegular. + /// + /// + public static readonly XName control = mso14 + "control"; + + /// + /// Represents the mso14:customUI XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CustomUI. + /// + /// + public static readonly XName customUI = mso14 + "customUI"; + + /// + /// Represents the mso14:dialogBoxLauncher XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DialogBoxLauncher. + /// + /// + public static readonly XName dialogBoxLauncher = mso14 + "dialogBoxLauncher"; + + /// + /// Represents the mso14:documentControls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: DocumentControlsQatItems. + /// + /// + public static readonly XName documentControls = mso14 + "documentControls"; + + /// + /// Represents the mso14:dropDown XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageDropDown, DropDownRegular. + /// + /// + public static readonly XName dropDown = mso14 + "dropDown"; + + /// + /// Represents the mso14:dynamicMenu XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DynamicMenu, DynamicMenuRegular. + /// + /// + public static readonly XName dynamicMenu = mso14 + "dynamicMenu"; + + /// + /// Represents the mso14:editBox XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageEditBox, EditBox. + /// + /// + public static readonly XName editBox = mso14 + "editBox"; + + /// + /// Represents the mso14:firstColumn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: BackstageGroups. + /// + /// + public static readonly XName firstColumn = mso14 + "firstColumn"; + + /// + /// Represents the mso14:gallery XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Gallery, GalleryRegular. + /// + /// + public static readonly XName gallery = mso14 + "gallery"; + + /// + /// Represents the mso14:group XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageGroup, Group. + /// + /// + public static readonly XName group = mso14 + "group"; + + /// + /// Represents the mso14:groupBox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: GroupBox. + /// + /// + public static readonly XName groupBox = mso14 + "groupBox"; + + /// + /// Represents the mso14:hyperlink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Hyperlink. + /// + /// + public static readonly XName hyperlink = mso14 + "hyperlink"; + + /// + /// Represents the mso14:imageControl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ImageControl. + /// + /// + public static readonly XName imageControl = mso14 + "imageControl"; + + /// + /// Represents the mso14:item XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: Item, ItemBackstageItem. + /// + /// + public static readonly XName item = mso14 + "item"; + + /// + /// Represents the mso14:labelControl XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageLabelControl, LabelControl. + /// + /// + public static readonly XName labelControl = mso14 + "labelControl"; + + /// + /// Represents the mso14:layoutContainer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: LayoutContainer. + /// + /// + public static readonly XName layoutContainer = mso14 + "layoutContainer"; + + /// + /// Represents the mso14:menu XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following child XML elements: , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstagePrimaryMenu, BackstageSubMenu, Menu, MenuRegular. + /// + /// + public static readonly XName menu = mso14 + "menu"; + + /// + /// Represents the mso14:menuGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: BackstageMenuGroup. + /// + /// + public static readonly XName menuGroup = mso14 + "menuGroup"; + + /// + /// Represents the mso14:menuSeparator XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: MenuSeparator, MenuSeparatorNoTitle. + /// + /// + public static readonly XName menuSeparator = mso14 + "menuSeparator"; + + /// + /// Represents the mso14:primaryItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: PrimaryItem. + /// + /// + public static readonly XName primaryItem = mso14 + "primaryItem"; + + /// + /// Represents the mso14:qat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: QuickAccessToolbar. + /// + /// + public static readonly XName qat = mso14 + "qat"; + + /// + /// Represents the mso14:radioButton XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: RadioButtonBackstageItem. + /// + /// + public static readonly XName radioButton = mso14 + "radioButton"; + + /// + /// Represents the mso14:radioGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RadioGroup. + /// + /// + public static readonly XName radioGroup = mso14 + "radioGroup"; + + /// + /// Represents the mso14:ribbon XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Ribbon. + /// + /// + public static readonly XName ribbon = mso14 + "ribbon"; + + /// + /// Represents the mso14:secondColumn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SimpleGroups. + /// + /// + public static readonly XName secondColumn = mso14 + "secondColumn"; + + /// + /// Represents the mso14:separator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Separator. + /// + /// + public static readonly XName separator = mso14 + "separator"; + + /// + /// Represents the mso14:sharedControls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: SharedControlsQatItems. + /// + /// + public static readonly XName sharedControls = mso14 + "sharedControls"; + + /// + /// Represents the mso14:splitButton XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SplitButton, SplitButtonRegular. + /// + /// + public static readonly XName splitButton = mso14 + "splitButton"; + + /// + /// Represents the mso14:tab XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageTab, Tab. + /// + /// + public static readonly XName tab = mso14 + "tab"; + + /// + /// Represents the mso14:tabs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Tabs. + /// + /// + public static readonly XName tabs = mso14 + "tabs"; + + /// + /// Represents the mso14:tabSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TabSet. + /// + /// + public static readonly XName tabSet = mso14 + "tabSet"; + + /// + /// Represents the mso14:task XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TaskFormGroupTask, TaskGroupTask. + /// + /// + public static readonly XName task = mso14 + "task"; + + /// + /// Represents the mso14:taskFormGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TaskFormGroup. + /// + /// + public static readonly XName taskFormGroup = mso14 + "taskFormGroup"; + + /// + /// Represents the mso14:taskGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TaskGroup. + /// + /// + public static readonly XName taskGroup = mso14 + "taskGroup"; + + /// + /// Represents the mso14:toggleButton XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BackstageMenuToggleButton, ToggleButton, ToggleButtonRegular, VisibleToggleButton. + /// + /// + public static readonly XName toggleButton = mso14 + "toggleButton"; + + /// + /// Represents the mso14:topItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TopItemsGroupControls. + /// + /// + public static readonly XName topItems = mso14 + "topItems"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/NoNamespace.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/NoNamespace.g.cs new file mode 100644 index 000000000..d46c078b3 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/NoNamespace.g.cs @@ -0,0 +1,22598 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XName fields for the empty namespace. + /// + public static class NoNamespace + { + + /// + /// Represents the a XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: AlphaReplace.Alpha, CalculationCell.Array. + /// + /// + public static readonly XName a = "a"; + + /// + /// Represents the aboveAverage XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.AboveAverage. + /// + /// + public static readonly XName aboveAverage = "aboveAverage"; + + /// + /// Represents the aca XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.AlwaysCalculateArray. + /// + /// + public static readonly XName aca = "aca"; + + /// + /// Represents the accel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.Acceleration. + /// + /// + public static readonly XName accel = "accel"; + + /// + /// Represents the accent1 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Accent1, ColorMapOverride.Accent1, ColorMappingType.Accent1, OverrideColorMapping.Accent1. + /// + /// + public static readonly XName accent1 = "accent1"; + + /// + /// Represents the accent2 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Accent2, ColorMapOverride.Accent2, ColorMappingType.Accent2, OverrideColorMapping.Accent2. + /// + /// + public static readonly XName accent2 = "accent2"; + + /// + /// Represents the accent3 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Accent3, ColorMapOverride.Accent3, ColorMappingType.Accent3, OverrideColorMapping.Accent3. + /// + /// + public static readonly XName accent3 = "accent3"; + + /// + /// Represents the accent4 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Accent4, ColorMapOverride.Accent4, ColorMappingType.Accent4, OverrideColorMapping.Accent4. + /// + /// + public static readonly XName accent4 = "accent4"; + + /// + /// Represents the accent5 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Accent5, ColorMapOverride.Accent5, ColorMappingType.Accent5, OverrideColorMapping.Accent5. + /// + /// + public static readonly XName accent5 = "accent5"; + + /// + /// Represents the accent6 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Accent6, ColorMapOverride.Accent6, ColorMappingType.Accent6, OverrideColorMapping.Accent6. + /// + /// + public static readonly XName accent6 = "accent6"; + + /// + /// Represents the accentbar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.AccentBar. + /// + /// + public static readonly XName accentbar = "accentbar"; + + /// + /// Represents the accumulate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonBehavior.Accumulate. + /// + /// + public static readonly XName accumulate = "accumulate"; + + /// + /// Represents the accuracyVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.AccuracyVersion. + /// + /// + public static readonly XName accuracyVersion = "accuracyVersion"; + + /// + /// Represents the action XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: Format.Action, HyperlinkOnClick.Action, HyperlinkOnHover.Action, HyperlinkOnMouseOver.Action, RevisionComment.Action, RevisionCustomView.Action, RevisionRowColumn.Action. + /// + /// + public static readonly XName action = "action"; + + /// + /// Represents the activeCell XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Selection.ActiveCell. + /// + /// + public static readonly XName activeCell = "activeCell"; + + /// + /// Represents the activeCellId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Selection.ActiveCellId. + /// + /// + public static readonly XName activeCellId = "activeCellId"; + + /// + /// Represents the activeCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotSelection.ActiveColumn. + /// + /// + public static readonly XName activeCol = "activeCol"; + + /// + /// Represents the activePane XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Pane.ActivePane. + /// + /// + public static readonly XName activePane = "activePane"; + + /// + /// Represents the activePresent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.ActivePresent. + /// + /// + public static readonly XName activePresent = "activePresent"; + + /// + /// Represents the activeRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotSelection.ActiveRow. + /// + /// + public static readonly XName activeRow = "activeRow"; + + /// + /// Represents the activeSheetId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ActiveSheetId. + /// + /// + public static readonly XName activeSheetId = "activeSheetId"; + + /// + /// Represents the activeTab XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookView.ActiveTab. + /// + /// + public static readonly XName activeTab = "activeTab"; + + /// + /// Represents the additive XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonBehavior.Additive. + /// + /// + public static readonly XName additive = "additive"; + + /// + /// Represents the addlxml XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.AdditionalXml. + /// + /// + public static readonly XName addlxml = "addlxml"; + + /// + /// Represents the addlXml XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.AdditionalXml. + /// + /// + public static readonly XName addlXml_ = "addlXml"; + + /// + /// Represents the adj XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Shape.Adjustment, Shapetype.Adjustment. + /// + /// + public static readonly XName adj = "adj"; + + /// + /// Represents the adjust XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.Adjust. + /// + /// + public static readonly XName adjust = "adjust"; + + /// + /// Represents the adjustColumnWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.AdjustColumnWidth. + /// + /// + public static readonly XName adjustColumnWidth = "adjustColumnWidth"; + + /// + /// Represents the adjusthandles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.AdjustHandles. + /// + /// + public static readonly XName adjusthandles = "adjusthandles"; + + /// + /// Represents the advAuto XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BuildParagraph.AutoAdvance. + /// + /// + public static readonly XName advAuto = "advAuto"; + + /// + /// Represents the advClick XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Transition.AdvanceOnClick. + /// + /// + public static readonly XName advClick = "advClick"; + + /// + /// Represents the advise XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: DdeItem.Advise, OleItem.Advise. + /// + /// + public static readonly XName advise = "advise"; + + /// + /// Represents the advTm XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Transition.AdvanceAfterTime. + /// + /// + public static readonly XName advTm = "advTm"; + + /// + /// Represents the afterEffect XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.AfterEffect. + /// + /// + public static readonly XName afterEffect = "afterEffect"; + + /// + /// Represents the aggregatedColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.AggregatedColumn. + /// + /// + public static readonly XName aggregatedColumn = "aggregatedColumn"; + + /// + /// Represents the algIdExt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.ExtendedCryptographicAlgorithm. + /// + /// + public static readonly XName algIdExt = "algIdExt"; + + /// + /// Represents the algIdExtSource XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.ExtendedCryptographicAlgorithmSource. + /// + /// + public static readonly XName algIdExtSource = "algIdExtSource"; + + /// + /// Represents the algn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomBorderLineProperties.Alignment, BottomLeftToTopRightBorderLineProperties.Alignment, DefaultParagraphProperties.Alignment, HiddenLineProperties.Alignment, LeftBorderLineProperties.Alignment, Level1ParagraphProperties.Alignment, Level2ParagraphProperties.Alignment, Level3ParagraphProperties.Alignment, Level4ParagraphProperties.Alignment, Level5ParagraphProperties.Alignment, Level6ParagraphProperties.Alignment, Level7ParagraphProperties.Alignment, Level8ParagraphProperties.Alignment, Level9ParagraphProperties.Alignment, OuterShadow.Alignment, Outline.Alignment, ParagraphProperties.Alignment, Reflection.Alignment, RightBorderLineProperties.Alignment, TabStop.Alignment, Tile.Alignment, TopBorderLineProperties.Alignment, TopLeftToBottomRightBorderLineProperties.Alignment, Underline.Alignment. + /// + /// + public static readonly XName algn = "algn"; + + /// + /// Represents the algorithmName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ChartSheetProtection.AlgorithmName, FileSharing.AlgorithmName, ModificationVerifier.AlgorithmName, ProtectedRange.AlgorithmName, SheetProtection.AlgorithmName. + /// + /// + public static readonly XName algorithmName = "algorithmName"; + + /// + /// Represents the align XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartTitle.Align, LayoutContainer.Align, Legend.Align. + /// + /// + public static readonly XName align = "align"; + + /// + /// Represents the alignLabel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BackstageComboBox.AlignLabel, BackstageDropDown.AlignLabel, BackstageEditBox.AlignLabel, BackstageLabelControl.AlignLabel, Hyperlink.AlignLabel, RadioGroup.AlignLabel. + /// + /// + public static readonly XName alignLabel = "alignLabel"; + + /// + /// Represents the alignment XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PhoneticProperties.Alignment. + /// + /// + public static readonly XName alignment = "alignment"; + + /// + /// Represents the alignmentLevel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.AlignmentLevel. + /// + /// + public static readonly XName alignmentLevel = "alignmentLevel"; + + /// + /// Represents the alignshape XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.AlignShape. + /// + /// + public static readonly XName alignshape = "alignshape"; + + /// + /// Represents the alignWithMargins XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HeaderFooter.AlignWithMargins. + /// + /// + public static readonly XName alignWithMargins = "alignWithMargins"; + + /// + /// Represents the allCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.AllCaption. + /// + /// + public static readonly XName allCaption = "allCaption"; + + /// + /// Represents the allDrilled XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.AllDrilled. + /// + /// + public static readonly XName allDrilled = "allDrilled"; + + /// + /// Represents the allocationMethod XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotChange.AllocationMethod, PivotTableDefinition.AllocationMethod. + /// + /// + public static readonly XName allocationMethod = "allocationMethod"; + + /// + /// Represents the allowBlank XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.AllowBlank. + /// + /// + public static readonly XName allowBlank = "allowBlank"; + + /// + /// Represents the allowcomments XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.AllowComments. + /// + /// + public static readonly XName allowcomments = "allowcomments"; + + /// + /// Represents the allowComments XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.AllowComments. + /// + /// + public static readonly XName allowComments_ = "allowComments"; + + /// + /// Represents the allowedTaskSizes XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TaskFormGroup.AllowedTaskSizes, TaskGroup.AllowedTaskSizes. + /// + /// + public static readonly XName allowedTaskSizes = "allowedTaskSizes"; + + /// + /// Represents the allowOverlap XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Anchor.AllowOverlap. + /// + /// + public static readonly XName allowOverlap = "allowOverlap"; + + /// + /// Represents the allowPng XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: WebProperties.AllowPng, WebPublishing.AllowPng. + /// + /// + public static readonly XName allowPng = "allowPng"; + + /// + /// Represents the allowRefreshQuery XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.AllowRefreshQuery. + /// + /// + public static readonly XName allowRefreshQuery = "allowRefreshQuery"; + + /// + /// Represents the allUniqueName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.AllUniqueName. + /// + /// + public static readonly XName allUniqueName = "allUniqueName"; + + /// + /// Represents the alt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Alternate, Curve.Alternate, Group.Alternate, ImageFile.Alternate, Line.Alternate, Oval.Alternate, PolyLine.Alternate, Rectangle.Alternate, RoundRectangle.Alternate, Shape.Alternate, Shapetype.Alternate. + /// + /// + public static readonly XName alt = "alt"; + + /// + /// Represents the altLang XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.AlternativeLanguage, EndParagraphRunProperties.AlternativeLanguage, RunProperties.AlternativeLanguage, TextCharacterPropertiesType.AlternativeLanguage. + /// + /// + public static readonly XName altLang = "altLang"; + + /// + /// Represents the altText XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: CommentProperties.AltText, ControlProperties.AltText, EmbeddedObjectProperties.AltText, ImageControl.AltText, PivotTableDefinition.AltText, Table.AltText. + /// + /// + public static readonly XName altText = "altText"; + + /// + /// Represents the altTextSummary XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.AltTextSummary, Table.AltTextSummary. + /// + /// + public static readonly XName altTextSummary = "altTextSummary"; + + /// + /// Represents the alwaysShow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionComment.AlwaysShow. + /// + /// + public static readonly XName alwaysShow = "alwaysShow"; + + /// + /// Represents the amount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharpenSoften.Amount. + /// + /// + public static readonly XName amount = "amount"; + + /// + /// Represents the amt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: AlphaModulationFixed.Amount, TintEffect.Amount. + /// + /// + public static readonly XName amt = "amt"; + + /// + /// Represents the anchor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BodyProperties.Anchor, TableCellProperties.Anchor, TextBodyProperties.Anchor. + /// + /// + public static readonly XName anchor = "anchor"; + + /// + /// Represents the anchorCtr XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BodyProperties.AnchorCenter, TableCellProperties.AnchorCenter, TextBodyProperties.AnchorCenter. + /// + /// + public static readonly XName anchorCtr = "anchorCtr"; + + /// + /// Represents the anchorx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextWrap.AnchorX. + /// + /// + public static readonly XName anchorx = "anchorx"; + + /// + /// Represents the anchory XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextWrap.AnchorY. + /// + /// + public static readonly XName anchory = "anchory"; + + /// + /// Represents the and XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomFilters.And. + /// + /// + public static readonly XName and = "and"; + + /// + /// Represents the ang XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConnectionSite.Angle, LinearGradientFill.Angle. + /// + /// + public static readonly XName ang = "ang"; + + /// + /// Represents the angle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Callout.Angle, Fill.Angle. + /// + /// + public static readonly XName angle = "angle"; + + /// + /// Represents the animBg XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BuildChart.AnimateBackground, BuildOleChart.AnimateBackground, BuildParagraph.AnimateBackground. + /// + /// + public static readonly XName animBg = "animBg"; + + /// + /// Represents the annotation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Ink.AnnotationFlag. + /// + /// + public static readonly XName annotation = "annotation"; + + /// + /// Represents the Append XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Map.AppendData. + /// + /// + public static readonly XName Append = "Append"; + + /// + /// Represents the apply XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.Apply. + /// + /// + public static readonly XName apply = "apply"; + + /// + /// Represents the applyAlignment XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.ApplyAlignment. + /// + /// + public static readonly XName applyAlignment = "applyAlignment"; + + /// + /// Represents the applyAlignmentFormats XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ApplyAlignmentFormats, QueryTable.ApplyAlignmentFormats, RevisionAutoFormat.ApplyAlignmentFormats. + /// + /// + public static readonly XName applyAlignmentFormats = "applyAlignmentFormats"; + + /// + /// Represents the applyBorder XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.ApplyBorder. + /// + /// + public static readonly XName applyBorder = "applyBorder"; + + /// + /// Represents the applyBorderFormats XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ApplyBorderFormats, QueryTable.ApplyBorderFormats, RevisionAutoFormat.ApplyBorderFormats. + /// + /// + public static readonly XName applyBorderFormats = "applyBorderFormats"; + + /// + /// Represents the applyFill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.ApplyFill. + /// + /// + public static readonly XName applyFill = "applyFill"; + + /// + /// Represents the applyFont XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.ApplyFont. + /// + /// + public static readonly XName applyFont = "applyFont"; + + /// + /// Represents the applyFontFormats XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ApplyFontFormats, QueryTable.ApplyFontFormats, RevisionAutoFormat.ApplyFontFormats. + /// + /// + public static readonly XName applyFontFormats = "applyFontFormats"; + + /// + /// Represents the applyNumberFormat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.ApplyNumberFormat. + /// + /// + public static readonly XName applyNumberFormat = "applyNumberFormat"; + + /// + /// Represents the applyNumberFormats XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ApplyNumberFormats, QueryTable.ApplyNumberFormats, RevisionAutoFormat.ApplyNumberFormats. + /// + /// + public static readonly XName applyNumberFormats = "applyNumberFormats"; + + /// + /// Represents the applyPatternFormats XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ApplyPatternFormats, QueryTable.ApplyPatternFormats, RevisionAutoFormat.ApplyPatternFormats. + /// + /// + public static readonly XName applyPatternFormats = "applyPatternFormats"; + + /// + /// Represents the applyProtection XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.ApplyProtection. + /// + /// + public static readonly XName applyProtection = "applyProtection"; + + /// + /// Represents the applyStyles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OutlineProperties.ApplyStyles. + /// + /// + public static readonly XName applyStyles = "applyStyles"; + + /// + /// Represents the applyWidthHeightFormats XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ApplyWidthHeightFormats, QueryTable.ApplyWidthHeightFormats, RevisionAutoFormat.ApplyWidthHeightFormats. + /// + /// + public static readonly XName applyWidthHeightFormats = "applyWidthHeightFormats"; + + /// + /// Represents the appName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileVersion.ApplicationName. + /// + /// + public static readonly XName appName = "appName"; + + /// + /// Represents the appref XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebExtensionBinding.AppReference. + /// + /// + public static readonly XName appref = "appref"; + + /// + /// Represents the appRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebExtension.ApplicationReference. + /// + /// + public static readonly XName appRef_ = "appRef"; + + /// + /// Represents the arcsize XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RoundRectangle.ArcSize. + /// + /// + public static readonly XName arcsize = "arcsize"; + + /// + /// Represents the arg XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DiagramChooseIf.Argument. + /// + /// + public static readonly XName arg = "arg"; + + /// + /// Represents the array XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CalculatedColumnFormula.Array, TotalsRowFormula.Array, Undo.Array. + /// + /// + public static readonly XName array = "array"; + + /// + /// Represents the arrowok XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.ShowArrowhead. + /// + /// + public static readonly XName arrowok = "arrowok"; + + /// + /// Represents the ascender XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.Ascender. + /// + /// + public static readonly XName ascender = "ascender"; + + /// + /// Represents the aspect XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.Aspect. + /// + /// + public static readonly XName aspect = "aspect"; + + /// + /// Represents the aspectratio XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.AspectRatio. + /// + /// + public static readonly XName aspectratio = "aspectratio"; + + /// + /// Represents the assign XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.Assign. + /// + /// + public static readonly XName assign = "assign"; + + /// + /// Represents the asteriskTotals XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.AsteriskTotals. + /// + /// + public static readonly XName asteriskTotals = "asteriskTotals"; + + /// + /// Represents the attribute XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.Attribute. + /// + /// + public static readonly XName attribute = "attribute"; + + /// + /// Represents the author XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionComment.Author. + /// + /// + public static readonly XName author = "author"; + + /// + /// Represents the authorId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Comment.AuthorId, ParentCommentIdentifier.AuthorId. + /// + /// + public static readonly XName authorId = "authorId"; + + /// + /// Represents the auto XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AxisColor.Auto, BackgroundColor.Auto, BarAxisColor.Auto, BorderColor.Auto, Color.Auto, FillColor.Auto, FirstMarkerColor.Auto, ForegroundColor.Auto, HighMarkerColor.Auto, LastMarkerColor.Auto, LowMarkerColor.Auto, MarkersColor.Auto, NegativeBorderColor.Auto, NegativeColor.Auto, NegativeFillColor.Auto, SeriesColor.Auto, TabColor.Auto. + /// + /// + public static readonly XName auto = "auto"; + + /// + /// Represents the autoAdjust XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: RestoredLeft.AutoAdjust, RestoredTop.AutoAdjust. + /// + /// + public static readonly XName autoAdjust = "autoAdjust"; + + /// + /// Represents the autoApply XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.AutoApply. + /// + /// + public static readonly XName autoApply = "autoApply"; + + /// + /// Represents the autoCompressPictures XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Presentation.AutoCompressPictures, WorkbookProperties.AutoCompressPictures. + /// + /// + public static readonly XName autoCompressPictures = "autoCompressPictures"; + + /// + /// Represents the autoDelete XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.AutoDelete. + /// + /// + public static readonly XName autoDelete = "autoDelete"; + + /// + /// Represents the autoEnd XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeProperties.AutoEnd. + /// + /// + public static readonly XName autoEnd = "autoEnd"; + + /// + /// Represents the autoFill XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CommentProperties.AutoFill, ControlProperties.AutoFill, EmbeddedObjectProperties.AutoFill. + /// + /// + public static readonly XName autoFill = "autoFill"; + + /// + /// Represents the autoFilter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.AutoFilter. + /// + /// + public static readonly XName autoFilter = "autoFilter"; + + /// + /// Represents the autoFilterDateGrouping XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookView.AutoFilterDateGrouping. + /// + /// + public static readonly XName autoFilterDateGrouping = "autoFilterDateGrouping"; + + /// + /// Represents the AutoFit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Map.AutoFit. + /// + /// + public static readonly XName AutoFit = "AutoFit"; + + /// + /// Represents the autoformat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Diagram.AutoFormat. + /// + /// + public static readonly XName autoformat = "autoformat"; + + /// + /// Represents the autoFormatId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.AutoFormatId, QueryTable.AutoFormatId, RevisionAutoFormat.AutoFormatId. + /// + /// + public static readonly XName autoFormatId = "autoFormatId"; + + /// + /// Represents the autolayout XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Diagram.AutoLayout. + /// + /// + public static readonly XName autolayout = "autolayout"; + + /// + /// Represents the autoLine XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CommentProperties.AutoLine, ControlProperties.AutoLine, EmbeddedObjectProperties.AutoLine. + /// + /// + public static readonly XName autoLine = "autoLine"; + + /// + /// Represents the autoLoad XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.AutoLoad. + /// + /// + public static readonly XName autoLoad = "autoLoad"; + + /// + /// Represents the autoPage XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Consolidation.AutoPage. + /// + /// + public static readonly XName autoPage = "autoPage"; + + /// + /// Represents the autoPageBreaks XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageSetupProperties.AutoPageBreaks. + /// + /// + public static readonly XName autoPageBreaks = "autoPageBreaks"; + + /// + /// Represents the autoPict XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ControlProperties.AutoPict, EmbeddedObjectProperties.AutoPict. + /// + /// + public static readonly XName autoPict = "autoPict"; + + /// + /// Represents the autoRecover XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileRecoveryProperties.AutoRecover. + /// + /// + public static readonly XName autoRecover = "autoRecover"; + + /// + /// Represents the autoRepublish XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: WebPublishItem.AutoRepublish, WebPublishObject.AutoRepublish. + /// + /// + public static readonly XName autoRepublish = "autoRepublish"; + + /// + /// Represents the autoRev XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.AutoReverse. + /// + /// + public static readonly XName autoRev = "autoRev"; + + /// + /// Represents the autorotationcenter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.AutoRotationCenter. + /// + /// + public static readonly XName autorotationcenter = "autorotationcenter"; + + /// + /// Represents the autoScale XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CommentProperties.AutoScale, Group.AutoScale. + /// + /// + public static readonly XName autoScale = "autoScale"; + + /// + /// Represents the autoShow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.AutoShow. + /// + /// + public static readonly XName autoShow = "autoShow"; + + /// + /// Represents the autoStart XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeProperties.AutoStart. + /// + /// + public static readonly XName autoStart = "autoStart"; + + /// + /// Represents the autoUpdate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.AutoUpdate. + /// + /// + public static readonly XName autoUpdate = "autoUpdate"; + + /// + /// Represents the autoUpdateAnimBg XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BuildParagraph.AutoAnimateBackground. + /// + /// + public static readonly XName autoUpdateAnimBg = "autoUpdateAnimBg"; + + /// + /// Represents the avgSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.AverageSubtotal, PivotField.AverageSubTotal. + /// + /// + public static readonly XName avgSubtotal = "avgSubtotal"; + + /// + /// Represents the axis XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: DiagramChooseIf.Axis, ForEach.Axis, PivotArea.Axis, PivotField.Axis, PivotSelection.Axis, PresentationOf.Axis. + /// + /// + public static readonly XName axis = "axis"; + + /// + /// Represents the axisPosition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBar.AxisPosition. + /// + /// + public static readonly XName axisPosition = "axisPosition"; + + /// + /// Represents the b XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackgroundRemoval.MarqueeBottom, DefaultRunProperties.Bold, EffectExtent.BottomEdge, EndParagraphRunProperties.Bold, ErrorItem.Bold, FillRectangle.Bottom, FillToRectangle.Bottom, MdxTuple.Bold, MissingItem.Bold, NumberItem.Bold, PageMargins.B, PageMargins.Bottom, PivotValueCellExtra.Bold, Rectangle.Bottom, RgbColor.Blue, RgbColorModelPercentage.BluePortion, RunProperties.Bold, SourceRectangle.Bottom, StringItem.Bold, TableCellTextStyle.Bold, TextCharacterPropertiesType.Bold, TileRectangle.Bottom. + /// + /// + public static readonly XName b = "b"; + + /// + /// Represents the backdepth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.BackDepth. + /// + /// + public static readonly XName backdepth = "backdepth"; + + /// + /// Represents the background XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.Background. + /// + /// + public static readonly XName background = "background"; + + /// + /// Represents the backgroundQuery XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.BackgroundQuery. + /// + /// + public static readonly XName backgroundQuery = "backgroundQuery"; + + /// + /// Represents the backgroundRefresh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.BackgroundRefresh. + /// + /// + public static readonly XName backgroundRefresh = "backgroundRefresh"; + + /// + /// Represents the backupFile XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.BackupFile. + /// + /// + public static readonly XName backupFile = "backupFile"; + + /// + /// Represents the backwards XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Iterate.Backwards. + /// + /// + public static readonly XName backwards = "backwards"; + + /// + /// Represents the bandCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableProperties.BandColumn. + /// + /// + public static readonly XName bandCol = "bandCol"; + + /// + /// Represents the bandRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableProperties.BandRow. + /// + /// + public static readonly XName bandRow = "bandRow"; + + /// + /// Represents the base XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FieldGroup.Base. + /// + /// + public static readonly XName @base = "base"; + + /// + /// Represents the baseColWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetFormatProperties.BaseColumnWidth. + /// + /// + public static readonly XName baseColWidth = "baseColWidth"; + + /// + /// Represents the baseField XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataField.BaseField. + /// + /// + public static readonly XName baseField = "baseField"; + + /// + /// Represents the baseItem XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataField.BaseItem. + /// + /// + public static readonly XName baseItem = "baseItem"; + + /// + /// Represents the baseline XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ContextNode.Baseline, DefaultRunProperties.Baseline, EndParagraphRunProperties.Baseline, RunProperties.Baseline, TextCharacterPropertiesType.Baseline. + /// + /// + public static readonly XName baseline = "baseline"; + + /// + /// Represents the baseType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: VTArray.BaseType, VTVector.BaseType. + /// + /// + public static readonly XName baseType = "baseType"; + + /// + /// Represents the bc XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ErrorItem.BackgroundColor, MdxTuple.BackgroundColor, MissingItem.BackgroundColor, NumberItem.BackgroundColor, PivotValueCellExtra.BackgroundColor, StringItem.BackgroundColor. + /// + /// + public static readonly XName bc = "bc"; + + /// + /// Represents the beginModifierType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.BeginModifierType. + /// + /// + public static readonly XName beginModifierType = "beginModifierType"; + + /// + /// Represents the behindDoc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Anchor.BehindDoc. + /// + /// + public static readonly XName behindDoc = "behindDoc"; + + /// + /// Represents the bestFit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Column.BestFit. + /// + /// + public static readonly XName bestFit = "bestFit"; + + /// + /// Represents the bg1 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Background1, ColorMapOverride.Background1, ColorMappingType.Background1, OverrideColorMapping.Background1. + /// + /// + public static readonly XName bg1 = "bg1"; + + /// + /// Represents the bg2 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Background2, ColorMapOverride.Background2, ColorMappingType.Background2, OverrideColorMapping.Background2. + /// + /// + public static readonly XName bg2 = "bg2"; + + /// + /// Represents the bilevel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.BiLevel, ImageFile.BiLevel. + /// + /// + public static readonly XName bilevel = "bilevel"; + + /// + /// Represents the bIns XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.BottomInset, TextBodyProperties.BottomInset. + /// + /// + public static readonly XName bIns = "bIns"; + + /// + /// Represents the blackAndWhite XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.BlackAndWhite, PageSetup.BlackAndWhite. + /// + /// + public static readonly XName blackAndWhite = "blackAndWhite"; + + /// + /// Represents the blacklevel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.BlackLevel, ImageFile.BlackLevel. + /// + /// + public static readonly XName blacklevel = "blacklevel"; + + /// + /// Represents the blank XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Filters.Blank. + /// + /// + public static readonly XName blank = "blank"; + + /// + /// Represents the bld XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BuildChart.Build, BuildDiagram.Build, BuildOleChart.Build. + /// + /// + public static readonly XName bld = "bld"; + + /// + /// Represents the bldLvl XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BuildParagraph.BuildLevel, CommonTimeNode.BuildLevel. + /// + /// + public static readonly XName bldLvl = "bldLvl"; + + /// + /// Represents the bldStep XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Chart.BuildStep, Diagram.BuildStep. + /// + /// + public static readonly XName bldStep = "bldStep"; + + /// + /// Represents the blend XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Blend.BlendMode, FillOverlay.Blend. + /// + /// + public static readonly XName blend = "blend"; + + /// + /// Represents the blipPhldr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shape.BlipPlaceholder. + /// + /// + public static readonly XName blipPhldr = "blipPhldr"; + + /// + /// Represents the blurRad XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: InnerShadow.BlurRadius, OuterShadow.BlurRadius, Reflection.BlurRadius. + /// + /// + public static readonly XName blurRad = "blurRad"; + + /// + /// Represents the bmk XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.Bookmark, EndParagraphRunProperties.Bookmark, RunProperties.Bookmark, TextCharacterPropertiesType.Bookmark. + /// + /// + public static readonly XName bmk = "bmk"; + + /// + /// Represents the bmkName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BookmarkTarget.BookmarkName. + /// + /// + public static readonly XName bmkName = "bmkName"; + + /// + /// Represents the bookmarkIdSeed XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.BookmarkIdSeed. + /// + /// + public static readonly XName bookmarkIdSeed = "bookmarkIdSeed"; + + /// + /// Represents the boolean XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Parameter.Boolean. + /// + /// + public static readonly XName boolean = "boolean"; + + /// + /// Represents the border XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBar.Border. + /// + /// + public static readonly XName border = "border"; + + /// + /// Represents the borderId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.BorderId. + /// + /// + public static readonly XName borderId = "borderId"; + + /// + /// Represents the bottom XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.Bottom, GradientFill.Bottom, PageMargins.Bottom. + /// + /// + public static readonly XName bottom = "bottom"; + + /// + /// Represents the boxStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Box.BoxStyle. + /// + /// + public static readonly XName boxStyle = "boxStyle"; + + /// + /// Represents the bright XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BrightnessContrast.Bright, LuminanceEffect.Brightness. + /// + /// + public static readonly XName bright = "bright"; + + /// + /// Represents the brightness XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.Brightness. + /// + /// + public static readonly XName brightness = "brightness"; + + /// + /// Represents the brushRef XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Brush.BrushRef, Context.BrushRef, Trace.BrushRef, TraceGroup.BrushRef. + /// + /// + public static readonly XName brushRef = "brushRef"; + + /// + /// Represents the brushSize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ArtisticPaintBrush.BrushSize, ArtisticWatercolorSponge.BrushSize. + /// + /// + public static readonly XName brushSize = "brushSize"; + + /// + /// Represents the build XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BuildParagraph.Build. + /// + /// + public static readonly XName build = "build"; + + /// + /// Represents the builtIn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: HyperlinkSound.BuiltIn, Sound.BuiltIn, SoundTarget.BuiltIn, WaveAudioFile.BuiltIn. + /// + /// + public static readonly XName builtIn = "builtIn"; + + /// + /// Represents the builtInGroupCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FunctionGroups.BuiltInGroupCount. + /// + /// + public static readonly XName builtInGroupCount = "builtInGroupCount"; + + /// + /// Represents the builtinId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellStyle.BuiltinId. + /// + /// + public static readonly XName builtinId = "builtinId"; + + /// + /// Represents the bw XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PhotoAlbum.BlackWhite. + /// + /// + public static readonly XName bw = "bw"; + + /// + /// Represents the bwMode XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Background.BlackWhiteMode, BackgroundProperties.Mode, ChartShapeProperties.BlackWhiteMode, ContentPart.BlackWhiteMode, GroupShapeProperties.BlackWhiteMode, GvmlContentPart.BlackWhiteMode, ShapeProperties.BlackWhiteMode, VisualGroupShapeProperties.BlackWhiteMode. + /// + /// + public static readonly XName bwMode = "bwMode"; + + /// + /// Represents the bwNormal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackgroundProperties.Normal. + /// + /// + public static readonly XName bwNormal = "bwNormal"; + + /// + /// Represents the bwPure XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackgroundProperties.Pure. + /// + /// + public static readonly XName bwPure = "bwPure"; + + /// + /// Represents the bx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.Bx. + /// + /// + public static readonly XName bx = "bx"; + + /// + /// Represents the by XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Animate.By, AnimateRotation.By, CommonBehavior.By. + /// + /// + public static readonly XName by = "by"; + + /// + /// Represents the byPosition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotAreaReference.ByPosition. + /// + /// + public static readonly XName byPosition = "byPosition"; + + /// + /// Represents the c XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BooleanItem.Caption, DateTimeItem.Caption, ErrorItem.Caption, Item.ChildItems, MdxSet.MemberIndexCount, MdxTuple.MemberIndexCount, MissingItem.Caption, NumberItem.Caption, OlapSlicerCacheItem.DisplayName, SortByTuple.MemberNameCount, StringItem.Caption, Tuples.MemberNameCount. + /// + /// + public static readonly XName c = "c"; + + /// + /// Represents the ca XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.CalculateCell. + /// + /// + public static readonly XName ca = "ca"; + + /// + /// Represents the cache XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Slicer.Cache, Timeline.Cache. + /// + /// + public static readonly XName cache = "cache"; + + /// + /// Represents the cacheId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotCache.CacheId, PivotTableData.CacheId, PivotTableDefinition.CacheId. + /// + /// + public static readonly XName cacheId = "cacheId"; + + /// + /// Represents the cacheIdCreatedVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheIdVersion.CacheIdCreatedVersion. + /// + /// + public static readonly XName cacheIdCreatedVersion = "cacheIdCreatedVersion"; + + /// + /// Represents the cacheIdSupportedVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheIdVersion.CacheIdSupportedVersion. + /// + /// + public static readonly XName cacheIdSupportedVersion = "cacheIdSupportedVersion"; + + /// + /// Represents the cacheIndex XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotArea.CacheIndex. + /// + /// + public static readonly XName cacheIndex = "cacheIndex"; + + /// + /// Represents the calcCompleted XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.CalculationCompleted. + /// + /// + public static readonly XName calcCompleted = "calcCompleted"; + + /// + /// Represents the calcId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.CalculationId. + /// + /// + public static readonly XName calcId = "calcId"; + + /// + /// Represents the calcmode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Animate.CalculationMode. + /// + /// + public static readonly XName calcmode = "calcmode"; + + /// + /// Represents the calcMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.CalculationMode. + /// + /// + public static readonly XName calcMode_ = "calcMode"; + + /// + /// Represents the calcOnSave XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.CalculationOnSave. + /// + /// + public static readonly XName calcOnSave = "calcOnSave"; + + /// + /// Represents the calculatedColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: IgnoredError.CalculatedColumn. + /// + /// + public static readonly XName calculatedColumn = "calculatedColumn"; + + /// + /// Represents the calculatedMembersInFilters XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.CalculatedMembersInFilters. + /// + /// + public static readonly XName calculatedMembersInFilters = "calculatedMembersInFilters"; + + /// + /// Represents the calendarType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Filters.CalendarType. + /// + /// + public static readonly XName calendarType = "calendarType"; + + /// + /// Represents the canvasRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Context.CanvasRef. + /// + /// + public static readonly XName canvasRef = "canvasRef"; + + /// + /// Represents the canvasTransformRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Context.CanvasTransformRef. + /// + /// + public static readonly XName canvasTransformRef = "canvasTransformRef"; + + /// + /// Represents the cap XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomBorderLineProperties.CapType, BottomLeftToTopRightBorderLineProperties.CapType, DefaultRunProperties.Capital, EndParagraphRunProperties.Capital, HiddenLineProperties.CapType, LeftBorderLineProperties.CapType, Outline.CapType, PageField.Caption, RightBorderLineProperties.CapType, RunProperties.Capital, TextCharacterPropertiesType.Capital, TopBorderLineProperties.CapType, TopLeftToBottomRightBorderLineProperties.CapType, Underline.CapType. + /// + /// + public static readonly XName cap = "cap"; + + /// + /// Represents the caption XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: CacheField.Caption, CacheHierarchy.Caption, Dimension.Caption, Group.Caption, GroupLevel.Caption, Kpi.Caption, MeasureGroup.Caption, PivotHierarchy.Caption, Slicer.Caption, Timeline.Caption. + /// + /// + public static readonly XName caption = "caption"; + + /// + /// Represents the caseSensitive XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SortState.CaseSensitive. + /// + /// + public static readonly XName caseSensitive = "caseSensitive"; + + /// + /// Represents the categoryIdx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Chart.CategoryIndex. + /// + /// + public static readonly XName categoryIdx = "categoryIdx"; + + /// + /// Represents the categoryName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataLabelVisibilities.CategoryName. + /// + /// + public static readonly XName categoryName = "categoryName"; + + /// + /// Represents the cell XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Parameter.Cell, RevisionComment.Cell. + /// + /// + public static readonly XName cell = "cell"; + + /// + /// Represents the cellColor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorFilter.CellColor. + /// + /// + public static readonly XName cellColor = "cellColor"; + + /// + /// Represents the cellComments XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageSetup.CellComments. + /// + /// + public static readonly XName cellComments = "cellComments"; + + /// + /// Represents the cellMeta XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.CellMeta. + /// + /// + public static readonly XName cellMeta = "cellMeta"; + + /// + /// Represents the cellRange XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CameraTool.CellRange. + /// + /// + public static readonly XName cellRange = "cellRange"; + + /// + /// Represents the centerVertically XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Group.CenterVertically. + /// + /// + public static readonly XName centerVertically = "centerVertically"; + + /// + /// Represents the centroid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.Centroid. + /// + /// + public static readonly XName centroid = "centroid"; + + /// + /// Represents the cf XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ControlProperties.Cf. + /// + /// + public static readonly XName cf = "cf"; + + /// + /// Represents the cfe XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Cfe. + /// + /// + public static readonly XName cfe = "cfe"; + + /// + /// Represents the cff XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Cff. + /// + /// + public static readonly XName cff = "cff"; + + /// + /// Represents the cfo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Cfo. + /// + /// + public static readonly XName cfo = "cfo"; + + /// + /// Represents the changesSavedWin XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ChangesSavedWin. + /// + /// + public static readonly XName changesSavedWin = "changesSavedWin"; + + /// + /// Represents the channel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChannelProperty.Channel. + /// + /// + public static readonly XName channel = "channel"; + + /// + /// Represents the char XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CharacterBullet.Char. + /// + /// + public static readonly XName @char = "char"; + + /// + /// Represents the characterSet XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: TextProperties.TextCharacterSet, WebPublishing.CharacterSet. + /// + /// + public static readonly XName characterSet = "characterSet"; + + /// + /// Represents the charset XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BulletFont.CharacterSet, ComplexScriptFont.CharacterSet, EastAsianFont.CharacterSet, Font.CharacterSet, LatinFont.CharacterSet, SymbolFont.CharacterSet. + /// + /// + public static readonly XName charset = "charset"; + + /// + /// Represents the chart XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChartFormat.Chart. + /// + /// + public static readonly XName chart = "chart"; + + /// + /// Represents the chartFormat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ChartFormat. + /// + /// + public static readonly XName chartFormat = "chartFormat"; + + /// + /// Represents the chartTrackingRefBase XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.ChartTrackingReferenceBase. + /// + /// + public static readonly XName chartTrackingRefBase = "chartTrackingRefBase"; + + /// + /// Represents the che XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Che. + /// + /// + public static readonly XName che = "che"; + + /// + /// Represents the checkCompatibility XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.CheckCompatibility. + /// + /// + public static readonly XName checkCompatibility = "checkCompatibility"; + + /// + /// Represents the checked XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.Checked. + /// + /// + public static readonly XName @checked = "checked"; + + /// + /// Represents the chf XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Chf. + /// + /// + public static readonly XName chf = "chf"; + + /// + /// Represents the cho XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Cho. + /// + /// + public static readonly XName cho = "cho"; + + /// + /// Represents the chOrder XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LayoutNode.ChildOrder. + /// + /// + public static readonly XName chOrder = "chOrder"; + + /// + /// Represents the chromakey XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ImageData.ChromAKey. + /// + /// + public static readonly XName chromakey = "chromakey"; + + /// + /// Represents the class XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Curve.Class, Group.Class, ImageFile.Class, Line.Class, Oval.Class, PolyLine.Class, Rectangle.Class, RoundRectangle.Class, Shape.Class, Shapetype.Class. + /// + /// + public static readonly XName @class = "class"; + + /// + /// Represents the clearAll XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.ClearAll. + /// + /// + public static readonly XName clearAll = "clearAll"; + + /// + /// Represents the clearComments XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.ClearComments. + /// + /// + public static readonly XName clearComments = "clearComments"; + + /// + /// Represents the clearContents XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.ClearContents. + /// + /// + public static readonly XName clearContents = "clearContents"; + + /// + /// Represents the clearFormats XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.ClearFormats. + /// + /// + public static readonly XName clearFormats = "clearFormats"; + + /// + /// Represents the click XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotSelection.Click. + /// + /// + public static readonly XName click = "click"; + + /// + /// Represents the clientInsertedTime XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SlideSyncProperties.ClientInsertedTime. + /// + /// + public static readonly XName clientInsertedTime = "clientInsertedTime"; + + /// + /// Represents the clipped XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: QueryTable.Clipped, QueryTableField.Clipped. + /// + /// + public static readonly XName clipped = "clipped"; + + /// + /// Represents the clr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebProperties.Color. + /// + /// + public static readonly XName clr = "clr"; + + /// + /// Represents the clrIdx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentAuthor.ColorIndex. + /// + /// + public static readonly XName clrIdx = "clrIdx"; + + /// + /// Represents the clrMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintingProperties.ColorMode. + /// + /// + public static readonly XName clrMode = "clrMode"; + + /// + /// Represents the clrSpc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AnimateColor.ColorSpace. + /// + /// + public static readonly XName clrSpc = "clrSpc"; + + /// + /// Represents the cm XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Cell.CellMetaIndex, NewCell.CellMetaIndex, OldCell.CellMetaIndex. + /// + /// + public static readonly XName cm = "cm"; + + /// + /// Represents the cmd XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Command.CommandName. + /// + /// + public static readonly XName cmd = "cmd"; + + /// + /// Represents the cmpd XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomBorderLineProperties.CompoundLineType, BottomLeftToTopRightBorderLineProperties.CompoundLineType, HiddenLineProperties.CompoundLineType, LeftBorderLineProperties.CompoundLineType, Outline.CompoundLineType, RightBorderLineProperties.CompoundLineType, TopBorderLineProperties.CompoundLineType, TopLeftToBottomRightBorderLineProperties.CompoundLineType, Underline.CompoundLineType. + /// + /// + public static readonly XName cmpd = "cmpd"; + + /// + /// Represents the cnt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: DiagramChooseIf.Count, ForEach.Count, PresentationOf.Count. + /// + /// + public static readonly XName cnt = "cnt"; + + /// + /// Represents the codeName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetProperties.CodeName, FileVersion.CodeName, SheetProperties.CodeName, WorkbookProperties.CodeName. + /// + /// + public static readonly XName codeName = "codeName"; + + /// + /// Represents the codePage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: TextProperties.CodePage, WebPublishing.CodePage. + /// + /// + public static readonly XName codePage = "codePage"; + + /// + /// Represents the coerce XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.Coerce. + /// + /// + public static readonly XName coerce = "coerce"; + + /// + /// Represents the coherent3DOff XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.Coherent3D. + /// + /// + public static readonly XName coherent3DOff = "coherent3DOff"; + + /// + /// Represents the colGrandTotals XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ColumnGrandTotals. + /// + /// + public static readonly XName colGrandTotals = "colGrandTotals"; + + /// + /// Represents the colHeaderCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ColumnHeaderCaption. + /// + /// + public static readonly XName colHeaderCaption = "colHeaderCaption"; + + /// + /// Represents the colHidden XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentProperties.ColHidden. + /// + /// + public static readonly XName colHidden = "colHidden"; + + /// + /// Represents the colId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FilterColumn.ColumnId. + /// + /// + public static readonly XName colId = "colId"; + + /// + /// Represents the collapse XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OutlineViewSlideListEntry.Collapse. + /// + /// + public static readonly XName collapse = "collapse"; + + /// + /// Represents the collapsed XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Column.Collapsed, Row.Collapsed. + /// + /// + public static readonly XName collapsed = "collapsed"; + + /// + /// Represents the collapsedLevelsAreSubtotals XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotArea.CollapsedLevelsAreSubtotals. + /// + /// + public static readonly XName collapsedLevelsAreSubtotals = "collapsedLevelsAreSubtotals"; + + /// + /// Represents the color XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.Color, ColumnStroke.Color, Extrusion.Color, Fill.Color, LeftStroke.Color, RightStroke.Color, Shadow.Color, Stroke.Color, TopStroke.Color. + /// + /// + public static readonly XName color = "color"; + + /// + /// Represents the color2 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.Color2, ColumnStroke.Color2, Fill.Color2, LeftStroke.Color2, RightStroke.Color2, Shadow.Color2, Stroke.Color2, TopStroke.Color2. + /// + /// + public static readonly XName color2 = "color2"; + + /// + /// Represents the colored XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.Colored. + /// + /// + public static readonly XName colored = "colored"; + + /// + /// Represents the colorId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomSheetView.ColorId, SheetView.ColorId. + /// + /// + public static readonly XName colorId = "colorId"; + + /// + /// Represents the colors XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ColorMostRecentlyUsed.Colors, Fill.Colors. + /// + /// + public static readonly XName colors = "colors"; + + /// + /// Represents the colorTemp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorTemperature.ColorTemperatureValue. + /// + /// + public static readonly XName colorTemp = "colorTemp"; + + /// + /// Represents the colPageCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Location.ColumnsPerPage. + /// + /// + public static readonly XName colPageCount = "colPageCount"; + + /// + /// Represents the cols XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DdeValues.Columns, Values.Columns. + /// + /// + public static readonly XName cols = "cols"; + + /// + /// Represents the column XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Bind.Column, TableSlicerCache.Column. + /// + /// + public static readonly XName column = "column"; + + /// + /// Represents the columnCount XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableData.ColumnCount, Slicer.ColumnCount, TupleSet.ColumnCount. + /// + /// + public static readonly XName columnCount = "columnCount"; + + /// + /// Represents the columns XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Gallery.Columns, GalleryRegular.Columns, UnsizedGallery.Columns. + /// + /// + public static readonly XName columns = "columns"; + + /// + /// Represents the columnSort XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SortState.ColumnSort. + /// + /// + public static readonly XName columnSort = "columnSort"; + + /// + /// Represents the columnWidthPercent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackstageTab.ColumnWidthPercent. + /// + /// + public static readonly XName columnWidthPercent = "columnWidthPercent"; + + /// + /// Represents the comma XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.Comma. + /// + /// + public static readonly XName comma = "comma"; + + /// + /// Represents the command XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DatabaseProperties.Command. + /// + /// + public static readonly XName command = "command"; + + /// + /// Represents the commandType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DatabaseProperties.CommandType. + /// + /// + public static readonly XName commandType = "commandType"; + + /// + /// Represents the comment XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefinedName.Comment, RevisionDefinedName.Comment, Scenario.Comment, Table.Comment. + /// + /// + public static readonly XName comment = "comment"; + + /// + /// Represents the compact XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.Compact, PivotTableDefinition.Compact. + /// + /// + public static readonly XName compact = "compact"; + + /// + /// Represents the compactData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.CompactData. + /// + /// + public static readonly XName compactData = "compactData"; + + /// + /// Represents the compatLnSpc XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.CompatibleLineSpacing, TextBodyProperties.CompatibleLineSpacing. + /// + /// + public static readonly XName compatLnSpc = "compatLnSpc"; + + /// + /// Represents the compatMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.CompatibilityMode. + /// + /// + public static readonly XName compatMode = "compatMode"; + + /// + /// Represents the composite XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DerivedFrom.Composite. + /// + /// + public static readonly XName composite = "composite"; + + /// + /// Represents the concurrent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SequenceTimeNode.Concurrent. + /// + /// + public static readonly XName concurrent = "concurrent"; + + /// + /// Represents the concurrentCalc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.ConcurrentCalculation. + /// + /// + public static readonly XName concurrentCalc = "concurrentCalc"; + + /// + /// Represents the concurrentManualCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.ConcurrentManualCount. + /// + /// + public static readonly XName concurrentManualCount = "concurrentManualCount"; + + /// + /// Represents the conformance XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Presentation.Conformance, Workbook.Conformance. + /// + /// + public static readonly XName conformance = "conformance"; + + /// + /// Represents the connection XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DatabaseProperties.Connection, DataFeedProperties.Connection, ModelTable.Connection, OleDbPrpoperties.Connection. + /// + /// + public static readonly XName connection = "connection"; + + /// + /// Represents the connectionId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: CacheSource.ConnectionId, QueryTable.ConnectionId, SingleXmlCell.ConnectionId, Table.ConnectionId. + /// + /// + public static readonly XName connectionId = "connectionId"; + + /// + /// Represents the ConnectionID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBinding.ConnectionId. + /// + /// + public static readonly XName ConnectionID_ = "ConnectionID"; + + /// + /// Represents the connectloc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Proxy.ConnectionLocation. + /// + /// + public static readonly XName connectloc = "connectloc"; + + /// + /// Represents the connectorLines XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SeriesElementVisibilities.ConnectorLines. + /// + /// + public static readonly XName connectorLines = "connectorLines"; + + /// + /// Represents the consecutive XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: TextProperties.Consecutive, WebQueryProperties.Consecutive. + /// + /// + public static readonly XName consecutive = "consecutive"; + + /// + /// Represents the constrainbounds XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Diagram.ConstrainBounds. + /// + /// + public static readonly XName constrainbounds = "constrainbounds"; + + /// + /// Represents the containsBlank XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.ContainsBlank. + /// + /// + public static readonly XName containsBlank = "containsBlank"; + + /// + /// Represents the containsDate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.ContainsDate. + /// + /// + public static readonly XName containsDate = "containsDate"; + + /// + /// Represents the containsInteger XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.ContainsInteger. + /// + /// + public static readonly XName containsInteger = "containsInteger"; + + /// + /// Represents the containsMixedTypes XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.ContainsMixedTypes. + /// + /// + public static readonly XName containsMixedTypes = "containsMixedTypes"; + + /// + /// Represents the containsNonDate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.ContainsNonDate. + /// + /// + public static readonly XName containsNonDate = "containsNonDate"; + + /// + /// Represents the containsNumber XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.ContainsNumber. + /// + /// + public static readonly XName containsNumber = "containsNumber"; + + /// + /// Represents the containsSemiMixedTypes XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.ContainsSemiMixedTypes. + /// + /// + public static readonly XName containsSemiMixedTypes = "containsSemiMixedTypes"; + + /// + /// Represents the containsString XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.ContainsString. + /// + /// + public static readonly XName containsString = "containsString"; + + /// + /// Represents the content XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChartSheetProtection.Content. + /// + /// + public static readonly XName content = "content"; + + /// + /// Represents the contentType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.ContentType. + /// + /// + public static readonly XName contentType = "contentType"; + + /// + /// Represents the contextRef XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Context.ContextRef, Trace.ContextRef, TraceGroup.ContextRef, TraceView.ContextRef. + /// + /// + public static readonly XName contextRef = "contextRef"; + + /// + /// Represents the continuation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Trace.Continuation. + /// + /// + public static readonly XName continuation = "continuation"; + + /// + /// Represents the contourW XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HiddenShape3D.ContourWidth, Shape3D.ContourWidth, Shape3DType.ContourWidth. + /// + /// + public static readonly XName contourW = "contourW"; + + /// + /// Represents the contrast XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BrightnessContrast.Contrast, LuminanceEffect.Contrast. + /// + /// + public static readonly XName contrast = "contrast"; + + /// + /// Represents the control1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Curve.Control1. + /// + /// + public static readonly XName control1 = "control1"; + + /// + /// Represents the control2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Curve.Control2. + /// + /// + public static readonly XName control2 = "control2"; + + /// + /// Represents the coordorigin XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.CoordinateOrigin, Curve.CoordinateOrigin, Group.CoordinateOrigin, Line.CoordinateOrigin, Oval.CoordinateOrigin, PolyLine.CoordinateOrigin, Rectangle.CoordinateOrigin, Shape.CoordinateOrigin, Shapetype.CoordinateOrigin. + /// + /// + public static readonly XName coordorigin = "coordorigin"; + + /// + /// Represents the coordsize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.CoordinateSize, Curve.CoordinateSize, Group.CoordinateSize, ImageFile.CoordinateSize, Line.CoordinateSize, Oval.CoordinateSize, PolyLine.CoordinateSize, Rectangle.CoordinateSize, RoundRectangle.CoordinateSize, Shape.CoordinateSize, Shapetype.CoordinateSize. + /// + /// + public static readonly XName coordsize = "coordsize"; + + /// + /// Represents the copies XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.Copies, PageSetup.Copies. + /// + /// + public static readonly XName copies = "copies"; + + /// + /// Represents the copy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.Copy. + /// + /// + public static readonly XName copy = "copy"; + + /// + /// Represents the count XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: ArgumentDescriptions.Count, Borders.Count, CacheFields.Count, CacheHierarchies.Count, CacheHierarchy.Count, CalculatedItems.Count, CalculatedMembers.Count, CellFormats.Count, CellMetadata.Count, CellStyleFormats.Count, CellStyles.Count, ChartFormats.Count, ColumnBreaks.Count, ColumnFields.Count, ColumnHierarchiesUsage.Count, ColumnItems.Count, ColumnSortMap.Count, ConditionalFormats.Count, DataFields.Count, DataReferences.Count, DataValidations.Count, DifferentialFormats.Count, Dimensions.Count, DiscreteProperties.Count, Entries.Count, FieldsUsage.Count, Fills.Count, Fonts.Count, Formats.Count, FutureMetadata.Count, GroupItems.Count, GroupLevels.Count, GroupMembers.Count, Groups.Count, Items.Count, Kpis.Count, Maps.Count, MdxMetadata.Count, MeasureGroups.Count, MemberProperties.Count, Members.Count, MergeCells.Count, MetadataStrings.Count, MetadataTypes.Count, NumberingFormats.Count, OlapSlicerCacheLevelData.Count, OlapSlicerCacheLevelsData.Count, OlapSlicerCacheSelections.Count, Page.Count, PageFields.Count, Pages.Count, Parameters.Count, PivotAreaReference.Count, PivotAreaReferences.Count, PivotAreas.Count, PivotCacheRecords.Count, PivotFields.Count, PivotFilters.Count, PivotHierarchies.Count, PivotRow.Count, PivotSelection.Count, QueryCache.Count, QueryTableDeletedFields.Count, QueryTableFields.Count, RangeSets.Count, ReviewedList.Count, RowBreaks.Count, RowFields.Count, RowHierarchiesUsage.Count, RowItems.Count, RowSortMap.Count, Scenario.Count, ServerFormats.Count, SetLevels.Count, Sets.Count, SharedItems.Count, SharedStringTable.Count, SheetIdMap.Count, SlicerCacheHideItemsWithNoData.Count, SlicerCacheOlapLevelName.Count, TableColumns.Count, TableParts.Count, Tables.Count, TableStyle.Count, TableStyles.Count, TabularSlicerCacheItems.Count, TextFields.Count, TupleSet.Count, Users.Count, ValueMetadata.Count, WebPublishItems.Count, WebPublishObjects.Count. + /// + /// + public static readonly XName count = "count"; + + /// + /// Represents the countASubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.CountASubtotal, PivotField.CountASubtotal. + /// + /// + public static readonly XName countASubtotal = "countASubtotal"; + + /// + /// Represents the countSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.CountSubtotal, PivotField.CountSubtotal. + /// + /// + public static readonly XName countSubtotal = "countSubtotal"; + + /// + /// Represents the cp XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BooleanItem.PropertyCount, DateTimeItem.PropertyCount, ErrorItem.PropertyCount, MissingItem.PropertyCount, NumberItem.PropertyCount, StringItem.PropertyCount. + /// + /// + public static readonly XName cp = "cp"; + + /// + /// Represents the crackSpacing XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArtisticCement.CrackSpacing. + /// + /// + public static readonly XName crackSpacing = "crackSpacing"; + + /// + /// Represents the crashSave XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileRecoveryProperties.CrashSave. + /// + /// + public static readonly XName crashSave = "crashSave"; + + /// + /// Represents the createdVersion XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.CreatedVersion, PivotTableDefinition.CreatedVersion. + /// + /// + public static readonly XName createdVersion = "createdVersion"; + + /// + /// Represents the credentials XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.Credentials. + /// + /// + public static readonly XName credentials = "credentials"; + + /// + /// Represents the cropbottom XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.CropBottom, ImageFile.CropBottom. + /// + /// + public static readonly XName cropbottom = "cropbottom"; + + /// + /// Represents the cropleft XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.CropLeft, ImageFile.CropLeft. + /// + /// + public static readonly XName cropleft = "cropleft"; + + /// + /// Represents the cropping XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.Cropping. + /// + /// + public static readonly XName cropping = "cropping"; + + /// + /// Represents the cropright XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.CropRight, ImageFile.CropRight. + /// + /// + public static readonly XName cropright = "cropright"; + + /// + /// Represents the croptop XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.CropTop, ImageFile.CropTop. + /// + /// + public static readonly XName croptop = "croptop"; + + /// + /// Represents the crossFilter XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: OlapSlicerCacheLevelData.CrossFilter, TableSlicerCache.CrossFilter, TabularSlicerCache.CrossFilter. + /// + /// + public static readonly XName crossFilter = "crossFilter"; + + /// + /// Represents the cryptAlgorithmClass XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.CryptographicAlgorithmClass. + /// + /// + public static readonly XName cryptAlgorithmClass = "cryptAlgorithmClass"; + + /// + /// Represents the cryptAlgorithmSid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.CryptographicAlgorithmSid. + /// + /// + public static readonly XName cryptAlgorithmSid = "cryptAlgorithmSid"; + + /// + /// Represents the cryptAlgorithmType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.CryptographicAlgorithmType. + /// + /// + public static readonly XName cryptAlgorithmType = "cryptAlgorithmType"; + + /// + /// Represents the cryptProvider XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.CryptographicProvider. + /// + /// + public static readonly XName cryptProvider = "cryptProvider"; + + /// + /// Represents the cryptProviderType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.CryptographicProviderType. + /// + /// + public static readonly XName cryptProviderType = "cryptProviderType"; + + /// + /// Represents the cryptProviderTypeExt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.CryptographicProviderTypeExtensibility. + /// + /// + public static readonly XName cryptProviderTypeExt = "cryptProviderTypeExt"; + + /// + /// Represents the cryptProviderTypeExtSource XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.CryptographicProviderTypeExtensibilitySource. + /// + /// + public static readonly XName cryptProviderTypeExtSource = "cryptProviderTypeExtSource"; + + /// + /// Represents the cs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Undo.CrossSheetMove. + /// + /// + public static readonly XName cs = "cs"; + + /// + /// Represents the csCatId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.ColorCategoryId. + /// + /// + public static readonly XName csCatId = "csCatId"; + + /// + /// Represents the css XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebPublishing.UseCss. + /// + /// + public static readonly XName css = "css"; + + /// + /// Represents the cstate XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Blip.CompressionState, Snapshot.CompressionState. + /// + /// + public static readonly XName cstate = "cstate"; + + /// + /// Represents the csTypeId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.ColorType. + /// + /// + public static readonly XName csTypeId = "csTypeId"; + + /// + /// Represents the ct XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MdxTuple.CultureCurrency. + /// + /// + public static readonly XName ct = "ct"; + + /// + /// Represents the culture XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Connection.Culture, ServerFormat.Culture. + /// + /// + public static readonly XName culture = "culture"; + + /// + /// Represents the current XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Scenarios.Current. + /// + /// + public static readonly XName current = "current"; + + /// + /// Represents the custAng XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.Rotation. + /// + /// + public static readonly XName custAng = "custAng"; + + /// + /// Represents the custFlipHor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.HorizontalFlip. + /// + /// + public static readonly XName custFlipHor = "custFlipHor"; + + /// + /// Represents the custFlipVert XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.VerticalFlip. + /// + /// + public static readonly XName custFlipVert = "custFlipVert"; + + /// + /// Represents the custLinFactNeighborX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.NeighborOffsetWidth. + /// + /// + public static readonly XName custLinFactNeighborX = "custLinFactNeighborX"; + + /// + /// Represents the custLinFactNeighborY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.NeighborOffsetHeight. + /// + /// + public static readonly XName custLinFactNeighborY = "custLinFactNeighborY"; + + /// + /// Represents the custLinFactX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.FactorWidth. + /// + /// + public static readonly XName custLinFactX = "custLinFactX"; + + /// + /// Represents the custLinFactY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.FactorHeight. + /// + /// + public static readonly XName custLinFactY = "custLinFactY"; + + /// + /// Represents the custom XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: IconSet.Custom. + /// + /// + public static readonly XName custom = "custom"; + + /// + /// Represents the customBuiltin XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellStyle.CustomBuiltin. + /// + /// + public static readonly XName customBuiltin = "customBuiltin"; + + /// + /// Represents the customFormat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Row.CustomFormat. + /// + /// + public static readonly XName customFormat = "customFormat"; + + /// + /// Represents the customHeight XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Row.CustomHeight, SheetFormatProperties.CustomHeight. + /// + /// + public static readonly XName customHeight = "customHeight"; + + /// + /// Represents the customList XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: SortCondition.CustomList. + /// + /// + public static readonly XName customList = "customList"; + + /// + /// Represents the customListSort XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.CustomListSort, TableSlicerCache.CustomListSort, TabularSlicerCache.CustomListSort. + /// + /// + public static readonly XName customListSort = "customListSort"; + + /// + /// Represents the customMenu XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DefinedName.CustomMenu, RevisionDefinedName.CustomMenu. + /// + /// + public static readonly XName customMenu = "customMenu"; + + /// + /// Represents the customRecognizerId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.CustomRecognizerId. + /// + /// + public static readonly XName customRecognizerId = "customRecognizerId"; + + /// + /// Represents the customRollUp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: GroupLevel.CustomRollUp. + /// + /// + public static readonly XName customRollUp = "customRollUp"; + + /// + /// Represents the customView XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.CustomView. + /// + /// + public static readonly XName customView = "customView"; + + /// + /// Represents the customWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Column.CustomWidth. + /// + /// + public static readonly XName customWidth = "customWidth"; + + /// + /// Represents the custRadScaleInc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.IncludeAngleScale. + /// + /// + public static readonly XName custRadScaleInc = "custRadScaleInc"; + + /// + /// Represents the custRadScaleRad XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.RadiusScale. + /// + /// + public static readonly XName custRadScaleRad = "custRadScaleRad"; + + /// + /// Represents the custScaleX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.WidthScale. + /// + /// + public static readonly XName custScaleX = "custScaleX"; + + /// + /// Represents the custScaleY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.HightScale. + /// + /// + public static readonly XName custScaleY = "custScaleY"; + + /// + /// Represents the custSzX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.FixedWidthOverride. + /// + /// + public static readonly XName custSzX = "custSzX"; + + /// + /// Represents the custSzY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.FixedHeightOverride. + /// + /// + public static readonly XName custSzY = "custSzY"; + + /// + /// Represents the custT XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.TextChanged. + /// + /// + public static readonly XName custT = "custT"; + + /// + /// Represents the cx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: ChildExtents.Cx, Extent.Cx, Extents.Cx, GridSpacing.Cx, NotesSize.Cx, SlideSize.Cx. + /// + /// + public static readonly XName cx = "cx"; + + /// + /// Represents the cxnId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Point.ConnectionId. + /// + /// + public static readonly XName cxnId = "cxnId"; + + /// + /// Represents the cy XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: ChildExtents.Cy, Extent.Cy, Extents.Cy, GridSpacing.Cy, NotesSize.Cy, SlideSize.Cy. + /// + /// + public static readonly XName cy = "cy"; + + /// + /// Represents the d XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: DashStop.DashLength, Item.Expanded, ScaleX.Denominator, ScaleY.Denominator, TupleSetRowItem.DisplayName. + /// + /// + public static readonly XName d = "d"; + + /// + /// Represents the dashstyle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.DashStyle, ColumnStroke.DashStyle, LeftStroke.DashStyle, RightStroke.DashStyle, Stroke.DashStyle, TopStroke.DashStyle. + /// + /// + public static readonly XName dashstyle = "dashstyle"; + + /// + /// Represents the data XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotSelection.Data, ShapeIdMap.Data. + /// + /// + public static readonly XName data = "data"; + + /// + /// Represents the databaseField XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheField.DatabaseField. + /// + /// + public static readonly XName databaseField = "databaseField"; + + /// + /// Represents the DataBindingLoadMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBinding.DataBindingLoadMode. + /// + /// + public static readonly XName DataBindingLoadMode = "DataBindingLoadMode"; + + /// + /// Represents the DataBindingName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBinding.DataBindingName. + /// + /// + public static readonly XName DataBindingName = "DataBindingName"; + + /// + /// Represents the dataBound XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableField.DataBound. + /// + /// + public static readonly XName dataBound = "dataBound"; + + /// + /// Represents the dataCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.DataCaption. + /// + /// + public static readonly XName dataCaption = "dataCaption"; + + /// + /// Represents the dataCellStyle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Table.DataCellStyle, TableColumn.DataCellStyle. + /// + /// + public static readonly XName dataCellStyle = "dataCellStyle"; + + /// + /// Represents the dataDxfId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Table.DataFormatId, TableColumn.DataFormatId. + /// + /// + public static readonly XName dataDxfId = "dataDxfId"; + + /// + /// Represents the dataExtractLoad XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileRecoveryProperties.DataExtractLoad. + /// + /// + public static readonly XName dataExtractLoad = "dataExtractLoad"; + + /// + /// Represents the dataField XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.DataField. + /// + /// + public static readonly XName dataField = "dataField"; + + /// + /// Represents the dataOnly XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotArea.DataOnly. + /// + /// + public static readonly XName dataOnly = "dataOnly"; + + /// + /// Represents the dataOnRows XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.DataOnRows. + /// + /// + public static readonly XName dataOnRows = "dataOnRows"; + + /// + /// Represents the dataPosition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.DataPosition. + /// + /// + public static readonly XName dataPosition = "dataPosition"; + + /// + /// Represents the dataSourceSort XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.DataSourceSort. + /// + /// + public static readonly XName dataSourceSort = "dataSourceSort"; + + /// + /// Represents the date1904 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.Date1904. + /// + /// + public static readonly XName date1904 = "date1904"; + + /// + /// Represents the dateAxis XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.DateAxis. + /// + /// + public static readonly XName dateAxis = "dateAxis"; + + /// + /// Represents the dateCompatibility XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.DateCompatibility. + /// + /// + public static readonly XName dateCompatibility = "dateCompatibility"; + + /// + /// Represents the dateTime XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Header.DateTime, UserInfo.DateTime. + /// + /// + public static readonly XName dateTime = "dateTime"; + + /// + /// Represents the dateTimeGrouping XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DateGroupItem.DateTimeGrouping. + /// + /// + public static readonly XName dateTimeGrouping = "dateTimeGrouping"; + + /// + /// Represents the day XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DateGroupItem.Day. + /// + /// + public static readonly XName day = "day"; + + /// + /// Represents the dde XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EmbeddedObjectProperties.Dde. + /// + /// + public static readonly XName dde = "dde"; + + /// + /// Represents the ddeService XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DdeLink.DdeService. + /// + /// + public static readonly XName ddeService = "ddeService"; + + /// + /// Represents the ddeTopic XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DdeLink.DdeTopic. + /// + /// + public static readonly XName ddeTopic = "ddeTopic"; + + /// + /// Represents the decel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.Deceleration. + /// + /// + public static readonly XName decel = "decel"; + + /// + /// Represents the decimal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.Decimal. + /// + /// + public static readonly XName @decimal = "decimal"; + + /// + /// Represents the decoupled XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDecoupled.Decoupled. + /// + /// + public static readonly XName decoupled = "decoupled"; + + /// + /// Represents the def XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableStyleList.Default. + /// + /// + public static readonly XName def = "def"; + + /// + /// Represents the default XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Channel.Default. + /// + /// + public static readonly XName @default = "default"; + + /// + /// Represents the defaultAttributeDrillState XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.DefaultAttributeDrillState. + /// + /// + public static readonly XName defaultAttributeDrillState = "defaultAttributeDrillState"; + + /// + /// Represents the defaultColWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetFormatProperties.DefaultColumnWidth. + /// + /// + public static readonly XName defaultColWidth = "defaultColWidth"; + + /// + /// Represents the defaultGridColor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetView.DefaultGridColor. + /// + /// + public static readonly XName defaultGridColor = "defaultGridColor"; + + /// + /// Represents the defaultImageDpi XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.DefaultImageDpi. + /// + /// + public static readonly XName defaultImageDpi = "defaultImageDpi"; + + /// + /// Represents the defaultMemberUniqueName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.DefaultMemberUniqueName. + /// + /// + public static readonly XName defaultMemberUniqueName = "defaultMemberUniqueName"; + + /// + /// Represents the defaultPivotStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableStyles.DefaultPivotStyle. + /// + /// + public static readonly XName defaultPivotStyle = "defaultPivotStyle"; + + /// + /// Represents the defaultRowHeight XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetFormatProperties.DefaultRowHeight. + /// + /// + public static readonly XName defaultRowHeight = "defaultRowHeight"; + + /// + /// Represents the defaultSize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CommentProperties.DefaultSize, ControlProperties.DefaultSize, EmbeddedObjectProperties.DefaultSize. + /// + /// + public static readonly XName defaultSize = "defaultSize"; + + /// + /// Represents the defaultSlicerStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SlicerStyles.DefaultSlicerStyle. + /// + /// + public static readonly XName defaultSlicerStyle = "defaultSlicerStyle"; + + /// + /// Represents the defaultSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.DefaultSubtotal, PivotField.DefaultSubtotal. + /// + /// + public static readonly XName defaultSubtotal = "defaultSubtotal"; + + /// + /// Represents the defaultTableStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableStyles.DefaultTableStyle. + /// + /// + public static readonly XName defaultTableStyle = "defaultTableStyle"; + + /// + /// Represents the defaultThemeVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.DefaultThemeVersion. + /// + /// + public static readonly XName defaultThemeVersion = "defaultThemeVersion"; + + /// + /// Represents the defaultTimelineStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelineStyles.DefaultTimelineStyle. + /// + /// + public static readonly XName defaultTimelineStyle = "defaultTimelineStyle"; + + /// + /// Represents the defStyle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: LayoutDefinition.DefaultStyle, LayoutDefinitionHeader.DefaultStyle. + /// + /// + public static readonly XName defStyle = "defStyle"; + + /// + /// Represents the defTabSz XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.DefaultTabSize, Level1ParagraphProperties.DefaultTabSize, Level2ParagraphProperties.DefaultTabSize, Level3ParagraphProperties.DefaultTabSize, Level4ParagraphProperties.DefaultTabSize, Level5ParagraphProperties.DefaultTabSize, Level6ParagraphProperties.DefaultTabSize, Level7ParagraphProperties.DefaultTabSize, Level8ParagraphProperties.DefaultTabSize, Level9ParagraphProperties.DefaultTabSize, ParagraphProperties.DefaultTabSize. + /// + /// + public static readonly XName defTabSz = "defTabSz"; + + /// + /// Represents the degree XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: GradientFill.Degree. + /// + /// + public static readonly XName degree = "degree"; + + /// + /// Represents the del1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.Input1Deleted. + /// + /// + public static readonly XName del1 = "del1"; + + /// + /// Represents the del2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.Input2Deleted. + /// + /// + public static readonly XName del2 = "del2"; + + /// + /// Represents the delay XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Condition.Delay, EndSync.Delay. + /// + /// + public static readonly XName delay = "delay"; + + /// + /// Represents the delete XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.Delete. + /// + /// + public static readonly XName delete = "delete"; + + /// + /// Represents the deleteColumns XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.DeleteColumns. + /// + /// + public static readonly XName deleteColumns = "deleteColumns"; + + /// + /// Represents the deleted XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Connection.Deleted, InputCells.Deleted. + /// + /// + public static readonly XName deleted = "deleted"; + + /// + /// Represents the deleteRows XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.DeleteRows. + /// + /// + public static readonly XName deleteRows = "deleteRows"; + + /// + /// Represents the delimited XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.Delimited. + /// + /// + public static readonly XName delimited = "delimited"; + + /// + /// Represents the delimiter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.Delimiter. + /// + /// + public static readonly XName delimiter = "delimiter"; + + /// + /// Represents the denormalized XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: XmlColumnProperties.Denormalized. + /// + /// + public static readonly XName denormalized = "denormalized"; + + /// + /// Represents the descender XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.Descender. + /// + /// + public static readonly XName descender = "descender"; + + /// + /// Represents the descending XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: SortCondition.Descending. + /// + /// + public static readonly XName descending = "descending"; + + /// + /// Represents the descr XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DocProperties.Description, NonVisualDrawingProperties.Description. + /// + /// + public static readonly XName descr = "descr"; + + /// + /// Represents the description XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Description, BackstageMenuButton.Description, BackstageMenuCheckBox.Description, BackstageMenuToggleButton.Description, BackstageSubMenu.Description, Button.Description, ButtonRegular.Description, CheckBox.Description, Connection.Description, ControlClone.Description, ControlCloneQat.Description, DefinedName.Description, DynamicMenu.Description, DynamicMenuRegular.Description, Gallery.Description, GalleryRegular.Description, InkSource.Description, Menu.Description, MenuRegular.Description, PivotFilter.Description, QuickAccessToolbarControlClone.Description, RevisionDefinedName.Description, TaskFormGroupTask.Description, TaskGroupTask.Description, ToggleButton.Description, ToggleButtonRegular.Description, UnsizedButton.Description, UnsizedDynamicMenu.Description, UnsizedGallery.Description, UnsizedMenu.Description, UnsizedToggleButton.Description, VisibleButton.Description, VisibleToggleButton.Description. + /// + /// + public static readonly XName description = "description"; + + /// + /// Represents the destId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.DestinationId. + /// + /// + public static readonly XName destId = "destId"; + + /// + /// Represents the destination XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionMove.Destination. + /// + /// + public static readonly XName destination = "destination"; + + /// + /// Represents the destinationFile XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: WebPublishItem.DestinationFile, WebPublishObject.DestinationFile. + /// + /// + public static readonly XName destinationFile = "destinationFile"; + + /// + /// Represents the destOrd XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.DestinationPosition. + /// + /// + public static readonly XName destOrd = "destOrd"; + + /// + /// Represents the detail XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArtisticPhotocopy.Detail. + /// + /// + public static readonly XName detail = "detail"; + + /// + /// Represents the dgmbasetextscale XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Diagram.BaseTextScale. + /// + /// + public static readonly XName dgmbasetextscale = "dgmbasetextscale"; + + /// + /// Represents the dgmfontsize XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Diagram.FontSize. + /// + /// + public static readonly XName dgmfontsize = "dgmfontsize"; + + /// + /// Represents the dgmscalex XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Diagram.ScaleX. + /// + /// + public static readonly XName dgmscalex = "dgmscalex"; + + /// + /// Represents the dgmscaley XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Diagram.ScaleY. + /// + /// + public static readonly XName dgmscaley = "dgmscaley"; + + /// + /// Represents the dgmstyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Diagram.Style. + /// + /// + public static readonly XName dgmstyle = "dgmstyle"; + + /// + /// Represents the diagonalDown XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Border.DiagonalDown. + /// + /// + public static readonly XName diagonalDown = "diagonalDown"; + + /// + /// Represents the diagonalUp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Border.DiagonalUp. + /// + /// + public static readonly XName diagonalUp = "diagonalUp"; + + /// + /// Represents the differentFirst XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HeaderFooter.DifferentFirst. + /// + /// + public static readonly XName differentFirst = "differentFirst"; + + /// + /// Represents the differentOddEven XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HeaderFooter.DifferentOddEven. + /// + /// + public static readonly XName differentOddEven = "differentOddEven"; + + /// + /// Represents the diffusity XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.Diffusity. + /// + /// + public static readonly XName diffusity = "diffusity"; + + /// + /// Represents the dimension XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: MeasureDimensionMap.Dimension, PivotSelection.Dimension. + /// + /// + public static readonly XName dimension = "dimension"; + + /// + /// Represents the dimensionUniqueName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.DimensionUniqueName. + /// + /// + public static readonly XName dimensionUniqueName = "dimensionUniqueName"; + + /// + /// Represents the dir XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AnimateColor.Direction, BlindsTransition.Direction, CheckerTransition.Direction, CombTransition.Direction, ConveyorTransition.Direction, CoverTransition.Direction, DoorsTransition.Direction, FerrisTransition.Direction, FlipTransition.Direction, FlythroughTransition.Direction, Formula.Dir, GalleryTransition.Direction, GlitterTransition.Direction, InnerShadow.Direction, LightRig.Direction, OuterShadow.Direction, PanTransition.Direction, PresetShadow.Direction, PrismTransition.Direction, PullTransition.Direction, PushTransition.Direction, RandomBarTransition.Direction, Reflection.Direction, RevealTransition.Direction, RippleTransition.Direction, ShredTransition.Direction, SplitTransition.Direction, StripsTransition.Direction, SwitchTransition.Direction, VortexTransition.Direction, WarpTransition.Direction, WindowTransition.Direction, WipeTransition.Direction, ZoomTransition.Direction. + /// + /// + public static readonly XName dir = "dir"; + + /// + /// Represents the direction XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: DataBar.Direction, DestinationLink.Direction, SourceLink.Direction. + /// + /// + public static readonly XName direction = "direction"; + + /// + /// Represents the dirty XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.Dirty, EndParagraphRunProperties.Dirty, RunProperties.Dirty, TextCharacterPropertiesType.Dirty. + /// + /// + public static readonly XName dirty = "dirty"; + + /// + /// Represents the disabled XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CommentProperties.Disabled, ControlProperties.Disabled, EmbeddedObjectProperties.Disabled. + /// + /// + public static readonly XName disabled = "disabled"; + + /// + /// Represents the disableEdit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.DisableEdit. + /// + /// + public static readonly XName disableEdit = "disableEdit"; + + /// + /// Represents the disableFieldList XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.DisableFieldList. + /// + /// + public static readonly XName disableFieldList = "disableFieldList"; + + /// + /// Represents the disablePrompts XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidations.DisablePrompts. + /// + /// + public static readonly XName disablePrompts = "disablePrompts"; + + /// + /// Represents the disableRefresh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.DisableRefresh. + /// + /// + public static readonly XName disableRefresh = "disableRefresh"; + + /// + /// Represents the discardImageEditData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.DiscardImageEditData. + /// + /// + public static readonly XName discardImageEditData = "discardImageEditData"; + + /// + /// Represents the disjunction-type XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OneOf.DisjunctionType. + /// + /// + public static readonly XName disjunction_type = "disjunction-type"; + + /// + /// Represents the diskRevisions XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.DiskRevisions. + /// + /// + public static readonly XName diskRevisions = "diskRevisions"; + + /// + /// Represents the display XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CommonTimeNode.Display, Hyperlink.Display. + /// + /// + public static readonly XName display = "display"; + + /// + /// Represents the displayEmptyCellsAs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.DisplayEmptyCellsAs. + /// + /// + public static readonly XName displayEmptyCellsAs = "displayEmptyCellsAs"; + + /// + /// Represents the displayFolder XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.DisplayFolder, CalculatedMember.DisplayFolder, Kpi.DisplayFolder. + /// + /// + public static readonly XName displayFolder = "displayFolder"; + + /// + /// Represents the displayHidden XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.DisplayHidden. + /// + /// + public static readonly XName displayHidden = "displayHidden"; + + /// + /// Represents the displayName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.DisplayName. + /// + /// + public static readonly XName displayName = "displayName"; + + /// + /// Represents the displayXAxis XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.DisplayXAxis. + /// + /// + public static readonly XName displayXAxis = "displayXAxis"; + + /// + /// Represents the dist XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: InnerShadow.Distance, OuterShadow.Distance, PresetShadow.Distance, Reflection.Distance. + /// + /// + public static readonly XName dist = "dist"; + + /// + /// Represents the distance XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.Distance. + /// + /// + public static readonly XName distance = "distance"; + + /// + /// Represents the distB XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Anchor.DistanceFromBottom, Inline.DistanceFromBottom, WrapSquare.DistanceFromBottom, WrapTopBottom.DistanceFromBottom. + /// + /// + public static readonly XName distB = "distB"; + + /// + /// Represents the distL XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Anchor.DistanceFromLeft, Inline.DistanceFromLeft, WrapSquare.DistanceFromLeft, WrapThrough.DistanceFromLeft, WrapTight.DistanceFromLeft. + /// + /// + public static readonly XName distL = "distL"; + + /// + /// Represents the distR XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Anchor.DistanceFromRight, Inline.DistanceFromRight, WrapSquare.DistanceFromRight, WrapThrough.DistanceFromRight, WrapTight.DistanceFromRight. + /// + /// + public static readonly XName distR = "distR"; + + /// + /// Represents the distT XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Anchor.DistanceFromTop, Inline.DistanceFromTop, WrapSquare.DistanceFromTop, WrapTopBottom.DistanceFromTop. + /// + /// + public static readonly XName distT = "distT"; + + /// + /// Represents the divId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: WebPublishItem.DivId, WebPublishObject.DivId. + /// + /// + public static readonly XName divId = "divId"; + + /// + /// Represents the dn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Undo.DefinedName. + /// + /// + public static readonly XName dn = "dn"; + + /// + /// Represents the dockstate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebExtensionTaskpane.DockState. + /// + /// + public static readonly XName dockstate = "dockstate"; + + /// + /// Represents the documentID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Ink.DocumentId. + /// + /// + public static readonly XName documentID = "documentID"; + + /// + /// Represents the double XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Parameter.Double. + /// + /// + public static readonly XName @double = "double"; + + /// + /// Represents the dpi XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: BlipFill.Dpi, WebPublishing.Dpi. + /// + /// + public static readonly XName dpi = "dpi"; + + /// + /// Represents the dr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Undo.DeletedRange. + /// + /// + public static readonly XName dr = "dr"; + + /// + /// Represents the draft XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.Draft, PageSetup.Draft. + /// + /// + public static readonly XName draft = "draft"; + + /// + /// Represents the dragOff XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.DragOff, PivotHierarchy.DragOff. + /// + /// + public static readonly XName dragOff = "dragOff"; + + /// + /// Represents the dragToCol XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.DragToColumn, PivotHierarchy.DragToColumn. + /// + /// + public static readonly XName dragToCol = "dragToCol"; + + /// + /// Represents the dragToData XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.DragToData, PivotHierarchy.DragToData. + /// + /// + public static readonly XName dragToData = "dragToData"; + + /// + /// Represents the dragToPage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.DragToPage, PivotHierarchy.DragToPage. + /// + /// + public static readonly XName dragToPage = "dragToPage"; + + /// + /// Represents the dragToRow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.DragToRow, PivotHierarchy.DragToRow. + /// + /// + public static readonly XName dragToRow = "dragToRow"; + + /// + /// Represents the DrawAspect XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.DrawAspect. + /// + /// + public static readonly XName DrawAspect = "DrawAspect"; + + /// + /// Represents the drillThrough XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.DrillThrough. + /// + /// + public static readonly XName drillThrough = "drillThrough"; + + /// + /// Represents the drop XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.Drop. + /// + /// + public static readonly XName drop = "drop"; + + /// + /// Represents the dropauto XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.DropAuto. + /// + /// + public static readonly XName dropauto = "dropauto"; + + /// + /// Represents the dropLines XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.DropLines. + /// + /// + public static readonly XName dropLines = "dropLines"; + + /// + /// Represents the dropStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.DropStyle. + /// + /// + public static readonly XName dropStyle = "dropStyle"; + + /// + /// Represents the dt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Comment.DateTime, HeaderFooter.DateTime. + /// + /// + public static readonly XName dt = "dt"; + + /// + /// Represents the dt2D XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.DataTable2D. + /// + /// + public static readonly XName dt2D = "dt2D"; + + /// + /// Represents the dtr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.DataTableRow. + /// + /// + public static readonly XName dtr = "dtr"; + + /// + /// Represents the dur XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.Duration. + /// + /// + public static readonly XName dur = "dur"; + + /// + /// Represents the duration XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Trace.Duration. + /// + /// + public static readonly XName duration = "duration"; + + /// + /// Represents the dvAspect XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.DataOrViewAspect. + /// + /// + public static readonly XName dvAspect = "dvAspect"; + + /// + /// Represents the dx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: FormControlProperties.ScrollBarWidth, Normal.Dx, UpVector.Dx. + /// + /// + public static readonly XName dx = "dx"; + + /// + /// Represents the dxf XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionCellChange.Format. + /// + /// + public static readonly XName dxf = "dxf"; + + /// + /// Represents the dxfId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: ColorFilter.FormatId, ConditionalFormattingRule.FormatId, Format.FormatId, SlicerStyleElement.FormatId, SortCondition.FormatId, TableStyleElement.FormatId, TimelineStyleElement.FormatId. + /// + /// + public static readonly XName dxfId = "dxfId"; + + /// + /// Represents the dy XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Normal.Dy, UpVector.Dy. + /// + /// + public static readonly XName dy = "dy"; + + /// + /// Represents the dynamicSet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculatedMember.DynamicSet. + /// + /// + public static readonly XName dynamicSet = "dynamicSet"; + + /// + /// Represents the dz XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Normal.Dz, UpVector.Dz. + /// + /// + public static readonly XName dz = "dz"; + + /// + /// Represents the e XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Item.DrillAcrossAttributes. + /// + /// + public static readonly XName e = "e"; + + /// + /// Represents the eaLnBrk XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.EastAsianLineBreak, Level1ParagraphProperties.EastAsianLineBreak, Level2ParagraphProperties.EastAsianLineBreak, Level3ParagraphProperties.EastAsianLineBreak, Level4ParagraphProperties.EastAsianLineBreak, Level5ParagraphProperties.EastAsianLineBreak, Level6ParagraphProperties.EastAsianLineBreak, Level7ParagraphProperties.EastAsianLineBreak, Level8ParagraphProperties.EastAsianLineBreak, Level9ParagraphProperties.EastAsianLineBreak, ParagraphProperties.EastAsianLineBreak. + /// + /// + public static readonly XName eaLnBrk = "eaLnBrk"; + + /// + /// Represents the eb XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PhoneticRun.EndingBaseIndex. + /// + /// + public static readonly XName eb = "eb"; + + /// + /// Represents the edge XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Extrusion.Edge, RevisionRowColumn.Edge. + /// + /// + public static readonly XName edge = "edge"; + + /// + /// Represents the edit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.Edit. + /// + /// + public static readonly XName edit = "edit"; + + /// + /// Represents the editas XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Group.EditAs. + /// + /// + public static readonly XName editas = "editas"; + + /// + /// Represents the editAs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TwoCellAnchor.EditAs. + /// + /// + public static readonly XName editAs_ = "editAs"; + + /// + /// Represents the editData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.EditData. + /// + /// + public static readonly XName editData = "editData"; + + /// + /// Represents the edited XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WrapPolygon.Edited. + /// + /// + public static readonly XName edited = "edited"; + + /// + /// Represents the editPage XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.EditPage. + /// + /// + public static readonly XName editPage = "editPage"; + + /// + /// Represents the editVal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.EditVal. + /// + /// + public static readonly XName editVal = "editVal"; + + /// + /// Represents the embeddedDataId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.EmbeddedDataId. + /// + /// + public static readonly XName embeddedDataId = "embeddedDataId"; + + /// + /// Represents the embeddedHtml XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebVideoProperty.EmbeddedHtml. + /// + /// + public static readonly XName embeddedHtml = "embeddedHtml"; + + /// + /// Represents the embedTrueTypeFonts XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.EmbedTrueTypeFonts. + /// + /// + public static readonly XName embedTrueTypeFonts = "embedTrueTypeFonts"; + + /// + /// Represents the embosscolor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ImageData.EmbossColor. + /// + /// + public static readonly XName embosscolor = "embosscolor"; + + /// + /// Represents the emptyCellReference XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: IgnoredError.EmptyCellReference. + /// + /// + public static readonly XName emptyCellReference = "emptyCellReference"; + + /// + /// Represents the enabled XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Enabled, BackstageComboBox.Enabled, BackstageDropDown.Enabled, BackstageEditBox.Enabled, BackstageFastCommandButton.Enabled, BackstageGroupButton.Enabled, BackstageLabelControl.Enabled, BackstageMenuButton.Enabled, BackstageMenuCheckBox.Enabled, BackstageMenuToggleButton.Enabled, BackstagePrimaryMenu.Enabled, BackstageRegularButton.Enabled, BackstageSubMenu.Enabled, BackstageTab.Enabled, Button.Enabled, ButtonRegular.Enabled, CheckBox.Enabled, ComboBox.Enabled, Command.Enabled, ControlClone.Enabled, ControlCloneQat.Enabled, ControlCloneRegular.Enabled, DropDown.Enabled, DropDownRegular.Enabled, DynamicMenu.Enabled, DynamicMenuRegular.Enabled, EditBox.Enabled, Gallery.Enabled, GalleryRegular.Enabled, Hyperlink.Enabled, ImageControl.Enabled, LabelControl.Enabled, Menu.Enabled, MenuRegular.Enabled, MenuWithTitle.Enabled, QuickAccessToolbarControlClone.Enabled, RadioGroup.Enabled, RepurposedCommand.Enabled, SplitButton.Enabled, SplitButtonRegular.Enabled, SplitButtonWithTitle.Enabled, TaskFormGroupTask.Enabled, TaskGroupTask.Enabled, TextLabel.Enabled, ToggleButton.Enabled, ToggleButtonRegular.Enabled, UnsizedButton.Enabled, UnsizedControlClone.Enabled, UnsizedDynamicMenu.Enabled, UnsizedGallery.Enabled, UnsizedMenu.Enabled, UnsizedSplitButton.Enabled, UnsizedToggleButton.Enabled, VisibleButton.Enabled, VisibleToggleButton.Enabled. + /// + /// + public static readonly XName enabled = "enabled"; + + /// + /// Represents the enableDrill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.EnableDrill. + /// + /// + public static readonly XName enableDrill = "enableDrill"; + + /// + /// Represents the enableEdit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.EnableEdit. + /// + /// + public static readonly XName enableEdit = "enableEdit"; + + /// + /// Represents the enableFieldProperties XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.EnableFieldProperties. + /// + /// + public static readonly XName enableFieldProperties = "enableFieldProperties"; + + /// + /// Represents the enableFormatConditionsCalculation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProperties.EnableFormatConditionsCalculation. + /// + /// + public static readonly XName enableFormatConditionsCalculation = "enableFormatConditionsCalculation"; + + /// + /// Represents the enableRefresh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.EnableRefresh. + /// + /// + public static readonly XName enableRefresh = "enableRefresh"; + + /// + /// Represents the enableWizard XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.EnableWizard. + /// + /// + public static readonly XName enableWizard = "enableWizard"; + + /// + /// Represents the encoding XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Annotation.Encoding, AnnotationXml.Encoding, WebProperties.Encoding. + /// + /// + public static readonly XName encoding = "encoding"; + + /// + /// Represents the end XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: CharRange.End, ConnectableReferences.End, MediaTrim.End, ParagraphIndexRange.End, Proxy.End, SlideRange.End. + /// + /// + public static readonly XName end = "end"; + + /// + /// Represents the endA XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.EndAlpha. + /// + /// + public static readonly XName endA = "endA"; + + /// + /// Represents the endangle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Arc.EndAngle. + /// + /// + public static readonly XName endangle = "endangle"; + + /// + /// Represents the endarrow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.EndArrow, ColumnStroke.EndArrow, LeftStroke.EndArrow, RightStroke.EndArrow, Stroke.EndArrow, TopStroke.EndArrow. + /// + /// + public static readonly XName endarrow = "endarrow"; + + /// + /// Represents the endarrowlength XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.EndArrowLength, ColumnStroke.EndArrowLength, LeftStroke.EndArrowLength, RightStroke.EndArrowLength, Stroke.EndArrowLength, TopStroke.EndArrowLength. + /// + /// + public static readonly XName endarrowlength = "endarrowlength"; + + /// + /// Represents the endarrowwidth XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.EndArrowWidth, ColumnStroke.EndArrowWidth, LeftStroke.EndArrowWidth, RightStroke.EndArrowWidth, Stroke.EndArrowWidth, TopStroke.EndArrowWidth. + /// + /// + public static readonly XName endarrowwidth = "endarrowwidth"; + + /// + /// Represents the endcap XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.EndCap, ColumnStroke.EndCap, LeftStroke.EndCap, RightStroke.EndCap, Stroke.EndCap, TopStroke.EndCap. + /// + /// + public static readonly XName endcap = "endcap"; + + /// + /// Represents the endDate XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BoundsTimelineRange.EndDate, RangeProperties.EndDate, SelectionTimelineRange.EndDate. + /// + /// + public static readonly XName endDate = "endDate"; + + /// + /// Represents the endModifierType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.EndModifierType. + /// + /// + public static readonly XName endModifierType = "endModifierType"; + + /// + /// Represents the endNum XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeProperties.EndNum. + /// + /// + public static readonly XName endNum = "endNum"; + + /// + /// Represents the endOfListFormulaUpdate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionCellChange.EndOfListFormulaUpdate. + /// + /// + public static readonly XName endOfListFormulaUpdate = "endOfListFormulaUpdate"; + + /// + /// Represents the endPos XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.EndPosition. + /// + /// + public static readonly XName endPos = "endPos"; + + /// + /// Represents the endSnd XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HyperlinkOnClick.EndSound, HyperlinkOnHover.EndSound, HyperlinkOnMouseOver.EndSound. + /// + /// + public static readonly XName endSnd = "endSnd"; + + /// + /// Represents the eol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionRowColumn.EndOfList. + /// + /// + public static readonly XName eol = "eol"; + + /// + /// Represents the eqn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Formula.Equation. + /// + /// + public static readonly XName eqn = "eqn"; + + /// + /// Represents the equalAverage XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.EqualAverage. + /// + /// + public static readonly XName equalAverage = "equalAverage"; + + /// + /// Represents the equationxml XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shape.EquationXml. + /// + /// + public static readonly XName equationxml = "equationxml"; + + /// + /// Represents the err XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.SpellingError, EndParagraphRunProperties.SpellingError, RunProperties.SpellingError, TextCharacterPropertiesType.SpellingError. + /// + /// + public static readonly XName err = "err"; + + /// + /// Represents the error XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.Error. + /// + /// + public static readonly XName error = "error"; + + /// + /// Represents the errorCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ErrorCaption. + /// + /// + public static readonly XName errorCaption = "errorCaption"; + + /// + /// Represents the errors XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageSetup.Errors. + /// + /// + public static readonly XName errors = "errors"; + + /// + /// Represents the errorStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.ErrorStyle. + /// + /// + public static readonly XName errorStyle = "errorStyle"; + + /// + /// Represents the errorTitle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.ErrorTitle. + /// + /// + public static readonly XName errorTitle = "errorTitle"; + + /// + /// Represents the evalError XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: IgnoredError.EvalError. + /// + /// + public static readonly XName evalError = "evalError"; + + /// + /// Represents the evalOrder XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotFilter.EvaluationOrder. + /// + /// + public static readonly XName evalOrder = "evalOrder"; + + /// + /// Represents the evt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Condition.Event, EndSync.Event. + /// + /// + public static readonly XName evt = "evt"; + + /// + /// Represents the evtFilter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.EventFilter. + /// + /// + public static readonly XName evtFilter = "evtFilter"; + + /// + /// Represents the excludeFromRefreshAll XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.ExcludeFromRefreshAll. + /// + /// + public static readonly XName excludeFromRefreshAll = "excludeFromRefreshAll"; + + /// + /// Represents the exclusive XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.Exclusive. + /// + /// + public static readonly XName exclusive = "exclusive"; + + /// + /// Represents the exp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Undo.Expression. + /// + /// + public static readonly XName exp = "exp"; + + /// + /// Represents the expand XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Expand, BackstageComboBox.Expand, BackstageDropDown.Expand, BackstageEditBox.Expand, BackstageGroupButton.Expand, BackstageLabelControl.Expand, GroupBox.Expand, Hyperlink.Expand, LayoutContainer.Expand, RadioGroup.Expand. + /// + /// + public static readonly XName expand = "expand"; + + /// + /// Represents the extendable XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotSelection.Extendable. + /// + /// + public static readonly XName extendable = "extendable"; + + /// + /// Represents the extrusioncolor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorMenu.ExtrusionColor. + /// + /// + public static readonly XName extrusioncolor = "extrusioncolor"; + + /// + /// Represents the extrusionH XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HiddenShape3D.ExtrusionHeight, Shape3D.ExtrusionHeight, Shape3DType.ExtrusionHeight. + /// + /// + public static readonly XName extrusionH = "extrusionH"; + + /// + /// Represents the extrusionOk XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.ExtrusionOk. + /// + /// + public static readonly XName extrusionOk = "extrusionOk"; + + /// + /// Represents the f XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: BooleanItem.Calculated, DateTimeItem.Calculated, ErrorItem.Calculated, Item.Calculated, Mdx.CubeFunction, MissingItem.Calculated, NumberItem.Calculated, StringItem.Calculated. + /// + /// + public static readonly XName f = "f"; + + /// + /// Represents the facet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.Facet. + /// + /// + public static readonly XName facet = "facet"; + + /// + /// Represents the fact XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Constraint.Fact, Rule.Fact. + /// + /// + public static readonly XName fact = "fact"; + + /// + /// Represents the fadeDir XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.FadeDirection. + /// + /// + public static readonly XName fadeDir = "fadeDir"; + + /// + /// Represents the fc XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ErrorItem.ForegroundColor, MdxTuple.ForegroundColor, MissingItem.ForegroundColor, NumberItem.ForegroundColor, PivotValueCellExtra.ForegroundColor, StringItem.ForegroundColor. + /// + /// + public static readonly XName fc = "fc"; + + /// + /// Represents the fi XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MdxTuple.FormatIndex. + /// + /// + public static readonly XName fi = "fi"; + + /// + /// Represents the field XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: CalculatedItem.Field, MemberProperty.Field, PivotArea.Field, PivotAreaReference.Field. + /// + /// + public static readonly XName field = "field"; + + /// + /// Represents the fieldId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionQueryTable.FieldId. + /// + /// + public static readonly XName fieldId = "fieldId"; + + /// + /// Represents the fieldIdWrapped XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableRefresh.FieldIdWrapped. + /// + /// + public static readonly XName fieldIdWrapped = "fieldIdWrapped"; + + /// + /// Represents the fieldListSortAscending XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.FieldListSortAscending. + /// + /// + public static readonly XName fieldListSortAscending = "fieldListSortAscending"; + + /// + /// Represents the fieldPosition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotArea.FieldPosition. + /// + /// + public static readonly XName fieldPosition = "fieldPosition"; + + /// + /// Represents the fieldPrintTitles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.FieldPrintTitles. + /// + /// + public static readonly XName fieldPrintTitles = "fieldPrintTitles"; + + /// + /// Represents the FileBinding XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBinding.FileBinding. + /// + /// + public static readonly XName FileBinding = "FileBinding"; + + /// + /// Represents the FileBindingName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBinding.FileBindingName. + /// + /// + public static readonly XName FileBindingName = "FileBindingName"; + + /// + /// Represents the fileType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.FileType. + /// + /// + public static readonly XName fileType = "fileType"; + + /// + /// Represents the fill XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Background.Filled, CommonTimeNode.Fill, Path.Fill, ShapeDefaults.BeFilled. + /// + /// + public static readonly XName fill = "fill"; + + /// + /// Represents the fillcolor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.FillColor, Background.Fillcolor, ColorMenu.FillColor, Curve.FillColor, ImageFile.FillColor, Line.FillColor, Oval.FillColor, PolyLine.FillColor, Rectangle.FillColor, RoundRectangle.FillColor, Shape.FillColor, ShapeDefaults.FillColor, Shapetype.FillColor. + /// + /// + public static readonly XName fillcolor = "fillcolor"; + + /// + /// Represents the fillDownLabels XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.FillDownLabels. + /// + /// + public static readonly XName fillDownLabels = "fillDownLabels"; + + /// + /// Represents the fillDownLabelsDefault XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.FillDownLabelsDefault. + /// + /// + public static readonly XName fillDownLabelsDefault = "fillDownLabelsDefault"; + + /// + /// Represents the filled XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Filled, Curve.Filled, ImageFile.Filled, Line.Filled, Oval.Filled, PolyLine.Filled, Rectangle.Filled, RoundRectangle.Filled, Shape.Filled, Shapetype.Filled. + /// + /// + public static readonly XName filled = "filled"; + + /// + /// Represents the fillFormulas XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: QueryTable.FillFormulas, QueryTableField.FillFormulas. + /// + /// + public static readonly XName fillFormulas = "fillFormulas"; + + /// + /// Represents the fillId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.FillId. + /// + /// + public static readonly XName fillId = "fillId"; + + /// + /// Represents the fillok XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.AllowFill. + /// + /// + public static readonly XName fillok = "fillok"; + + /// + /// Represents the filltype XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.FillType, ColumnStroke.FillType, LeftStroke.FillType, RightStroke.FillType, Stroke.FillType, TopStroke.FillType. + /// + /// + public static readonly XName filltype = "filltype"; + + /// + /// Represents the filter XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: AnimateEffect.Filter, CustomSheetView.Filter. + /// + /// + public static readonly XName filter = "filter"; + + /// + /// Represents the filterId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelineState.FilterId. + /// + /// + public static readonly XName filterId = "filterId"; + + /// + /// Represents the filterMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProperties.FilterMode. + /// + /// + public static readonly XName filterMode = "filterMode"; + + /// + /// Represents the filterPivotName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelineState.FilterPivotName. + /// + /// + public static readonly XName filterPivotName = "filterPivotName"; + + /// + /// Represents the filterPrivacy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.FilterPrivacy. + /// + /// + public static readonly XName filterPrivacy = "filterPrivacy"; + + /// + /// Represents the filterTabId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelineState.FilterTabId. + /// + /// + public static readonly XName filterTabId = "filterTabId"; + + /// + /// Represents the filterType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelineState.FilterType. + /// + /// + public static readonly XName filterType = "filterType"; + + /// + /// Represents the filterUnique XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.FilterUnique. + /// + /// + public static readonly XName filterUnique = "filterUnique"; + + /// + /// Represents the filterVal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Top10.FilterValue. + /// + /// + public static readonly XName filterVal = "filterVal"; + + /// + /// Represents the final XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lattice.Final. + /// + /// + public static readonly XName final = "final"; + + /// + /// Represents the first XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Main.First, SparklineGroup.First. + /// + /// + public static readonly XName first = "first"; + + /// + /// Represents the firstBackgroundRefresh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.FirstBackgroundRefresh. + /// + /// + public static readonly XName firstBackgroundRefresh = "firstBackgroundRefresh"; + + /// + /// Represents the firstButton XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.FirstButton. + /// + /// + public static readonly XName firstButton = "firstButton"; + + /// + /// Represents the firstCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableProperties.FirstColumn. + /// + /// + public static readonly XName firstCol = "firstCol"; + + /// + /// Represents the firstColumnMaxWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackstageTab.FirstColumnMaxWidth. + /// + /// + public static readonly XName firstColumnMaxWidth = "firstColumnMaxWidth"; + + /// + /// Represents the firstColumnMinWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackstageTab.FirstColumnMinWidth. + /// + /// + public static readonly XName firstColumnMinWidth = "firstColumnMinWidth"; + + /// + /// Represents the firstDataCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Location.FirstDataColumn. + /// + /// + public static readonly XName firstDataCol = "firstDataCol"; + + /// + /// Represents the firstDataRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Location.FirstDataRow. + /// + /// + public static readonly XName firstDataRow = "firstDataRow"; + + /// + /// Represents the firstHeaderRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Location.FirstHeaderRow. + /// + /// + public static readonly XName firstHeaderRow = "firstHeaderRow"; + + /// + /// Represents the firstPageNumber XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.FirstPageNumber, PageSetup.FirstPageNumber. + /// + /// + public static readonly XName firstPageNumber = "firstPageNumber"; + + /// + /// Represents the firstRow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: TableProperties.FirstRow, TextProperties.FirstRow, WebQueryProperties.FirstRow. + /// + /// + public static readonly XName firstRow = "firstRow"; + + /// + /// Represents the firstSheet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookView.FirstSheet. + /// + /// + public static readonly XName firstSheet = "firstSheet"; + + /// + /// Represents the firstSlideNum XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.FirstSlideNum. + /// + /// + public static readonly XName firstSlideNum = "firstSlideNum"; + + /// + /// Represents the fitpath XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextPath.FitPath. + /// + /// + public static readonly XName fitpath = "fitpath"; + + /// + /// Represents the fitshape XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextPath.FitShape. + /// + /// + public static readonly XName fitshape = "fitshape"; + + /// + /// Represents the fitToHeight XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageSetup.FitToHeight. + /// + /// + public static readonly XName fitToHeight = "fitToHeight"; + + /// + /// Represents the fitToPage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomSheetView.FitToPage, PageSetupProperties.FitToPage. + /// + /// + public static readonly XName fitToPage = "fitToPage"; + + /// + /// Represents the fitToWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageSetup.FitToWidth. + /// + /// + public static readonly XName fitToWidth = "fitToWidth"; + + /// + /// Represents the flattenHierarchies XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.FlattenHierarchies, CalculatedMember.FlattenHierarchies. + /// + /// + public static readonly XName flattenHierarchies = "flattenHierarchies"; + + /// + /// Represents the fld XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DataField.Field, PageField.Field, PivotFilter.Field, Tuple.Field. + /// + /// + public static readonly XName fld = "fld"; + + /// + /// Represents the flip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: GradientFill.Flip, Tile.Flip. + /// + /// + public static readonly XName flip = "flip"; + + /// + /// Represents the flipH XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Transform.HorizontalFlip, Transform2D.HorizontalFlip, TransformGroup.HorizontalFlip. + /// + /// + public static readonly XName flipH = "flipH"; + + /// + /// Represents the flipV XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Transform.VerticalFlip, Transform2D.VerticalFlip, TransformGroup.VerticalFlip. + /// + /// + public static readonly XName flipV = "flipV"; + + /// + /// Represents the fLocksText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Shape.LockText. + /// + /// + public static readonly XName fLocksText = "fLocksText"; + + /// + /// Represents the fLocksWithSheet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ClientData.LockWithSheet. + /// + /// + public static readonly XName fLocksWithSheet = "fLocksWithSheet"; + + /// + /// Represents the fmla XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ShapeGuide.Formula, TimeAnimateValue.Fomula. + /// + /// + public static readonly XName fmla = "fmla"; + + /// + /// Represents the fmlaGroup XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.FmlaGroup. + /// + /// + public static readonly XName fmlaGroup = "fmlaGroup"; + + /// + /// Represents the fmlaLink XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.FmlaLink. + /// + /// + public static readonly XName fmlaLink = "fmlaLink"; + + /// + /// Represents the fmlaRange XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.FmlaRange. + /// + /// + public static readonly XName fmlaRange = "fmlaRange"; + + /// + /// Represents the fmlaTxbx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.FmlaTextbox. + /// + /// + public static readonly XName fmlaTxbx = "fmlaTxbx"; + + /// + /// Represents the fmtid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomDocumentProperty.FormatId. + /// + /// + public static readonly XName fmtid = "fmtid"; + + /// + /// Represents the focus XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.Focus. + /// + /// + public static readonly XName focus = "focus"; + + /// + /// Represents the focusposition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.FocusPosition. + /// + /// + public static readonly XName focusposition = "focusposition"; + + /// + /// Represents the focussize XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.FocusSize. + /// + /// + public static readonly XName focussize = "focussize"; + + /// + /// Represents the folHlink XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.FollowedHyperlink, ColorMapOverride.FollowedHyperlink, ColorMappingType.FollowedHyperlink, OverrideColorMapping.FollowedHyperlink. + /// + /// + public static readonly XName folHlink = "folHlink"; + + /// + /// Represents the followColorScheme XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObjectEmbed.FollowColorScheme. + /// + /// + public static readonly XName followColorScheme = "followColorScheme"; + + /// + /// Represents the fontAlgn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.FontAlignment, Level1ParagraphProperties.FontAlignment, Level2ParagraphProperties.FontAlignment, Level3ParagraphProperties.FontAlignment, Level4ParagraphProperties.FontAlignment, Level5ParagraphProperties.FontAlignment, Level6ParagraphProperties.FontAlignment, Level7ParagraphProperties.FontAlignment, Level8ParagraphProperties.FontAlignment, Level9ParagraphProperties.FontAlignment, ParagraphProperties.FontAlignment. + /// + /// + public static readonly XName fontAlgn = "fontAlgn"; + + /// + /// Represents the fontId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CellFormat.FontId, PhoneticProperties.FontId. + /// + /// + public static readonly XName fontId = "fontId"; + + /// + /// Represents the fontScale XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NormalAutoFit.FontScale. + /// + /// + public static readonly XName fontScale = "fontScale"; + + /// + /// Represents the footer XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PageMargins.Footer. + /// + /// + public static readonly XName footer = "footer"; + + /// + /// Represents the for XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Constraint.For, Rule.For. + /// + /// + public static readonly XName @for = "for"; + + /// + /// Represents the forceAA XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.ForceAntiAlias, TextBodyProperties.ForceAntiAlias. + /// + /// + public static readonly XName forceAA = "forceAA"; + + /// + /// Represents the forceFullCalc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.ForceFullCalculation. + /// + /// + public static readonly XName forceFullCalc = "forceFullCalc"; + + /// + /// Represents the foredepth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.ForceDepth. + /// + /// + public static readonly XName foredepth = "foredepth"; + + /// + /// Represents the format XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartFormat.Format, ServerFormat.Format, VTClipboardData.Format. + /// + /// + public static readonly XName format = "format"; + + /// + /// Represents the formatCells XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.FormatCells. + /// + /// + public static readonly XName formatCells = "formatCells"; + + /// + /// Represents the formatCode XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: NumberFormat.FormatCode, NumberingFormat.FormatCode, NumericLevel.FormatCode, NumericPoint.FormatCode. + /// + /// + public static readonly XName formatCode = "formatCode"; + + /// + /// Represents the formatColumns XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.FormatColumns. + /// + /// + public static readonly XName formatColumns = "formatColumns"; + + /// + /// Represents the formatIdx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Series.FormatIdx. + /// + /// + public static readonly XName formatIdx = "formatIdx"; + + /// + /// Represents the formatRows XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.FormatRows. + /// + /// + public static readonly XName formatRows = "formatRows"; + + /// + /// Represents the formula XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: CacheField.Formula, CalculatedItem.Formula, IgnoredError.Formula. + /// + /// + public static readonly XName formula = "formula"; + + /// + /// Represents the formulaRange XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: IgnoredError.FormulaRange. + /// + /// + public static readonly XName formulaRange = "formulaRange"; + + /// + /// Represents the forName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Constraint.ForName, Rule.ForName. + /// + /// + public static readonly XName forName = "forName"; + + /// + /// Represents the fov XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Camera.FieldOfView. + /// + /// + public static readonly XName fov = "fov"; + + /// + /// Represents the fPrintsWithSheet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ClientData.PrintWithSheet. + /// + /// + public static readonly XName fPrintsWithSheet = "fPrintsWithSheet"; + + /// + /// Represents the fPublished XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: ApplicationNonVisualDrawingProperties.Published, ApplicationNonVisualDrawingProperties.PublishedFlag, ConnectionShape.Published, GraphicFrame.Published, Picture.Published, Shape.Published. + /// + /// + public static readonly XName fPublished = "fPublished"; + + /// + /// Represents the frame XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PhotoAlbum.Frame. + /// + /// + public static readonly XName frame = "frame"; + + /// + /// Represents the frameSlides XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintingProperties.FrameSlides. + /// + /// + public static readonly XName frameSlides = "frameSlides"; + + /// + /// Represents the from XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: Animate.From, AnimateRotation.From, Arc.From, CommonBehavior.From, Curve.From, Line.From, TraceView.From. + /// + /// + public static readonly XName from = "from"; + + /// + /// Represents the fromColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModelRelationship.FromColumn. + /// + /// + public static readonly XName fromColumn = "fromColumn"; + + /// + /// Represents the fromTable XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModelRelationship.FromTable. + /// + /// + public static readonly XName fromTable = "fromTable"; + + /// + /// Represents the fromWordArt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.FromWordArt, TextBodyProperties.FromWordArt. + /// + /// + public static readonly XName fromWordArt = "fromWordArt"; + + /// + /// Represents the frozen XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebExtension.Frozen. + /// + /// + public static readonly XName frozen = "frozen"; + + /// + /// Represents the ftr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: HeaderFooter.Footer. + /// + /// + public static readonly XName ftr = "ftr"; + + /// + /// Represents the fullCalcOnLoad XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CalculationProperties.FullCalculationOnLoad, SheetCalculationProperties.FullCalculationOnLoad. + /// + /// + public static readonly XName fullCalcOnLoad = "fullCalcOnLoad"; + + /// + /// Represents the fullPrecision XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.FullPrecision. + /// + /// + public static readonly XName fullPrecision = "fullPrecision"; + + /// + /// Represents the fullScrn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Video.FullScreen. + /// + /// + public static readonly XName fullScrn = "fullScrn"; + + /// + /// Represents the func XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DiagramChooseIf.Function. + /// + /// + public static readonly XName func = "func"; + + /// + /// Represents the function XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: DataConsolidate.Function, DefinedName.Function, RevisionDefinedName.Function. + /// + /// + public static readonly XName function = "function"; + + /// + /// Represents the functionGroupId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DefinedName.FunctionGroupId, RevisionDefinedName.FunctionGroupId. + /// + /// + public static readonly XName functionGroupId = "functionGroupId"; + + /// + /// Represents the g XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: RgbColor.Green, RgbColorModelPercentage.GreenPortion. + /// + /// + public static readonly XName g = "g"; + + /// + /// Represents the gain XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.Gain, ImageFile.Gain. + /// + /// + public static readonly XName gain = "gain"; + + /// + /// Represents the gamma XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.Gamma, ImageFile.Gamma. + /// + /// + public static readonly XName gamma = "gamma"; + + /// + /// Represents the gap XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.Gap. + /// + /// + public static readonly XName gap = "gap"; + + /// + /// Represents the gapWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CategoryAxisScaling.GapWidth. + /// + /// + public static readonly XName gapWidth = "gapWidth"; + + /// + /// Represents the gdRefAng XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandlePolar.AngleAdjustmentGuide. + /// + /// + public static readonly XName gdRefAng = "gdRefAng"; + + /// + /// Represents the gdRefR XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandlePolar.RadialAdjustmentGuide. + /// + /// + public static readonly XName gdRefR = "gdRefR"; + + /// + /// Represents the gdRefX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandleXY.XAdjustmentGuide. + /// + /// + public static readonly XName gdRefX = "gdRefX"; + + /// + /// Represents the gdRefY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandleXY.YAdjustmentGuide. + /// + /// + public static readonly XName gdRefY = "gdRefY"; + + /// + /// Represents the getAltText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ImageControl.GetAltText. + /// + /// + public static readonly XName getAltText = "getAltText"; + + /// + /// Represents the getContent XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DynamicMenu.GetContent, DynamicMenuRegular.GetContent, UnsizedDynamicMenu.GetContent. + /// + /// + public static readonly XName getContent = "getContent"; + + /// + /// Represents the getDescription XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.GetDescription, BackstageMenuButton.GetDescription, BackstageMenuCheckBox.GetDescription, BackstageMenuToggleButton.GetDescription, BackstageSubMenu.GetDescription, Button.GetDescription, ButtonRegular.GetDescription, CheckBox.GetDescription, ControlClone.GetDescription, ControlCloneQat.GetDescription, DynamicMenu.GetDescription, DynamicMenuRegular.GetDescription, Gallery.GetDescription, GalleryRegular.GetDescription, Menu.GetDescription, MenuRegular.GetDescription, QuickAccessToolbarControlClone.GetDescription, TaskFormGroupTask.GetDescription, TaskGroupTask.GetDescription, ToggleButton.GetDescription, ToggleButtonRegular.GetDescription, UnsizedButton.GetDescription, UnsizedDynamicMenu.GetDescription, UnsizedGallery.GetDescription, UnsizedMenu.GetDescription, UnsizedToggleButton.GetDescription, VisibleButton.GetDescription, VisibleToggleButton.GetDescription. + /// + /// + public static readonly XName getDescription = "getDescription"; + + /// + /// Represents the getEnabled XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.GetEnabled, BackstageComboBox.GetEnabled, BackstageDropDown.GetEnabled, BackstageEditBox.GetEnabled, BackstageFastCommandButton.GetEnabled, BackstageGroupButton.GetEnabled, BackstageLabelControl.GetEnabled, BackstageMenuButton.GetEnabled, BackstageMenuCheckBox.GetEnabled, BackstageMenuToggleButton.GetEnabled, BackstagePrimaryMenu.GetEnabled, BackstageRegularButton.GetEnabled, BackstageSubMenu.GetEnabled, BackstageTab.GetEnabled, Button.GetEnabled, ButtonRegular.GetEnabled, CheckBox.GetEnabled, ComboBox.GetEnabled, Command.GetEnabled, ControlClone.GetEnabled, ControlCloneQat.GetEnabled, ControlCloneRegular.GetEnabled, DropDown.GetEnabled, DropDownRegular.GetEnabled, DynamicMenu.GetEnabled, DynamicMenuRegular.GetEnabled, EditBox.GetEnabled, Gallery.GetEnabled, GalleryRegular.GetEnabled, Hyperlink.GetEnabled, ImageControl.GetEnabled, LabelControl.GetEnabled, Menu.GetEnabled, MenuRegular.GetEnabled, MenuWithTitle.GetEnabled, QuickAccessToolbarControlClone.GetEnabled, RadioGroup.GetEnabled, RepurposedCommand.GetEnabled, SplitButton.GetEnabled, SplitButtonRegular.GetEnabled, SplitButtonWithTitle.GetEnabled, TaskFormGroupTask.GetEnabled, TaskGroupTask.GetEnabled, TextLabel.GetEnabled, ToggleButton.GetEnabled, ToggleButtonRegular.GetEnabled, UnsizedButton.GetEnabled, UnsizedControlClone.GetEnabled, UnsizedDynamicMenu.GetEnabled, UnsizedGallery.GetEnabled, UnsizedMenu.GetEnabled, UnsizedSplitButton.GetEnabled, UnsizedToggleButton.GetEnabled, VisibleButton.GetEnabled, VisibleToggleButton.GetEnabled. + /// + /// + public static readonly XName getEnabled = "getEnabled"; + + /// + /// Represents the getHelperText XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BackstageGroup.GetHelperText, TaskFormGroup.GetHelperText, TaskGroup.GetHelperText. + /// + /// + public static readonly XName getHelperText = "getHelperText"; + + /// + /// Represents the getImage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.GetImage, BackstageGroupButton.GetImage, BackstageMenuButton.GetImage, BackstageMenuToggleButton.GetImage, BackstagePrimaryMenu.GetImage, BackstageRegularButton.GetImage, BackstageSubMenu.GetImage, Button.GetImage, ButtonRegular.GetImage, ComboBox.GetImage, ControlClone.GetImage, ControlCloneQat.GetImage, ControlCloneRegular.GetImage, DropDown.GetImage, DropDownRegular.GetImage, DynamicMenu.GetImage, DynamicMenuRegular.GetImage, EditBox.GetImage, Gallery.GetImage, GalleryRegular.GetImage, Group.GetImage, Hyperlink.GetImage, ImageControl.GetImage, Menu.GetImage, MenuRegular.GetImage, MenuWithTitle.GetImage, QuickAccessToolbarControlClone.GetImage, TaskFormGroupTask.GetImage, TaskGroupTask.GetImage, ToggleButton.GetImage, ToggleButtonRegular.GetImage, UnsizedButton.GetImage, UnsizedControlClone.GetImage, UnsizedDynamicMenu.GetImage, UnsizedGallery.GetImage, UnsizedMenu.GetImage, UnsizedToggleButton.GetImage, VisibleButton.GetImage, VisibleToggleButton.GetImage. + /// + /// + public static readonly XName getImage = "getImage"; + + /// + /// Represents the getItemCount XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageComboBox.GetItemCount, BackstageDropDown.GetItemCount, ComboBox.GetItemCount, DropDown.GetItemCount, DropDownRegular.GetItemCount, Gallery.GetItemCount, GalleryRegular.GetItemCount, RadioGroup.GetItemCount, UnsizedGallery.GetItemCount. + /// + /// + public static readonly XName getItemCount = "getItemCount"; + + /// + /// Represents the getItemHeight XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Gallery.GetItemHeight, GalleryRegular.GetItemHeight, UnsizedGallery.GetItemHeight. + /// + /// + public static readonly XName getItemHeight = "getItemHeight"; + + /// + /// Represents the getItemID XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageComboBox.GetItemID, BackstageDropDown.GetItemID, ComboBox.GetItemID, DropDown.GetItemID, DropDownRegular.GetItemID, Gallery.GetItemID, GalleryRegular.GetItemID, RadioGroup.GetItemID, UnsizedGallery.GetItemID. + /// + /// + public static readonly XName getItemID = "getItemID"; + + /// + /// Represents the getItemImage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ComboBox.GetItemImage, DropDown.GetItemImage, DropDownRegular.GetItemImage, Gallery.GetItemImage, GalleryRegular.GetItemImage, UnsizedGallery.GetItemImage. + /// + /// + public static readonly XName getItemImage = "getItemImage"; + + /// + /// Represents the getItemLabel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageComboBox.GetItemLabel, BackstageDropDown.GetItemLabel, ComboBox.GetItemLabel, DropDown.GetItemLabel, DropDownRegular.GetItemLabel, Gallery.GetItemLabel, GalleryRegular.GetItemLabel, RadioGroup.GetItemLabel, UnsizedGallery.GetItemLabel. + /// + /// + public static readonly XName getItemLabel = "getItemLabel"; + + /// + /// Represents the getItemScreentip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ComboBox.GetItemScreentip, DropDown.GetItemScreentip, DropDownRegular.GetItemScreentip, Gallery.GetItemScreentip, GalleryRegular.GetItemScreentip, UnsizedGallery.GetItemScreentip. + /// + /// + public static readonly XName getItemScreentip = "getItemScreentip"; + + /// + /// Represents the getItemSupertip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ComboBox.GetItemSupertip, DropDown.GetItemSupertip, DropDownRegular.GetItemSupertip, Gallery.GetItemSupertip, GalleryRegular.GetItemSupertip, UnsizedGallery.GetItemSupertip. + /// + /// + public static readonly XName getItemSupertip = "getItemSupertip"; + + /// + /// Represents the getItemWidth XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Gallery.GetItemWidth, GalleryRegular.GetItemWidth, UnsizedGallery.GetItemWidth. + /// + /// + public static readonly XName getItemWidth = "getItemWidth"; + + /// + /// Represents the getKeytip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.GetKeytip, BackstageComboBox.GetKeytip, BackstageDropDown.GetKeytip, BackstageEditBox.GetKeytip, BackstageFastCommandButton.GetKeytip, BackstageGroupButton.GetKeytip, BackstageMenuButton.GetKeytip, BackstageMenuCheckBox.GetKeytip, BackstageMenuToggleButton.GetKeytip, BackstagePrimaryMenu.GetKeytip, BackstageRegularButton.GetKeytip, BackstageSubMenu.GetKeytip, BackstageTab.GetKeytip, Button.GetKeytip, ButtonRegular.GetKeytip, CheckBox.GetKeytip, ComboBox.GetKeytip, ControlClone.GetKeytip, ControlCloneQat.GetKeytip, ControlCloneRegular.GetKeytip, DropDown.GetKeytip, DropDownRegular.GetKeytip, DynamicMenu.GetKeytip, DynamicMenuRegular.GetKeytip, EditBox.GetKeytip, Gallery.GetKeytip, GalleryRegular.GetKeytip, Group.GetKeytip, Hyperlink.GetKeytip, Menu.GetKeytip, MenuRegular.GetKeytip, MenuWithTitle.GetKeytip, QuickAccessToolbarControlClone.GetKeytip, RadioGroup.GetKeytip, SplitButton.GetKeytip, SplitButtonRegular.GetKeytip, SplitButtonWithTitle.GetKeytip, Tab.GetKeytip, TaskFormGroupTask.GetKeytip, TaskGroupTask.GetKeytip, ToggleButton.GetKeytip, ToggleButtonRegular.GetKeytip, UnsizedButton.GetKeytip, UnsizedControlClone.GetKeytip, UnsizedDynamicMenu.GetKeytip, UnsizedGallery.GetKeytip, UnsizedMenu.GetKeytip, UnsizedSplitButton.GetKeytip, UnsizedToggleButton.GetKeytip, VisibleButton.GetKeytip, VisibleToggleButton.GetKeytip. + /// + /// + public static readonly XName getKeytip = "getKeytip"; + + /// + /// Represents the getLabel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.GetLabel, BackstageComboBox.GetLabel, BackstageDropDown.GetLabel, BackstageEditBox.GetLabel, BackstageFastCommandButton.GetLabel, BackstageGroup.GetLabel, BackstageGroupButton.GetLabel, BackstageLabelControl.GetLabel, BackstageMenuButton.GetLabel, BackstageMenuCheckBox.GetLabel, BackstageMenuGroup.GetLabel, BackstageMenuToggleButton.GetLabel, BackstagePrimaryMenu.GetLabel, BackstageRegularButton.GetLabel, BackstageSubMenu.GetLabel, BackstageTab.GetLabel, Button.GetLabel, ButtonRegular.GetLabel, CheckBox.GetLabel, ComboBox.GetLabel, ControlClone.GetLabel, ControlCloneQat.GetLabel, ControlCloneRegular.GetLabel, DropDown.GetLabel, DropDownRegular.GetLabel, DynamicMenu.GetLabel, DynamicMenuRegular.GetLabel, EditBox.GetLabel, Gallery.GetLabel, GalleryRegular.GetLabel, Group.GetLabel, GroupBox.GetLabel, Hyperlink.GetLabel, ItemBackstageItem.GetLabel, LabelControl.GetLabel, Menu.GetLabel, MenuRegular.GetLabel, MenuWithTitle.GetLabel, QuickAccessToolbarControlClone.GetLabel, RadioButtonBackstageItem.GetLabel, RadioGroup.GetLabel, Tab.GetLabel, TaskFormGroup.GetLabel, TaskFormGroupCategory.GetLabel, TaskFormGroupTask.GetLabel, TaskGroup.GetLabel, TaskGroupCategory.GetLabel, TaskGroupTask.GetLabel, TextLabel.GetLabel, ToggleButton.GetLabel, ToggleButtonRegular.GetLabel, UnsizedButton.GetLabel, UnsizedControlClone.GetLabel, UnsizedDynamicMenu.GetLabel, UnsizedGallery.GetLabel, UnsizedMenu.GetLabel, UnsizedToggleButton.GetLabel, VisibleButton.GetLabel, VisibleToggleButton.GetLabel. + /// + /// + public static readonly XName getLabel = "getLabel"; + + /// + /// Represents the getPressed XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.GetPressed, BackstageMenuCheckBox.GetPressed, BackstageMenuToggleButton.GetPressed, CheckBox.GetPressed, ToggleButton.GetPressed, ToggleButtonRegular.GetPressed, UnsizedToggleButton.GetPressed, VisibleToggleButton.GetPressed. + /// + /// + public static readonly XName getPressed = "getPressed"; + + /// + /// Represents the getScreentip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.GetScreentip, BackstageDropDown.GetScreentip, BackstageGroupButton.GetScreentip, BackstagePrimaryMenu.GetScreentip, BackstageRegularButton.GetScreentip, Button.GetScreentip, ButtonRegular.GetScreentip, CheckBox.GetScreentip, ComboBox.GetScreentip, ControlClone.GetScreentip, ControlCloneQat.GetScreentip, ControlCloneRegular.GetScreentip, DropDown.GetScreentip, DropDownRegular.GetScreentip, DynamicMenu.GetScreentip, DynamicMenuRegular.GetScreentip, EditBox.GetScreentip, Gallery.GetScreentip, GalleryRegular.GetScreentip, Group.GetScreentip, Hyperlink.GetScreentip, LabelControl.GetScreentip, Menu.GetScreentip, MenuRegular.GetScreentip, MenuWithTitle.GetScreentip, QuickAccessToolbarControlClone.GetScreentip, TextLabel.GetScreentip, ToggleButton.GetScreentip, ToggleButtonRegular.GetScreentip, UnsizedButton.GetScreentip, UnsizedControlClone.GetScreentip, UnsizedDynamicMenu.GetScreentip, UnsizedGallery.GetScreentip, UnsizedMenu.GetScreentip, UnsizedToggleButton.GetScreentip, VisibleButton.GetScreentip, VisibleToggleButton.GetScreentip. + /// + /// + public static readonly XName getScreentip = "getScreentip"; + + /// + /// Represents the getSelectedItemID XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DropDown.GetSelectedItemID, DropDownRegular.GetSelectedItemID, Gallery.GetSelectedItemID, GalleryRegular.GetSelectedItemID, UnsizedGallery.GetSelectedItemID. + /// + /// + public static readonly XName getSelectedItemID = "getSelectedItemID"; + + /// + /// Represents the getSelectedItemIndex XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: BackstageDropDown.GetSelectedItemIndex, DropDown.GetSelectedItemIndex, DropDownRegular.GetSelectedItemIndex, Gallery.GetSelectedItemIndex, GalleryRegular.GetSelectedItemIndex, RadioGroup.GetSelectedItemIndex, UnsizedGallery.GetSelectedItemIndex. + /// + /// + public static readonly XName getSelectedItemIndex = "getSelectedItemIndex"; + + /// + /// Represents the getShowImage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Button.GetShowImage, ButtonRegular.GetShowImage, ComboBox.GetShowImage, ControlClone.GetShowImage, ControlCloneQat.GetShowImage, ControlCloneRegular.GetShowImage, DropDown.GetShowImage, DropDownRegular.GetShowImage, DynamicMenu.GetShowImage, DynamicMenuRegular.GetShowImage, EditBox.GetShowImage, Gallery.GetShowImage, GalleryRegular.GetShowImage, Menu.GetShowImage, MenuRegular.GetShowImage, MenuWithTitle.GetShowImage, QuickAccessToolbarControlClone.GetShowImage, ToggleButton.GetShowImage, ToggleButtonRegular.GetShowImage, UnsizedButton.GetShowImage, UnsizedControlClone.GetShowImage, UnsizedDynamicMenu.GetShowImage, UnsizedGallery.GetShowImage, UnsizedMenu.GetShowImage, UnsizedToggleButton.GetShowImage, VisibleButton.GetShowImage, VisibleToggleButton.GetShowImage. + /// + /// + public static readonly XName getShowImage = "getShowImage"; + + /// + /// Represents the getShowLabel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageGroup.GetShowLabel, Button.GetShowLabel, ButtonRegular.GetShowLabel, ComboBox.GetShowLabel, ControlClone.GetShowLabel, ControlCloneQat.GetShowLabel, ControlCloneRegular.GetShowLabel, DropDown.GetShowLabel, DropDownRegular.GetShowLabel, DynamicMenu.GetShowLabel, DynamicMenuRegular.GetShowLabel, EditBox.GetShowLabel, Gallery.GetShowLabel, GalleryRegular.GetShowLabel, LabelControl.GetShowLabel, Menu.GetShowLabel, MenuRegular.GetShowLabel, MenuWithTitle.GetShowLabel, QuickAccessToolbarControlClone.GetShowLabel, SplitButton.GetShowLabel, SplitButtonRegular.GetShowLabel, SplitButtonWithTitle.GetShowLabel, TaskFormGroup.GetShowLabel, TaskGroup.GetShowLabel, TextLabel.GetShowLabel, ToggleButton.GetShowLabel, ToggleButtonRegular.GetShowLabel, UnsizedButton.GetShowLabel, UnsizedControlClone.GetShowLabel, UnsizedDynamicMenu.GetShowLabel, UnsizedGallery.GetShowLabel, UnsizedMenu.GetShowLabel, UnsizedSplitButton.GetShowLabel, UnsizedToggleButton.GetShowLabel, VisibleButton.GetShowLabel, VisibleToggleButton.GetShowLabel. + /// + /// + public static readonly XName getShowLabel = "getShowLabel"; + + /// + /// Represents the getSize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Button.GetSize, ControlClone.GetSize, ControlCloneQat.GetSize, DynamicMenu.GetSize, Gallery.GetSize, Menu.GetSize, QuickAccessToolbarControlClone.GetSize, SplitButton.GetSize, ToggleButton.GetSize. + /// + /// + public static readonly XName getSize = "getSize"; + + /// + /// Represents the getStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackstageGroup.GetStyle. + /// + /// + public static readonly XName getStyle = "getStyle"; + + /// + /// Represents the getSupertip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.GetSupertip, BackstageDropDown.GetSupertip, BackstageGroupButton.GetSupertip, BackstagePrimaryMenu.GetSupertip, BackstageRegularButton.GetSupertip, Button.GetSupertip, ButtonRegular.GetSupertip, CheckBox.GetSupertip, ComboBox.GetSupertip, ControlClone.GetSupertip, ControlCloneQat.GetSupertip, ControlCloneRegular.GetSupertip, DropDown.GetSupertip, DropDownRegular.GetSupertip, DynamicMenu.GetSupertip, DynamicMenuRegular.GetSupertip, EditBox.GetSupertip, Gallery.GetSupertip, GalleryRegular.GetSupertip, Group.GetSupertip, Hyperlink.GetSupertip, LabelControl.GetSupertip, Menu.GetSupertip, MenuRegular.GetSupertip, MenuWithTitle.GetSupertip, QuickAccessToolbarControlClone.GetSupertip, TextLabel.GetSupertip, ToggleButton.GetSupertip, ToggleButtonRegular.GetSupertip, UnsizedButton.GetSupertip, UnsizedControlClone.GetSupertip, UnsizedDynamicMenu.GetSupertip, UnsizedGallery.GetSupertip, UnsizedMenu.GetSupertip, UnsizedToggleButton.GetSupertip, VisibleButton.GetSupertip, VisibleToggleButton.GetSupertip. + /// + /// + public static readonly XName getSupertip = "getSupertip"; + + /// + /// Represents the getTarget XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Hyperlink.GetTarget. + /// + /// + public static readonly XName getTarget = "getTarget"; + + /// + /// Represents the getText XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BackstageComboBox.GetText, BackstageEditBox.GetText, ComboBox.GetText, EditBox.GetText. + /// + /// + public static readonly XName getText = "getText"; + + /// + /// Represents the getTitle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BackstageTab.GetTitle, MenuSeparator.GetTitle, MenuWithTitle.GetTitle. + /// + /// + public static readonly XName getTitle = "getTitle"; + + /// + /// Represents the getVisible XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.GetVisible, BackstageComboBox.GetVisible, BackstageDropDown.GetVisible, BackstageEditBox.GetVisible, BackstageFastCommandButton.GetVisible, BackstageGroup.GetVisible, BackstageGroupButton.GetVisible, BackstageLabelControl.GetVisible, BackstageMenuButton.GetVisible, BackstageMenuCheckBox.GetVisible, BackstageMenuToggleButton.GetVisible, BackstagePrimaryMenu.GetVisible, BackstageRegularButton.GetVisible, BackstageSubMenu.GetVisible, BackstageTab.GetVisible, Box.GetVisible, Button.GetVisible, ButtonGroup.GetVisible, ButtonRegular.GetVisible, CheckBox.GetVisible, ComboBox.GetVisible, ContextualTabSet.GetVisible, ControlClone.GetVisible, ControlCloneQat.GetVisible, ControlCloneRegular.GetVisible, DropDown.GetVisible, DropDownRegular.GetVisible, DynamicMenu.GetVisible, DynamicMenuRegular.GetVisible, EditBox.GetVisible, Gallery.GetVisible, GalleryRegular.GetVisible, Group.GetVisible, Hyperlink.GetVisible, ImageControl.GetVisible, LabelControl.GetVisible, Menu.GetVisible, MenuRegular.GetVisible, MenuWithTitle.GetVisible, QuickAccessToolbarControlClone.GetVisible, RadioGroup.GetVisible, Separator.GetVisible, SplitButton.GetVisible, SplitButtonRegular.GetVisible, SplitButtonWithTitle.GetVisible, Tab.GetVisible, TabSet.GetVisible, TaskFormGroup.GetVisible, TaskFormGroupCategory.GetVisible, TaskFormGroupTask.GetVisible, TaskGroup.GetVisible, TaskGroupCategory.GetVisible, TaskGroupTask.GetVisible, TextLabel.GetVisible, ToggleButton.GetVisible, ToggleButtonRegular.GetVisible, UnsizedButton.GetVisible, UnsizedControlClone.GetVisible, UnsizedDynamicMenu.GetVisible, UnsizedGallery.GetVisible, UnsizedMenu.GetVisible, UnsizedSplitButton.GetVisible, UnsizedToggleButton.GetVisible, VerticalSeparator.GetVisible. + /// + /// + public static readonly XName getVisible = "getVisible"; + + /// + /// Represents the ghostCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.GhostColumn. + /// + /// + public static readonly XName ghostCol = "ghostCol"; + + /// + /// Represents the ghostRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.GhostRow. + /// + /// + public static readonly XName ghostRow = "ghostRow"; + + /// + /// Represents the goal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Kpi.Goal. + /// + /// + public static readonly XName goal = "goal"; + + /// + /// Represents the gradient XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBar.Gradient. + /// + /// + public static readonly XName gradient = "gradient"; + + /// + /// Represents the gradientshapeok XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.AllowGradientShape. + /// + /// + public static readonly XName gradientshapeok = "gradientshapeok"; + + /// + /// Represents the grainSize XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArtisticFilmGrain.GrainSize. + /// + /// + public static readonly XName grainSize = "grainSize"; + + /// + /// Represents the grandCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotArea.GrandColumn. + /// + /// + public static readonly XName grandCol = "grandCol"; + + /// + /// Represents the grandRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotArea.GrandRow. + /// + /// + public static readonly XName grandRow = "grandRow"; + + /// + /// Represents the grandTotalCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.GrandTotalCaption. + /// + /// + public static readonly XName grandTotalCaption = "grandTotalCaption"; + + /// + /// Represents the grayscale XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ImageData.Grayscale, ImageFile.GrayScale. + /// + /// + public static readonly XName grayscale = "grayscale"; + + /// + /// Represents the gridDropZones XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.GridDropZones. + /// + /// + public static readonly XName gridDropZones = "gridDropZones"; + + /// + /// Represents the gridLines XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintOptions.GridLines. + /// + /// + public static readonly XName gridLines = "gridLines"; + + /// + /// Represents the gridLinesSet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintOptions.GridLinesSet. + /// + /// + public static readonly XName gridLinesSet = "gridLinesSet"; + + /// + /// Represents the gridSize XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArtisticLightScreen.GridSize. + /// + /// + public static readonly XName gridSize = "gridSize"; + + /// + /// Represents the gridSpan XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableCell.GridSpan. + /// + /// + public static readonly XName gridSpan = "gridSpan"; + + /// + /// Represents the group XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: GroupMember.Group. + /// + /// + public static readonly XName group = "group"; + + /// + /// Represents the groupBy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeProperties.GroupBy. + /// + /// + public static readonly XName groupBy = "groupBy"; + + /// + /// Represents the grouping XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.Grouping. + /// + /// + public static readonly XName grouping = "grouping"; + + /// + /// Represents the groupInterval XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeProperties.GroupInterval. + /// + /// + public static readonly XName groupInterval = "groupInterval"; + + /// + /// Represents the grow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Blur.Grow. + /// + /// + public static readonly XName grow = "grow"; + + /// + /// Represents the growShrinkType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.GrowShrinkType. + /// + /// + public static readonly XName growShrinkType = "growShrinkType"; + + /// + /// Represents the grpId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: BuildDiagram.GroupId, BuildGraphics.GroupId, BuildOleChart.GroupId, BuildParagraph.GroupId, CommonTimeNode.GroupId. + /// + /// + public static readonly XName grpId = "grpId"; + + /// + /// Represents the gte XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingValueObject.GreaterThanOrEqual, ConditionalFormatValueObject.GreaterThanOrEqual. + /// + /// + public static readonly XName gte = "gte"; + + /// + /// Represents the guid XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: Comment.Guid, CustomChartsheetView.Guid, CustomSheetView.Guid, CustomWorkbookView.Guid, Header.Guid, Headers.Guid, RevisionComment.Guid, RevisionCustomView.Guid, UserInfo.Guid. + /// + /// + public static readonly XName guid = "guid"; + + /// + /// Represents the h XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: Bevel.Height, BevelBottom.Height, BevelTop.Height, HslColor.Hue, Item.Hidden, Path.Height, TableRow.Height, WebVideoProperty.Height. + /// + /// + public static readonly XName h = "h"; + + /// + /// Represents the hangingPunct XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.Height, Level1ParagraphProperties.Height, Level2ParagraphProperties.Height, Level3ParagraphProperties.Height, Level4ParagraphProperties.Height, Level5ParagraphProperties.Height, Level6ParagraphProperties.Height, Level7ParagraphProperties.Height, Level8ParagraphProperties.Height, Level9ParagraphProperties.Height, ParagraphProperties.Height. + /// + /// + public static readonly XName hangingPunct = "hangingPunct"; + + /// + /// Represents the hasBounce XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FlythroughTransition.HasBounce. + /// + /// + public static readonly XName hasBounce = "hasBounce"; + + /// + /// Represents the hasCustomPrompt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PlaceholderShape.HasCustomPrompt. + /// + /// + public static readonly XName hasCustomPrompt = "hasCustomPrompt"; + + /// + /// Represents the hashData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.HashData. + /// + /// + public static readonly XName hashData = "hashData"; + + /// + /// Represents the hashValue XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ChartSheetProtection.HashValue, FileSharing.HashValue, ModificationVerifier.HashValue, ProtectedRange.HashValue, SheetProtection.HashValue. + /// + /// + public static readonly XName hashValue = "hashValue"; + + /// + /// Represents the hdr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: HeaderFooter.Header. + /// + /// + public static readonly XName hdr = "hdr"; + + /// + /// Represents the header XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PageMargins.Header. + /// + /// + public static readonly XName header = "header"; + + /// + /// Represents the headerRowBorderDxfId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.HeaderRowBorderFormatId. + /// + /// + public static readonly XName headerRowBorderDxfId = "headerRowBorderDxfId"; + + /// + /// Represents the headerRowCellStyle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Table.HeaderRowCellStyle, TableColumn.HeaderRowCellStyle. + /// + /// + public static readonly XName headerRowCellStyle = "headerRowCellStyle"; + + /// + /// Represents the headerRowCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.HeaderRowCount. + /// + /// + public static readonly XName headerRowCount = "headerRowCount"; + + /// + /// Represents the headerRowDxfId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Table.HeaderRowFormatId, TableColumn.HeaderRowDifferentialFormattingId. + /// + /// + public static readonly XName headerRowDxfId = "headerRowDxfId"; + + /// + /// Represents the headers XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ModelTextProperties.Headers, QueryTable.Headers. + /// + /// + public static readonly XName headers = "headers"; + + /// + /// Represents the headersInLastRefresh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableRefresh.HeadersInLastRefresh. + /// + /// + public static readonly XName headersInLastRefresh = "headersInLastRefresh"; + + /// + /// Represents the headings XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintOptions.Headings. + /// + /// + public static readonly XName headings = "headings"; + + /// + /// Represents the height XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ActiveArea.Height. + /// + /// + public static readonly XName height = "height"; + + /// + /// Represents the help XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DefinedName.Help, RevisionDefinedName.Help. + /// + /// + public static readonly XName help = "help"; + + /// + /// Represents the helperText XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BackstageGroup.HelperText, TaskFormGroup.HelperText, TaskGroup.HelperText. + /// + /// + public static readonly XName helperText = "helperText"; + + /// + /// Represents the hidden XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Anchor.Hidden, Axis.Hidden, CacheHierarchy.Hidden, CellStyle.Hidden, Column.Hidden, DefinedName.Hidden, DocProperties.Hidden, NonVisualDrawingProperties.Hidden, Protection.Hidden, RevisionDefinedName.Hidden, Row.Hidden, Scenario.Hidden, Series.Hidden. + /// + /// + public static readonly XName hidden = "hidden"; + + /// + /// Represents the hiddenButton XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FilterColumn.HiddenButton. + /// + /// + public static readonly XName hiddenButton = "hiddenButton"; + + /// + /// Represents the hiddenColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionComment.HiddenColumn. + /// + /// + public static readonly XName hiddenColumn = "hiddenColumn"; + + /// + /// Represents the hiddenColumns XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.HiddenColumns. + /// + /// + public static readonly XName hiddenColumns = "hiddenColumns"; + + /// + /// Represents the hiddenLevel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.HiddenLevel. + /// + /// + public static readonly XName hiddenLevel = "hiddenLevel"; + + /// + /// Represents the hiddenRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionComment.HiddenRow. + /// + /// + public static readonly XName hiddenRow = "hiddenRow"; + + /// + /// Represents the hiddenRows XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.HiddenRows. + /// + /// + public static readonly XName hiddenRows = "hiddenRows"; + + /// + /// Represents the hiddenSlides XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintingProperties.HiddenSlides. + /// + /// + public static readonly XName hiddenSlides = "hiddenSlides"; + + /// + /// Represents the hideGeom XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shape.HideGeometry. + /// + /// + public static readonly XName hideGeom = "hideGeom"; + + /// + /// Represents the hideLastTrans XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: DiagramChooseIf.HideLastTrans, ForEach.HideLastTrans, PresentationOf.HideLastTrans. + /// + /// + public static readonly XName hideLastTrans = "hideLastTrans"; + + /// + /// Represents the hideNewItems XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.HideNewItems. + /// + /// + public static readonly XName hideNewItems = "hideNewItems"; + + /// + /// Represents the hidePivotFieldList XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.HidePivotFieldList. + /// + /// + public static readonly XName hidePivotFieldList = "hidePivotFieldList"; + + /// + /// Represents the hideValuesRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.HideValuesRow. + /// + /// + public static readonly XName hideValuesRow = "hideValuesRow"; + + /// + /// Represents the hier XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PageField.Hierarchy, Tuple.Hierarchy. + /// + /// + public static readonly XName hier = "hier"; + + /// + /// Represents the hierarchizeDistinct XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.HierarchizeDistinct, CalculatedMember.HierarchizeDistinct. + /// + /// + public static readonly XName hierarchizeDistinct = "hierarchizeDistinct"; + + /// + /// Represents the hierarchy XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CacheField.Hierarchy, CalculatedMember.Hierarchy, SetLevel.Hierarchy. + /// + /// + public static readonly XName hierarchy = "hierarchy"; + + /// + /// Represents the hierarchyName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TupleSetHeader.HierarchyName. + /// + /// + public static readonly XName hierarchyName = "hierarchyName"; + + /// + /// Represents the hierarchyUsage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ColumnHierarchyUsage.Value, RowHierarchyUsage.Value. + /// + /// + public static readonly XName hierarchyUsage = "hierarchyUsage"; + + /// + /// Represents the high XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.High. + /// + /// + public static readonly XName high = "high"; + + /// + /// Represents the highlightClick XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HyperlinkOnClick.HighlightClick, HyperlinkOnHover.HighlightClick, HyperlinkOnMouseOver.HighlightClick. + /// + /// + public static readonly XName highlightClick = "highlightClick"; + + /// + /// Represents the history XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Headers.History, HyperlinkOnClick.History, HyperlinkOnHover.History, HyperlinkOnMouseOver.History. + /// + /// + public static readonly XName history = "history"; + + /// + /// Represents the hlink XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Hyperlink, ColorMapOverride.Hyperlink, ColorMappingType.Hyperlink, OverrideColorMapping.Hyperlink. + /// + /// + public static readonly XName hlink = "hlink"; + + /// + /// Represents the hMerge XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableCell.HorizontalMerge. + /// + /// + public static readonly XName hMerge = "hMerge"; + + /// + /// Represents the horiz XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.Horizontal. + /// + /// + public static readonly XName horiz = "horiz"; + + /// + /// Represents the horizontal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Alignment.Horizontal. + /// + /// + public static readonly XName horizontal = "horizontal"; + + /// + /// Represents the horizontalCentered XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintOptions.HorizontalCentered. + /// + /// + public static readonly XName horizontalCentered = "horizontalCentered"; + + /// + /// Represents the horizontalDpi XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.HorizontalDpi, PageSetup.HorizontalDpi. + /// + /// + public static readonly XName horizontalDpi = "horizontalDpi"; + + /// + /// Represents the horzBarState XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NormalViewProperties.HorizontalBarState. + /// + /// + public static readonly XName horzBarState = "horzBarState"; + + /// + /// Represents the horzOverflow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BodyProperties.HorizontalOverflow, TableCellProperties.HorizontalOverflow, TextBodyProperties.HorizontalOverflow. + /// + /// + public static readonly XName horzOverflow = "horzOverflow"; + + /// + /// Represents the hotPoints XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.HotPoints. + /// + /// + public static readonly XName hotPoints = "hotPoints"; + + /// + /// Represents the hour XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DateGroupItem.Hour. + /// + /// + public static readonly XName hour = "hour"; + + /// + /// Represents the how XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Rule.How. + /// + /// + public static readonly XName how = "how"; + + /// + /// Represents the hR XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArcTo.HeightRadius. + /// + /// + public static readonly XName hR = "hR"; + + /// + /// Represents the href XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AnnotationXml.Href, Arc.Href, Curve.Href, Group.Href, ImageFile.Href, Line.Href, Oval.Href, PolyLine.Href, Rectangle.Href, RoundRectangle.Href, Shape.Href, Shapetype.Href. + /// + /// + public static readonly XName href = "href"; + + /// + /// Represents the ht XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Row.Height. + /// + /// + public static readonly XName ht = "ht"; + + /// + /// Represents the htmlFormat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.HtmlFormat. + /// + /// + public static readonly XName htmlFormat = "htmlFormat"; + + /// + /// Represents the htmlTables XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.HtmlTables. + /// + /// + public static readonly XName htmlTables = "htmlTables"; + + /// + /// Represents the hue XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Hsl.Hue, HslColor.HueValue, TintEffect.Hue. + /// + /// + public static readonly XName hue = "hue"; + + /// + /// Represents the hueDir XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: EffectColorList.HueDirection, FillColorList.HueDirection, LineColorList.HueDirection, TextEffectColorList.HueDirection, TextFillColorList.HueDirection, TextLineColorList.HueDirection. + /// + /// + public static readonly XName hueDir = "hueDir"; + + /// + /// Represents the i XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: CalculationCell.SheetId, DefaultRunProperties.Italic, EndParagraphRunProperties.Italic, ErrorItem.Italic, Ink.InkData, MdxTuple.Italic, MissingItem.Italic, NumberItem.Italic, PivotValueCell.Item, PivotValueCellExtra.Italic, RowItem.Index, RunProperties.Italic, StringItem.Italic, TableCellTextStyle.Italic, TextCharacterPropertiesType.Italic. + /// + /// + public static readonly XName i = "i"; + + /// + /// Represents the i1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeSet.FieldItemIndexPage1. + /// + /// + public static readonly XName i1 = "i1"; + + /// + /// Represents the i2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeSet.FieldItemIndexPage2. + /// + /// + public static readonly XName i2 = "i2"; + + /// + /// Represents the i3 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeSet.FieldItemIndexPage3. + /// + /// + public static readonly XName i3 = "i3"; + + /// + /// Represents the i4 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeSet.FieldItemIndexPage4. + /// + /// + public static readonly XName i4 = "i4"; + + /// + /// Represents the icon XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: OleItem.Icon. + /// + /// + public static readonly XName icon = "icon"; + + /// + /// Represents the iconId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingIcon.IconId, IconFilter.IconId, SortCondition.IconId. + /// + /// + public static readonly XName iconId = "iconId"; + + /// + /// Represents the iconSet XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.IconSet, ConditionalFormattingIcon.IconSet, IconFilter.IconSet, IconSet.IconSetTypes, IconSet.IconSetValue, SortCondition.IconSet. + /// + /// + public static readonly XName iconSet = "iconSet"; + + /// + /// Represents the id XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Id, Axis.Id, Background.Id, BackstageCheckBox.Id, BackstageComboBox.Id, BackstageDropDown.Id, BackstageEditBox.Id, BackstageFastCommandButton.Id, BackstageGroup.Id, BackstageGroupButton.Id, BackstageLabelControl.Id, BackstageMenuButton.Id, BackstageMenuCheckBox.Id, BackstageMenuGroup.Id, BackstageMenuToggleButton.Id, BackstagePrimaryMenu.Id, BackstageRegularButton.Id, BackstageSubMenu.Id, BackstageTab.Id, Box.Id, Break.Id, Button.Id, ButtonGroup.Id, ButtonRegular.Id, ChartStyle.Id, CheckBox.Id, ColorStyle.Id, ComboBox.Id, CommentAuthor.Id, CommonTimeNode.Id, ConditionalFormat.Id, ConditionalFormattingRule.Id, Connection.Id, ContextNode.Id, ControlCloneQat.Id, CreationId.Id, Curve.Id, CustomShow.Id, CustomShowReference.Id, Data.Id, DatastoreItem.Id, Diagram.Id, DocProperties.Id, DropDown.Id, DropDownRegular.Id, DynamicMenu.Id, DynamicMenuRegular.Id, EditBox.Id, EndConnection.Id, EndPoint.Id, EndPointInfo.Id, ExtendedGuide.Id, Field.Id, Fill.Id, Gallery.Id, GalleryRegular.Id, Grammar.Id, Group.Id, GroupBox.Id, Hyperlink.Id, ImageControl.Id, ImageData.Id, ImageFile.Id, Info.Id, Interpretation.Id, Item.Id, ItemBackstageItem.Id, LabelControl.Id, LayoutContainer.Id, Line.Id, LinkedTextBox.Id, Menu.Id, MenuRegular.Id, MenuSeparator.Id, MenuSeparatorNoTitle.Id, MenuWithTitle.Id, Model.Id, ModelTable.Id, NonVisualDrawingProperties.Id, OneOf.Id, Oval.Id, Path.Id, PivotFilter.Id, PolyLine.Id, QueryTableField.Id, QuickAccessToolbarControlClone.Id, RadioButtonBackstageItem.Id, RadioGroup.Id, Rectangle.Id, RoundRectangle.Id, Rule.Id, Section.Id, SectionOld.Id, SectionSlideIdListEntry.Id, Separator.Id, Sequence.Id, Shadow.Id, Shape.Id, Shapetype.Id, SignatureLine.Id, SingleXmlCell.Id, Skew.Id, SlideId.Id, SlideLayoutId.Id, SlideMasterId.Id, SplitButton.Id, SplitButtonRegular.Id, SplitButtonWithTitle.Id, StartConnection.Id, Stroke.Id, Tab.Id, Table.Id, TableColumn.Id, TaskFormGroup.Id, TaskFormGroupCategory.Id, TaskFormGroupTask.Id, TaskGroup.Id, TaskGroupCategory.Id, TaskGroupTask.Id, TextBox.Id, TextBoxInfo2.Id, TextData.Id, TextLabel.Id, TextPath.Id, ThemeFamily.Id, ToggleButton.Id, ToggleButtonRegular.Id, UnsizedButton.Id, UnsizedDynamicMenu.Id, UnsizedGallery.Id, UnsizedMenu.Id, UnsizedSplitButton.Id, UnsizedToggleButton.Id, UserInfo.Id, VerticalSeparator.Id, VisibleButton.Id, VisibleToggleButton.Id, WebExtension.Id, WebExtensionBinding.Id, WebExtensionStoreReference.Id, WebPublishItem.Id, WebPublishObject.Id, XmlCellProperties.Id. + /// + /// + public static readonly XName id = "id"; + + /// + /// Represents the ID XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Map.ID, Schema.Id. + /// + /// + public static readonly XName ID_ = "ID"; + + /// + /// Represents the idcntr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Relation.CenterShapeId. + /// + /// + public static readonly XName idcntr = "idcntr"; + + /// + /// Represents the iddest XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Relation.DestinationId. + /// + /// + public static readonly XName iddest = "iddest"; + + /// + /// Represents the idMso XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.IdMso, BackstageGroup.IdMso, BackstageTab.IdMso, Button.IdMso, ButtonRegular.IdMso, CheckBox.IdMso, ComboBox.IdMso, Command.IdMso, ContextMenu.IdMso, ContextualTabSet.IdMso, ControlClone.IdMso, ControlCloneQat.IdMso, ControlCloneRegular.IdMso, DropDown.IdMso, DropDownRegular.IdMso, DynamicMenu.IdMso, DynamicMenuRegular.IdMso, EditBox.IdMso, Gallery.IdMso, GalleryRegular.IdMso, Group.IdMso, LabelControl.IdMso, Menu.IdMso, MenuRegular.IdMso, MenuWithTitle.IdMso, QuickAccessToolbarControlClone.IdMso, RepurposedCommand.IdMso, SplitButton.IdMso, SplitButtonRegular.IdMso, SplitButtonWithTitle.IdMso, Tab.IdMso, TabSet.IdMso, TaskFormGroup.IdMso, TaskFormGroupCategory.IdMso, TaskFormGroupTask.IdMso, TaskGroup.IdMso, TaskGroupCategory.IdMso, TaskGroupTask.IdMso, TextLabel.IdMso, ToggleButton.IdMso, ToggleButtonRegular.IdMso, UnsizedButton.IdMso, UnsizedControlClone.IdMso, UnsizedDynamicMenu.IdMso, UnsizedGallery.IdMso, UnsizedMenu.IdMso, UnsizedSplitButton.IdMso, UnsizedToggleButton.IdMso, VisibleButton.IdMso, VisibleToggleButton.IdMso. + /// + /// + public static readonly XName idMso = "idMso"; + + /// + /// Represents the idQ XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.QualifiedId, BackstageComboBox.QualifiedId, BackstageDropDown.QualifiedId, BackstageEditBox.QualifiedId, BackstageFastCommandButton.QualifiedId, BackstageGroup.QualifiedId, BackstageGroupButton.QualifiedId, BackstageLabelControl.QualifiedId, BackstageMenuButton.QualifiedId, BackstageMenuCheckBox.QualifiedId, BackstageMenuGroup.QualifiedId, BackstageMenuToggleButton.QualifiedId, BackstagePrimaryMenu.QualifiedId, BackstageRegularButton.QualifiedId, BackstageSubMenu.QualifiedId, BackstageTab.QualifiedId, Box.IdQ, Box.QualifiedId, Button.IdQ, Button.QualifiedId, ButtonGroup.IdQ, ButtonGroup.QualifiedId, ButtonRegular.QualifiedId, CheckBox.IdQ, CheckBox.QualifiedId, ComboBox.IdQ, ComboBox.QualifiedId, ControlClone.IdQ, ControlClone.QualifiedId, ControlCloneQat.IdQ, ControlCloneRegular.QualifiedId, DropDown.IdQ, DropDownRegular.QualifiedId, DynamicMenu.IdQ, DynamicMenu.QualifiedId, DynamicMenuRegular.QualifiedId, EditBox.IdQ, EditBox.QualifiedId, Gallery.IdQ, Gallery.QualifiedId, GalleryRegular.QualifiedId, Group.IdQ, Group.QualifiedId, GroupBox.QualifiedId, Hyperlink.QualifiedId, ImageControl.QualifiedId, LabelControl.QualifiedId, LayoutContainer.QualifiedId, Menu.IdQ, Menu.QualifiedId, MenuRegular.QualifiedId, MenuSeparator.IdQ, MenuSeparator.QualifiedId, MenuSeparatorNoTitle.QualifiedId, MenuWithTitle.IdQ, QuickAccessToolbarControlClone.IdQ, RadioGroup.QualifiedId, Separator.QualifiedId, SplitButton.IdQ, SplitButton.QualifiedId, SplitButtonRegular.QualifiedId, SplitButtonWithTitle.IdQ, Tab.IdQ, Tab.QualifiedId, TaskFormGroup.QualifiedId, TaskFormGroupCategory.QualifiedId, TaskFormGroupTask.QualifiedId, TaskGroup.QualifiedId, TaskGroupCategory.QualifiedId, TaskGroupTask.QualifiedId, TextLabel.IdQ, ToggleButton.IdQ, ToggleButton.QualifiedId, ToggleButtonRegular.QualifiedId, UnsizedButton.IdQ, UnsizedControlClone.IdQ, UnsizedDynamicMenu.IdQ, UnsizedGallery.IdQ, UnsizedMenu.IdQ, UnsizedSplitButton.IdQ, UnsizedToggleButton.IdQ, VerticalSeparator.IdQ, VisibleButton.IdQ, VisibleButton.QualifiedId, VisibleToggleButton.IdQ, VisibleToggleButton.QualifiedId. + /// + /// + public static readonly XName idQ = "idQ"; + + /// + /// Represents the idref XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Proxy.ShapeReference, Rule.ShapeReference. + /// + /// + public static readonly XName idref = "idref"; + + /// + /// Represents the idsrc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Relation.SourceId. + /// + /// + public static readonly XName idsrc = "idsrc"; + + /// + /// Represents the idx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Adjust.Index, BackgroundStyleReference.Index, ChartStringValue.Index, Comment.Index, DataLabel.Idx, DataLabelHidden.Idx, DataPoint.Idx, EffectReference.Index, EndConnection.Index, FillReference.Index, FontReference.Index, LineReference.Index, NumericPoint.Index, NumericValue.Idx, ParentCommentIdentifier.Index, PlaceholderShape.Index, StartConnection.Index, StringPoint.Index. + /// + /// + public static readonly XName idx = "idx"; + + /// + /// Represents the ignore XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: CacheField.Ignore, CacheHierarchy.Ignore, PivotField.Ignore, PivotHierarchy.Ignore. + /// + /// + public static readonly XName ignore = "ignore"; + + /// + /// Represents the iLevel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellStyle.OutlineLevel. + /// + /// + public static readonly XName iLevel = "iLevel"; + + /// + /// Represents the image XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.Image, BackstageGroupButton.Image, BackstageMenuButton.Image, BackstageMenuToggleButton.Image, BackstagePrimaryMenu.Image, BackstageRegularButton.Image, BackstageSubMenu.Image, Button.Image, ButtonRegular.Image, ComboBox.Image, ControlClone.Image, ControlCloneQat.Image, ControlCloneRegular.Image, DropDown.Image, DropDownRegular.Image, DynamicMenu.Image, DynamicMenuRegular.Image, EditBox.Image, Gallery.Image, GalleryRegular.Image, Group.Image, Hyperlink.Image, ImageControl.Image, Item.Image, Menu.Image, MenuRegular.Image, MenuWithTitle.Image, QuickAccessToolbarControlClone.Image, TaskFormGroupTask.Image, TaskGroupTask.Image, ToggleButton.Image, ToggleButtonRegular.Image, UnsizedButton.Image, UnsizedControlClone.Image, UnsizedDynamicMenu.Image, UnsizedGallery.Image, UnsizedMenu.Image, UnsizedToggleButton.Image, VisibleButton.Image, VisibleToggleButton.Image. + /// + /// + public static readonly XName image = "image"; + + /// + /// Represents the imagealignshape XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.ImageAlignShape, ColumnStroke.ImageAlignShape, LeftStroke.ImageAlignShape, RightStroke.ImageAlignShape, Stroke.ImageAlignShape, TopStroke.ImageAlignShape. + /// + /// + public static readonly XName imagealignshape = "imagealignshape"; + + /// + /// Represents the imageaspect XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.ImageAspect, ColumnStroke.ImageAspect, LeftStroke.ImageAspect, RightStroke.ImageAspect, Stroke.ImageAspect, TopStroke.ImageAspect. + /// + /// + public static readonly XName imageaspect = "imageaspect"; + + /// + /// Represents the imageMso XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.ImageMso, BackstageGroupButton.ImageMso, BackstageMenuButton.ImageMso, BackstageMenuToggleButton.ImageMso, BackstagePrimaryMenu.ImageMso, BackstageRegularButton.ImageMso, BackstageSubMenu.ImageMso, Button.ImageMso, ButtonRegular.ImageMso, ComboBox.ImageMso, ControlClone.ImageMso, ControlCloneQat.ImageMso, ControlCloneRegular.ImageMso, DropDown.ImageMso, DropDownRegular.ImageMso, DynamicMenu.ImageMso, DynamicMenuRegular.ImageMso, EditBox.ImageMso, Gallery.ImageMso, GalleryRegular.ImageMso, Group.ImageMso, Hyperlink.ImageMso, ImageControl.ImageMso, Item.ImageMso, Menu.ImageMso, MenuRegular.ImageMso, MenuWithTitle.ImageMso, QuickAccessToolbarControlClone.ImageMso, TaskFormGroupTask.ImageMso, TaskGroupTask.ImageMso, ToggleButton.ImageMso, ToggleButtonRegular.ImageMso, UnsizedButton.ImageMso, UnsizedControlClone.ImageMso, UnsizedDynamicMenu.ImageMso, UnsizedGallery.ImageMso, UnsizedMenu.ImageMso, UnsizedToggleButton.ImageMso, VisibleButton.ImageMso, VisibleToggleButton.ImageMso. + /// + /// + public static readonly XName imageMso = "imageMso"; + + /// + /// Represents the imagesize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.ImageSize, ColumnStroke.ImageSize, LeftStroke.ImageSize, RightStroke.ImageSize, Stroke.ImageSize, TopStroke.ImageSize. + /// + /// + public static readonly XName imagesize = "imagesize"; + + /// + /// Represents the iMeasureFld XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotFilter.MeasureField. + /// + /// + public static readonly XName iMeasureFld = "iMeasureFld"; + + /// + /// Represents the iMeasureHier XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotFilter.MeasureHierarchy. + /// + /// + public static readonly XName iMeasureHier = "iMeasureHier"; + + /// + /// Represents the imeMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.ImeMode. + /// + /// + public static readonly XName imeMode = "imeMode"; + + /// + /// Represents the imgH XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Control.ImageHeight, OleObject.ImageHeight. + /// + /// + public static readonly XName imgH = "imgH"; + + /// + /// Represents the imgSz XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebProperties.ImageSize. + /// + /// + public static readonly XName imgSz = "imgSz"; + + /// + /// Represents the imgW XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Control.ImageWidth, OleObject.ImageWidth. + /// + /// + public static readonly XName imgW = "imgW"; + + /// + /// Represents the immersive XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.StopImmersiveUi. + /// + /// + public static readonly XName immersive = "immersive"; + + /// + /// Represents the in XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ErrorItem.FormatIndex, MediaFade.InDuration, MissingItem.FormatIndex, NumberItem.FormatIndex, PivotValueCellExtra.FormatIndex, StringItem.FormatIndex. + /// + /// + public static readonly XName @in = "in"; + + /// + /// Represents the inc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.Incremental. + /// + /// + public static readonly XName inc = "inc"; + + /// + /// Represents the includeHiddenRowCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.IncludeHiddenRowColumn. + /// + /// + public static readonly XName includeHiddenRowCol = "includeHiddenRowCol"; + + /// + /// Represents the includeNewItemsInFilter XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.IncludeNewItemsInFilter, PivotHierarchy.IncludeNewItemsInFilter. + /// + /// + public static readonly XName includeNewItemsInFilter = "includeNewItemsInFilter"; + + /// + /// Represents the includePrintSettings XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.IncludePrintSettings. + /// + /// + public static readonly XName includePrintSettings = "includePrintSettings"; + + /// + /// Represents the indent XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Alignment.Indent, DefaultParagraphProperties.Indent, Level1ParagraphProperties.Indent, Level2ParagraphProperties.Indent, Level3ParagraphProperties.Indent, Level4ParagraphProperties.Indent, Level5ParagraphProperties.Indent, Level6ParagraphProperties.Indent, Level7ParagraphProperties.Indent, Level8ParagraphProperties.Indent, Level9ParagraphProperties.Indent, ParagraphProperties.Indent, PivotTableDefinition.Indent. + /// + /// + public static readonly XName indent = "indent"; + + /// + /// Represents the index XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ArgumentDescription.Index, CachedUniqueName.Index, Undo.Index. + /// + /// + public static readonly XName index = "index"; + + /// + /// Represents the indexed XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AxisColor.Indexed, BackgroundColor.Indexed, BarAxisColor.Indexed, BorderColor.Indexed, Color.Indexed, FillColor.Indexed, FirstMarkerColor.Indexed, ForegroundColor.Indexed, HighMarkerColor.Indexed, LastMarkerColor.Indexed, LowMarkerColor.Indexed, MarkersColor.Indexed, NegativeBorderColor.Indexed, NegativeColor.Indexed, NegativeFillColor.Indexed, SeriesColor.Indexed, TabColor.Indexed. + /// + /// + public static readonly XName indexed = "indexed"; + + /// + /// Represents the initial XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lattice.Initial. + /// + /// + public static readonly XName initial = "initial"; + + /// + /// Represents the initials XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentAuthor.Initials. + /// + /// + public static readonly XName initials = "initials"; + + /// + /// Represents the inkSourceRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Context.InkSourceRef. + /// + /// + public static readonly XName inkSourceRef = "inkSourceRef"; + + /// + /// Represents the insertAfterMso XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.InsertAfterMso, BackstageGroup.InsertAfterMso, BackstageTab.InsertAfterMso, Box.InsertAfterMso, Button.InsertAfterMso, ButtonGroup.InsertAfterMso, ButtonRegular.InsertAfterMso, CheckBox.InsertAfterMso, ComboBox.InsertAfterMso, ControlClone.InsertAfterMso, ControlCloneQat.InsertAfterMso, ControlCloneRegular.InsertAfterMso, DropDown.InsertAfterMso, DropDownRegular.InsertAfterMso, DynamicMenu.InsertAfterMso, DynamicMenuRegular.InsertAfterMso, EditBox.InsertAfterMso, Gallery.InsertAfterMso, GalleryRegular.InsertAfterMso, Group.InsertAfterMso, LabelControl.InsertAfterMso, Menu.InsertAfterMso, MenuRegular.InsertAfterMso, MenuSeparator.InsertAfterMso, MenuSeparatorNoTitle.InsertAfterMso, MenuWithTitle.InsertAfterMso, QuickAccessToolbarControlClone.InsertAfterMso, Separator.InsertAfterMso, SplitButton.InsertAfterMso, SplitButtonRegular.InsertAfterMso, SplitButtonWithTitle.InsertAfterMso, Tab.InsertAfterMso, TaskFormGroupCategory.InsertAfterMso, TaskFormGroupTask.InsertAfterMso, TaskGroup.InsertAfterMso, TaskGroupCategory.InsertAfterMso, TaskGroupTask.InsertAfterMso, TextLabel.InsertAfterMso, ToggleButton.InsertAfterMso, ToggleButtonRegular.InsertAfterMso, UnsizedButton.InsertAfterMso, UnsizedControlClone.InsertAfterMso, UnsizedDynamicMenu.InsertAfterMso, UnsizedGallery.InsertAfterMso, UnsizedMenu.InsertAfterMso, UnsizedSplitButton.InsertAfterMso, UnsizedToggleButton.InsertAfterMso, VerticalSeparator.InsertAfterMso, VisibleButton.InsertAfterMso, VisibleToggleButton.InsertAfterMso. + /// + /// + public static readonly XName insertAfterMso = "insertAfterMso"; + + /// + /// Represents the insertAfterQ XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.InsertAfterQulifiedId, BackstageGroup.InsertAfterQulifiedId, BackstageTab.InsertAfterQulifiedId, Box.InsertAfterQ, Box.InsertAfterQulifiedId, Button.InsertAfterQ, Button.InsertAfterQulifiedId, ButtonGroup.InsertAfterQ, ButtonGroup.InsertAfterQulifiedId, ButtonRegular.InsertAfterQulifiedId, CheckBox.InsertAfterQ, CheckBox.InsertAfterQulifiedId, ComboBox.InsertAfterQ, ComboBox.InsertAfterQulifiedId, ControlClone.InsertAfterQ, ControlClone.InsertAfterQulifiedId, ControlCloneQat.InsertAfterQulifiedId, ControlCloneRegular.InsertAfterQulifiedId, DropDown.InsertAfterQ, DropDownRegular.InsertAfterQulifiedId, DynamicMenu.InsertAfterQ, DynamicMenu.InsertAfterQulifiedId, DynamicMenuRegular.InsertAfterQulifiedId, EditBox.InsertAfterQ, EditBox.InsertAfterQulifiedId, Gallery.InsertAfterQ, Gallery.InsertAfterQulifiedId, GalleryRegular.InsertAfterQulifiedId, Group.InsertAfterQ, Group.InsertAfterQulifiedId, LabelControl.InsertAfterQulifiedId, Menu.InsertAfterQ, Menu.InsertAfterQulifiedId, MenuRegular.InsertAfterQulifiedId, MenuSeparator.InsertAfterQ, MenuSeparator.InsertAfterQulifiedId, MenuSeparatorNoTitle.InsertAfterQulifiedId, MenuWithTitle.InsertAfterQ, QuickAccessToolbarControlClone.InsertAfterQ, Separator.InsertAfterQulifiedId, SplitButton.InsertAfterQ, SplitButton.InsertAfterQulifiedId, SplitButtonRegular.InsertAfterQulifiedId, SplitButtonWithTitle.InsertAfterQ, Tab.InsertAfterQ, Tab.InsertAfterQulifiedId, TaskFormGroupCategory.InsertAfterQulifiedId, TaskFormGroupTask.InsertAfterQulifiedId, TaskGroup.InsertAfterQulifiedId, TaskGroupCategory.InsertAfterQulifiedId, TaskGroupTask.InsertAfterQulifiedId, TextLabel.InsertAfterQ, ToggleButton.InsertAfterQ, ToggleButton.InsertAfterQulifiedId, ToggleButtonRegular.InsertAfterQulifiedId, UnsizedButton.InsertAfterQ, UnsizedControlClone.InsertAfterQ, UnsizedDynamicMenu.InsertAfterQ, UnsizedGallery.InsertAfterQ, UnsizedMenu.InsertAfterQ, UnsizedSplitButton.InsertAfterQ, UnsizedToggleButton.InsertAfterQ, VerticalSeparator.InsertAfterQ, VisibleButton.InsertAfterQ, VisibleButton.InsertAfterQulifiedId, VisibleToggleButton.InsertAfterQ, VisibleToggleButton.InsertAfterQulifiedId. + /// + /// + public static readonly XName insertAfterQ = "insertAfterQ"; + + /// + /// Represents the insertBeforeMso XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.InsertBeforeMso, BackstageGroup.InsertBeforeMso, BackstageTab.InsertBeforeMso, Box.InsertBeforeMso, Button.InsertBeforeMso, ButtonGroup.InsertBeforeMso, ButtonRegular.InsertBeforeMso, CheckBox.InsertBeforeMso, ComboBox.InsertBeforeMso, ControlClone.InsertBeforeMso, ControlCloneQat.InsertBeforeMso, ControlCloneRegular.InsertBeforeMso, DropDown.InsertBeforeMso, DropDownRegular.InsertBeforeMso, DynamicMenu.InsertBeforeMso, DynamicMenuRegular.InsertBeforeMso, EditBox.InsertBeforeMso, Gallery.InsertBeforeMso, GalleryRegular.InsertBeforeMso, Group.InsertBeforeMso, LabelControl.InsertBeforeMso, Menu.InsertBeforeMso, MenuRegular.InsertBeforeMso, MenuSeparator.InsertBeforeMso, MenuSeparatorNoTitle.InsertBeforeMso, MenuWithTitle.InsertBeforeMso, QuickAccessToolbarControlClone.InsertBeforeMso, Separator.InsertBeforeMso, SplitButton.InsertBeforeMso, SplitButtonRegular.InsertBeforeMso, SplitButtonWithTitle.InsertBeforeMso, Tab.InsertBeforeMso, TaskFormGroupCategory.InsertBeforeMso, TaskFormGroupTask.InsertBeforeMso, TaskGroup.InsertBeforeMso, TaskGroupCategory.InsertBeforeMso, TaskGroupTask.InsertBeforeMso, TextLabel.InsertBeforeMso, ToggleButton.InsertBeforeMso, ToggleButtonRegular.InsertBeforeMso, UnsizedButton.InsertBeforeMso, UnsizedControlClone.InsertBeforeMso, UnsizedDynamicMenu.InsertBeforeMso, UnsizedGallery.InsertBeforeMso, UnsizedMenu.InsertBeforeMso, UnsizedSplitButton.InsertBeforeMso, UnsizedToggleButton.InsertBeforeMso, VerticalSeparator.InsertBeforeMso, VisibleButton.InsertBeforeMso, VisibleToggleButton.InsertBeforeMso. + /// + /// + public static readonly XName insertBeforeMso = "insertBeforeMso"; + + /// + /// Represents the insertBeforeQ XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.InsertBeforeQulifiedId, BackstageGroup.InsertBeforeQulifiedId, BackstageTab.InsertBeforeQulifiedId, Box.InsertBeforeQ, Box.InsertBeforeQulifiedId, Button.InsertBeforeQ, Button.InsertBeforeQulifiedId, ButtonGroup.InsertBeforeQ, ButtonGroup.InsertBeforeQulifiedId, ButtonRegular.InsertBeforeQulifiedId, CheckBox.InsertBeforeQ, CheckBox.InsertBeforeQulifiedId, ComboBox.InsertBeforeQ, ComboBox.InsertBeforeQulifiedId, ControlClone.InsertBeforeQ, ControlClone.InsertBeforeQulifiedId, ControlCloneQat.InsertBeforeQulifiedId, ControlCloneRegular.InsertBeforeQulifiedId, DropDown.InsertBeforeQ, DropDownRegular.InsertBeforeQulifiedId, DynamicMenu.InsertBeforeQ, DynamicMenu.InsertBeforeQulifiedId, DynamicMenuRegular.InsertBeforeQulifiedId, EditBox.InsertBeforeQ, EditBox.InsertBeforeQulifiedId, Gallery.InsertBeforeQ, Gallery.InsertBeforeQulifiedId, GalleryRegular.InsertBeforeQulifiedId, Group.InsertBeforeQ, Group.InsertBeforeQulifiedId, LabelControl.InsertBeforeQulifiedId, Menu.InsertBeforeQ, Menu.InsertBeforeQulifiedId, MenuRegular.InsertBeforeQulifiedId, MenuSeparator.InsertBeforeQ, MenuSeparator.InsertBeforeQulifiedId, MenuSeparatorNoTitle.InsertBeforeQulifiedId, MenuWithTitle.InsertBeforeQ, QuickAccessToolbarControlClone.InsertBeforeQ, Separator.InsertBeforeQulifiedId, SplitButton.InsertBeforeQ, SplitButton.InsertBeforeQulifiedId, SplitButtonRegular.InsertBeforeQulifiedId, SplitButtonWithTitle.InsertBeforeQ, Tab.InsertBeforeQ, Tab.InsertBeforeQulifiedId, TaskFormGroupCategory.InsertBeforeQulifiedId, TaskFormGroupTask.InsertBeforeQulifiedId, TaskGroup.InsertBeforeQulifiedId, TaskGroupCategory.InsertBeforeQulifiedId, TaskGroupTask.InsertBeforeQulifiedId, TextLabel.InsertBeforeQ, ToggleButton.InsertBeforeQ, ToggleButton.InsertBeforeQulifiedId, ToggleButtonRegular.InsertBeforeQulifiedId, UnsizedButton.InsertBeforeQ, UnsizedControlClone.InsertBeforeQ, UnsizedDynamicMenu.InsertBeforeQ, UnsizedGallery.InsertBeforeQ, UnsizedMenu.InsertBeforeQ, UnsizedSplitButton.InsertBeforeQ, UnsizedToggleButton.InsertBeforeQ, VerticalSeparator.InsertBeforeQ, VisibleButton.InsertBeforeQ, VisibleButton.InsertBeforeQulifiedId, VisibleToggleButton.InsertBeforeQ, VisibleToggleButton.InsertBeforeQulifiedId. + /// + /// + public static readonly XName insertBeforeQ = "insertBeforeQ"; + + /// + /// Represents the insertBlankRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.InsertBlankRow. + /// + /// + public static readonly XName insertBlankRow = "insertBlankRow"; + + /// + /// Represents the insertColumns XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.InsertColumns. + /// + /// + public static readonly XName insertColumns = "insertColumns"; + + /// + /// Represents the insertHyperlinks XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.InsertHyperlinks. + /// + /// + public static readonly XName insertHyperlinks = "insertHyperlinks"; + + /// + /// Represents the insertPageBreak XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.InsertPageBreak. + /// + /// + public static readonly XName insertPageBreak = "insertPageBreak"; + + /// + /// Represents the insertRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.InsertRow. + /// + /// + public static readonly XName insertRow = "insertRow"; + + /// + /// Represents the insertRows XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.InsertRows. + /// + /// + public static readonly XName insertRows = "insertRows"; + + /// + /// Represents the insertRowShift XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.InsertRowShift. + /// + /// + public static readonly XName insertRowShift = "insertRowShift"; + + /// + /// Represents the inset XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextBox.Inset. + /// + /// + public static readonly XName inset = "inset"; + + /// + /// Represents the insetpen XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.InsetPen, BottomStroke.InsetPen, ColumnStroke.InsetPen, Curve.InsetPen, ImageFile.InsetPen, LeftStroke.InsetPen, Line.InsetPen, Oval.InsetPen, PolyLine.InsetPen, Rectangle.InsetPen, RightStroke.InsetPen, RoundRectangle.InsetPen, Shape.InsetPen, Shapetype.InsetPen, Stroke.Insetpen, TopStroke.InsetPen. + /// + /// + public static readonly XName insetpen = "insetpen"; + + /// + /// Represents the insetpenok XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.AllowInsetPen. + /// + /// + public static readonly XName insetpenok = "insetpenok"; + + /// + /// Represents the integer XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Parameter.Integer. + /// + /// + public static readonly XName integer = "integer"; + + /// + /// Represents the intensity XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ArtisticGlowDiffused.Intensity, ArtisticPaintStrokes.Intensity. + /// + /// + public static readonly XName intensity = "intensity"; + + /// + /// Represents the intermediate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.Intermediate. + /// + /// + public static readonly XName intermediate = "intermediate"; + + /// + /// Represents the interpolation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.Interpolation. + /// + /// + public static readonly XName interpolation = "interpolation"; + + /// + /// Represents the interval XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.Interval. + /// + /// + public static readonly XName interval = "interval"; + + /// + /// Represents the intervalClosed XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Binning.IntervalClosed. + /// + /// + public static readonly XName intervalClosed = "intervalClosed"; + + /// + /// Represents the invalEndChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Kinsoku.InvalidEndChars. + /// + /// + public static readonly XName invalEndChars = "invalEndChars"; + + /// + /// Represents the invalid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.Invalid. + /// + /// + public static readonly XName invalid = "invalid"; + + /// + /// Represents the invalidateContentOnDrop XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ComboBox.InvalidateContentOnDrop, DynamicMenu.InvalidateContentOnDrop, DynamicMenuRegular.InvalidateContentOnDrop, Gallery.InvalidateContentOnDrop, GalleryRegular.InvalidateContentOnDrop, UnsizedDynamicMenu.InvalidateContentOnDrop, UnsizedGallery.InvalidateContentOnDrop. + /// + /// + public static readonly XName invalidateContentOnDrop = "invalidateContentOnDrop"; + + /// + /// Represents the invalidUrl XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HyperlinkOnClick.InvalidUrl, HyperlinkOnHover.InvalidUrl, HyperlinkOnMouseOver.InvalidUrl. + /// + /// + public static readonly XName invalidUrl = "invalidUrl"; + + /// + /// Represents the invalStChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Kinsoku.InvalidStartChars. + /// + /// + public static readonly XName invalStChars = "invalStChars"; + + /// + /// Represents the invertible XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CanvasTransform.Invertible. + /// + /// + public static readonly XName invertible = "invertible"; + + /// + /// Represents the invx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeHandle.InvertX. + /// + /// + public static readonly XName invx = "invx"; + + /// + /// Represents the invX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PresetTransition.InvX. + /// + /// + public static readonly XName invX_ = "invX"; + + /// + /// Represents the invy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeHandle.InvertY. + /// + /// + public static readonly XName invy = "invy"; + + /// + /// Represents the invY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PresetTransition.InvY. + /// + /// + public static readonly XName invY_ = "invY"; + + /// + /// Represents the isActiveX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ObjectProperties.IsActiveX. + /// + /// + public static readonly XName isActiveX = "isActiveX"; + + /// + /// Represents the isComment XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: NonVisualInkContentPartProperties.IsComment. + /// + /// + public static readonly XName isComment = "isComment"; + + /// + /// Represents the isContent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrismTransition.IsContent. + /// + /// + public static readonly XName isContent = "isContent"; + + /// + /// Represents the isCountDistinct XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataField.IsCountDistinct. + /// + /// + public static readonly XName isCountDistinct = "isCountDistinct"; + + /// + /// Represents the isDefinitive XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BackstageFastCommandButton.IsDefinitive, BackstageGroupButton.IsDefinitive, BackstageMenuButton.IsDefinitive, BackstageRegularButton.IsDefinitive, TaskGroupTask.IsDefinitive. + /// + /// + public static readonly XName isDefinitive = "isDefinitive"; + + /// + /// Represents the isInverted XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrismTransition.IsInverted. + /// + /// + public static readonly XName isInverted = "isInverted"; + + /// + /// Represents the isLegacyGroup XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NonVisualGroupProperties.IsLegacyGroup. + /// + /// + public static readonly XName isLegacyGroup = "isLegacyGroup"; + + /// + /// Represents the isNarration XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Audio.IsNarration. + /// + /// + public static readonly XName isNarration = "isNarration"; + + /// + /// Represents the isPhoto XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ApplicationNonVisualDrawingProperties.IsPhoto. + /// + /// + public static readonly XName isPhoto = "isPhoto"; + + /// + /// Represents the issignatureline XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.IsSignatureLine. + /// + /// + public static readonly XName issignatureline = "issignatureline"; + + /// + /// Represents the isSignatureLine XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.IsSignatureLine. + /// + /// + public static readonly XName isSignatureLine_ = "isSignatureLine"; + + /// + /// Represents the item XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PageField.Item, Tuple.Item. + /// + /// + public static readonly XName item = "item"; + + /// + /// Represents the itemHeight XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Gallery.ItemHeight, GalleryRegular.ItemHeight, UnsizedGallery.ItemHeight. + /// + /// + public static readonly XName itemHeight = "itemHeight"; + + /// + /// Represents the itemPageCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.ItemPageCount. + /// + /// + public static readonly XName itemPageCount = "itemPageCount"; + + /// + /// Represents the itemPrintTitles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ItemPrintTitles. + /// + /// + public static readonly XName itemPrintTitles = "itemPrintTitles"; + + /// + /// Represents the itemSize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BackstageMenuGroup.ItemSize, Menu.ItemSize, MenuRegular.ItemSize, MenuWithTitle.ItemSize, UnsizedMenu.ItemSize. + /// + /// + public static readonly XName itemSize = "itemSize"; + + /// + /// Represents the itemWidth XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Gallery.ItemWidth, GalleryRegular.ItemWidth, UnsizedGallery.ItemWidth. + /// + /// + public static readonly XName itemWidth = "itemWidth"; + + /// + /// Represents the iterate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.Iterate. + /// + /// + public static readonly XName iterate = "iterate"; + + /// + /// Represents the iterateCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.IterateCount. + /// + /// + public static readonly XName iterateCount = "iterateCount"; + + /// + /// Represents the iterateDelta XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.IterateDelta. + /// + /// + public static readonly XName iterateDelta = "iterateDelta"; + + /// + /// Represents the joinstyle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.JoinStyle, ColumnStroke.JoinStyle, LeftStroke.JoinStyle, RightStroke.JoinStyle, Stroke.JoinStyle, TopStroke.JoinStyle. + /// + /// + public static readonly XName joinstyle = "joinstyle"; + + /// + /// Represents the justifyLastLine XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Alignment.JustifyLastLine. + /// + /// + public static readonly XName justifyLastLine = "justifyLastLine"; + + /// + /// Represents the justLastX XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CommentProperties.JustLastX, FormControlProperties.JustLastX. + /// + /// + public static readonly XName justLastX = "justLastX"; + + /// + /// Represents the keepAlive XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.KeepAlive. + /// + /// + public static readonly XName keepAlive = "keepAlive"; + + /// + /// Represents the keepChangeHistory XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.KeepChangeHistory. + /// + /// + public static readonly XName keepChangeHistory = "keepChangeHistory"; + + /// + /// Represents the kern XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.Kerning, EndParagraphRunProperties.Kerning, RunProperties.Kerning, TextCharacterPropertiesType.Kerning. + /// + /// + public static readonly XName kern = "kern"; + + /// + /// Represents the keyAttribute XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.KeyAttribute. + /// + /// + public static readonly XName keyAttribute = "keyAttribute"; + + /// + /// Represents the keytip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Keytip, BackstageComboBox.Keytip, BackstageDropDown.Keytip, BackstageEditBox.Keytip, BackstageFastCommandButton.Keytip, BackstageGroupButton.Keytip, BackstageMenuButton.Keytip, BackstageMenuCheckBox.Keytip, BackstageMenuToggleButton.Keytip, BackstagePrimaryMenu.Keytip, BackstageRegularButton.Keytip, BackstageSubMenu.Keytip, BackstageTab.Keytip, Button.Keytip, ButtonRegular.Keytip, CheckBox.Keytip, ComboBox.Keytip, ControlClone.Keytip, ControlCloneQat.Keytip, ControlCloneRegular.Keytip, DropDown.Keytip, DropDownRegular.Keytip, DynamicMenu.Keytip, DynamicMenuRegular.Keytip, EditBox.Keytip, Gallery.Keytip, GalleryRegular.Keytip, Group.Keytip, Hyperlink.Keytip, Menu.Keytip, MenuRegular.Keytip, MenuWithTitle.Keytip, QuickAccessToolbarControlClone.Keytip, RadioGroup.Keytip, SplitButton.Keytip, SplitButtonRegular.Keytip, SplitButtonWithTitle.Keytip, Tab.Keytip, TaskFormGroupTask.Keytip, TaskGroupTask.Keytip, ToggleButton.Keytip, ToggleButtonRegular.Keytip, UnsizedButton.Keytip, UnsizedControlClone.Keytip, UnsizedDynamicMenu.Keytip, UnsizedGallery.Keytip, UnsizedMenu.Keytip, UnsizedSplitButton.Keytip, UnsizedToggleButton.Keytip, VisibleButton.Keytip, VisibleToggleButton.Keytip. + /// + /// + public static readonly XName keytip = "keytip"; + + /// + /// Represents the kumimoji XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.Kumimoji, EndParagraphRunProperties.Kumimoji, RunProperties.Kumimoji, TextCharacterPropertiesType.Kumimoji. + /// + /// + public static readonly XName kumimoji = "kumimoji"; + + /// + /// Represents the kx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: OuterShadow.HorizontalSkew, Reflection.HorizontalSkew, TransformEffect.HorizontalSkew. + /// + /// + public static readonly XName kx = "kx"; + + /// + /// Represents the ky XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: OuterShadow.VerticalSkew, Reflection.VerticalSkew, TransformEffect.VerticalSkew. + /// + /// + public static readonly XName ky = "ky"; + + /// + /// Represents the l XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackgroundRemoval.MarqueeLeft, CalculationCell.NewLevel, EffectExtent.LeftEdge, FillRectangle.Left, FillToRectangle.Left, HslColor.Lightness, PageMargins.L, PageMargins.Left, Rectangle.Left, SourceRectangle.Left, TileRectangle.Left. + /// + /// + public static readonly XName l = "l"; + + /// + /// Represents the label XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Label, BackstageComboBox.Label, BackstageDropDown.Label, BackstageEditBox.Label, BackstageFastCommandButton.Label, BackstageGroup.Label, BackstageGroupButton.Label, BackstageLabelControl.Label, BackstageMenuButton.Label, BackstageMenuCheckBox.Label, BackstageMenuGroup.Label, BackstageMenuToggleButton.Label, BackstagePrimaryMenu.Label, BackstageRegularButton.Label, BackstageSubMenu.Label, BackstageTab.Label, Button.Label, ButtonRegular.Label, CheckBox.Label, ComboBox.Label, ControlClone.Label, ControlCloneQat.Label, ControlCloneRegular.Label, DropDown.Label, DropDownRegular.Label, DynamicMenu.Label, DynamicMenuRegular.Label, EditBox.Label, Gallery.Label, GalleryRegular.Label, Group.Label, GroupBox.Label, Hyperlink.Label, Item.Label, ItemBackstageItem.Label, LabelControl.Label, Menu.Label, MenuRegular.Label, MenuWithTitle.Label, PivotSelection.Label, QuickAccessToolbarControlClone.Label, RadioButtonBackstageItem.Label, RadioGroup.Label, Tab.Label, TaskFormGroup.Label, TaskFormGroupCategory.Label, TaskFormGroupTask.Label, TaskGroup.Label, TaskGroupCategory.Label, TaskGroupTask.Label, TextLabel.Label, ToggleButton.Label, ToggleButtonRegular.Label, UnsizedButton.Label, UnsizedControlClone.Label, UnsizedDynamicMenu.Label, UnsizedGallery.Label, UnsizedMenu.Label, UnsizedToggleButton.Label, VisibleButton.Label, VisibleToggleButton.Label. + /// + /// + public static readonly XName label = "label"; + + /// + /// Represents the labelOnly XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotArea.LabelOnly. + /// + /// + public static readonly XName labelOnly = "labelOnly"; + + /// + /// Represents the lang XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: ColorDefinitionTitle.Language, ColorTransformDescription.Language, DefaultRunProperties.Language, Description.Language, EndParagraphRunProperties.Language, Kinsoku.Language, RunProperties.Language, StyleDefinitionTitle.Language, StyleLabelDescription.Language, TextCharacterPropertiesType.Language, Title.Language. + /// + /// + public static readonly XName lang = "lang"; + + /// + /// Represents the last XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.Last. + /// + /// + public static readonly XName last = "last"; + + /// + /// Represents the lastClr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SystemColor.LastColor. + /// + /// + public static readonly XName lastClr = "lastClr"; + + /// + /// Represents the lastCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableProperties.LastColumn. + /// + /// + public static readonly XName lastCol = "lastCol"; + + /// + /// Represents the lastEdited XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileVersion.LastEdited. + /// + /// + public static readonly XName lastEdited = "lastEdited"; + + /// + /// Represents the lastGuid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.LastGuid. + /// + /// + public static readonly XName lastGuid = "lastGuid"; + + /// + /// Represents the lastIdx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentAuthor.LastIndex. + /// + /// + public static readonly XName lastIdx = "lastIdx"; + + /// + /// Represents the lastRefreshVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelineState.LastRefreshVersion. + /// + /// + public static readonly XName lastRefreshVersion = "lastRefreshVersion"; + + /// + /// Represents the lastRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableProperties.LastRow. + /// + /// + public static readonly XName lastRow = "lastRow"; + + /// + /// Represents the lastView XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ViewProperties.LastView. + /// + /// + public static readonly XName lastView = "lastView"; + + /// + /// Represents the lat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Rotation.Latitude. + /// + /// + public static readonly XName lat = "lat"; + + /// + /// Represents the latinLnBrk XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.LatinLineBreak, Level1ParagraphProperties.LatinLineBreak, Level2ParagraphProperties.LatinLineBreak, Level3ParagraphProperties.LatinLineBreak, Level4ParagraphProperties.LatinLineBreak, Level5ParagraphProperties.LatinLineBreak, Level6ParagraphProperties.LatinLineBreak, Level7ParagraphProperties.LatinLineBreak, Level8ParagraphProperties.LatinLineBreak, Level9ParagraphProperties.LatinLineBreak, ParagraphProperties.LatinLineBreak. + /// + /// + public static readonly XName latinLnBrk = "latinLnBrk"; + + /// + /// Represents the layout XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PhotoAlbum.Layout. + /// + /// + public static readonly XName layout = "layout"; + + /// + /// Represents the layoutChildren XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LayoutContainer.LayoutChildren. + /// + /// + public static readonly XName layoutChildren = "layoutChildren"; + + /// + /// Represents the layoutId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Series.LayoutId. + /// + /// + public static readonly XName layoutId = "layoutId"; + + /// + /// Represents the layoutInCell XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Anchor.LayoutInCell. + /// + /// + public static readonly XName layoutInCell = "layoutInCell"; + + /// + /// Represents the lBound XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: VTArray.LowerBounds. + /// + /// + public static readonly XName lBound = "lBound"; + + /// + /// Represents the leadZeros XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DiagramAutoBullet.LeadZeros. + /// + /// + public static readonly XName leadZeros = "leadZeros"; + + /// + /// Represents the left XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: GradientFill.Left, PageMargins.Left. + /// + /// + public static readonly XName left = "left"; + + /// + /// Represents the leftLabels XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataConsolidate.LeftLabels. + /// + /// + public static readonly XName leftLabels = "leftLabels"; + + /// + /// Represents the len XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: HeadEnd.Length, TailEnd.Length. + /// + /// + public static readonly XName len = "len"; + + /// + /// Represents the length XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Callout.Length, RevisionFormat.Length. + /// + /// + public static readonly XName length = "length"; + + /// + /// Represents the lengthspecified XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.LengthSpecified. + /// + /// + public static readonly XName lengthspecified = "lengthspecified"; + + /// + /// Represents the level XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: CacheField.Level, MemberProperty.Level, Members.Level, Slicer.Level, Timeline.Level. + /// + /// + public static readonly XName level = "level"; + + /// + /// Represents the lfe XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Lfe. + /// + /// + public static readonly XName lfe = "lfe"; + + /// + /// Represents the lff XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Lff. + /// + /// + public static readonly XName lff = "lff"; + + /// + /// Represents the lfo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Lfo. + /// + /// + public static readonly XName lfo = "lfo"; + + /// + /// Represents the lhe XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Lhe. + /// + /// + public static readonly XName lhe = "lhe"; + + /// + /// Represents the lhf XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Lhf. + /// + /// + public static readonly XName lhf = "lhf"; + + /// + /// Represents the lho XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Lho. + /// + /// + public static readonly XName lho = "lho"; + + /// + /// Represents the lightface XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.LightFace. + /// + /// + public static readonly XName lightface = "lightface"; + + /// + /// Represents the lightharsh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.LightHarsh. + /// + /// + public static readonly XName lightharsh = "lightharsh"; + + /// + /// Represents the lightharsh2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.LightHarsh2. + /// + /// + public static readonly XName lightharsh2 = "lightharsh2"; + + /// + /// Represents the lightlevel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.LightLevel. + /// + /// + public static readonly XName lightlevel = "lightlevel"; + + /// + /// Represents the lightlevel2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.LightLevel2. + /// + /// + public static readonly XName lightlevel2 = "lightlevel2"; + + /// + /// Represents the lightposition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.LightPosition. + /// + /// + public static readonly XName lightposition = "lightposition"; + + /// + /// Represents the lightposition2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.LightPosition2. + /// + /// + public static readonly XName lightposition2 = "lightposition2"; + + /// + /// Represents the lim XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Miter.Limit. + /// + /// + public static readonly XName lim = "lim"; + + /// + /// Represents the limo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.Limo. + /// + /// + public static readonly XName limo = "limo"; + + /// + /// Represents the linestyle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.LineStyle, ColumnStroke.LineStyle, LeftStroke.LineStyle, RightStroke.LineStyle, Stroke.LineStyle, TopStroke.LineStyle. + /// + /// + public static readonly XName linestyle = "linestyle"; + + /// + /// Represents the lineWeight XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.LineWeight. + /// + /// + public static readonly XName lineWeight = "lineWeight"; + + /// + /// Represents the link XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataConsolidate.Link, OleObject.Link. + /// + /// + public static readonly XName link = "link"; + + /// + /// Represents the linkedCell XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ControlProperties.LinkedCell. + /// + /// + public static readonly XName linkedCell = "linkedCell"; + + /// + /// Represents the linkTarget XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomDocumentProperty.LinkTarget. + /// + /// + public static readonly XName linkTarget = "linkTarget"; + + /// + /// Represents the linkType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ObjectProperties.LinkType. + /// + /// + public static readonly XName linkType = "linkType"; + + /// + /// Represents the lIns XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.LeftInset, TextBodyProperties.LeftInset. + /// + /// + public static readonly XName lIns = "lIns"; + + /// + /// Represents the listDataValidation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: IgnoredError.ListDataValidation. + /// + /// + public static readonly XName listDataValidation = "listDataValidation"; + + /// + /// Represents the listFillRange XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ControlProperties.ListFillRange. + /// + /// + public static readonly XName listFillRange = "listFillRange"; + + /// + /// Represents the lkTxEntry XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shape.LockedText. + /// + /// + public static readonly XName lkTxEntry = "lkTxEntry"; + + /// + /// Represents the lnSpcReduction XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NormalAutoFit.LineSpaceReduction. + /// + /// + public static readonly XName lnSpcReduction = "lnSpcReduction"; + + /// + /// Represents the loadImage XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomUI.LoadImage. + /// + /// + public static readonly XName loadImage = "loadImage"; + + /// + /// Represents the local XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.Local. + /// + /// + public static readonly XName local = "local"; + + /// + /// Represents the localConnection XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.LocalConnection. + /// + /// + public static readonly XName localConnection = "localConnection"; + + /// + /// Represents the localRefresh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.LocalRefresh. + /// + /// + public static readonly XName localRefresh = "localRefresh"; + + /// + /// Represents the localSheetId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DefinedName.LocalSheetId, RevisionDefinedName.LocalSheetId. + /// + /// + public static readonly XName localSheetId = "localSheetId"; + + /// + /// Represents the loCatId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.LayoutCategoryId. + /// + /// + public static readonly XName loCatId = "loCatId"; + + /// + /// Represents the location XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Hyperlink.Location. + /// + /// + public static readonly XName location = "location"; + + /// + /// Represents the locked XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: Anchor.Locked, CommentProperties.Locked, ControlProperties.Locked, EmbeddedObjectProperties.Locked, Protection.Locked, Scenario.Locked, WebExtensionTaskpane.Locked. + /// + /// + public static readonly XName locked = "locked"; + + /// + /// Represents the lockedPosition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Slicer.LockedPosition. + /// + /// + public static readonly XName lockedPosition = "lockedPosition"; + + /// + /// Represents the lockRevision XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.LockRevision. + /// + /// + public static readonly XName lockRevision = "lockRevision"; + + /// + /// Represents the lockrotationcenter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.LockRotationCenter. + /// + /// + public static readonly XName lockrotationcenter = "lockrotationcenter"; + + /// + /// Represents the lockStructure XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.LockStructure. + /// + /// + public static readonly XName lockStructure = "lockStructure"; + + /// + /// Represents the lockText XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CommentProperties.LockText, FormControlProperties.LockText. + /// + /// + public static readonly XName lockText = "lockText"; + + /// + /// Represents the lockWindows XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.LockWindows. + /// + /// + public static readonly XName lockWindows = "lockWindows"; + + /// + /// Represents the lon XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Rotation.Longitude. + /// + /// + public static readonly XName lon = "lon"; + + /// + /// Represents the longFileNames XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebPublishing.LongFileNames. + /// + /// + public static readonly XName longFileNames = "longFileNames"; + + /// + /// Represents the longText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.LongText. + /// + /// + public static readonly XName longText = "longText"; + + /// + /// Represents the loop XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ShowProperties.Loop, StartSoundAction.Loop. + /// + /// + public static readonly XName loop = "loop"; + + /// + /// Represents the loTypeId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.LayoutTypeId. + /// + /// + public static readonly XName loTypeId = "loTypeId"; + + /// + /// Represents the low XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.Low. + /// + /// + public static readonly XName low = "low"; + + /// + /// Represents the lowestEdited XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileVersion.LowestEdited. + /// + /// + public static readonly XName lowestEdited = "lowestEdited"; + + /// + /// Represents the lum XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Hsl.Luminance, HslColor.LumValue. + /// + /// + public static readonly XName lum = "lum"; + + /// + /// Represents the lvl XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.Level, Level1ParagraphProperties.Level, Level2ParagraphProperties.Level, Level3ParagraphProperties.Level, Level4ParagraphProperties.Level, Level5ParagraphProperties.Level, Level6ParagraphProperties.Level, Level7ParagraphProperties.Level, Level8ParagraphProperties.Level, Level9ParagraphProperties.Level, NumberDiagramInfo.Lvl, OleChartElement.Level, ParagraphProperties.Level, Template.Level. + /// + /// + public static readonly XName lvl = "lvl"; + + /// + /// Represents the m XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Item.Missing. + /// + /// + public static readonly XName m = "m"; + + /// + /// Represents the macro XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: ApplicationNonVisualDrawingProperties.Macro, ConnectionShape.Macro, ControlProperties.Macro, EmbeddedObjectProperties.Macro, GraphicFrame.Macro, Picture.Macro, Shape.Macro. + /// + /// + public static readonly XName macro = "macro"; + + /// + /// Represents the majorUnit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ValueAxisScaling.MajorUnit. + /// + /// + public static readonly XName majorUnit = "majorUnit"; + + /// + /// Represents the man XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Break.ManualPageBreak. + /// + /// + public static readonly XName man = "man"; + + /// + /// Represents the manualBreakCount XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ColumnBreaks.ManualBreakCount, RowBreaks.ManualBreakCount. + /// + /// + public static readonly XName manualBreakCount = "manualBreakCount"; + + /// + /// Represents the manualMax XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.ManualMax. + /// + /// + public static readonly XName manualMax = "manualMax"; + + /// + /// Represents the manualMin XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.ManualMin. + /// + /// + public static readonly XName manualMin = "manualMin"; + + /// + /// Represents the manufacturer XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: InkSource.Manufacturer. + /// + /// + public static readonly XName manufacturer = "manufacturer"; + + /// + /// Represents the map XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeHandle.Map. + /// + /// + public static readonly XName map = "map"; + + /// + /// Represents the mapId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: XmlColumnProperties.MapId, XmlProperties.MapId. + /// + /// + public static readonly XName mapId = "mapId"; + + /// + /// Represents the mappingCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheField.MappingCount. + /// + /// + public static readonly XName mappingCount = "mappingCount"; + + /// + /// Represents the mappingRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Mapping.MappingRef. + /// + /// + public static readonly XName mappingRef = "mappingRef"; + + /// + /// Represents the marB XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableCellProperties.BottomMargin. + /// + /// + public static readonly XName marB = "marB"; + + /// + /// Represents the markers XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.Markers. + /// + /// + public static readonly XName markers = "markers"; + + /// + /// Represents the marL XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.LeftMargin, Level1ParagraphProperties.LeftMargin, Level2ParagraphProperties.LeftMargin, Level3ParagraphProperties.LeftMargin, Level4ParagraphProperties.LeftMargin, Level5ParagraphProperties.LeftMargin, Level6ParagraphProperties.LeftMargin, Level7ParagraphProperties.LeftMargin, Level8ParagraphProperties.LeftMargin, Level9ParagraphProperties.LeftMargin, ParagraphProperties.LeftMargin, TableCellProperties.LeftMargin. + /// + /// + public static readonly XName marL = "marL"; + + /// + /// Represents the marR XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.RightMargin, Level1ParagraphProperties.RightMargin, Level2ParagraphProperties.RightMargin, Level3ParagraphProperties.RightMargin, Level4ParagraphProperties.RightMargin, Level5ParagraphProperties.RightMargin, Level6ParagraphProperties.RightMargin, Level7ParagraphProperties.RightMargin, Level8ParagraphProperties.RightMargin, Level9ParagraphProperties.RightMargin, ParagraphProperties.RightMargin, TableCellProperties.RightMargin. + /// + /// + public static readonly XName marR = "marR"; + + /// + /// Represents the marT XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableCellProperties.TopMargin. + /// + /// + public static readonly XName marT = "marT"; + + /// + /// Represents the masterRel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.MasterRelation. + /// + /// + public static readonly XName masterRel = "masterRel"; + + /// + /// Represents the matchingName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SlideLayout.MatchingName. + /// + /// + public static readonly XName matchingName = "matchingName"; + + /// + /// Represents the mathML XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.MathML. + /// + /// + public static readonly XName mathML = "mathML"; + + /// + /// Represents the mathStruct XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.MathStruct. + /// + /// + public static readonly XName mathStruct = "mathStruct"; + + /// + /// Represents the mathSymbol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.MathSymbol. + /// + /// + public static readonly XName mathSymbol = "mathSymbol"; + + /// + /// Represents the matrix XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Shadow.Matrix, Skew.Matrix. + /// + /// + public static readonly XName matrix = "matrix"; + + /// + /// Represents the max XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: Break.Max, Channel.Max, Column.Max, FormControlProperties.Max, PivotSelection.Max, Rule.Max, ValueAxisScaling.Max. + /// + /// + public static readonly XName max = "max"; + + /// + /// Represents the maxAng XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandlePolar.MaxAngle. + /// + /// + public static readonly XName maxAng = "maxAng"; + + /// + /// Represents the maxAxisType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.MaxAxisType. + /// + /// + public static readonly XName maxAxisType = "maxAxisType"; + + /// + /// Represents the maxDate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.MaxDate. + /// + /// + public static readonly XName maxDate = "maxDate"; + + /// + /// Represents the maximized XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.Maximized. + /// + /// + public static readonly XName maximized = "maximized"; + + /// + /// Represents the maxLength XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BackstageEditBox.MaxLength, ComboBox.MaxLength, DataBar.MaxLength, EditBox.MaxLength. + /// + /// + public static readonly XName maxLength = "maxLength"; + + /// + /// Represents the maxR XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandlePolar.MaxRadial. + /// + /// + public static readonly XName maxR = "maxR"; + + /// + /// Represents the maxRank XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TupleSet.MaxRank. + /// + /// + public static readonly XName maxRank = "maxRank"; + + /// + /// Represents the maxRId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Header.MaxRevisionId. + /// + /// + public static readonly XName maxRId = "maxRId"; + + /// + /// Represents the maxSheetId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Header.MaxSheetId. + /// + /// + public static readonly XName maxSheetId = "maxSheetId"; + + /// + /// Represents the maxSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.MaxSubtotal, PivotField.MaxSubtotal. + /// + /// + public static readonly XName maxSubtotal = "maxSubtotal"; + + /// + /// Represents the maxVal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DynamicFilter.MaxVal. + /// + /// + public static readonly XName maxVal = "maxVal"; + + /// + /// Represents the maxValIso XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DynamicFilter.MaxValIso. + /// + /// + public static readonly XName maxValIso = "maxValIso"; + + /// + /// Represents the maxValue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.MaxValue. + /// + /// + public static readonly XName maxValue = "maxValue"; + + /// + /// Represents the maxX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandleXY.MaxX. + /// + /// + public static readonly XName maxX = "maxX"; + + /// + /// Represents the maxY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandleXY.MaxY. + /// + /// + public static readonly XName maxY = "maxY"; + + /// + /// Represents the mdx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CalculatedMember.Mdx, Query.Mdx. + /// + /// + public static readonly XName mdx = "mdx"; + + /// + /// Represents the mdxLong XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculatedMember.MdxLong. + /// + /// + public static readonly XName mdxLong = "mdxLong"; + + /// + /// Represents the mdxSubqueries XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.MdxSubqueries. + /// + /// + public static readonly XName mdxSubqueries = "mdxSubqueries"; + + /// + /// Represents the meanLine XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SeriesElementVisibilities.MeanLine. + /// + /// + public static readonly XName meanLine = "meanLine"; + + /// + /// Represents the meanMarker XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SeriesElementVisibilities.MeanMarker. + /// + /// + public static readonly XName meanMarker = "meanMarker"; + + /// + /// Represents the measure XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.Measure, CalculatedMember.Measure, Dimension.Measure. + /// + /// + public static readonly XName measure = "measure"; + + /// + /// Represents the measureFilter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.MeasureFilter. + /// + /// + public static readonly XName measureFilter = "measureFilter"; + + /// + /// Represents the measureGroup XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.MeasureGroup, CalculatedMember.MeasureGroup, Kpi.MeasureGroup, MeasureDimensionMap.MeasureGroup. + /// + /// + public static readonly XName measureGroup = "measureGroup"; + + /// + /// Represents the measures XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.Measures. + /// + /// + public static readonly XName measures = "measures"; + + /// + /// Represents the measuresSet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.MeasuresSet. + /// + /// + public static readonly XName measuresSet = "measuresSet"; + + /// + /// Represents the memberName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculatedMember.MemberName. + /// + /// + public static readonly XName memberName = "memberName"; + + /// + /// Represents the memberPropertyField XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheField.MemberPropertyField. + /// + /// + public static readonly XName memberPropertyField = "memberPropertyField"; + + /// + /// Represents the memberValueDatatype XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.MemberValueDatatype. + /// + /// + public static readonly XName memberValueDatatype = "memberValueDatatype"; + + /// + /// Represents the merge XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.Merge. + /// + /// + public static readonly XName merge = "merge"; + + /// + /// Represents the mergeCell XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Alignment.MergeCell. + /// + /// + public static readonly XName mergeCell = "mergeCell"; + + /// + /// Represents the mergeInterval XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.MergeInterval. + /// + /// + public static readonly XName mergeInterval = "mergeInterval"; + + /// + /// Represents the mergeItem XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.MergeItem. + /// + /// + public static readonly XName mergeItem = "mergeItem"; + + /// + /// Represents the metal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.Metal. + /// + /// + public static readonly XName metal = "metal"; + + /// + /// Represents the meth XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: ColorStyle.Method, EffectColorList.Method, FillColorList.Method, LineColorList.Method, TextEffectColorList.Method, TextFillColorList.Method, TextLineColorList.Method. + /// + /// + public static readonly XName meth = "meth"; + + /// + /// Represents the method XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.Method. + /// + /// + public static readonly XName method = "method"; + + /// + /// Represents the midline XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.Midline. + /// + /// + public static readonly XName midline = "midline"; + + /// + /// Represents the min XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: Break.Min, Channel.Min, Column.Min, FormControlProperties.Min, PivotSelection.Min, ValueAxisScaling.Min. + /// + /// + public static readonly XName min = "min"; + + /// + /// Represents the minAng XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandlePolar.MinAngle. + /// + /// + public static readonly XName minAng = "minAng"; + + /// + /// Represents the minAxisType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.MinAxisType. + /// + /// + public static readonly XName minAxisType = "minAxisType"; + + /// + /// Represents the minDate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.MinDate. + /// + /// + public static readonly XName minDate = "minDate"; + + /// + /// Represents the minimalRefreshVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelineState.MinimalRefreshVersion. + /// + /// + public static readonly XName minimalRefreshVersion = "minimalRefreshVersion"; + + /// + /// Represents the minimized XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.Minimized, WorkbookView.Minimized. + /// + /// + public static readonly XName minimized = "minimized"; + + /// + /// Represents the minimumVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableRefresh.MinimumVersion. + /// + /// + public static readonly XName minimumVersion = "minimumVersion"; + + /// + /// Represents the minLength XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataBar.MinLength. + /// + /// + public static readonly XName minLength = "minLength"; + + /// + /// Represents the minorUnit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ValueAxisScaling.MinorUnit. + /// + /// + public static readonly XName minorUnit = "minorUnit"; + + /// + /// Represents the minR XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandlePolar.MinRadial. + /// + /// + public static readonly XName minR = "minR"; + + /// + /// Represents the minRefreshableVersion XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Connection.MinRefreshableVersion, PivotCacheDefinition.MinRefreshableVersion, PivotTableDefinition.MinRefreshableVersion. + /// + /// + public static readonly XName minRefreshableVersion = "minRefreshableVersion"; + + /// + /// Represents the minRId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Header.MinRevisionId. + /// + /// + public static readonly XName minRId = "minRId"; + + /// + /// Represents the minSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.MinSubtotal, PivotField.MinSubtotal. + /// + /// + public static readonly XName minSubtotal = "minSubtotal"; + + /// + /// Represents the minSupportedVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.MinSupportedVersion. + /// + /// + public static readonly XName minSupportedVersion = "minSupportedVersion"; + + /// + /// Represents the minusx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.MinusX. + /// + /// + public static readonly XName minusx = "minusx"; + + /// + /// Represents the minusy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.MinusY. + /// + /// + public static readonly XName minusy = "minusy"; + + /// + /// Represents the minute XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DateGroupItem.Minute. + /// + /// + public static readonly XName minute = "minute"; + + /// + /// Represents the minValue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedItems.MinValue. + /// + /// + public static readonly XName minValue = "minValue"; + + /// + /// Represents the minVer XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: ColorsDefinition.MinVersion, ColorsDefinitionHeader.MinVersion, DataModelExtensionBlock.MinVer, LayoutDefinition.MinVersion, LayoutDefinitionHeader.MinVersion, StyleDefinition.MinVersion, StyleDefinitionHeader.MinVersion. + /// + /// + public static readonly XName minVer = "minVer"; + + /// + /// Represents the minVersionLoad XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataModel.MinVersionLoad. + /// + /// + public static readonly XName minVersionLoad = "minVersionLoad"; + + /// + /// Represents the minX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandleXY.MinX. + /// + /// + public static readonly XName minX = "minX"; + + /// + /// Represents the minY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AdjustHandleXY.MinY. + /// + /// + public static readonly XName minY = "minY"; + + /// + /// Represents the missingCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.MissingCaption. + /// + /// + public static readonly XName missingCaption = "missingCaption"; + + /// + /// Represents the missingItemsLimit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.MissingItemsLimit. + /// + /// + public static readonly XName missingItemsLimit = "missingItemsLimit"; + + /// + /// Represents the miterlimit XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.MiterLimit, ColumnStroke.MiterLimit, LeftStroke.MiterLimit, RightStroke.MiterLimit, Stroke.Miterlimit, TopStroke.MiterLimit. + /// + /// + public static readonly XName miterlimit = "miterlimit"; + + /// + /// Represents the mod XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ExtensionListModify.Modify, ExtensionListWithModification.Modify. + /// + /// + public static readonly XName mod = "mod"; + + /// + /// Represents the model XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Connection.Model, InkSource.Model. + /// + /// + public static readonly XName model = "model"; + + /// + /// Represents the modelId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Connection.ModelId, Point.ModelId, Shape.ModelId. + /// + /// + public static readonly XName modelId = "modelId"; + + /// + /// Represents the mods XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AxisTitle.Modifiers, CategoryAxis.Modifiers, ChartArea.Modifiers, DataLabel.Modifiers, DataLabelCallout.Modifiers, DataPoint.Modifiers, DataPoint3D.Modifiers, DataPointLine.Modifiers, DataPointMarker.Modifiers, DataPointWireframe.Modifiers, DataTableStyle.Modifiers, DownBar.Modifiers, DropLine.Modifiers, EffectReference.Modifiers, ErrorBar.Modifiers, FillReference.Modifiers, Floor.Modifiers, FontReference.Modifiers, GridlineMajor.Modifiers, GridlineMinor.Modifiers, HiLoLine.Modifiers, LeaderLine.Modifiers, LegendStyle.Modifiers, LineReference.Modifiers, PlotArea.Modifiers, PlotArea3D.Modifiers, SeriesAxis.Modifiers, SeriesLine.Modifiers, TitleStyle.Modifiers, TrendlineLabel.Modifiers, TrendlineStyle.Modifiers, UpBar.Modifiers, ValueAxis.Modifiers, Wall.Modifiers. + /// + /// + public static readonly XName mods = "mods"; + + /// + /// Represents the month XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DateGroupItem.Month. + /// + /// + public static readonly XName month = "month"; + + /// + /// Represents the moveWith XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LayoutNode.MoveWith. + /// + /// + public static readonly XName moveWith = "moveWith"; + + /// + /// Represents the moveWithCells XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ObjectAnchor.MoveWithCells. + /// + /// + public static readonly XName moveWithCells = "moveWithCells"; + + /// + /// Represents the movingMultiple XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MovingPeriodState.MovingMultiple. + /// + /// + public static readonly XName movingMultiple = "movingMultiple"; + + /// + /// Represents the movingPeriod XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MovingPeriodState.MovingPeriod. + /// + /// + public static readonly XName movingPeriod = "movingPeriod"; + + /// + /// Represents the mpFld XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotFilter.MemberPropertyFieldId. + /// + /// + public static readonly XName mpFld = "mpFld"; + + /// + /// Represents the multiLine XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.MultipleLines. + /// + /// + public static readonly XName multiLine = "multiLine"; + + /// + /// Represents the multipleFieldFilters XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.MultipleFieldFilters. + /// + /// + public static readonly XName multipleFieldFilters = "multipleFieldFilters"; + + /// + /// Represents the multipleItemSelectionAllowed XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.MultipleItemSelectionAllowed, PivotHierarchy.MultipleItemSelectionAllowed. + /// + /// + public static readonly XName multipleItemSelectionAllowed = "multipleItemSelectionAllowed"; + + /// + /// Represents the multiSel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.MultipleSelection. + /// + /// + public static readonly XName multiSel = "multiSel"; + + /// + /// Represents the mute XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonMediaNode.Mute. + /// + /// + public static readonly XName mute = "mute"; + + /// + /// Represents the n XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed properties: Item.ItemName, Mdx.NameIndex, MdxKpi.NameIndex, MdxMemberProp.NameIndex, OlapSlicerCacheItem.Name, OlapSlicerCacheItemParent.Name, OlapSlicerCacheSelection.Name, ScaleX.Numerator, ScaleY.Numerator. + /// + /// + public static readonly XName n = "n"; + + /// + /// Represents the name XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BrushProperty.Name, CachedUniqueName.Name, CacheField.Name, CalculatedMember.Name, CellStyle.Name, Channel.Name, ChannelProperty.Name, Characteristic.Name, Choose.Name, ColorScheme.Name, ColorTransformStyleLabel.Name, CommentAuthor.Name, CommonSlideData.Name, Connection.Name, Control.Name, CustomColor.Name, CustomDocumentProperty.Name, CustomProperty.Name, CustomShow.Name, CustomWorkbookView.Name, DataField.Name, DataReference.Name, DbTable.Name, DdeItem.Name, DefinedName.Name, DeletedField.Name, DiagramChooseElse.Name, DiagramChooseIf.Name, Dimension.Name, DocProperties.Name, EffectContainer.Name, EffectDag.Name, ExtendedGuide.Name, ExternalDefinedName.Name, FieldListActiveTabTopLevelEntity.Name, FontScheme.Name, ForEach.Name, FormatScheme.Name, FunctionGroup.Name, FutureMetadata.Name, Group.Name, HyperlinkSound.Name, LayoutNode.Name, MeasureGroup.Name, MediaBookmark.Name, Member.Name, MemberProperty.Name, MetadataType.Name, ModelTable.Name, NonVisualDrawingProperties.Name, OleItem.Name, OleObject.Name, PageField.Name, PageItem.Name, Parameter.Name, PivotField.Name, PivotFilter.Name, PivotTableDefinition.Name, PivotTableStyle.Name, ProtectedRange.Name, QueryTable.Name, QueryTableField.Name, RangeSet.Name, RevisionDefinedName.Name, RevisionInsertSheet.Name, Scenario.Name, Section.Name, SectionOld.Name, ShapeGuide.Name, Sheet.Name, Slicer.Name, SlicerCacheDefinition.Name, SlicerCachePivotTable.Name, SlicerStyle.Name, Sound.Name, SoundTarget.Name, SourceConnection.Name, SourceProperty.Name, StyleLabel.Name, Table.Name, TableColumn.Name, TableStyle.Name, TableStyleInfo.Name, Tag.Name, Theme.Name, ThemeFamily.Name, Timeline.Name, TimelineCacheDefinition.Name, TimelineCachePivotTable.Name, TimelineStyle.Name, TimeSlicer.Name, UserInfo.Name, WaveAudioFile.Name, WebExtensionProperty.Name, WorksheetSource.Name. + /// + /// + public static readonly XName name = "name"; + + /// + /// Represents the Name XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Map.Name. + /// + /// + public static readonly XName Name_ = "Name"; + + /// + /// Represents the nameLen XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MemberProperty.NameLength. + /// + /// + public static readonly XName nameLen = "nameLen"; + + /// + /// Represents the Namespace XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Schema.Namespace. + /// + /// + public static readonly XName Namespace = "Namespace"; + + /// + /// Represents the nd XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapSlicerCacheItem.NonDisplay, TabularSlicerCacheItem.NonDisplay. + /// + /// + public static readonly XName nd = "nd"; + + /// + /// Represents the negative XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SparklineGroup.Negative. + /// + /// + public static readonly XName negative = "negative"; + + /// + /// Represents the negativeBarBorderColorSameAsPositive XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBar.NegativeBarBorderColorSameAsPositive. + /// + /// + public static readonly XName negativeBarBorderColorSameAsPositive = "negativeBarBorderColorSameAsPositive"; + + /// + /// Represents the negativeBarColorSameAsPositive XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataBar.NegativeBarColorSameAsPositive. + /// + /// + public static readonly XName negativeBarColorSameAsPositive = "negativeBarColorSameAsPositive"; + + /// + /// Represents the new XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Connection.New, Entry.New. + /// + /// + public static readonly XName @new = "new"; + + /// + /// Represents the newLength XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionComment.NewLength. + /// + /// + public static readonly XName newLength = "newLength"; + + /// + /// Represents the newName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionSheetName.NewName. + /// + /// + public static readonly XName newName = "newName"; + + /// + /// Represents the newVal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ColumnSortMapItem.NewVal, RowSortMapItem.NewVal. + /// + /// + public static readonly XName newVal = "newVal"; + + /// + /// Represents the nextAc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SequenceTimeNode.NextAction. + /// + /// + public static readonly XName nextAc = "nextAc"; + + /// + /// Represents the nextId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableRefresh.NextId. + /// + /// + public static readonly XName nextId = "nextId"; + + /// + /// Represents the nf XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Undo.DefinedNameFormula. + /// + /// + public static readonly XName nf = "nf"; + + /// + /// Represents the noAdjustHandles XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoAdjustHandles, ContentPartLocks.NoAdjustHandles, PictureLocks.NoAdjustHandles, ShapeLocks.NoAdjustHandles. + /// + /// + public static readonly XName noAdjustHandles = "noAdjustHandles"; + + /// + /// Represents the noChangeArrowheads XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoChangeArrowheads, ContentPartLocks.NoChangeArrowheads, PictureLocks.NoChangeArrowheads, ShapeLocks.NoChangeArrowheads. + /// + /// + public static readonly XName noChangeArrowheads = "noChangeArrowheads"; + + /// + /// Represents the noChangeAspect XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoChangeAspect, ContentPartLocks.NoChangeAspect, GraphicFrameLocks.NoChangeAspect, GroupShapeLocks.NoChangeAspect, PictureLocks.NoChangeAspect, ShapeLocks.NoChangeAspect. + /// + /// + public static readonly XName noChangeAspect = "noChangeAspect"; + + /// + /// Represents the noChangeShapeType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoChangeShapeType, ContentPartLocks.NoChangeShapeType, PictureLocks.NoChangeShapeType, ShapeLocks.NoChangeShapeType. + /// + /// + public static readonly XName noChangeShapeType = "noChangeShapeType"; + + /// + /// Represents the noCrop XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PictureLocks.NoCrop. + /// + /// + public static readonly XName noCrop = "noCrop"; + + /// + /// Represents the node-number XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Node.NodeNumber. + /// + /// + public static readonly XName node_number = "node-number"; + + /// + /// Represents the nodePh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.NodePlaceholder. + /// + /// + public static readonly XName nodePh = "nodePh"; + + /// + /// Represents the nodeType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.NodeType. + /// + /// + public static readonly XName nodeType = "nodeType"; + + /// + /// Represents the noDrilldown XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: GraphicFrameLocks.NoDrilldown. + /// + /// + public static readonly XName noDrilldown = "noDrilldown"; + + /// + /// Represents the noEditPoints XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoEditPoints, ContentPartLocks.NoEditPoints, PictureLocks.NoEditPoints, ShapeLocks.NoEditPoints. + /// + /// + public static readonly XName noEditPoints = "noEditPoints"; + + /// + /// Represents the noGrp XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoGrouping, ContentPartLocks.NoGrouping, GraphicFrameLocks.NoGrouping, GroupShapeLocks.NoGrouping, PictureLocks.NoGrouping, ShapeLocks.NoGrouping. + /// + /// + public static readonly XName noGrp = "noGrp"; + + /// + /// Represents the noMove XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoMove, ContentPartLocks.NoMove, GraphicFrameLocks.NoMove, GroupShapeLocks.NoMove, PictureLocks.NoMove, ShapeLocks.NoMove. + /// + /// + public static readonly XName noMove = "noMove"; + + /// + /// Represents the nonAutoSortDefault XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.NonAutoSortDefault. + /// + /// + public static readonly XName nonAutoSortDefault = "nonAutoSortDefault"; + + /// + /// Represents the nonoutliers XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SeriesElementVisibilities.Nonoutliers. + /// + /// + public static readonly XName nonoutliers = "nonoutliers"; + + /// + /// Represents the noProof XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.NoProof, EndParagraphRunProperties.NoProof, RunProperties.NoProof, TextCharacterPropertiesType.NoProof. + /// + /// + public static readonly XName noProof = "noProof"; + + /// + /// Represents the noResize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoResize, ContentPartLocks.NoResize, GraphicFrameLocks.NoResize, GroupShapeLocks.NoResize, PictureLocks.NoResize, ShapeLocks.NoResize. + /// + /// + public static readonly XName noResize = "noResize"; + + /// + /// Represents the normalEastAsianFlow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WordprocessingShape.NormalEastAsianFlow. + /// + /// + public static readonly XName normalEastAsianFlow = "normalEastAsianFlow"; + + /// + /// Represents the normalizeH XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.NormalizeHeight, EndParagraphRunProperties.NormalizeHeight, RunProperties.NormalizeHeight, TextCharacterPropertiesType.NormalizeHeight. + /// + /// + public static readonly XName normalizeH = "normalizeH"; + + /// + /// Represents the noRot XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoRotation, ContentPartLocks.NoRotation, GroupShapeLocks.NoRotation, PictureLocks.NoRotation, ShapeLocks.NoRotation. + /// + /// + public static readonly XName noRot = "noRot"; + + /// + /// Represents the noSelect XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ConnectionShapeLocks.NoSelection, ContentPartLocks.NoSelection, GraphicFrameLocks.NoSelection, GroupShapeLocks.NoSelection, PictureLocks.NoSelection, ShapeLocks.NoSelection. + /// + /// + public static readonly XName noSelect = "noSelect"; + + /// + /// Represents the noTextEdit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeLocks.NoTextEdit. + /// + /// + public static readonly XName noTextEdit = "noTextEdit"; + + /// + /// Represents the noThreeD XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.NoThreeD. + /// + /// + public static readonly XName noThreeD = "noThreeD"; + + /// + /// Represents the noThreeD2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.NoThreeD2. + /// + /// + public static readonly XName noThreeD2 = "noThreeD2"; + + /// + /// Represents the noUngrp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: GroupShapeLocks.NoUngrouping. + /// + /// + public static readonly XName noUngrp = "noUngrp"; + + /// + /// Represents the noWrap XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackstageLabelControl.NoWrap. + /// + /// + public static readonly XName noWrap = "noWrap"; + + /// + /// Represents the np XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: MdxKpi.KpiIndex, MdxMemberProp.PropertyNameIndex. + /// + /// + public static readonly XName np = "np"; + + /// + /// Represents the ns XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MdxSet.SetDefinitionIndex. + /// + /// + public static readonly XName ns = "ns"; + + /// + /// Represents the numberFormat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculatedMember.NumberFormat. + /// + /// + public static readonly XName numberFormat = "numberFormat"; + + /// + /// Represents the numberOfShades XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArtisticCutout.NumberOfShades. + /// + /// + public static readonly XName numberOfShades = "numberOfShades"; + + /// + /// Represents the numberStoredAsText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: IgnoredError.NumberStoredAsText. + /// + /// + public static readonly XName numberStoredAsText = "numberStoredAsText"; + + /// + /// Represents the numCol XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.ColumnCount, TextBodyProperties.ColumnCount. + /// + /// + public static readonly XName numCol = "numCol"; + + /// + /// Represents the numFmtId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: CacheField.NumberFormatId, CellFormat.NumberFormatId, DataField.NumberFormatId, InputCells.NumberFormatId, NumberingFormat.NumberFormatId, PivotField.NumberFormatId, RevisionCellChange.NumberFormatId. + /// + /// + public static readonly XName numFmtId = "numFmtId"; + + /// + /// Represents the numSld XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonMediaNode.SlideCount. + /// + /// + public static readonly XName numSld = "numSld"; + + /// + /// Represents the o XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MdxSet.SortingOrder. + /// + /// + public static readonly XName o = "o"; + + /// + /// Represents the objectId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ObjectProperties.Id. + /// + /// + public static readonly XName objectId = "objectId"; + + /// + /// Represents the ObjectID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.ObjectId. + /// + /// + public static readonly XName ObjectID_ = "ObjectID"; + + /// + /// Represents the objects XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChartSheetProtection.Objects, SheetProtection.Objects. + /// + /// + public static readonly XName objects = "objects"; + + /// + /// Represents the objectType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.ObjectType. + /// + /// + public static readonly XName objectType = "objectType"; + + /// + /// Represents the ObjectType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ClientData.ObjectType. + /// + /// + public static readonly XName ObjectType_ = "ObjectType"; + + /// + /// Represents the objId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: NullEventRecord.ObjectId, PauseEventRecord.ObjectId, PlayEventRecord.ObjectId, ResumeEventRecord.ObjectId, SeekEventRecord.ObjectId, StopEventRecord.ObjectId, TriggerEventRecord.ObjectId. + /// + /// + public static readonly XName objId = "objId"; + + /// + /// Represents the obscured XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shadow.Obscured. + /// + /// + public static readonly XName obscured = "obscured"; + + /// + /// Represents the odcFile XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.ConnectionFile. + /// + /// + public static readonly XName odcFile = "odcFile"; + + /// + /// Represents the odxf XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionCellChange.OldFormatting. + /// + /// + public static readonly XName odxf = "odxf"; + + /// + /// Represents the offset XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: PivotArea.Offset, Shadow.Offset, Skew.Offset. + /// + /// + public static readonly XName offset = "offset"; + + /// + /// Represents the offset2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shadow.Offset2. + /// + /// + public static readonly XName offset2 = "offset2"; + + /// + /// Represents the old XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Entry.Old, RevisionComment.Old. + /// + /// + public static readonly XName old = "old"; + + /// + /// Represents the oldComment XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldComment. + /// + /// + public static readonly XName oldComment = "oldComment"; + + /// + /// Represents the oldCustomMenu XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldCustomMenu. + /// + /// + public static readonly XName oldCustomMenu = "oldCustomMenu"; + + /// + /// Represents the oldDescription XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldDescription. + /// + /// + public static readonly XName oldDescription = "oldDescription"; + + /// + /// Represents the oldFunction XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldFunction. + /// + /// + public static readonly XName oldFunction = "oldFunction"; + + /// + /// Represents the oldFunctionGroupId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldFunctionGroupId. + /// + /// + public static readonly XName oldFunctionGroupId = "oldFunctionGroupId"; + + /// + /// Represents the oldHelp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldHelp. + /// + /// + public static readonly XName oldHelp = "oldHelp"; + + /// + /// Represents the oldHidden XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldHidden. + /// + /// + public static readonly XName oldHidden = "oldHidden"; + + /// + /// Represents the oldLength XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionComment.OldLength. + /// + /// + public static readonly XName oldLength = "oldLength"; + + /// + /// Represents the oldName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionSheetName.OldName. + /// + /// + public static readonly XName oldName = "oldName"; + + /// + /// Represents the oldPh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionCellChange.OldPhoneticText. + /// + /// + public static readonly XName oldPh = "oldPh"; + + /// + /// Represents the oldQuotePrefix XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionCellChange.OldQuotePrefix. + /// + /// + public static readonly XName oldQuotePrefix = "oldQuotePrefix"; + + /// + /// Represents the oldShortcutKey XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldShortcutKey. + /// + /// + public static readonly XName oldShortcutKey = "oldShortcutKey"; + + /// + /// Represents the oldStatusBar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionDefinedName.OldStatusBar. + /// + /// + public static readonly XName oldStatusBar = "oldStatusBar"; + + /// + /// Represents the oldVal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ColumnSortMapItem.OldVal, RowSortMapItem.OldVal. + /// + /// + public static readonly XName oldVal = "oldVal"; + + /// + /// Represents the ole XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DdeItem.UseOle. + /// + /// + public static readonly XName ole = "ole"; + + /// + /// Represents the oleUpdate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.OleUpdate. + /// + /// + public static readonly XName oleUpdate = "oleUpdate"; + + /// + /// Represents the on XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.On, Callout.On, ColumnStroke.On, Extrusion.On, Fill.On, LeftStroke.On, RightStroke.On, Shadow.On, Skew.On, Stroke.On, TextPath.On, TopStroke.On. + /// + /// + public static readonly XName on = "on"; + + /// + /// Represents the onAction XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.OnAction, BackstageDropDown.OnAction, BackstageFastCommandButton.OnAction, BackstageGroupButton.OnAction, BackstageMenuButton.OnAction, BackstageMenuCheckBox.OnAction, BackstageMenuToggleButton.OnAction, BackstageRegularButton.OnAction, Button.OnAction, ButtonRegular.OnAction, CheckBox.OnAction, Command.OnAction, DropDown.OnAction, DropDownRegular.OnAction, Gallery.OnAction, GalleryRegular.OnAction, Hyperlink.OnAction, RadioGroup.OnAction, RepurposedCommand.OnAction, TaskGroupTask.OnAction, ToggleButton.OnAction, ToggleButtonRegular.OnAction, UnsizedButton.OnAction, UnsizedGallery.OnAction, UnsizedToggleButton.OnAction, VisibleButton.OnAction, VisibleToggleButton.OnAction. + /// + /// + public static readonly XName onAction = "onAction"; + + /// + /// Represents the onChange XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BackstageComboBox.OnChange, BackstageEditBox.OnChange, ComboBox.OnChange, EditBox.OnChange. + /// + /// + public static readonly XName onChange = "onChange"; + + /// + /// Represents the oneField XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.OneField. + /// + /// + public static readonly XName oneField = "oneField"; + + /// + /// Represents the onHide XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Backstage.OnHide. + /// + /// + public static readonly XName onHide = "onHide"; + + /// + /// Represents the onLoad XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomUI.OnLoad. + /// + /// + public static readonly XName onLoad = "onLoad"; + + /// + /// Represents the onlySync XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.OnlySync. + /// + /// + public static readonly XName onlySync = "onlySync"; + + /// + /// Represents the onlyUseConnectionFile XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.OnlyUseConnectionFile. + /// + /// + public static readonly XName onlyUseConnectionFile = "onlyUseConnectionFile"; + + /// + /// Represents the onShow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Backstage.OnShow. + /// + /// + public static readonly XName onShow = "onShow"; + + /// + /// Represents the op XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Constraint.Operator, DiagramChooseIf.Operator. + /// + /// + public static readonly XName op = "op"; + + /// + /// Represents the opacity XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.Opacity, ColumnStroke.Opacity, Fill.Opacity, LeftStroke.Opacity, RightStroke.Opacity, Shadow.Opacity, Stroke.Opacity, TopStroke.Opacity. + /// + /// + public static readonly XName opacity = "opacity"; + + /// + /// Represents the operator XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.Operator, CustomFilter.Operator, DataValidation.Operator. + /// + /// + public static readonly XName @operator = "operator"; + + /// + /// Represents the optimizeMemory XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.OptimizeMemory. + /// + /// + public static readonly XName optimizeMemory = "optimizeMemory"; + + /// + /// Represents the organizeInFolders XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebProperties.OrganizeInFolders. + /// + /// + public static readonly XName organizeInFolders = "organizeInFolders"; + + /// + /// Represents the orient XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ExtendedGuide.Orientation, Guide.Orientation, PlaceholderShape.Orientation, SplitTransition.Orientation. + /// + /// + public static readonly XName orient = "orient"; + + /// + /// Represents the orientation XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Channel.Orientation, ChartSheetPageSetup.Orientation, Extrusion.Orientation, PageSetup.Orientation. + /// + /// + public static readonly XName orientation = "orientation"; + + /// + /// Represents the orientationangle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.OrientationAngle. + /// + /// + public static readonly XName orientationangle = "orientationangle"; + + /// + /// Represents the origin XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: AnimateMotion.Origin, Fill.Origin, Shadow.Origin, Skew.Origin. + /// + /// + public static readonly XName origin = "origin"; + + /// + /// Represents the out XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MediaFade.OutDuration. + /// + /// + public static readonly XName @out = "out"; + + /// + /// Represents the outliers XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SeriesElementVisibilities.Outliers. + /// + /// + public static readonly XName outliers = "outliers"; + + /// + /// Represents the outline XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: Border.Outline, PivotArea.Outline, PivotField.Outline, PivotHierarchy.Outline, PivotTableDefinition.Outline. + /// + /// + public static readonly XName outline = "outline"; + + /// + /// Represents the outlineData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.OutlineData. + /// + /// + public static readonly XName outlineData = "outlineData"; + + /// + /// Represents the outlineLevel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Column.OutlineLevel, Row.OutlineLevel. + /// + /// + public static readonly XName outlineLevel = "outlineLevel"; + + /// + /// Represents the outlineLevelCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetFormatProperties.OutlineLevelColumn. + /// + /// + public static readonly XName outlineLevelCol = "outlineLevelCol"; + + /// + /// Represents the outlineLevelRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetFormatProperties.OutlineLevelRow. + /// + /// + public static readonly XName outlineLevelRow = "outlineLevelRow"; + + /// + /// Represents the outlineSymbols XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.OutlineSymbols. + /// + /// + public static readonly XName outlineSymbols = "outlineSymbols"; + + /// + /// Represents the overflow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Binning.Overflow. + /// + /// + public static readonly XName overflow = "overflow"; + + /// + /// Represents the overlay XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ChartTitle.Overlay, Legend.Overlay. + /// + /// + public static readonly XName overlay = "overlay"; + + /// + /// Represents the override XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonBehavior.Override. + /// + /// + public static readonly XName @override = "override"; + + /// + /// Represents the ownerIdx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Series.OwnerIdx. + /// + /// + public static readonly XName ownerIdx = "ownerIdx"; + + /// + /// Represents the p XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MdxKpi.KpiProperty. + /// + /// + public static readonly XName p = "p"; + + /// + /// Represents the page XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.Page. + /// + /// + public static readonly XName page = "page"; + + /// + /// Represents the pageOrder XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageSetup.PageOrder. + /// + /// + public static readonly XName pageOrder = "pageOrder"; + + /// + /// Represents the pageOverThenDown XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.PageOverThenDown. + /// + /// + public static readonly XName pageOverThenDown = "pageOverThenDown"; + + /// + /// Represents the pageStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.PageStyle. + /// + /// + public static readonly XName pageStyle = "pageStyle"; + + /// + /// Represents the pageWrap XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.PageWrap. + /// + /// + public static readonly XName pageWrap = "pageWrap"; + + /// + /// Represents the pane XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotSelection.Pane, Selection.Pane. + /// + /// + public static readonly XName pane = "pane"; + + /// + /// Represents the panose XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BulletFont.Panose, ComplexScriptFont.Panose, EastAsianFont.Panose, Font.Panose, LatinFont.Panose, SymbolFont.Panose. + /// + /// + public static readonly XName panose = "panose"; + + /// + /// Represents the paperSize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.PaperSize, PageSetup.PaperSize. + /// + /// + public static readonly XName paperSize = "paperSize"; + + /// + /// Represents the par XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FieldGroup.ParentId. + /// + /// + public static readonly XName par = "par"; + + /// + /// Represents the parameterType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Parameter.ParameterType. + /// + /// + public static readonly XName parameterType = "parameterType"; + + /// + /// Represents the parent XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CalculatedMember.ParentName, Kpi.ParentKpi. + /// + /// + public static readonly XName parent = "parent"; + + /// + /// Represents the parentSet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.ParentSet. + /// + /// + public static readonly XName parentSet = "parentSet"; + + /// + /// Represents the parsePre XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.ParsePreTag. + /// + /// + public static readonly XName parsePre = "parsePre"; + + /// + /// Represents the parTransId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.ParentTransitionId. + /// + /// + public static readonly XName parTransId = "parTransId"; + + /// + /// Represents the password XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetProtection.Password, ProtectedRange.Password, SheetProtection.Password. + /// + /// + public static readonly XName password = "password"; + + /// + /// Represents the passwordEdit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.PasswordEdit. + /// + /// + public static readonly XName passwordEdit = "passwordEdit"; + + /// + /// Represents the pasteAll XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteAll. + /// + /// + public static readonly XName pasteAll = "pasteAll"; + + /// + /// Represents the pasteBorders XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteBorders. + /// + /// + public static readonly XName pasteBorders = "pasteBorders"; + + /// + /// Represents the pasteColWidths XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteColWidths. + /// + /// + public static readonly XName pasteColWidths = "pasteColWidths"; + + /// + /// Represents the pasteComments XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteComments. + /// + /// + public static readonly XName pasteComments = "pasteComments"; + + /// + /// Represents the pasteDataValidation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteDataValidation. + /// + /// + public static readonly XName pasteDataValidation = "pasteDataValidation"; + + /// + /// Represents the pasteFormats XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteFormats. + /// + /// + public static readonly XName pasteFormats = "pasteFormats"; + + /// + /// Represents the pasteFormulas XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteFormulas. + /// + /// + public static readonly XName pasteFormulas = "pasteFormulas"; + + /// + /// Represents the pasteNumberFormats XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteNumberFormats. + /// + /// + public static readonly XName pasteNumberFormats = "pasteNumberFormats"; + + /// + /// Represents the pasteValues XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.PasteValues. + /// + /// + public static readonly XName pasteValues = "pasteValues"; + + /// + /// Represents the path XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: AnimateMotion.Path, PathGradientFill.Path, Shape.EdgePath, Shapetype.EdgePath. + /// + /// + public static readonly XName path = "path"; + + /// + /// Represents the pathEditMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AnimateMotion.PathEditMode. + /// + /// + public static readonly XName pathEditMode = "pathEditMode"; + + /// + /// Represents the pattern XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: GlitterTransition.Pattern, ShredTransition.Pattern. + /// + /// + public static readonly XName pattern = "pattern"; + + /// + /// Represents the patternType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PatternFill.PatternType. + /// + /// + public static readonly XName patternType = "patternType"; + + /// + /// Represents the pencilSize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ArtisticLineDrawing.PencilSize, ArtisticPencilGrayscale.BrushSize. + /// + /// + public static readonly XName pencilSize = "pencilSize"; + + /// + /// Represents the percent XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.Percent, IconSet.Percent, Top10.Percent. + /// + /// + public static readonly XName percent = "percent"; + + /// + /// Represents the personalView XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.PersonalView. + /// + /// + public static readonly XName personalView = "personalView"; + + /// + /// Represents the ph XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Cell.ShowPhonetic, NewCell.ShowPhonetic, OldCell.ShowPhonetic, RevisionCellChange.HasPhoneticText, Row.ShowPhonetic. + /// + /// + public static readonly XName ph = "ph"; + + /// + /// Represents the phldr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.Placeholder. + /// + /// + public static readonly XName phldr = "phldr"; + + /// + /// Represents the phldrT XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.PlaceholderText. + /// + /// + public static readonly XName phldrT = "phldrT"; + + /// + /// Represents the phonetic XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Column.Phonetic. + /// + /// + public static readonly XName phonetic = "phonetic"; + + /// + /// Represents the pid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomDocumentProperty.PropertyId. + /// + /// + public static readonly XName pid = "pid"; + + /// + /// Represents the pitchFamily XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BulletFont.PitchFamily, ComplexScriptFont.PitchFamily, EastAsianFont.PitchFamily, Font.PitchFamily, LatinFont.PitchFamily, SymbolFont.PitchFamily. + /// + /// + public static readonly XName pitchFamily = "pitchFamily"; + + /// + /// Represents the pivot XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ConditionalFormatting.Pivot, TableStyle.Pivot. + /// + /// + public static readonly XName pivot = "pivot"; + + /// + /// Represents the pivotButton XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormat.PivotButton. + /// + /// + public static readonly XName pivotButton = "pivotButton"; + + /// + /// Represents the pivotCacheId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: OlapSlicerCache.PivotCacheId, PivotCacheDefinition.PivotCacheId, TabularSlicerCache.PivotCacheId, TimelineState.PivotCacheId. + /// + /// + public static readonly XName pivotCacheId = "pivotCacheId"; + + /// + /// Represents the pivotShowAs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataField.PivotShowAs. + /// + /// + public static readonly XName pivotShowAs = "pivotShowAs"; + + /// + /// Represents the pivotTables XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.PivotTables. + /// + /// + public static readonly XName pivotTables = "pivotTables"; + + /// + /// Represents the pivotTableStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.PivotTableStyleName. + /// + /// + public static readonly XName pivotTableStyle = "pivotTableStyle"; + + /// + /// Represents the pLen XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MemberProperty.PropertyNameLength. + /// + /// + public static readonly XName pLen = "pLen"; + + /// + /// Represents the points XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PolyLine.Points. + /// + /// + public static readonly XName points = "points"; + + /// + /// Represents the polar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeHandle.Polar. + /// + /// + public static readonly XName polar = "polar"; + + /// + /// Represents the pos XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: ChartTitle.Pos, DataLabel.Pos, DataLabels.Pos, ExtendedGuide.Position, GradientStop.Position, Guide.Position, Legend.Pos, TabStop.Position. + /// + /// + public static readonly XName pos = "pos"; + + /// + /// Represents the position XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Fill.Position, GradientStop.Position, Lock.Position, ShapeHandle.Position, TextField.Position. + /// + /// + public static readonly XName position = "position"; + + /// + /// Represents the post XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.Post. + /// + /// + public static readonly XName post = "post"; + + /// + /// Represents the pPos XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MemberProperty.PropertyNamePosition. + /// + /// + public static readonly XName pPos = "pPos"; + + /// + /// Represents the pred XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PredecessorDrawingElementReference.Pred. + /// + /// + public static readonly XName pred = "pred"; + + /// + /// Represents the preferPic XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: DdeItem.PreferPicture, OleItem.PreferPicture. + /// + /// + public static readonly XName preferPic = "preferPic"; + + /// + /// Represents the preferRelativeResize XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: NonVisualPictureDrawingProperties.PreferRelativeResize. + /// + /// + public static readonly XName preferRelativeResize = "preferRelativeResize"; + + /// + /// Represents the preferSingleView XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NormalViewProperties.PreferSingleView. + /// + /// + public static readonly XName preferSingleView = "preferSingleView"; + + /// + /// Represents the prefix XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DiagramAutoBullet.AutoBulletPrefix. + /// + /// + public static readonly XName prefix = "prefix"; + + /// + /// Represents the presAssocID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.PresentationElementId. + /// + /// + public static readonly XName presAssocID = "presAssocID"; + + /// + /// Represents the preserve XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: SlideLayout.Preserve, SlideMaster.Preserve. + /// + /// + public static readonly XName preserve = "preserve"; + + /// + /// Represents the PreserveFormat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Map.PreserveFormat. + /// + /// + public static readonly XName PreserveFormat = "PreserveFormat"; + + /// + /// Represents the preserveFormatting XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.PreserveFormatting, QueryTable.PreserveFormatting. + /// + /// + public static readonly XName preserveFormatting = "preserveFormatting"; + + /// + /// Represents the preserveHistory XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.PreserveHistory. + /// + /// + public static readonly XName preserveHistory = "preserveHistory"; + + /// + /// Represents the PreserveSortAFLayout XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Map.PreserveAutoFilterState. + /// + /// + public static readonly XName PreserveSortAFLayout = "PreserveSortAFLayout"; + + /// + /// Represents the preserveSortFilterLayout XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableRefresh.PreserveSortFilterLayout. + /// + /// + public static readonly XName preserveSortFilterLayout = "preserveSortFilterLayout"; + + /// + /// Represents the presetClass XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.PresetClass. + /// + /// + public static readonly XName presetClass = "presetClass"; + + /// + /// Represents the presetID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.PresetId. + /// + /// + public static readonly XName presetID = "presetID"; + + /// + /// Represents the presetSubtype XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.PresetSubtype. + /// + /// + public static readonly XName presetSubtype = "presetSubtype"; + + /// + /// Represents the presId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.PresentationId. + /// + /// + public static readonly XName presId = "presId"; + + /// + /// Represents the presName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.PresentationName. + /// + /// + public static readonly XName presName = "presName"; + + /// + /// Represents the presStyleCnt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.PresentationStyleCount. + /// + /// + public static readonly XName presStyleCnt = "presStyleCnt"; + + /// + /// Represents the presStyleIdx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.PresentationStyleIndex. + /// + /// + public static readonly XName presStyleIdx = "presStyleIdx"; + + /// + /// Represents the presStyleLbl XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.PresentationStyleLabel. + /// + /// + public static readonly XName presStyleLbl = "presStyleLbl"; + + /// + /// Represents the pressure XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ArtisticChalkSketch.Pressure, ArtisticCrisscrossEtching.Pressure, ArtisticMosaicBubbles.Pressure, ArtisticPencilSketch.Pressure. + /// + /// + public static readonly XName pressure = "pressure"; + + /// + /// Represents the prevAc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SequenceTimeNode.PreviousAction. + /// + /// + public static readonly XName prevAc = "prevAc"; + + /// + /// Represents the previousCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotSelection.PreviousColumn. + /// + /// + public static readonly XName previousCol = "previousCol"; + + /// + /// Represents the previousRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotSelection.PreviousRow. + /// + /// + public static readonly XName previousRow = "previousRow"; + + /// + /// Represents the pri XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Category.Priority, ColorTransformCategory.Priority, StyleDisplayCategory.Priority. + /// + /// + public static readonly XName pri = "pri"; + + /// + /// Represents the print XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Print, CommentProperties.Print, ControlProperties.Print, Curve.Print, EmbeddedObjectProperties.Print, Group.Print, ImageFile.Print, Line.Print, Oval.Print, PolyLine.Print, Rectangle.Print, RoundRectangle.Print, Shape.Print, Shapetype.Print. + /// + /// + public static readonly XName print = "print"; + + /// + /// Represents the printArea XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.PrintArea. + /// + /// + public static readonly XName printArea = "printArea"; + + /// + /// Represents the printDrill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.PrintDrill. + /// + /// + public static readonly XName printDrill = "printDrill"; + + /// + /// Represents the priority XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ConditionalFormat.Priority, ConditionalFormattingRule.Priority. + /// + /// + public static readonly XName priority = "priority"; + + /// + /// Represents the priorRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Trace.PriorRef. + /// + /// + public static readonly XName priorRef = "priorRef"; + + /// + /// Represents the prLst XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AnimateEffect.PropertyList. + /// + /// + public static readonly XName prLst = "prLst"; + + /// + /// Represents the prnWhat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintingProperties.PrintWhat. + /// + /// + public static readonly XName prnWhat = "prnWhat"; + + /// + /// Represents the productSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.ApplyProductInSubtotal, PivotField.ApplyProductInSubtotal. + /// + /// + public static readonly XName productSubtotal = "productSubtotal"; + + /// + /// Represents the progId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: OleLink.ProgId, OleObject.ProgId. + /// + /// + public static readonly XName progId = "progId"; + + /// + /// Represents the ProgID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.ProgId. + /// + /// + public static readonly XName ProgID_ = "ProgID"; + + /// + /// Represents the prompt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: DataValidation.Prompt, Parameter.Prompt, TextProperties.Prompt. + /// + /// + public static readonly XName prompt = "prompt"; + + /// + /// Represents the promptedSolutions XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.PromptedSolutions. + /// + /// + public static readonly XName promptedSolutions = "promptedSolutions"; + + /// + /// Represents the promptTitle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.PromptTitle. + /// + /// + public static readonly XName promptTitle = "promptTitle"; + + /// + /// Represents the propertyName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheField.PropertyName. + /// + /// + public static readonly XName propertyName = "propertyName"; + + /// + /// Represents the protected XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.Protected. + /// + /// + public static readonly XName @protected = "protected"; + + /// + /// Represents the provid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.ProviderId. + /// + /// + public static readonly XName provid = "provid"; + + /// + /// Represents the provId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.ProviderId. + /// + /// + public static readonly XName provId_ = "provId"; + + /// + /// Represents the providerId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PresenceInfo.ProviderId. + /// + /// + public static readonly XName providerId = "providerId"; + + /// + /// Represents the prst XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed properties: Bevel.Preset, BevelBottom.Preset, BevelTop.Preset, Camera.Preset, PatternFill.Preset, PresetGeometry.Preset, PresetShadow.Preset, PresetTextWrap.Preset, PresetTransition.Preset. + /// + /// + public static readonly XName prst = "prst"; + + /// + /// Represents the prstMaterial XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Cell3DProperties.PresetMaterial, HiddenShape3D.PresetMaterial, Shape3D.PresetMaterial, Shape3DType.PresetMaterial. + /// + /// + public static readonly XName prstMaterial = "prstMaterial"; + + /// + /// Represents the pt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Break.PivotTablePageBreak. + /// + /// + public static readonly XName pt = "pt"; + + /// + /// Represents the ptCount XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NumericLevel.PtCount, StringLevel.PtCount. + /// + /// + public static readonly XName ptCount = "ptCount"; + + /// + /// Represents the ptsTypes XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AnimateMotion.PointTypes. + /// + /// + public static readonly XName ptsTypes = "ptsTypes"; + + /// + /// Represents the ptType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: Constraint.PointType, DiagramChooseIf.PointType, ForEach.PointType, NumberDiagramInfo.PtType, PresentationOf.PointType, Rule.PointType. + /// + /// + public static readonly XName ptType = "ptType"; + + /// + /// Represents the pubBrowser XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: HtmlPublishProperties.TargetBrowser. + /// + /// + public static readonly XName pubBrowser = "pubBrowser"; + + /// + /// Represents the published XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetProperties.Published, PivotTableDefinition.Published, SheetProperties.Published, Table.Published. + /// + /// + public static readonly XName published = "published"; + + /// + /// Represents the publishItems XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.PublishItems. + /// + /// + public static readonly XName publishItems = "publishItems"; + + /// + /// Represents the publishToServer XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DefinedName.PublishToServer. + /// + /// + public static readonly XName publishToServer = "publishToServer"; + + /// + /// Represents the qsCatId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.QuickStyleCategoryId. + /// + /// + public static readonly XName qsCatId = "qsCatId"; + + /// + /// Represents the qsTypeId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PropertySet.QuickStyleTypeId. + /// + /// + public static readonly XName qsTypeId = "qsTypeId"; + + /// + /// Represents the qualifier XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.Qualifier. + /// + /// + public static readonly XName qualifier = "qualifier"; + + /// + /// Represents the quartileMethod XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Statistics.QuartileMethod. + /// + /// + public static readonly XName quartileMethod = "quartileMethod"; + + /// + /// Represents the queryFailed XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TupleSet.QueryFailed. + /// + /// + public static readonly XName queryFailed = "queryFailed"; + + /// + /// Represents the queryTableFieldId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableColumn.QueryTableFieldId. + /// + /// + public static readonly XName queryTableFieldId = "queryTableFieldId"; + + /// + /// Represents the quotePrefix XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CellFormat.QuotePrefix, RevisionCellChange.QuotePrefix. + /// + /// + public static readonly XName quotePrefix = "quotePrefix"; + + /// + /// Represents the r XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackgroundRemoval.MarqueeRight, CalculationCell.CellReference, Cell.CellReference, CellWatch.CellReference, EffectExtent.RightEdge, ExternalCell.CellReference, ExternalRow.RowIndex, FillRectangle.Right, FillToRectangle.Right, InputCells.CellReference, NewCell.CellReference, OldCell.CellReference, PageMargins.R, PageMargins.Right, PivotRow.Reference, Rectangle.Right, RgbColor.Red, RgbColorModelPercentage.RedPortion, Row.RowIndex, RowItem.RepeatedItemCount, SingleXmlCell.CellReference, SourceRectangle.Right, TileRectangle.Right, TopicReferences.CellReference, Undo.CellReference. + /// + /// + public static readonly XName r = "r"; + + /// + /// Represents the r1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.R1. + /// + /// + public static readonly XName r1 = "r1"; + + /// + /// Represents the r2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellFormula.R2. + /// + /// + public static readonly XName r2 = "r2"; + + /// + /// Represents the ra XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: RevisionCellChange.Ra, RevisionConflict.Ra, RevisionDefinedName.Ra, RevisionInsertSheet.Ra, RevisionMove.Ra, RevisionRowColumn.Ra, RevisionSheetName.Ra. + /// + /// + public static readonly XName ra = "ra"; + + /// + /// Represents the rad XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: AlphaOutset.Radius, Blur.Radius, Glow.Radius, SoftEdge.Radius. + /// + /// + public static readonly XName rad = "rad"; + + /// + /// Represents the radius XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArtisticBlur.Radius. + /// + /// + public static readonly XName radius = "radius"; + + /// + /// Represents the radiusrange XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeHandle.RadiusRange. + /// + /// + public static readonly XName radiusrange = "radiusrange"; + + /// + /// Represents the rAng XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AnimateMotion.RelativeAngle. + /// + /// + public static readonly XName rAng = "rAng"; + + /// + /// Represents the rank XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.Rank. + /// + /// + public static readonly XName rank = "rank"; + + /// + /// Represents the rankBy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.RankBy. + /// + /// + public static readonly XName rankBy = "rankBy"; + + /// + /// Represents the rctx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonBehavior.RuntimeContext. + /// + /// + public static readonly XName rctx = "rctx"; + + /// + /// Represents the readingOrder XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Alignment.ReadingOrder. + /// + /// + public static readonly XName readingOrder = "readingOrder"; + + /// + /// Represents the readOnlyRecommended XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileSharing.ReadOnlyRecommended. + /// + /// + public static readonly XName readOnlyRecommended = "readOnlyRecommended"; + + /// + /// Represents the recalcAlways XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ControlProperties.RecalcAlways. + /// + /// + public static readonly XName recalcAlways = "recalcAlways"; + + /// + /// Represents the recolor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.Recolor. + /// + /// + public static readonly XName recolor = "recolor"; + + /// + /// Represents the recolortarget XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ImageData.RecolorTarget. + /// + /// + public static readonly XName recolortarget = "recolortarget"; + + /// + /// Represents the reconnectionMethod XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.ReconnectionMethod. + /// + /// + public static readonly XName reconnectionMethod = "reconnectionMethod"; + + /// + /// Represents the recordCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.RecordCount. + /// + /// + public static readonly XName recordCount = "recordCount"; + + /// + /// Represents the ref XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AutoFilter.Reference, CellFormula.Reference, ColumnSortMap.Ref, Comment.Reference, DataReference.Reference, DestinationLink.Reference, Effect.Reference, ForEach.Reference, Grammar.Reference, GroupInfo.Reference, Hyperlink.Reference, Location.Reference, MergeCell.Reference, Model.Reference, OleSize.Reference, RangeSet.Reference, RevisionAutoFormat.Reference, RevisionQueryTable.Reference, RevisionRowColumn.Reference, RowSortMap.Ref, SheetDimension.Reference, SortCondition.Reference, SortState.Reference, SourceLink.Reference, Table.Reference, WorksheetSource.Reference. + /// + /// + public static readonly XName @ref = "ref"; + + /// + /// Represents the ref3D XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Undo.Reference3D. + /// + /// + public static readonly XName ref3D = "ref3D"; + + /// + /// Represents the referenceDateBegin XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MovingPeriodState.ReferenceDateBegin. + /// + /// + public static readonly XName referenceDateBegin = "referenceDateBegin"; + + /// + /// Represents the referenceMultiple XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MovingPeriodState.ReferenceMultiple. + /// + /// + public static readonly XName referenceMultiple = "referenceMultiple"; + + /// + /// Represents the referencePeriod XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MovingPeriodState.ReferencePeriod. + /// + /// + public static readonly XName referencePeriod = "referencePeriod"; + + /// + /// Represents the refersTo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ExternalDefinedName.RefersTo. + /// + /// + public static readonly XName refersTo = "refersTo"; + + /// + /// Represents the refFor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Constraint.ReferenceFor. + /// + /// + public static readonly XName refFor = "refFor"; + + /// + /// Represents the refForName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Constraint.ReferenceForName. + /// + /// + public static readonly XName refForName = "refForName"; + + /// + /// Represents the refMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculationProperties.ReferenceMode. + /// + /// + public static readonly XName refMode = "refMode"; + + /// + /// Represents the refPtType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Constraint.ReferencePointType. + /// + /// + public static readonly XName refPtType = "refPtType"; + + /// + /// Represents the refreshAllConnections XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.RefreshAllConnections. + /// + /// + public static readonly XName refreshAllConnections = "refreshAllConnections"; + + /// + /// Represents the refreshedBy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.RefreshedBy. + /// + /// + public static readonly XName refreshedBy = "refreshedBy"; + + /// + /// Represents the refreshedDate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.RefreshedDate. + /// + /// + public static readonly XName refreshedDate = "refreshedDate"; + + /// + /// Represents the refreshedDateIso XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.LastRefreshedDateIso. + /// + /// + public static readonly XName refreshedDateIso = "refreshedDateIso"; + + /// + /// Represents the refreshedVersion XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Connection.RefreshedVersion, PivotCacheDefinition.RefreshedVersion. + /// + /// + public static readonly XName refreshedVersion = "refreshedVersion"; + + /// + /// Represents the refreshError XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ExternalSheetData.RefreshError. + /// + /// + public static readonly XName refreshError = "refreshError"; + + /// + /// Represents the refreshOnChange XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Parameter.RefreshOnChange. + /// + /// + public static readonly XName refreshOnChange = "refreshOnChange"; + + /// + /// Represents the refreshOnLoad XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Connection.RefreshOnLoad, PivotCacheDefinition.RefreshOnLoad, QueryTable.RefreshOnLoad. + /// + /// + public static readonly XName refreshOnLoad = "refreshOnLoad"; + + /// + /// Represents the refType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Constraint.ReferenceType. + /// + /// + public static readonly XName refType = "refType"; + + /// + /// Represents the relation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Characteristic.Relation. + /// + /// + public static readonly XName relation = "relation"; + + /// + /// Represents the relative XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotAreaReference.Relative. + /// + /// + public static readonly XName relative = "relative"; + + /// + /// Represents the relativeFrom XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: HorizontalPosition.RelativeFrom, RelativeHeight.RelativeFrom, RelativeWidth.ObjectId, VerticalPosition.RelativeFrom. + /// + /// + public static readonly XName relativeFrom = "relativeFrom"; + + /// + /// Represents the relativeHeight XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Anchor.RelativeHeight. + /// + /// + public static readonly XName relativeHeight = "relativeHeight"; + + /// + /// Represents the relativeIndent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Alignment.RelativeIndent. + /// + /// + public static readonly XName relativeIndent = "relativeIndent"; + + /// + /// Represents the relId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataModelExtensionBlock.RelId. + /// + /// + public static readonly XName relId = "relId"; + + /// + /// Represents the relNeededHidden XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableUISettings.RelNeededHidden. + /// + /// + public static readonly XName relNeededHidden = "relNeededHidden"; + + /// + /// Represents the relyOnVml XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebProperties.RelyOnVml. + /// + /// + public static readonly XName relyOnVml = "relyOnVml"; + + /// + /// Represents the removeDataOnSave XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTable.RemoveDataOnSave. + /// + /// + public static readonly XName removeDataOnSave = "removeDataOnSave"; + + /// + /// Represents the removePersonalInfoOnSave XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.RemovePersonalInfoOnSave. + /// + /// + public static readonly XName removePersonalInfoOnSave = "removePersonalInfoOnSave"; + + /// + /// Represents the render XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.Render. + /// + /// + public static readonly XName render = "render"; + + /// + /// Represents the repairLoad XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileRecoveryProperties.RepairLoad. + /// + /// + public static readonly XName repairLoad = "repairLoad"; + + /// + /// Represents the repeatCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.RepeatCount. + /// + /// + public static readonly XName repeatCount = "repeatCount"; + + /// + /// Represents the repeatDur XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.RepeatDuration. + /// + /// + public static readonly XName repeatDur = "repeatDur"; + + /// + /// Represents the reservationPassword XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileSharing.ReservationPassword. + /// + /// + public static readonly XName reservationPassword = "reservationPassword"; + + /// + /// Represents the resId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ColorsDefinitionHeader.ResourceId, LayoutDefinitionHeader.ResourceId, StyleDefinitionHeader.ResourceId. + /// + /// + public static readonly XName resId = "resId"; + + /// + /// Represents the resizeGraphics XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebProperties.ResizeGraphics. + /// + /// + public static readonly XName resizeGraphics = "resizeGraphics"; + + /// + /// Represents the resource XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DerivedFrom.Resource. + /// + /// + public static readonly XName resource = "resource"; + + /// + /// Represents the respectTo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Channel.RespectTo. + /// + /// + public static readonly XName respectTo = "respectTo"; + + /// + /// Represents the restart XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CommonTimeNode.Restart, KioskSlideMode.Restart. + /// + /// + public static readonly XName restart = "restart"; + + /// + /// Represents the rev XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Algorithm.Revision, BuildDiagram.ReverseAnimation, BuildParagraph.Reverse, Rotation.Revolution. + /// + /// + public static readonly XName rev = "rev"; + + /// + /// Represents the reverse XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Diagram.Reverse, IconSet.Reverse. + /// + /// + public static readonly XName reverse = "reverse"; + + /// + /// Represents the revisionId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.RevisionId. + /// + /// + public static readonly XName revisionId = "revisionId"; + + /// + /// Represents the revisionsAlgorithmName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.RevisionsAlgorithmName. + /// + /// + public static readonly XName revisionsAlgorithmName = "revisionsAlgorithmName"; + + /// + /// Represents the revisionsHashValue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.RevisionsHashValue. + /// + /// + public static readonly XName revisionsHashValue = "revisionsHashValue"; + + /// + /// Represents the revisionsPassword XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.RevisionsPassword. + /// + /// + public static readonly XName revisionsPassword = "revisionsPassword"; + + /// + /// Represents the revisionsSaltValue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.RevisionsSaltValue. + /// + /// + public static readonly XName revisionsSaltValue = "revisionsSaltValue"; + + /// + /// Represents the revisionsSpinCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.RevisionsSpinCount. + /// + /// + public static readonly XName revisionsSpinCount = "revisionsSpinCount"; + + /// + /// Represents the rfe XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Rfe. + /// + /// + public static readonly XName rfe = "rfe"; + + /// + /// Represents the rff XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Rff. + /// + /// + public static readonly XName rff = "rff"; + + /// + /// Represents the rfo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Rfo. + /// + /// + public static readonly XName rfo = "rfo"; + + /// + /// Represents the rgb XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AxisColor.Rgb, BackgroundColor.Rgb, BarAxisColor.Rgb, BorderColor.Rgb, Color.Rgb, FillColor.Rgb, FirstMarkerColor.Rgb, ForegroundColor.Rgb, HighMarkerColor.Rgb, LastMarkerColor.Rgb, LowMarkerColor.Rgb, MarkersColor.Rgb, NegativeBorderColor.Rgb, NegativeColor.Rgb, NegativeFillColor.Rgb, RgbColor.Rgb, SeriesColor.Rgb, TabColor.Rgb. + /// + /// + public static readonly XName rgb = "rgb"; + + /// + /// Represents the rhe XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Rhe. + /// + /// + public static readonly XName rhe = "rhe"; + + /// + /// Represents the rhf XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Rhf. + /// + /// + public static readonly XName rhf = "rhf"; + + /// + /// Represents the rho XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DrawingHeaderFooter.Rho. + /// + /// + public static readonly XName rho = "rho"; + + /// + /// Represents the rId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: Reviewed.RevisionId, RevisionCellChange.RevisionId, RevisionConflict.RevisionId, RevisionDefinedName.RevisionId, RevisionInsertSheet.RevisionId, RevisionMove.RevisionId, RevisionRowColumn.RevisionId, RevisionSheetName.RevisionId. + /// + /// + public static readonly XName rId = "rId"; + + /// + /// Represents the rig XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LightRig.Rig. + /// + /// + public static readonly XName rig = "rig"; + + /// + /// Represents the right XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: GradientFill.Right, PageMargins.Right. + /// + /// + public static readonly XName right = "right"; + + /// + /// Represents the rightToLeft XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: SheetView.RightToLeft, SparklineGroup.RightToLeft. + /// + /// + public static readonly XName rightToLeft = "rightToLeft"; + + /// + /// Represents the rIns XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.RightInset, TextBodyProperties.RightInset. + /// + /// + public static readonly XName rIns = "rIns"; + + /// + /// Represents the RootElement XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Map.RootElement. + /// + /// + public static readonly XName RootElement = "RootElement"; + + /// + /// Represents the rot XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BodyProperties.Rotation, Shape.Rotation, TextBodyProperties.Rotation, Transform.Rotation, Transform2D.Rotation, TransformGroup.Rotation. + /// + /// + public static readonly XName rot = "rot"; + + /// + /// Represents the rotate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.Rotate. + /// + /// + public static readonly XName rotate = "rotate"; + + /// + /// Represents the rotatedBoundingBox XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.RotatedBoundingBox. + /// + /// + public static readonly XName rotatedBoundingBox = "rotatedBoundingBox"; + + /// + /// Represents the rotation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.Rotation. + /// + /// + public static readonly XName rotation = "rotation"; + + /// + /// Represents the rotationangle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.RotationAngle. + /// + /// + public static readonly XName rotationangle = "rotationangle"; + + /// + /// Represents the rotationAngle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.RotationAngle. + /// + /// + public static readonly XName rotationAngle_ = "rotationAngle"; + + /// + /// Represents the rotationcenter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.RotationCenter. + /// + /// + public static readonly XName rotationcenter = "rotationcenter"; + + /// + /// Represents the rotWithShape XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: BlipFill.RotateWithShape, GradientFill.RotateWithShape, OuterShadow.RotateWithShape, Reflection.RotateWithShape. + /// + /// + public static readonly XName rotWithShape = "rotWithShape"; + + /// + /// Represents the row XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebExtensionTaskpane.Row. + /// + /// + public static readonly XName row = "row"; + + /// + /// Represents the rowColShift XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.RowColumnShift. + /// + /// + public static readonly XName rowColShift = "rowColShift"; + + /// + /// Represents the rowCount XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotTableData.RowCount, TupleSet.RowCount. + /// + /// + public static readonly XName rowCount = "rowCount"; + + /// + /// Represents the rowDrillCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.RowDrillCount. + /// + /// + public static readonly XName rowDrillCount = "rowDrillCount"; + + /// + /// Represents the rowGrandTotals XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.RowGrandTotals. + /// + /// + public static readonly XName rowGrandTotals = "rowGrandTotals"; + + /// + /// Represents the rowHeaderCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.RowHeaderCaption. + /// + /// + public static readonly XName rowHeaderCaption = "rowHeaderCaption"; + + /// + /// Represents the rowHeight XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Slicer.RowHeight. + /// + /// + public static readonly XName rowHeight = "rowHeight"; + + /// + /// Represents the rowHidden XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentProperties.RowHidden. + /// + /// + public static readonly XName rowHidden = "rowHidden"; + + /// + /// Represents the rowNumbers XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: QueryTable.RowNumbers, QueryTableField.RowNumbers. + /// + /// + public static readonly XName rowNumbers = "rowNumbers"; + + /// + /// Represents the rowPageCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Location.RowPageCount. + /// + /// + public static readonly XName rowPageCount = "rowPageCount"; + + /// + /// Represents the rows XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DdeValues.Rows, Gallery.Rows, GalleryRegular.Rows, UnsizedGallery.Rows, Values.Rows. + /// + /// + public static readonly XName rows = "rows"; + + /// + /// Represents the rowSpan XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableCell.RowSpan. + /// + /// + public static readonly XName rowSpan = "rowSpan"; + + /// + /// Represents the rtl XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultParagraphProperties.RightToLeft, Level1ParagraphProperties.RightToLeft, Level2ParagraphProperties.RightToLeft, Level3ParagraphProperties.RightToLeft, Level4ParagraphProperties.RightToLeft, Level5ParagraphProperties.RightToLeft, Level6ParagraphProperties.RightToLeft, Level7ParagraphProperties.RightToLeft, Level8ParagraphProperties.RightToLeft, Level9ParagraphProperties.RightToLeft, ParagraphProperties.RightToLeft, Presentation.RightToLeft, TableProperties.RightToLeft. + /// + /// + public static readonly XName rtl = "rtl"; + + /// + /// Represents the rtlCol XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.RightToLeftColumns, TextBodyProperties.RightToLeftColumns. + /// + /// + public static readonly XName rtlCol = "rtlCol"; + + /// + /// Represents the rupBuild XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FileVersion.BuildVersion. + /// + /// + public static readonly XName rupBuild = "rupBuild"; + + /// + /// Represents the s XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: CalculationCell.InChildChain, Cell.StyleIndex, HslColor.Saturation, Item.HasStringVlue, NameIndex.IsASet, NewCell.StyleIndex, OldCell.StyleIndex, RevisionCellChange.StyleRevision, RevisionFormat.StyleAffected, Row.StyleIndex, TabularSlicerCacheItem.IsSelected, TopicReferences.SheetId. + /// + /// + public static readonly XName s = "s"; + + /// + /// Represents the saltData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.SaltData. + /// + /// + public static readonly XName saltData = "saltData"; + + /// + /// Represents the saltValue XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ChartSheetProtection.SaltValue, FileSharing.SaltValue, ModificationVerifier.SaltValue, ProtectedRange.SaltValue, SheetProtection.SaltValue. + /// + /// + public static readonly XName saltValue = "saltValue"; + + /// + /// Represents the sat XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Hsl.Saturation, HslColor.SatValue, Saturation.SaturationAmount. + /// + /// + public static readonly XName sat = "sat"; + + /// + /// Represents the saveData XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Connection.SaveData, PivotCacheDefinition.SaveData. + /// + /// + public static readonly XName saveData = "saveData"; + + /// + /// Represents the saveExternalLinkValues XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.SaveExternalLinkValues. + /// + /// + public static readonly XName saveExternalLinkValues = "saveExternalLinkValues"; + + /// + /// Represents the savePassword XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.SavePassword. + /// + /// + public static readonly XName savePassword = "savePassword"; + + /// + /// Represents the saveSubsetFonts XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.SaveSubsetFonts. + /// + /// + public static readonly XName saveSubsetFonts = "saveSubsetFonts"; + + /// + /// Represents the sb XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PhoneticRun.BaseTextStartIndex. + /// + /// + public static readonly XName sb = "sb"; + + /// + /// Represents the scale XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomChartsheetView.Scale, CustomSheetView.Scale, PageSetup.Scale. + /// + /// + public static readonly XName scale = "scale"; + + /// + /// Represents the scaled XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LinearGradientFill.Scaled. + /// + /// + public static readonly XName scaled = "scaled"; + + /// + /// Represents the scaleToFitPaper XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintingProperties.ScaleToFitPaper. + /// + /// + public static readonly XName scaleToFitPaper = "scaleToFitPaper"; + + /// + /// Represents the scaleWithDoc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: HeaderFooter.ScaleWithDoc. + /// + /// + public static readonly XName scaleWithDoc = "scaleWithDoc"; + + /// + /// Represents the scaling XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ArtisticGlass.Scaling, ArtisticPastelsSmooth.BrushSize, ArtisticTexturizer.Scaling. + /// + /// + public static readonly XName scaling = "scaling"; + + /// + /// Represents the scenarios XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.Scenarios. + /// + /// + public static readonly XName scenarios = "scenarios"; + + /// + /// Represents the SchemaID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Map.SchemaId. + /// + /// + public static readonly XName SchemaID = "SchemaID"; + + /// + /// Represents the SchemaRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Schema.SchemaReference. + /// + /// + public static readonly XName SchemaRef = "SchemaRef"; + + /// + /// Represents the scope XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormat.Scope. + /// + /// + public static readonly XName scope = "scope"; + + /// + /// Represents the screentip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Screentip, BackstageDropDown.Screentip, BackstageGroupButton.Screentip, BackstagePrimaryMenu.Screentip, BackstageRegularButton.Screentip, Button.Screentip, ButtonRegular.Screentip, CheckBox.Screentip, ComboBox.Screentip, ControlClone.Screentip, ControlCloneQat.Screentip, ControlCloneRegular.Screentip, DropDown.Screentip, DropDownRegular.Screentip, DynamicMenu.Screentip, DynamicMenuRegular.Screentip, EditBox.Screentip, Gallery.Screentip, GalleryRegular.Screentip, Group.Screentip, Hyperlink.Screentip, Item.Screentip, LabelControl.Screentip, Menu.Screentip, MenuRegular.Screentip, MenuWithTitle.Screentip, QuickAccessToolbarControlClone.Screentip, TextLabel.Screentip, ToggleButton.Screentip, ToggleButtonRegular.Screentip, UnsizedButton.Screentip, UnsizedControlClone.Screentip, UnsizedDynamicMenu.Screentip, UnsizedGallery.Screentip, UnsizedMenu.Screentip, UnsizedToggleButton.Screentip, VisibleButton.Screentip, VisibleToggleButton.Screentip. + /// + /// + public static readonly XName screentip = "screentip"; + + /// + /// Represents the script XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SupplementalFont.Script. + /// + /// + public static readonly XName script = "script"; + + /// + /// Represents the scrollPosition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Timeline.ScrollPosition. + /// + /// + public static readonly XName scrollPosition = "scrollPosition"; + + /// + /// Represents the sd XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Item.HideDetails. + /// + /// + public static readonly XName sd = "sd"; + + /// + /// Represents the second XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DateGroupItem.Second. + /// + /// + public static readonly XName second = "second"; + + /// + /// Represents the secondColumnMaxWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackstageTab.SecondColumnMaxWidth. + /// + /// + public static readonly XName secondColumnMaxWidth = "secondColumnMaxWidth"; + + /// + /// Represents the secondColumnMinWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackstageTab.SecondColumnMinWidth. + /// + /// + public static readonly XName secondColumnMinWidth = "secondColumnMinWidth"; + + /// + /// Represents the securityDescriptor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ProtectedRange.SecurityDescriptor. + /// + /// + public static readonly XName securityDescriptor = "securityDescriptor"; + + /// + /// Represents the seek XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SeekEventRecord.Seek. + /// + /// + public static readonly XName seek = "seek"; + + /// + /// Represents the sel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.Selected. + /// + /// + public static readonly XName sel = "sel"; + + /// + /// Represents the selected XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotAreaReference.Selected. + /// + /// + public static readonly XName selected = "selected"; + + /// + /// Represents the SelectedStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Sources.SelectedStyle. + /// + /// + public static readonly XName SelectedStyle = "SelectedStyle"; + + /// + /// Represents the selection XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.Selection. + /// + /// + public static readonly XName selection = "selection"; + + /// + /// Represents the selectionLevel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Timeline.SelectionLevel. + /// + /// + public static readonly XName selectionLevel = "selectionLevel"; + + /// + /// Represents the SelectionNamespaces XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MapInfo.SelectionNamespaces. + /// + /// + public static readonly XName SelectionNamespaces = "SelectionNamespaces"; + + /// + /// Represents the selectLockedCells XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.SelectLockedCells. + /// + /// + public static readonly XName selectLockedCells = "selectLockedCells"; + + /// + /// Represents the selectUnlockedCells XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.SelectUnlockedCells. + /// + /// + public static readonly XName selectUnlockedCells = "selectUnlockedCells"; + + /// + /// Represents the seltype XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.SelectionType. + /// + /// + public static readonly XName seltype = "seltype"; + + /// + /// Represents the semanticType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.SemanticType. + /// + /// + public static readonly XName semanticType = "semanticType"; + + /// + /// Represents the semicolon XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.Semicolon. + /// + /// + public static readonly XName semicolon = "semicolon"; + + /// + /// Represents the sendLocale XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.SendLocale. + /// + /// + public static readonly XName sendLocale = "sendLocale"; + + /// + /// Represents the seq XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LinkedTextBox.Sequence. + /// + /// + public static readonly XName seq = "seq"; + + /// + /// Represents the serialNo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: InkSource.SerialNo. + /// + /// + public static readonly XName serialNo = "serialNo"; + + /// + /// Represents the series XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChartFormat.Series. + /// + /// + public static readonly XName series = "series"; + + /// + /// Represents the seriesIdx XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Chart.SeriesIndex. + /// + /// + public static readonly XName seriesIdx = "seriesIdx"; + + /// + /// Represents the seriesName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataLabelVisibilities.SeriesName. + /// + /// + public static readonly XName seriesName = "seriesName"; + + /// + /// Represents the serverCommand XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DatabaseProperties.ServerCommand. + /// + /// + public static readonly XName serverCommand = "serverCommand"; + + /// + /// Represents the serverField XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CacheField.ServerField, PivotField.ServerField. + /// + /// + public static readonly XName serverField = "serverField"; + + /// + /// Represents the serverFill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.ServerFill. + /// + /// + public static readonly XName serverFill = "serverFill"; + + /// + /// Represents the serverFont XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.ServerFont. + /// + /// + public static readonly XName serverFont = "serverFont"; + + /// + /// Represents the serverFontColor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.ServerFontColor. + /// + /// + public static readonly XName serverFontColor = "serverFontColor"; + + /// + /// Represents the serverNumberFormat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapProperties.ServerNumberFormat. + /// + /// + public static readonly XName serverNumberFormat = "serverNumberFormat"; + + /// + /// Represents the serverSldId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SlideSyncProperties.ServerSlideId. + /// + /// + public static readonly XName serverSldId = "serverSldId"; + + /// + /// Represents the serverSldModifiedTime XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SlideSyncProperties.ServerSlideModifiedTime. + /// + /// + public static readonly XName serverSldModifiedTime = "serverSldModifiedTime"; + + /// + /// Represents the serverZoom XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.ServerZoom. + /// + /// + public static readonly XName serverZoom = "serverZoom"; + + /// + /// Represents the set XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.Set, CalculatedMember.Set. + /// + /// + public static readonly XName set = "set"; + + /// + /// Represents the setDefinition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TupleSet.SetDefinition. + /// + /// + public static readonly XName setDefinition = "setDefinition"; + + /// + /// Represents the shadeToTitle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BackgroundProperties.ShadeToTitle. + /// + /// + public static readonly XName shadeToTitle = "shadeToTitle"; + + /// + /// Represents the shadow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BottomBorder.Shadow, LeftBorder.Shadow, RightBorder.Shadow, TopBorder.Shadow. + /// + /// + public static readonly XName shadow = "shadow"; + + /// + /// Represents the shadowcolor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorMenu.ShadowColor. + /// + /// + public static readonly XName shadowcolor = "shadowcolor"; + + /// + /// Represents the shadowok XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.AllowShading. + /// + /// + public static readonly XName shadowok = "shadowok"; + + /// + /// Represents the shapeGeometry XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.ShapeGeometry. + /// + /// + public static readonly XName shapeGeometry = "shapeGeometry"; + + /// + /// Represents the shapeId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Comment.ShapeId, Control.ShapeId, OleObject.ShapeId. + /// + /// + public static readonly XName shapeId = "shapeId"; + + /// + /// Represents the ShapeID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.ShapeId. + /// + /// + public static readonly XName ShapeID_ = "ShapeID"; + + /// + /// Represents the shapeName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContextNode.ShapeName. + /// + /// + public static readonly XName shapeName = "shapeName"; + + /// + /// Represents the shapetype XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.ShapeType. + /// + /// + public static readonly XName shapetype = "shapetype"; + + /// + /// Represents the shared XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.Shared. + /// + /// + public static readonly XName shared = "shared"; + + /// + /// Represents the sheet XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DataReference.Sheet, RangeSet.Sheet, SheetProtection.Sheet, WorksheetSource.Sheet. + /// + /// + public static readonly XName sheet = "sheet"; + + /// + /// Represents the sheetId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: ExternalDefinedName.SheetId, ExternalSheetData.SheetId, RevisionAutoFormat.SheetId, RevisionComment.SheetId, RevisionConflict.SheetId, RevisionFormat.SheetId, RevisionInsertSheet.SheetId, RevisionMove.SheetId, RevisionQueryTable.SheetId, RevisionSheetName.SheetId, Sheet.SheetId. + /// + /// + public static readonly XName sheetId = "sheetId"; + + /// + /// Represents the sheetPosition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionInsertSheet.SheetPosition. + /// + /// + public static readonly XName sheetPosition = "sheetPosition"; + + /// + /// Represents the shininess XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.Shininess. + /// + /// + public static readonly XName shininess = "shininess"; + + /// + /// Represents the shortcutKey XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DefinedName.ShortcutKey, RevisionDefinedName.ShortcutKey. + /// + /// + public static readonly XName shortcutKey = "shortcutKey"; + + /// + /// Represents the show XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Scenarios.Show, Slide.Show. + /// + /// + public static readonly XName show = "show"; + + /// + /// Represents the showAll XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.ShowAll. + /// + /// + public static readonly XName showAll = "showAll"; + + /// + /// Represents the showAnimation XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ShowProperties.ShowAnimation, WebProperties.ShowAnimation. + /// + /// + public static readonly XName showAnimation = "showAnimation"; + + /// + /// Represents the showAsCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MemberProperty.ShowAsCaption. + /// + /// + public static readonly XName showAsCaption = "showAsCaption"; + + /// + /// Represents the showAsIcon XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Control.ShowAsIcon, OleObject.ShowAsIcon. + /// + /// + public static readonly XName showAsIcon = "showAsIcon"; + + /// + /// Represents the showAutoFilter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.ShowAutoFilter. + /// + /// + public static readonly XName showAutoFilter = "showAutoFilter"; + + /// + /// Represents the showBorderUnselectedTables XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.ShowBorderUnselectedTables. + /// + /// + public static readonly XName showBorderUnselectedTables = "showBorderUnselectedTables"; + + /// + /// Represents the showButton XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FilterColumn.ShowButton. + /// + /// + public static readonly XName showButton = "showButton"; + + /// + /// Represents the showCalcMbrs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowCalculatedMembers. + /// + /// + public static readonly XName showCalcMbrs = "showCalcMbrs"; + + /// + /// Represents the showCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Slicer.ShowCaption. + /// + /// + public static readonly XName showCaption = "showCaption"; + + /// + /// Represents the showCaptions XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PhotoAlbum.ShowCaptions. + /// + /// + public static readonly XName showCaptions = "showCaptions"; + + /// + /// Represents the showCell XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MemberProperty.ShowCell. + /// + /// + public static readonly XName showCell = "showCell"; + + /// + /// Represents the showColHeaders XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableStyle.ShowColumnHeaders. + /// + /// + public static readonly XName showColHeaders = "showColHeaders"; + + /// + /// Represents the showColStripes XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableStyle.ShowColumnStripes. + /// + /// + public static readonly XName showColStripes = "showColStripes"; + + /// + /// Represents the showColumnStripes XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableStyleInfo.ShowColumnStripes. + /// + /// + public static readonly XName showColumnStripes = "showColumnStripes"; + + /// + /// Represents the showComments XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ShowComments, ViewProperties.ShowComments. + /// + /// + public static readonly XName showComments = "showComments"; + + /// + /// Represents the showDataAs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataField.ShowDataAs. + /// + /// + public static readonly XName showDataAs = "showDataAs"; + + /// + /// Represents the showDataDropDown XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowDataDropDown. + /// + /// + public static readonly XName showDataDropDown = "showDataDropDown"; + + /// + /// Represents the showDataTips XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowDataTips. + /// + /// + public static readonly XName showDataTips = "showDataTips"; + + /// + /// Represents the showDrill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowDrill. + /// + /// + public static readonly XName showDrill = "showDrill"; + + /// + /// Represents the showDropDown XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.ShowDropDown. + /// + /// + public static readonly XName showDropDown = "showDropDown"; + + /// + /// Represents the showDropDowns XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.ShowDropDowns. + /// + /// + public static readonly XName showDropDowns = "showDropDowns"; + + /// + /// Represents the showDropZones XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowDropZones. + /// + /// + public static readonly XName showDropZones = "showDropZones"; + + /// + /// Represents the showEmptyCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowEmptyColumn. + /// + /// + public static readonly XName showEmptyCol = "showEmptyCol"; + + /// + /// Represents the showEmptyRow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowEmptyRow. + /// + /// + public static readonly XName showEmptyRow = "showEmptyRow"; + + /// + /// Represents the showError XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowError. + /// + /// + public static readonly XName showError = "showError"; + + /// + /// Represents the showErrorMessage XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.ShowErrorMessage. + /// + /// + public static readonly XName showErrorMessage = "showErrorMessage"; + + /// + /// Represents the showFirstColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableStyleInfo.ShowFirstColumn. + /// + /// + public static readonly XName showFirstColumn = "showFirstColumn"; + + /// + /// Represents the showFormatting XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SorterViewProperties.ShowFormatting. + /// + /// + public static readonly XName showFormatting = "showFormatting"; + + /// + /// Represents the showFormulaBar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ShowFormulaBar. + /// + /// + public static readonly XName showFormulaBar = "showFormulaBar"; + + /// + /// Represents the showFormulas XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomSheetView.ShowFormulas, SheetView.ShowFormulas. + /// + /// + public static readonly XName showFormulas = "showFormulas"; + + /// + /// Represents the showGridLines XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomSheetView.ShowGridLines, SheetView.ShowGridLines. + /// + /// + public static readonly XName showGridLines = "showGridLines"; + + /// + /// Represents the showGuides XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonSlideViewProperties.ShowGuides. + /// + /// + public static readonly XName showGuides = "showGuides"; + + /// + /// Represents the showHeader XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotSelection.ShowHeader, Timeline.ShowHeader. + /// + /// + public static readonly XName showHeader = "showHeader"; + + /// + /// Represents the showHeaders XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowHeaders. + /// + /// + public static readonly XName showHeaders = "showHeaders"; + + /// + /// Represents the showHorizontalScroll XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ShowHorizontalScroll, WorkbookView.ShowHorizontalScroll. + /// + /// + public static readonly XName showHorizontalScroll = "showHorizontalScroll"; + + /// + /// Represents the showHorizontalScrollbar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Timeline.ShowHorizontalScrollbar. + /// + /// + public static readonly XName showHorizontalScrollbar = "showHorizontalScrollbar"; + + /// + /// Represents the showImage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Button.ShowImage, ButtonRegular.ShowImage, ComboBox.ShowImage, ControlClone.ShowImage, ControlCloneQat.ShowImage, ControlCloneRegular.ShowImage, DropDown.ShowImage, DropDownRegular.ShowImage, DynamicMenu.ShowImage, DynamicMenuRegular.ShowImage, EditBox.ShowImage, Gallery.ShowImage, GalleryRegular.ShowImage, Menu.ShowImage, MenuRegular.ShowImage, MenuWithTitle.ShowImage, QuickAccessToolbarControlClone.ShowImage, ToggleButton.ShowImage, ToggleButtonRegular.ShowImage, UnsizedButton.ShowImage, UnsizedControlClone.ShowImage, UnsizedDynamicMenu.ShowImage, UnsizedGallery.ShowImage, UnsizedMenu.ShowImage, UnsizedToggleButton.ShowImage, VisibleButton.ShowImage, VisibleToggleButton.ShowImage. + /// + /// + public static readonly XName showImage = "showImage"; + + /// + /// Represents the ShowImportExportValidationErrors XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Map.ShowImportExportErrors. + /// + /// + public static readonly XName ShowImportExportValidationErrors = "ShowImportExportValidationErrors"; + + /// + /// Represents the showInFieldList XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotHierarchy.ShowInFieldList. + /// + /// + public static readonly XName showInFieldList = "showInFieldList"; + + /// + /// Represents the showInkAnnotation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.ShowInkAnnotation. + /// + /// + public static readonly XName showInkAnnotation = "showInkAnnotation"; + + /// + /// Represents the showInputMessage XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataValidation.ShowInputMessage. + /// + /// + public static readonly XName showInputMessage = "showInputMessage"; + + /// + /// Represents the showInRibbon XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Gallery.ShowInRibbon, GalleryRegular.ShowInRibbon. + /// + /// + public static readonly XName showInRibbon = "showInRibbon"; + + /// + /// Represents the showItemImage XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: ComboBox.ShowItemImage, DropDown.ShowItemImage, DropDownRegular.ShowItemImage, Gallery.ShowItemImage, GalleryRegular.ShowItemImage, UnsizedGallery.ShowItemImage. + /// + /// + public static readonly XName showItemImage = "showItemImage"; + + /// + /// Represents the showItemLabel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DropDown.ShowItemLabel, DropDownRegular.ShowItemLabel, Gallery.ShowItemLabel, GalleryRegular.ShowItemLabel, UnsizedGallery.ShowItemLabel. + /// + /// + public static readonly XName showItemLabel = "showItemLabel"; + + /// + /// Represents the showItems XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowItems. + /// + /// + public static readonly XName showItems = "showItems"; + + /// + /// Represents the showLabel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageGroup.ShowLabel, Button.ShowLabel, ButtonRegular.ShowLabel, ComboBox.ShowLabel, ControlClone.ShowLabel, ControlCloneQat.ShowLabel, ControlCloneRegular.ShowLabel, DropDown.ShowLabel, DropDownRegular.ShowLabel, DynamicMenu.ShowLabel, DynamicMenuRegular.ShowLabel, EditBox.ShowLabel, Gallery.ShowLabel, GalleryRegular.ShowLabel, LabelControl.ShowLabel, Menu.ShowLabel, MenuRegular.ShowLabel, MenuWithTitle.ShowLabel, QuickAccessToolbarControlClone.ShowLabel, SplitButton.ShowLabel, SplitButtonRegular.ShowLabel, SplitButtonWithTitle.ShowLabel, TaskFormGroup.ShowLabel, TaskGroup.ShowLabel, TextLabel.ShowLabel, ToggleButton.ShowLabel, ToggleButtonRegular.ShowLabel, UnsizedButton.ShowLabel, UnsizedControlClone.ShowLabel, UnsizedDynamicMenu.ShowLabel, UnsizedGallery.ShowLabel, UnsizedMenu.ShowLabel, UnsizedSplitButton.ShowLabel, UnsizedToggleButton.ShowLabel, VisibleButton.ShowLabel, VisibleToggleButton.ShowLabel. + /// + /// + public static readonly XName showLabel = "showLabel"; + + /// + /// Represents the showLastColumn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotTableStyle.ShowLastColumn, TableStyleInfo.ShowLastColumn. + /// + /// + public static readonly XName showLastColumn = "showLastColumn"; + + /// + /// Represents the showMasterPhAnim XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: NotesSlide.ShowMasterPlaceholderAnimations, Slide.ShowMasterPlaceholderAnimations, SlideLayout.ShowMasterPlaceholderAnimations. + /// + /// + public static readonly XName showMasterPhAnim = "showMasterPhAnim"; + + /// + /// Represents the showMasterSp XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: NotesSlide.ShowMasterShapes, Slide.ShowMasterShapes, SlideLayout.ShowMasterShapes. + /// + /// + public static readonly XName showMasterSp = "showMasterSp"; + + /// + /// Represents the showMemberPropertyTips XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowMemberPropertyTips. + /// + /// + public static readonly XName showMemberPropertyTips = "showMemberPropertyTips"; + + /// + /// Represents the showMissing XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowMissing, TabularSlicerCache.ShowMissing. + /// + /// + public static readonly XName showMissing = "showMissing"; + + /// + /// Represents the showMultipleLabel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.ShowMultipleLabel. + /// + /// + public static readonly XName showMultipleLabel = "showMultipleLabel"; + + /// + /// Represents the showNarration XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShowProperties.ShowNarration. + /// + /// + public static readonly XName showNarration = "showNarration"; + + /// + /// Represents the showObjects XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ShowObjects, WorkbookProperties.ShowObjects. + /// + /// + public static readonly XName showObjects = "showObjects"; + + /// + /// Represents the showOutlineIcons XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NormalViewProperties.ShowOutlineIcons. + /// + /// + public static readonly XName showOutlineIcons = "showOutlineIcons"; + + /// + /// Represents the showOutlineSymbols XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: OutlineProperties.ShowOutlineSymbols, SheetView.ShowOutlineSymbols. + /// + /// + public static readonly XName showOutlineSymbols = "showOutlineSymbols"; + + /// + /// Represents the showPageBreaks XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.ShowPageBreaks. + /// + /// + public static readonly XName showPageBreaks = "showPageBreaks"; + + /// + /// Represents the showPivotChartFilter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.ShowPivotChartFilter. + /// + /// + public static readonly XName showPivotChartFilter = "showPivotChartFilter"; + + /// + /// Represents the showPropAsCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.ShowPropAsCaption. + /// + /// + public static readonly XName showPropAsCaption = "showPropAsCaption"; + + /// + /// Represents the showPropCell XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.ShowPropCell. + /// + /// + public static readonly XName showPropCell = "showPropCell"; + + /// + /// Represents the showPropTip XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.ShowPropertyTooltip. + /// + /// + public static readonly XName showPropTip = "showPropTip"; + + /// + /// Represents the showRowCol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.ShowRowColumn. + /// + /// + public static readonly XName showRowCol = "showRowCol"; + + /// + /// Represents the showRowColHeaders XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetView.ShowRowColHeaders. + /// + /// + public static readonly XName showRowColHeaders = "showRowColHeaders"; + + /// + /// Represents the showRowHeaders XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableStyle.ShowRowHeaders. + /// + /// + public static readonly XName showRowHeaders = "showRowHeaders"; + + /// + /// Represents the showRowStripes XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotTableStyle.ShowRowStripes, TableStyleInfo.ShowRowStripes. + /// + /// + public static readonly XName showRowStripes = "showRowStripes"; + + /// + /// Represents the showRuler XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomSheetView.ShowRuler, SheetView.ShowRuler. + /// + /// + public static readonly XName showRuler = "showRuler"; + + /// + /// Represents the showScrollbar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BrowseSlideMode.ShowScrollbar. + /// + /// + public static readonly XName showScrollbar = "showScrollbar"; + + /// + /// Represents the showSelectionLabel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Timeline.ShowSelectionLabel. + /// + /// + public static readonly XName showSelectionLabel = "showSelectionLabel"; + + /// + /// Represents the showSheetTabs XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ShowSheetTabs, WorkbookView.ShowSheetTabs. + /// + /// + public static readonly XName showSheetTabs = "showSheetTabs"; + + /// + /// Represents the showsigndate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.ShowSignDate. + /// + /// + public static readonly XName showsigndate = "showsigndate"; + + /// + /// Represents the showSignDate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.ShowSignDate. + /// + /// + public static readonly XName showSignDate_ = "showSignDate"; + + /// + /// Represents the showSpeakerNotes XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: HtmlPublishProperties.ShowSpeakerNotes. + /// + /// + public static readonly XName showSpeakerNotes = "showSpeakerNotes"; + + /// + /// Represents the showSpecialPlsOnTitleSld XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.ShowSpecialPlaceholderOnTitleSlide. + /// + /// + public static readonly XName showSpecialPlsOnTitleSld = "showSpecialPlsOnTitleSld"; + + /// + /// Represents the showStatus XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: BrowseMode.ShowStatus. + /// + /// + public static readonly XName showStatus = "showStatus"; + + /// + /// Represents the showStatusbar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ShowStatusbar. + /// + /// + public static readonly XName showStatusbar = "showStatusbar"; + + /// + /// Represents the showTimeLevel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Timeline.ShowTimeLevel. + /// + /// + public static readonly XName showTimeLevel = "showTimeLevel"; + + /// + /// Represents the showTip XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MemberProperty.ShowTip. + /// + /// + public static readonly XName showTip = "showTip"; + + /// + /// Represents the showValue XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DataBar.ShowValue, IconSet.ShowValue. + /// + /// + public static readonly XName showValue = "showValue"; + + /// + /// Represents the showVerticalScroll XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.ShowVerticalScroll, WorkbookView.ShowVerticalScroll. + /// + /// + public static readonly XName showVerticalScroll = "showVerticalScroll"; + + /// + /// Represents the showWhenStopped XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonMediaNode.ShowWhenStopped. + /// + /// + public static readonly XName showWhenStopped = "showWhenStopped"; + + /// + /// Represents the showWhiteSpace XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetView.ShowWhiteSpace. + /// + /// + public static readonly XName showWhiteSpace = "showWhiteSpace"; + + /// + /// Represents the showZeros XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetView.ShowZeros. + /// + /// + public static readonly XName showZeros = "showZeros"; + + /// + /// Represents the shrinkToFit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Alignment.ShrinkToFit. + /// + /// + public static readonly XName shrinkToFit = "shrinkToFit"; + + /// + /// Represents the si XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CellFormula.SharedIndex, MdxTuple.FormattingStringIndex. + /// + /// + public static readonly XName si = "si"; + + /// + /// Represents the sibTransId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.SiblingTransitionId. + /// + /// + public static readonly XName sibTransId = "sibTransId"; + + /// + /// Represents the sId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: RevisionCellChange.SheetId, RevisionRowColumn.SheetId, Undo.SheetId. + /// + /// + public static readonly XName sId = "sId"; + + /// + /// Represents the side XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextWrap.Side. + /// + /// + public static readonly XName side = "side"; + + /// + /// Represents the signinginstructions XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SigningInstructions. + /// + /// + public static readonly XName signinginstructions = "signinginstructions"; + + /// + /// Represents the signingInstructions XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SigningInstructions. + /// + /// + public static readonly XName signingInstructions_ = "signingInstructions"; + + /// + /// Represents the signinginstructionsset XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SigningInstructionsSet. + /// + /// + public static readonly XName signinginstructionsset = "signinginstructionsset"; + + /// + /// Represents the signingInstructionsSet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SigningInstructionsSet. + /// + /// + public static readonly XName signingInstructionsSet_ = "signingInstructionsSet"; + + /// + /// Represents the sigprovurl XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SignatureProviderUrl. + /// + /// + public static readonly XName sigprovurl = "sigprovurl"; + + /// + /// Represents the sigProvUrl XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SignatureProviderUrl. + /// + /// + public static readonly XName sigProvUrl_ = "sigProvUrl"; + + /// + /// Represents the simplePos XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Anchor.SimplePos. + /// + /// + public static readonly XName simplePos = "simplePos"; + + /// + /// Represents the singleRangeFilterState XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelineState.SingleRangeFilterState. + /// + /// + public static readonly XName singleRangeFilterState = "singleRangeFilterState"; + + /// + /// Represents the singleSignOnId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.SingleSignOnId. + /// + /// + public static readonly XName singleSignOnId = "singleSignOnId"; + + /// + /// Represents the size XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: ActiveArea.Size, ArtisticMarker.Size, Button.Size, ControlClone.Size, ControlCloneQat.Size, DynamicMenu.Size, Fill.Size, Gallery.Size, MarkerLayoutProperties.Size, Menu.Size, QuickAccessToolbarControlClone.Size, SplitButton.Size, TableStyleElement.Size, ToggleButton.Size, VTClipboardData.Size, VTVector.Size. + /// + /// + public static readonly XName size = "size"; + + /// + /// Represents the sizeString XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageComboBox.SizeString, BackstageDropDown.SizeString, BackstageEditBox.SizeString, ComboBox.SizeString, DropDown.SizeString, DropDownRegular.SizeString, EditBox.SizeString, Gallery.SizeString, GalleryRegular.SizeString, UnsizedGallery.SizeString. + /// + /// + public static readonly XName sizeString = "sizeString"; + + /// + /// Represents the sizeWithCells XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ObjectAnchor.SizeWithCells. + /// + /// + public static readonly XName sizeWithCells = "sizeWithCells"; + + /// + /// Represents the skewamt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.SkewAmount. + /// + /// + public static readonly XName skewamt = "skewamt"; + + /// + /// Represents the skewangle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.SkewAngle. + /// + /// + public static readonly XName skewangle = "skewangle"; + + /// + /// Represents the sldNum XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: HeaderFooter.SlideNumber. + /// + /// + public static readonly XName sldNum = "sldNum"; + + /// + /// Represents the slicerData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.SlicerData. + /// + /// + public static readonly XName slicerData = "slicerData"; + + /// + /// Represents the slideIdLst XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SectionOld.SlideIdList. + /// + /// + public static readonly XName slideIdLst = "slideIdLst"; + + /// + /// Represents the smoothness XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ArtisticGlowEdges.Smoothness, ArtisticPlasticWrap.Smoothness. + /// + /// + public static readonly XName smoothness = "smoothness"; + + /// + /// Represents the smtClean XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.SmartTagClean, EndParagraphRunProperties.SmartTagClean, RunProperties.SmartTagClean, TextCharacterPropertiesType.SmartTagClean. + /// + /// + public static readonly XName smtClean = "smtClean"; + + /// + /// Represents the smtId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.SmartTagId, EndParagraphRunProperties.SmartTagId, RunProperties.SmartTagId, TextCharacterPropertiesType.SmartTagId. + /// + /// + public static readonly XName smtId = "smtId"; + + /// + /// Represents the snapToGrid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonSlideViewProperties.SnapToGrid. + /// + /// + public static readonly XName snapToGrid = "snapToGrid"; + + /// + /// Represents the snapToObjects XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonSlideViewProperties.SnapToObjects. + /// + /// + public static readonly XName snapToObjects = "snapToObjects"; + + /// + /// Represents the snapVertSplitter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NormalViewProperties.SnapVerticalSplitter. + /// + /// + public static readonly XName snapVertSplitter = "snapVertSplitter"; + + /// + /// Represents the solveOrder XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CalculatedMember.SolveOrder. + /// + /// + public static readonly XName solveOrder = "solveOrder"; + + /// + /// Represents the sort XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProtection.Sort. + /// + /// + public static readonly XName sort = "sort"; + + /// + /// Represents the sortBy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: SortCondition.SortBy. + /// + /// + public static readonly XName sortBy = "sortBy"; + + /// + /// Represents the sortMethod XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SortState.SortMethod. + /// + /// + public static readonly XName sortMethod = "sortMethod"; + + /// + /// Represents the sortOrder XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: OlapSlicerCacheLevelData.SortOrder, TableSlicerCache.SortOrder, TabularSlicerCache.SortOrder. + /// + /// + public static readonly XName sortOrder = "sortOrder"; + + /// + /// Represents the sortType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.SortType, TupleSet.SortType. + /// + /// + public static readonly XName sortType = "sortType"; + + /// + /// Represents the source XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Bind.Source, RevisionMove.Source. + /// + /// + public static readonly XName source = "source"; + + /// + /// Represents the sourceCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OlapSlicerCacheLevelData.SourceCaption. + /// + /// + public static readonly XName sourceCaption = "sourceCaption"; + + /// + /// Represents the sourceData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.SourceData. + /// + /// + public static readonly XName sourceData = "sourceData"; + + /// + /// Represents the sourceDataName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotTableUISettings.SourceDataName, QueryTable.SourceDataName. + /// + /// + public static readonly XName sourceDataName = "sourceDataName"; + + /// + /// Represents the sourceField XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataField.SourceField. + /// + /// + public static readonly XName sourceField = "sourceField"; + + /// + /// Represents the sourceFile XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Connection.SourceFile, TextProperties.SourceFile. + /// + /// + public static readonly XName sourceFile = "sourceFile"; + + /// + /// Represents the sourceLinked XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: NumberFormat.SourceLinked, NumberingFormat.SourceLinked. + /// + /// + public static readonly XName sourceLinked = "sourceLinked"; + + /// + /// Represents the sourceName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: RangeProperties.SourceName, SlicerCacheDefinition.SourceName, TimelineCacheDefinition.SourceName. + /// + /// + public static readonly XName sourceName = "sourceName"; + + /// + /// Represents the sourceObject XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: WebPublishItem.SourceObject, WebPublishObject.SourceObject. + /// + /// + public static readonly XName sourceObject = "sourceObject"; + + /// + /// Represents the sourceRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebPublishItem.SourceRef. + /// + /// + public static readonly XName sourceRef = "sourceRef"; + + /// + /// Represents the sourceSheetId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionMove.SourceSheetId. + /// + /// + public static readonly XName sourceSheetId = "sourceSheetId"; + + /// + /// Represents the sourceType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebPublishItem.SourceType. + /// + /// + public static readonly XName sourceType = "sourceType"; + + /// + /// Represents the sp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DashStop.SpaceLength. + /// + /// + public static readonly XName sp = "sp"; + + /// + /// Represents the space XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.Space. + /// + /// + public static readonly XName space = "space"; + + /// + /// Represents the spans XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Row.Spans. + /// + /// + public static readonly XName spans = "spans"; + + /// + /// Represents the spc XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.Spacing, EndParagraphRunProperties.Spacing, RunProperties.Spacing, TextCharacterPropertiesType.Spacing. + /// + /// + public static readonly XName spc = "spc"; + + /// + /// Represents the spcCol XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.ColumnSpacing, TextBodyProperties.ColumnSpacing. + /// + /// + public static readonly XName spcCol = "spcCol"; + + /// + /// Represents the spcFirstLastPara XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.UseParagraphSpacing, TextBodyProperties.UseParagraphSpacing. + /// + /// + public static readonly XName spcFirstLastPara = "spcFirstLastPara"; + + /// + /// Represents the spd XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CommonTimeNode.Speed, Transition.Speed. + /// + /// + public static readonly XName spd = "spd"; + + /// + /// Represents the specificationRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: InkSource.SpecificationRef. + /// + /// + public static readonly XName specificationRef = "specificationRef"; + + /// + /// Represents the specularity XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.Specularity. + /// + /// + public static readonly XName specularity = "specularity"; + + /// + /// Represents the spid XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BookmarkTarget.ShapeId, BuildDiagram.ShapeId, BuildGraphics.ShapeId, BuildOleChart.ShapeId, BuildParagraph.ShapeId, CameraTool.ShapeId, CompatExtension.ShapeId, Control.ShapeId, InkTarget.ShapeId, LegacyDrawing.ShapeId, OleObject.ShapeId, ShapeTarget.ShapeId, SubShape.ShapeId. + /// + /// + public static readonly XName spid = "spid"; + + /// + /// Represents the spidmax XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeDefaults.MaxShapeId. + /// + /// + public static readonly XName spidmax = "spidmax"; + + /// + /// Represents the spinCount XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ChartSheetProtection.SpinCount, FileSharing.SpinCount, ModificationVerifier.SpinCount, ProtectedRange.SpinCount, SheetProtection.SpinCount. + /// + /// + public static readonly XName spinCount = "spinCount"; + + /// + /// Represents the spinValue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModificationVerifier.SpinValue. + /// + /// + public static readonly XName spinValue = "spinValue"; + + /// + /// Represents the splitAll XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.SplitAll. + /// + /// + public static readonly XName splitAll = "splitAll"; + + /// + /// Represents the splitFirst XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MetadataType.SplitFirst. + /// + /// + public static readonly XName splitFirst = "splitFirst"; + + /// + /// Represents the spokes XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: WheelReverseTransition.Spokes, WheelTransition.Spokes. + /// + /// + public static readonly XName spokes = "spokes"; + + /// + /// Represents the sqlType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CacheField.SqlType, Parameter.SqlType. + /// + /// + public static readonly XName sqlType = "sqlType"; + + /// + /// Represents the sqref XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: ConditionalFormatting.SequenceOfReferences, DataValidation.SequenceOfReferences, IgnoredError.SequenceOfReferences, ProtectedRange.SequenceOfReferences, RevisionFormat.SequenceOfReferences, Scenarios.SequenceOfReferences, Selection.SequenceOfReferences. + /// + /// + public static readonly XName sqref = "sqref"; + + /// + /// Represents the src XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.Source, ColumnStroke.Source, Fill.Source, ImageFile.Source, LeftStroke.Source, RightStroke.Source, Stroke.Source, TopStroke.Source. + /// + /// + public static readonly XName src = "src"; + + /// + /// Represents the srcId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.SourceId. + /// + /// + public static readonly XName srcId = "srcId"; + + /// + /// Represents the srcOrd XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.SourcePosition. + /// + /// + public static readonly XName srcOrd = "srcOrd"; + + /// + /// Represents the st XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: CharRange.Start, ConnectableReferences.St, DiagramChooseIf.Start, ErrorItem.Strikethrough, ForEach.Start, MdxTuple.Strikethrough, MediaTrim.Start, MissingItem.Strikethrough, NumberItem.Strikethrough, ParagraphIndexRange.Start, PivotValueCellExtra.Strikethrough, PresentationOf.Start, SlideRange.Start, StringItem.Strikethrough. + /// + /// + public static readonly XName st = "st"; + + /// + /// Represents the stA XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.StartOpacity. + /// + /// + public static readonly XName stA = "stA"; + + /// + /// Represents the stAng XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArcTo.StartAngle. + /// + /// + public static readonly XName stAng = "stAng"; + + /// + /// Represents the start XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: PivotSelection.Start, Proxy.Start, RevisionFormat.Start. + /// + /// + public static readonly XName start = "start"; + + /// + /// Represents the startangle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Arc.StartAngle. + /// + /// + public static readonly XName startangle = "startangle"; + + /// + /// Represents the startarrow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.StartArrow, ColumnStroke.StartArrow, LeftStroke.StartArrow, RightStroke.StartArrow, Stroke.StartArrow, TopStroke.StartArrow. + /// + /// + public static readonly XName startarrow = "startarrow"; + + /// + /// Represents the startarrowlength XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.StartArrowLength, ColumnStroke.StartArrowLength, LeftStroke.StartArrowLength, RightStroke.StartArrowLength, Stroke.StartArrowLength, TopStroke.StartArrowLength. + /// + /// + public static readonly XName startarrowlength = "startarrowlength"; + + /// + /// Represents the startarrowwidth XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.StartArrowWidth, ColumnStroke.StartArrowWidth, LeftStroke.StartArrowWidth, RightStroke.StartArrowWidth, Stroke.StartArrowWidth, TopStroke.StartArrowWidth. + /// + /// + public static readonly XName startarrowwidth = "startarrowwidth"; + + /// + /// Represents the startAt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AutoNumberedBullet.StartAt. + /// + /// + public static readonly XName startAt = "startAt"; + + /// + /// Represents the startDate XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BoundsTimelineRange.StartDate, RangeProperties.StartDate, SelectionTimelineRange.StartDate. + /// + /// + public static readonly XName startDate = "startDate"; + + /// + /// Represents the startFromScratch XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Ribbon.StartFromScratch. + /// + /// + public static readonly XName startFromScratch = "startFromScratch"; + + /// + /// Represents the startItem XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: OlapSlicerCacheRange.StartItem, Slicer.StartItem. + /// + /// + public static readonly XName startItem = "startItem"; + + /// + /// Represents the startLabels XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataConsolidate.StartLabels. + /// + /// + public static readonly XName startLabels = "startLabels"; + + /// + /// Represents the startNum XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RangeProperties.StartNumber. + /// + /// + public static readonly XName startNum = "startNum"; + + /// + /// Represents the state XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CustomChartsheetView.State, CustomSheetView.State, Pane.State, Sheet.State. + /// + /// + public static readonly XName state = "state"; + + /// + /// Represents the status XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Kpi.Status. + /// + /// + public static readonly XName status = "status"; + + /// + /// Represents the statusBar XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DefinedName.StatusBar, RevisionDefinedName.StatusBar. + /// + /// + public static readonly XName statusBar = "statusBar"; + + /// + /// Represents the stdDev XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.StandardDeviation, ConditionalFormattingRule.StdDev. + /// + /// + public static readonly XName stdDev = "stdDev"; + + /// + /// Represents the stdDevPSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.ApplyStandardDeviationPInSubtotal, PivotField.ApplyStandardDeviationPInSubtotal. + /// + /// + public static readonly XName stdDevPSubtotal = "stdDevPSubtotal"; + + /// + /// Represents the stdDevSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.ApplyStandardDeviationInSubtotal, PivotField.ApplyStandardDeviationInSubtotal. + /// + /// + public static readonly XName stdDevSubtotal = "stdDevSubtotal"; + + /// + /// Represents the step XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: DiagramChooseIf.Step, ForEach.Step, PresentationOf.Step. + /// + /// + public static readonly XName step = "step"; + + /// + /// Represents the stopIfTrue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.StopIfTrue. + /// + /// + public static readonly XName stopIfTrue = "stopIfTrue"; + + /// + /// Represents the store XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebExtensionStoreReference.Store. + /// + /// + public static readonly XName store = "store"; + + /// + /// Represents the storeType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebExtensionStoreReference.StoreType. + /// + /// + public static readonly XName storeType = "storeType"; + + /// + /// Represents the stPos XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.StartPosition. + /// + /// + public static readonly XName stPos = "stPos"; + + /// + /// Represents the strictFirstAndLastChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Presentation.StrictFirstAndLastChars. + /// + /// + public static readonly XName strictFirstAndLastChars = "strictFirstAndLastChars"; + + /// + /// Represents the strike XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.Strike, EndParagraphRunProperties.Strike, RunProperties.Strike, TextCharacterPropertiesType.Strike. + /// + /// + public static readonly XName strike = "strike"; + + /// + /// Represents the string XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Parameter.String, TextPath.String. + /// + /// + public static readonly XName @string = "string"; + + /// + /// Represents the stringValue1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotFilter.StringValue1. + /// + /// + public static readonly XName stringValue1 = "stringValue1"; + + /// + /// Represents the stringValue2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotFilter.StringValue2. + /// + /// + public static readonly XName stringValue2 = "stringValue2"; + + /// + /// Represents the stroke XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Path.Stroke, ShapeDefaults.IsStroke. + /// + /// + public static readonly XName stroke = "stroke"; + + /// + /// Represents the strokecolor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.StrokeColor, ColorMenu.StrokeColor, Curve.StrokeColor, ImageFile.StrokeColor, Line.StrokeColor, Oval.StrokeColor, PolyLine.StrokeColor, Rectangle.StrokeColor, RoundRectangle.StrokeColor, Shape.StrokeColor, ShapeDefaults.StrokeColor, Shapetype.StrokeColor. + /// + /// + public static readonly XName strokecolor = "strokecolor"; + + /// + /// Represents the stroked XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Stroked, Curve.Stroked, ImageFile.Stroked, Line.Stroked, Oval.Stroked, PolyLine.Stroked, Rectangle.Stroked, RoundRectangle.Stroked, Shape.Stroked, Shapetype.Stroked. + /// + /// + public static readonly XName stroked = "stroked"; + + /// + /// Represents the strokeok XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.AllowStroke. + /// + /// + public static readonly XName strokeok = "strokeok"; + + /// + /// Represents the strokeweight XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.StrokeWeight, Curve.StrokeWeight, ImageFile.StrokeWeight, Line.StrokeWeight, Oval.StrokeWeight, PolyLine.StrokeWeight, Rectangle.StrokeWeight, RoundRectangle.StrokeWeight, Shape.StrokeWeight, Shapetype.StrokeWeight. + /// + /// + public static readonly XName strokeweight = "strokeweight"; + + /// + /// Represents the style XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Style, BackstageGroup.Style, BackstageGroupButton.Style, BottomBorder.Style, Column.Style, Curve.Style, DiagonalBorder.Style, EndBorder.Style, Group.Style, HorizontalBorder.Style, ImageFile.Style, LeftBorder.Style, Line.Style, Oval.Style, PolyLine.Style, Rectangle.Style, RightBorder.Style, RoundRectangle.Style, Shape.Style, ShapeDefaults.Style, Shapetype.Style, Slicer.Style, StartBorder.Style, TextBox.Style, TextPath.Style, Timeline.Style, TopBorder.Style, VerticalBorder.Style. + /// + /// + public static readonly XName style = "style"; + + /// + /// Represents the styleId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TableStyle.StyleId, TableStyleEntry.StyleId. + /// + /// + public static readonly XName styleId = "styleId"; + + /// + /// Represents the styleLbl XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LayoutNode.StyleLabel. + /// + /// + public static readonly XName styleLbl = "styleLbl"; + + /// + /// Represents the styleName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TableStyle.StyleName, TableStyleEntry.StyleName. + /// + /// + public static readonly XName styleName = "styleName"; + + /// + /// Represents the StyleName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Sources.StyleName. + /// + /// + public static readonly XName StyleName_ = "StyleName"; + + /// + /// Represents the subtotal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataField.Subtotal. + /// + /// + public static readonly XName subtotal = "subtotal"; + + /// + /// Represents the subtotalCaption XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.SubtotalCaption. + /// + /// + public static readonly XName subtotalCaption = "subtotalCaption"; + + /// + /// Represents the subtotalHiddenItems XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.SubtotalHiddenItems. + /// + /// + public static readonly XName subtotalHiddenItems = "subtotalHiddenItems"; + + /// + /// Represents the subtotalTop XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotField.SubtotalTop, PivotHierarchy.SubtotalTop. + /// + /// + public static readonly XName subtotalTop = "subtotalTop"; + + /// + /// Represents the suggestedSigner XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SuggestedSigner. + /// + /// + public static readonly XName suggestedSigner = "suggestedSigner"; + + /// + /// Represents the suggestedSigner2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SuggestedSigner2. + /// + /// + public static readonly XName suggestedSigner2 = "suggestedSigner2"; + + /// + /// Represents the suggestedSignerEmail XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SuggestedSignerEmail. + /// + /// + public static readonly XName suggestedSignerEmail = "suggestedSignerEmail"; + + /// + /// Represents the summaryBelow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OutlineProperties.SummaryBelow. + /// + /// + public static readonly XName summaryBelow = "summaryBelow"; + + /// + /// Represents the summaryRight XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OutlineProperties.SummaryRight. + /// + /// + public static readonly XName summaryRight = "summaryRight"; + + /// + /// Represents the sumSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.SumSubtotal, PivotField.SumSubtotal. + /// + /// + public static readonly XName sumSubtotal = "sumSubtotal"; + + /// + /// Represents the supertip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Supertip, BackstageDropDown.Supertip, BackstageGroupButton.Supertip, BackstagePrimaryMenu.Supertip, BackstageRegularButton.Supertip, Button.Supertip, ButtonRegular.Supertip, CheckBox.Supertip, ComboBox.Supertip, ControlClone.Supertip, ControlCloneQat.Supertip, ControlCloneRegular.Supertip, DropDown.Supertip, DropDownRegular.Supertip, DynamicMenu.Supertip, DynamicMenuRegular.Supertip, EditBox.Supertip, Gallery.Supertip, GalleryRegular.Supertip, Group.Supertip, Hyperlink.Supertip, Item.Supertip, LabelControl.Supertip, Menu.Supertip, MenuRegular.Supertip, MenuWithTitle.Supertip, QuickAccessToolbarControlClone.Supertip, TextLabel.Supertip, ToggleButton.Supertip, ToggleButtonRegular.Supertip, UnsizedButton.Supertip, UnsizedControlClone.Supertip, UnsizedDynamicMenu.Supertip, UnsizedGallery.Supertip, UnsizedMenu.Supertip, UnsizedToggleButton.Supertip, VisibleButton.Supertip, VisibleToggleButton.Supertip. + /// + /// + public static readonly XName supertip = "supertip"; + + /// + /// Represents the supportAddCalcMems XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.SupportAddCalcMems. + /// + /// + public static readonly XName supportAddCalcMems = "supportAddCalcMems"; + + /// + /// Represents the supportAdvancedDrill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.SupportAdvancedDrill. + /// + /// + public static readonly XName supportAdvancedDrill = "supportAdvancedDrill"; + + /// + /// Represents the supportSubquery XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.SupportSubquery. + /// + /// + public static readonly XName supportSubquery = "supportSubquery"; + + /// + /// Represents the supportSubqueryCalcMem XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.SupportSubqueryCalcMem. + /// + /// + public static readonly XName supportSubqueryCalcMem = "supportSubqueryCalcMem"; + + /// + /// Represents the supportSubqueryNonVisual XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.SupportSubqueryNonVisual. + /// + /// + public static readonly XName supportSubqueryNonVisual = "supportSubqueryNonVisual"; + + /// + /// Represents the swAng XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArcTo.SwingAngle. + /// + /// + public static readonly XName swAng = "swAng"; + + /// + /// Represents the switch XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeHandle.Switch. + /// + /// + public static readonly XName @switch = "switch"; + + /// + /// Represents the sx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: OuterShadow.HorizontalRatio, Reflection.HorizontalRatio, Tile.HorizontalRatio, TransformEffect.HorizontalRatio. + /// + /// + public static readonly XName sx = "sx"; + + /// + /// Represents the sy XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: OuterShadow.VerticalRatio, Reflection.VerticalRatio, Tile.VerticalRatio, TransformEffect.VerticalRatio. + /// + /// + public static readonly XName sy = "sy"; + + /// + /// Represents the symbol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: MarkerLayoutProperties.Symbol. + /// + /// + public static readonly XName symbol = "symbol"; + + /// + /// Represents the syncBehavior XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.SyncBehavior. + /// + /// + public static readonly XName syncBehavior = "syncBehavior"; + + /// + /// Represents the syncHorizontal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProperties.SyncHorizontal. + /// + /// + public static readonly XName syncHorizontal = "syncHorizontal"; + + /// + /// Represents the syncRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProperties.SyncReference. + /// + /// + public static readonly XName syncRef = "syncRef"; + + /// + /// Represents the syncVertical XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProperties.SyncVertical. + /// + /// + public static readonly XName syncVertical = "syncVertical"; + + /// + /// Represents the sz XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: DefaultRunProperties.FontSize, EndParagraphRunProperties.FontSize, PlaceholderShape.Size, RestoredLeft.Size, RestoredTop.Size, RunProperties.FontSize, TextCharacterPropertiesType.FontSize. + /// + /// + public static readonly XName sz = "sz"; + + /// + /// Represents the t XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackgroundRemoval.MarqueeTop, CalculationCell.NewThread, Cell.DataType, CellFormula.FormulaType, EffectExtent.TopEdge, ExternalCell.DataType, FillRectangle.Top, FillToRectangle.Top, Item.ItemType, MetadataRecord.TypeIndex, NewCell.DataType, OldCell.DataType, PageMargins.T, PageMargins.Top, PivotValueCell.Text, Rectangle.Top, RowItem.ItemType, SourceRectangle.Top, TileRectangle.Top, Topic.ValueType, TracePoint.Time, Value.ValueType. + /// + /// + public static readonly XName t = "t"; + + /// + /// Represents the tab XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.TabAsDelimiter. + /// + /// + public static readonly XName tab = "tab"; + + /// + /// Represents the tabId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: SlicerCachePivotTable.TabId, TimelineCachePivotTable.TabId. + /// + /// + public static readonly XName tabId = "tabId"; + + /// + /// Represents the table XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableStyle.Table. + /// + /// + public static readonly XName table = "table"; + + /// + /// Represents the tableBorderDxfId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.BorderFormatId. + /// + /// + public static readonly XName tableBorderDxfId = "tableBorderDxfId"; + + /// + /// Represents the tableColumnId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableField.TableColumnId. + /// + /// + public static readonly XName tableColumnId = "tableColumnId"; + + /// + /// Represents the tableId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableSlicerCache.TableId. + /// + /// + public static readonly XName tableId = "tableId"; + + /// + /// Represents the tableType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.TableType. + /// + /// + public static readonly XName tableType = "tableType"; + + /// + /// Represents the tabRatio XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.TabRatio, WorkbookView.TabRatio. + /// + /// + public static readonly XName tabRatio = "tabRatio"; + + /// + /// Represents the tabSelected XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChartSheetView.TabSelected, SheetView.TabSelected. + /// + /// + public static readonly XName tabSelected = "tabSelected"; + + /// + /// Represents the tag XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Tag, BackstageComboBox.Tag, BackstageDropDown.Tag, BackstageEditBox.Tag, BackstageFastCommandButton.Tag, BackstageGroup.Tag, BackstageGroupButton.Tag, BackstageLabelControl.Tag, BackstageMenuButton.Tag, BackstageMenuCheckBox.Tag, BackstageMenuGroup.Tag, BackstageMenuToggleButton.Tag, BackstagePrimaryMenu.Tag, BackstageRegularButton.Tag, BackstageSubMenu.Tag, BackstageTab.Tag, Box.Tag, Button.Tag, ButtonGroup.Tag, ButtonRegular.Tag, CheckBox.Tag, ComboBox.Tag, ControlClone.Tag, ControlCloneRegular.Tag, DropDown.Tag, DropDownRegular.Tag, DynamicMenu.Tag, DynamicMenuRegular.Tag, EditBox.Tag, Gallery.Tag, GalleryRegular.Tag, Group.Tag, GroupBox.Tag, Hyperlink.Tag, ImageControl.Tag, LabelControl.Tag, LayoutContainer.Tag, Menu.Tag, MenuRegular.Tag, MenuSeparator.Tag, MenuSeparatorNoTitle.Tag, MenuWithTitle.Tag, PivotTableDefinition.Tag, RadioGroup.Tag, Separator.Tag, SplitButton.Tag, SplitButtonRegular.Tag, SplitButtonWithTitle.Tag, Tab.Tag, TaskFormGroup.Tag, TaskFormGroupCategory.Tag, TaskFormGroupTask.Tag, TaskGroup.Tag, TaskGroupCategory.Tag, TaskGroupTask.Tag, TextLabel.Tag, ToggleButton.Tag, ToggleButtonRegular.Tag, UnsizedButton.Tag, UnsizedControlClone.Tag, UnsizedDynamicMenu.Tag, UnsizedGallery.Tag, UnsizedMenu.Tag, UnsizedSplitButton.Tag, UnsizedToggleButton.Tag, VisibleButton.Tag, VisibleToggleButton.Tag. + /// + /// + public static readonly XName tag = "tag"; + + /// + /// Represents the target XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Target, Bind.Target, Curve.Target, Group.Target, Hyperlink.Target, ImageFile.Target, Line.Target, Oval.Target, PolyLine.Target, Rectangle.Target, RoundRectangle.Target, Shape.Target, Shapetype.Target. + /// + /// + public static readonly XName target = "target"; + + /// + /// Represents the targetScreenSize XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BackgroundProperties.TargetScreenSize, WebPublishing.TargetScreenSize. + /// + /// + public static readonly XName targetScreenSize = "targetScreenSize"; + + /// + /// Represents the text XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.Text, DbCommand.Text, Lock.TextLock. + /// + /// + public static readonly XName text = "text"; + + /// + /// Represents the textborder XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Callout.TextBorder. + /// + /// + public static readonly XName textborder = "textborder"; + + /// + /// Represents the textboxrect XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.TextboxRectangle. + /// + /// + public static readonly XName textboxrect = "textboxrect"; + + /// + /// Represents the textDates XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.TextDates. + /// + /// + public static readonly XName textDates = "textDates"; + + /// + /// Represents the textHAlign XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CommentProperties.TextHAlign, FormControlProperties.TextHorizontalAlign. + /// + /// + public static readonly XName textHAlign = "textHAlign"; + + /// + /// Represents the textlink XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Shape.TextLink. + /// + /// + public static readonly XName textlink = "textlink"; + + /// + /// Represents the textpathok XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.AllowTextPath. + /// + /// + public static readonly XName textpathok = "textpathok"; + + /// + /// Represents the textRotation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Alignment.TextRotation. + /// + /// + public static readonly XName textRotation = "textRotation"; + + /// + /// Represents the textVAlign XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CommentProperties.TextVAlign, FormControlProperties.TextVerticalAlign. + /// + /// + public static readonly XName textVAlign = "textVAlign"; + + /// + /// Represents the tgtFrame XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: HyperlinkOnClick.TargetFrame, HyperlinkOnHover.TargetFrame, HyperlinkOnMouseOver.TargetFrame. + /// + /// + public static readonly XName tgtFrame = "tgtFrame"; + + /// + /// Represents the theme XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AxisColor.Theme, BackgroundColor.Theme, BarAxisColor.Theme, BorderColor.Theme, Color.Theme, FillColor.Theme, FirstMarkerColor.Theme, ForegroundColor.Theme, HighMarkerColor.Theme, LastMarkerColor.Theme, LowMarkerColor.Theme, MarkersColor.Theme, NegativeBorderColor.Theme, NegativeColor.Theme, NegativeFillColor.Theme, SeriesColor.Theme, TabColor.Theme. + /// + /// + public static readonly XName theme = "theme"; + + /// + /// Represents the thickBot XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Row.ThickBot. + /// + /// + public static readonly XName thickBot = "thickBot"; + + /// + /// Represents the thickBottom XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetFormatProperties.ThickBottom. + /// + /// + public static readonly XName thickBottom = "thickBottom"; + + /// + /// Represents the thicket XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebPublishing.Thicket. + /// + /// + public static readonly XName thicket = "thicket"; + + /// + /// Represents the thickTop XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Row.ThickTop, SheetFormatProperties.ThickTop. + /// + /// + public static readonly XName thickTop = "thickTop"; + + /// + /// Represents the thousands XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: TextProperties.Thousands. + /// + /// + public static readonly XName thousands = "thousands"; + + /// + /// Represents the thresh XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: AlphaBiLevel.Threshold, BiLevel.Threshold. + /// + /// + public static readonly XName thresh = "thresh"; + + /// + /// Represents the thruBlk XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CutTransition.ThroughBlack, FadeTransition.ThroughBlack, RevealTransition.ThroughBlack. + /// + /// + public static readonly XName thruBlk = "thruBlk"; + + /// + /// Represents the time XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.Time, EndTime.Time, MediaBookmark.Time, NullEventRecord.Time, PauseEventRecord.Time, PlayEventRecord.Time, ResumeEventRecord.Time, SeekEventRecord.Time, StartTime.Time, StopEventRecord.Time, Timestamp.Time, TriggerEventRecord.Time. + /// + /// + public static readonly XName time = "time"; + + /// + /// Represents the timelineData XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimelinePivotCacheDefinition.TimelineData. + /// + /// + public static readonly XName timelineData = "timelineData"; + + /// + /// Represents the timeOffset XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Timestamp.TimeOffset, Trace.TimeOffset. + /// + /// + public static readonly XName timeOffset = "timeOffset"; + + /// + /// Represents the timePeriod XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormattingRule.TimePeriod. + /// + /// + public static readonly XName timePeriod = "timePeriod"; + + /// + /// Represents the timestampRef XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Context.TimestampRef, Timestamp.TimestampRef. + /// + /// + public static readonly XName timestampRef = "timestampRef"; + + /// + /// Represents the timeString XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Timestamp.TimeString. + /// + /// + public static readonly XName timeString = "timeString"; + + /// + /// Represents the timeZoneBias XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ThreadingInfo.TimeZoneBias. + /// + /// + public static readonly XName timeZoneBias = "timeZoneBias"; + + /// + /// Represents the tIns XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.TopInset, TextBodyProperties.TopInset. + /// + /// + public static readonly XName tIns = "tIns"; + + /// + /// Represents the tint XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AxisColor.Tint, BackgroundColor.Tint, BarAxisColor.Tint, BorderColor.Tint, Color.Tint, FillColor.Tint, FirstMarkerColor.Tint, ForegroundColor.Tint, HighMarkerColor.Tint, LastMarkerColor.Tint, LowMarkerColor.Tint, MarkersColor.Tint, NegativeBorderColor.Tint, NegativeColor.Tint, NegativeFillColor.Tint, SeriesColor.Tint, TabColor.Tint. + /// + /// + public static readonly XName tint = "tint"; + + /// + /// Represents the title XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Title, BackstageTab.Title, Curve.Title, DocProperties.Title, Group.Title, ImageFile.Title, Line.Title, MenuSeparator.Title, MenuWithTitle.Title, NonVisualDrawingProperties.Title, Oval.Title, PolyLine.Title, Rectangle.Title, RoundRectangle.Title, Shape.Title, Shapetype.Title, WebPublishItem.Title, WebPublishObject.Title. + /// + /// + public static readonly XName title = "title"; + + /// + /// Represents the tm XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TimeAnimateValue.Time. + /// + /// + public static readonly XName tm = "tm"; + + /// + /// Represents the tmFilter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.TimeFilter. + /// + /// + public static readonly XName tmFilter = "tmFilter"; + + /// + /// Represents the to XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: Animate.To, AnimateRotation.To, Arc.To, CommonBehavior.To, Curve.To, Line.To, TraceView.To. + /// + /// + public static readonly XName to = "to"; + + /// + /// Represents the toColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModelRelationship.ToColumn. + /// + /// + public static readonly XName toColumn = "toColumn"; + + /// + /// Represents the tooltip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Hyperlink.Tooltip, HyperlinkOnClick.Tooltip, HyperlinkOnHover.Tooltip, HyperlinkOnMouseOver.Tooltip. + /// + /// + public static readonly XName tooltip = "tooltip"; + + /// + /// Represents the top XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: GradientFill.Top, PageMargins.Top, Top10.Top. + /// + /// + public static readonly XName top = "top"; + + /// + /// Represents the topAutoShow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.TopAutoShow. + /// + /// + public static readonly XName topAutoShow = "topAutoShow"; + + /// + /// Represents the topLabels XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DataConsolidate.TopLabels. + /// + /// + public static readonly XName topLabels = "topLabels"; + + /// + /// Represents the topLeftCell XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CustomSheetView.TopLeftCell, Pane.TopLeftCell, SheetView.TopLeftCell. + /// + /// + public static readonly XName topLeftCell = "topLeftCell"; + + /// + /// Represents the toTable XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ModelRelationship.ToTable. + /// + /// + public static readonly XName toTable = "toTable"; + + /// + /// Represents the totalsRowBorderDxfId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.TotalsRowBorderFormatId. + /// + /// + public static readonly XName totalsRowBorderDxfId = "totalsRowBorderDxfId"; + + /// + /// Represents the totalsRowCellStyle XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Table.TotalsRowCellStyle, TableColumn.TotalsRowCellStyle. + /// + /// + public static readonly XName totalsRowCellStyle = "totalsRowCellStyle"; + + /// + /// Represents the totalsRowCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.TotalsRowCount. + /// + /// + public static readonly XName totalsRowCount = "totalsRowCount"; + + /// + /// Represents the totalsRowDxfId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Table.TotalsRowFormatId, TableColumn.TotalsRowDifferentialFormattingId. + /// + /// + public static readonly XName totalsRowDxfId = "totalsRowDxfId"; + + /// + /// Represents the totalsRowFunction XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableColumn.TotalsRowFunction. + /// + /// + public static readonly XName totalsRowFunction = "totalsRowFunction"; + + /// + /// Represents the totalsRowLabel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableColumn.TotalsRowLabel. + /// + /// + public static readonly XName totalsRowLabel = "totalsRowLabel"; + + /// + /// Represents the totalsRowShown XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Table.TotalsRowShown. + /// + /// + public static readonly XName totalsRowShown = "totalsRowShown"; + + /// + /// Represents the traceDataRef XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TraceView.TraceDataRef. + /// + /// + public static readonly XName traceDataRef = "traceDataRef"; + + /// + /// Represents the traceFormatRef XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Canvas.TraceFormatRef, Context.TraceFromatRef. + /// + /// + public static readonly XName traceFormatRef = "traceFormatRef"; + + /// + /// Represents the track XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: EndTime.Track, StartTime.Track. + /// + /// + public static readonly XName track = "track"; + + /// + /// Represents the trackRevisions XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Headers.TrackRevisions. + /// + /// + public static readonly XName trackRevisions = "trackRevisions"; + + /// + /// Represents the trans XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: ArtisticCement.Transparancy, ArtisticChalkSketch.Transparancy, ArtisticCrisscrossEtching.Transparancy, ArtisticCutout.Transparancy, ArtisticFilmGrain.Transparancy, ArtisticGlass.Transparancy, ArtisticGlowDiffused.Transparancy, ArtisticGlowEdges.Transparancy, ArtisticLightScreen.Transparancy, ArtisticLineDrawing.Transparancy, ArtisticMarker.Transparancy, ArtisticMosaicBubbles.Transparancy, ArtisticPaintBrush.Transparancy, ArtisticPaintStrokes.Transparancy, ArtisticPastelsSmooth.Transparancy, ArtisticPencilGrayscale.Transparancy, ArtisticPencilSketch.Transparancy, ArtisticPhotocopy.Transparancy, ArtisticPlasticWrap.Transparancy, ArtisticTexturizer.Transparancy, ArtisticWatercolorSponge.Transparancy. + /// + /// + public static readonly XName trans = "trans"; + + /// + /// Represents the transition XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AnimateEffect.Transition. + /// + /// + public static readonly XName transition = "transition"; + + /// + /// Represents the transitionEntry XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProperties.TransitionEntry. + /// + /// + public static readonly XName transitionEntry = "transitionEntry"; + + /// + /// Represents the transitionEvaluation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetProperties.TransitionEvaluation. + /// + /// + public static readonly XName transitionEvaluation = "transitionEvaluation"; + + /// + /// Represents the trend XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Kpi.Trend. + /// + /// + public static readonly XName trend = "trend"; + + /// + /// Represents the trim XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextPath.Trim. + /// + /// + public static readonly XName trim = "trim"; + + /// + /// Represents the tupleCache XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.IsTupleCache. + /// + /// + public static readonly XName tupleCache = "tupleCache"; + + /// + /// Represents the twoDigitTextYear XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: IgnoredError.TwoDigitTextYear. + /// + /// + public static readonly XName twoDigitTextYear = "twoDigitTextYear"; + + /// + /// Represents the tx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: RelativeOffset.OffsetX, Tile.HorizontalOffset, TransformEffect.HorizontalShift. + /// + /// + public static readonly XName tx = "tx"; + + /// + /// Represents the tx1 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Text1, ColorMapOverride.Text1, ColorMappingType.Text1, OverrideColorMapping.Text1. + /// + /// + public static readonly XName tx1 = "tx1"; + + /// + /// Represents the tx2 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ColorMap.Text2, ColorMapOverride.Text2, ColorMappingType.Text2, OverrideColorMapping.Text2. + /// + /// + public static readonly XName tx2 = "tx2"; + + /// + /// Represents the txBox XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , . + /// corresponds to the following strongly-typed properties: NonVisualDrawingShapeProperties.TextBox, NonVisualShapeDrawingProperties.TextBox. + /// + /// + public static readonly XName txBox = "txBox"; + + /// + /// Represents the ty XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: RelativeOffset.OffsetY, Tile.VerticalOffset, TransformEffect.VerticalShift. + /// + /// + public static readonly XName ty = "ty"; + + /// + /// Represents the type XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Algorithm.Type, Annotation.Type, AnnotationXml.Type, AutoNumberedBullet.Type, BottomBorder.Type, CacheSource.Type, Callout.Type, Category.Type, Channel.Type, ColorTransformCategory.Type, Command.Type, ConditionalFormat.Type, ConditionalFormattingRule.Type, ConditionalFormattingValueObject.Type, ConditionalFormatValueObject.Type, Connection.Type, Constraint.Type, ContextNode.Type, ContextNodeProperty.Type, DataValidation.Type, DynamicFilter.Type, EffectContainer.Type, EffectDag.Type, Extrusion.Type, Field.Type, FieldListActiveTabTopLevelEntity.Type, Fill.Type, FillExtendedProperties.Type, GradientFill.Type, HeadEnd.Type, Iterate.Type, LeftBorder.Type, MajorTickMarksTickMarks.Type, Mapping.Type, MinorTickMarksTickMarks.Type, NumericDimension.Type, OleChartElement.Type, Parameter.Type, PhoneticProperties.Type, PivotArea.Type, PivotFilter.Type, PlaceholderShape.Type, Point.Type, RightBorder.Type, Rule.Type, Shadow.Type, Shape.Type, SlicerStyleElement.Type, SlideLayout.Type, SlideSize.Type, SparklineGroup.Type, StringDimension.Type, StyleDisplayCategory.Type, TableStyleElement.Type, TailEnd.Type, TextField.Type, TextWrap.Type, TimelineStyleElement.Type, TopBorder.Type, Trace.Type, TriggerEventRecord.Type, VolatileType.Type, WebExtensionBinding.Type. + /// + /// + public static readonly XName type = "type"; + + /// + /// Represents the Type XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.Type. + /// + /// + public static readonly XName Type_ = "Type"; + + /// + /// Represents the typeface XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: BulletFont.Typeface, ComplexScriptFont.Typeface, EastAsianFont.Typeface, Font.Typeface, LatinFont.Typeface, SupplementalFont.Typeface, SymbolFont.Typeface. + /// + /// + public static readonly XName typeface = "typeface"; + + /// + /// Represents the u XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BooleanItem.Unused, DateTimeItem.Unused, DefaultRunProperties.Underline, EndParagraphRunProperties.Underline, ErrorItem.Unused, MdxTuple.Underline, MissingItem.Unused, NumberItem.Unused, RunProperties.Underline, StringItem.Unused, TextCharacterPropertiesType.Underline, TupleSetRowItem.UniqueName. + /// + /// + public static readonly XName u = "u"; + + /// + /// Represents the ua XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: RevisionCellChange.Ua, RevisionConflict.Ua, RevisionDefinedName.Ua, RevisionInsertSheet.Ua, RevisionMove.Ua, RevisionRowColumn.Ua, RevisionSheetName.Ua. + /// + /// + public static readonly XName ua = "ua"; + + /// + /// Represents the uBound XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: VTArray.UpperBounds. + /// + /// + public static readonly XName uBound = "uBound"; + + /// + /// Represents the uiExpand XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BuildDiagram.UiExpand, BuildGraphics.UiExpand, BuildOleChart.UiExpand, BuildParagraph.UiExpand. + /// + /// + public static readonly XName uiExpand = "uiExpand"; + + /// + /// Represents the uiObject XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CommentProperties.UiObject, ControlProperties.UiObject, EmbeddedObjectProperties.UiObject. + /// + /// + public static readonly XName uiObject = "uiObject"; + + /// + /// Represents the un XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ErrorItem.Underline, MissingItem.Underline, NumberItem.Underline, PivotValueCellExtra.Underline, StringItem.Underline. + /// + /// + public static readonly XName un = "un"; + + /// + /// Represents the unbalanced XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.Unbalanced. + /// + /// + public static readonly XName unbalanced = "unbalanced"; + + /// + /// Represents the unbalancedGroup XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheHierarchy.UnbalancedGroup. + /// + /// + public static readonly XName unbalancedGroup = "unbalancedGroup"; + + /// + /// Represents the unboundColumnsLeft XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableRefresh.UnboundColumnsLeft. + /// + /// + public static readonly XName unboundColumnsLeft = "unboundColumnsLeft"; + + /// + /// Represents the unboundColumnsRight XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: QueryTableRefresh.UnboundColumnsRight. + /// + /// + public static readonly XName unboundColumnsRight = "unboundColumnsRight"; + + /// + /// Represents the underflow XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Binning.Underflow. + /// + /// + public static readonly XName underflow = "underflow"; + + /// + /// Represents the undone XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: InputCells.Undone. + /// + /// + public static readonly XName undone = "undone"; + + /// + /// Represents the ungrouping XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.Ungrouping. + /// + /// + public static readonly XName ungrouping = "ungrouping"; + + /// + /// Represents the uniform XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SampleRate.Uniform. + /// + /// + public static readonly XName uniform = "uniform"; + + /// + /// Represents the uniqueCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SharedStringTable.UniqueCount. + /// + /// + public static readonly XName uniqueCount = "uniqueCount"; + + /// + /// Represents the uniqueId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: ColorsDefinition.UniqueId, ColorsDefinitionHeader.UniqueId, LayoutDefinition.UniqueId, LayoutDefinitionHeader.UniqueId, Series.UniqueId, StyleDefinition.UniqueId, StyleDefinitionHeader.UniqueId. + /// + /// + public static readonly XName uniqueId = "uniqueId"; + + /// + /// Represents the uniqueList XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CacheField.UniqueList. + /// + /// + public static readonly XName uniqueList = "uniqueList"; + + /// + /// Represents the uniqueMemberProperty XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotField.UniqueMemberProperty. + /// + /// + public static readonly XName uniqueMemberProperty = "uniqueMemberProperty"; + + /// + /// Represents the uniqueName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: CacheHierarchy.UniqueName, DataField.UniqueName, Dimension.UniqueName, Group.UniqueName, GroupLevel.UniqueName, GroupMember.UniqueName, Kpi.UniqueName, OlapSlicerCacheLevelData.UniqueName, SlicerCacheOlapLevelName.UniqueName, TableColumn.UniqueName, TupleSetHeader.UniqueName, XmlCellProperties.UniqueName. + /// + /// + public static readonly XName uniqueName = "uniqueName"; + + /// + /// Represents the uniqueParent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Group.UniqueParent. + /// + /// + public static readonly XName uniqueParent = "uniqueParent"; + + /// + /// Represents the unit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AxisUnits.Unit. + /// + /// + public static readonly XName unit = "unit"; + + /// + /// Represents the units XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: ActiveArea.Units, BrushProperty.Units, Channel.Units, ChannelProperty.Units, SourceProperty.Units. + /// + /// + public static readonly XName units = "units"; + + /// + /// Represents the unlockedFormula XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: IgnoredError.UnlockedFormula. + /// + /// + public static readonly XName unlockedFormula = "unlockedFormula"; + + /// + /// Represents the updateAutomatic XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObjectLink.AutoUpdate. + /// + /// + public static readonly XName updateAutomatic = "updateAutomatic"; + + /// + /// Represents the updatedVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.UpdatedVersion. + /// + /// + public static readonly XName updatedVersion = "updatedVersion"; + + /// + /// Represents the updateLinks XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProperties.UpdateLinks. + /// + /// + public static readonly XName updateLinks = "updateLinks"; + + /// + /// Represents the UpdateMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: OleObject.UpdateMode. + /// + /// + public static readonly XName UpdateMode = "UpdateMode"; + + /// + /// Represents the upgradeOnRefresh XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotCacheDefinition.UpgradeOnRefresh. + /// + /// + public static readonly XName upgradeOnRefresh = "upgradeOnRefresh"; + + /// + /// Represents the upright XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.UpRight, TextBodyProperties.UpRight. + /// + /// + public static readonly XName upright = "upright"; + + /// + /// Represents the uri XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: ApplicationNonVisualDrawingPropertiesExtension.Uri, Area3DChartExtension.Uri, AreaChartExtension.Uri, AreaSerExtension.Uri, Bar3DChartExtension.Uri, BarChartExtension.Uri, BarSerExtension.Uri, BlipExtension.Uri, BubbleChartExtension.Uri, BubbleSerExtension.Uri, CacheFieldExtension.Uri, CacheHierarchyExtension.Uri, CacheSourceExtension.Uri, CalculatedMemberExtension.Uri, CatAxExtension.Uri, ChartSpaceExtension.Uri, CommentAuthorExtension.Uri, CommentExtension.Uri, CommonSlideDataExtension.Uri, ConditionalFormattingRuleExtension.Uri, ConnectionExtension.Uri, ConnectorLockingExtension.Uri, CustomXmlBlock.Uri, CustomXmlCell.Uri, CustomXmlRow.Uri, CustomXmlRuby.Uri, CustomXmlRun.Uri, DataFieldExtension.Uri, DataModelExtension.Uri, DateAxExtension.Uri, DiagramDefinitionExtension.Uri, DLblExtension.Uri, DLblsExtension.Uri, Extension.Uri, Extension2.Uri, GraphicData.Uri, GvmlGroupShapeExtension.Uri, HandoutMasterExtension.Uri, HyperlinkExtension.Uri, Line3DChartExtension.Uri, LineChartExtension.Uri, LineSerExtension.Uri, MultiLvlStrRefExtension.Uri, NonVisualDrawingPropertiesExtension.Uri, NonVisualGroupDrawingShapePropsExtension.Uri, NonVisualPicturePropertiesExtension.Uri, NotesMasterExtension.Uri, NumRefExtension.Uri, OfficeStyleSheetExtension.Uri, Pie3DChartExtension.Uri, PieChartExtension.Uri, PieSerExtension.Uri, PivotCacheDefinitionExtension.Uri, PivotFieldExtension.Uri, PivotFilterExtension.Uri, PivotHierarchyExtension.Uri, PivotTableDefinitionExtension.Uri, PresentationExtension.Uri, PresentationPropertiesExtension.Uri, PtExtension.Uri, QueryTableExtension.Uri, RadarChartExtension.Uri, RadarSerExtension.Uri, ScatterChartExtension.Uri, ScatterSerExtension.Uri, SerAxExtension.Uri, ShapePropertiesExtension.Uri, ShowPropertiesExtension.Uri, SlicerCacheDefinitionExtension.Uri, SlideExtension.Uri, SlideLayoutExtension.Uri, SlideMasterExtension.Uri, StockChartExtension.Uri, StrDataExtension.Uri, StrRefExtension.Uri, StylesheetExtension.Uri, Surface3DChartExtension.Uri, SurfaceChartExtension.Uri, SurfaceSerExtension.Uri, TableExtension.Uri, ValAxExtension.Uri, WorkbookExtension.Uri, WorksheetExtension.Uri. + /// + /// + public static readonly XName uri = "uri"; + + /// + /// Represents the URI XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Sources.Uri. + /// + /// + public static readonly XName URI_ = "URI"; + + /// + /// Represents the url XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: AbsolutePath.Url, WebQueryProperties.Url. + /// + /// + public static readonly XName url = "url"; + + /// + /// Represents the useA XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorChange.UseAlpha. + /// + /// + public static readonly XName useA = "useA"; + + /// + /// Represents the useAutoFormatting XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.UseAutoFormatting. + /// + /// + public static readonly XName useAutoFormatting = "useAutoFormatting"; + + /// + /// Represents the useBgFill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shape.UseBackgroundFill. + /// + /// + public static readonly XName useBgFill = "useBgFill"; + + /// + /// Represents the usedByAddin XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Connection.UsedByAddin. + /// + /// + public static readonly XName usedByAddin = "usedByAddin"; + + /// + /// Represents the useDef XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ColorData.UseDefault, SampleData.UseDefault, StyleData.UseDefault. + /// + /// + public static readonly XName useDef = "useDef"; + + /// + /// Represents the useFirstPageNumber XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.UseFirstPageNumber, PageSetup.UseFirstPageNumber. + /// + /// + public static readonly XName useFirstPageNumber = "useFirstPageNumber"; + + /// + /// Represents the useLongFilenames XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebProperties.UseLongFilenames. + /// + /// + public static readonly XName useLongFilenames = "useLongFilenames"; + + /// + /// Represents the usePrinterDefaults XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.UsePrinterDefaults, PageSetup.UsePrinterDefaults. + /// + /// + public static readonly XName usePrinterDefaults = "usePrinterDefaults"; + + /// + /// Represents the user XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: GroupLevel.User, Scenario.User. + /// + /// + public static readonly XName user = "user"; + + /// + /// Represents the userDrawn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: ApplicationNonVisualDrawingProperties.UserDrawn, ExtendedGuide.IsUserDrawn, SlideLayout.UserDrawn. + /// + /// + public static readonly XName userDrawn = "userDrawn"; + + /// + /// Represents the userId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PresenceInfo.UserId. + /// + /// + public static readonly XName userId = "userId"; + + /// + /// Represents the userName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: FileSharing.UserName, Header.UserName. + /// + /// + public static readonly XName userName = "userName"; + + /// + /// Represents the useTimings XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShowProperties.UseTimings. + /// + /// + public static readonly XName useTimings = "useTimings"; + + /// + /// Represents the useWholeDay XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotFilter.UseWholeDay. + /// + /// + public static readonly XName useWholeDay = "useWholeDay"; + + /// + /// Represents the v XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BooleanItem.Val, CharacterValue.Val, DateTimeItem.Val, ErrorItem.Val, FieldItem.Val, MemberPropertiesMap.Val, MemberPropertyIndex.Val, MetadataRecord.Val, NumberItem.Val, Path.Value, StringItem.Val, Undo.Val. + /// + /// + public static readonly XName v = "v"; + + /// + /// Represents the vacatedStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.VacatedStyle. + /// + /// + public static readonly XName vacatedStyle = "vacatedStyle"; + + /// + /// Represents the val XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Adjust.Val, Alpha.Val, AlphaModulation.Val, AlphaOffset.Val, AnimateOneByOne.Val, AnimationLevel.Val, ApplyToEnd.Val, ApplyToFront.Val, ApplyToSides.Val, AutoGeneneratedCategories.Val, AutoLabeled.Val, AutoTitleDeleted.Val, AutoUpdate.Val, AxisId.Val, AxisPosition.Val, Backward.Val, BarDirection.Val, BarGrouping.Val, BaseTimeUnit.Val, Blue.Val, BlueModulation.Val, BlueOffset.Val, Bold.Val, BooleanVariantValue.Val, Bubble3D.Val, BubbleScale.Val, BuiltInUnit.Val, BulletEnabled.Val, BulletSizePercentage.Val, BulletSizePoints.Val, Characteristic.Val, ChartObject.Val, ChartTrackingReferenceBased.Val, ColIdIdentifier.Val, ColorDefinitionTitle.Val, ColorTransformDescription.Val, Condense.Val, ConditionalFormatValueObject.Val, Constraint.Val, CreationId.Val, CrossBetween.Val, Crosses.Val, CrossesAt.Val, CrossingAxis.Val, CustomDisplayUnit.Val, CustomFilter.Val, Data.Val, DataId.Val, DataLabelPosition.Val, Date1904.Val, Decorative.Val, DefaultImageDpi.Val, Delete.Val, DepthPercent.Val, Description.Val, DiagramChooseIf.Val, Direction.Val, DiscardImageEditData.Val, DisplayBlanksAs.Val, DisplayEquation.Val, DisplayRSquaredValue.Val, DropZoneCategories.Val, DropZoneData.Val, DropZoneFilter.Val, DropZoneSeries.Val, DropZonesVisible.Val, DynamicFilter.Val, EditingLanguage.Val, ErrorBarType.Val, ErrorBarValue.Val, ErrorBarValueType.Val, ErrorDirection.Val, ExceptionForSave.Val, Explosion.Val, Extend.Val, Filter.Val, FirstSliceAngle.Val, FloatVariantValue.Val, FontCharSet.Val, FontFamily.Val, FontFamilyNumbering.Val, FontName.Val, FontScheme.Val, FontSize.Val, FormatId.Val, Formatting.Val, FormControlProperties.Val, Forward.Val, GapDepth.Val, GapWidth.Val, Green.Val, GreenModulation.Val, GreenOffset.Val, Grouping.Val, Height.Val, HeightMode.Val, HeightPercent.Val, HierarchyBranch.Val, HoleSize.Val, Hue.Val, HueModulation.Val, HueOffset.Val, HyperlinkColor.Val, Index.Val, InputCells.Val, InSketchMode.Val, IntegerVariantValue.Val, Intercept.Val, InvertIfNegative.Val, InvertIfNegativeBoolean.Val, IsCanvas.Val, Italic.Val, LabelAlignment.Val, LabelOffset.Val, LayoutTarget.Val, Left.Val, LeftMode.Val, LegendPosition.Val, ListItem.Val, LogBase.Val, Luminance.Val, LuminanceModulation.Val, LuminanceOffset.Val, MajorTickMark.Val, MajorTimeUnit.Val, MajorUnit.Val, MaxAxisValue.Val, MaxNumberOfChildren.Val, MinAxisValue.Val, MinorTickMark.Val, MinorTimeUnit.Val, MinorUnit.Val, ModificationId.Val, NoEndCap.Val, NoMultiLevelLabels.Val, OfPieType.Val, Order.Val, OrganizationChart.Val, Orientation.Val, Outline.Val, Overlap.Val, Overlay.Val, Parameter.Val, ParentLabelLayout.ParentLabelLayoutVal, Period.Val, Perspective.Val, PictureFormat.Val, PictureStackUnit.Val, PlotVisibleOnly.Val, PointCount.Val, PolynomialOrder.Val, PreferredNumberOfChildren.Val, PresetColor.Val, PresetDash.Val, RadarStyle.Val, RecolorImages.Val, Red.Val, RedModulation.Val, RedOffset.Val, ResizeHandles.Val, RgbColorModelHex.Val, RightAngleAxes.Val, RightToLeft.Val, RotateX.Val, RotateY.Val, RoundedCorners.Val, RowIdIdentifier.Val, Rule.Val, RunFont.Val, RunPropertyCharSet.Val, RuntimeNodeTrigger.Val, Saturation.Val, SaturationModulation.Val, SaturationOffset.Val, ScatterStyle.Val, SchemeColor.Val, SecondPiePoint.Val, SecondPieSize.Val, Selection.Val, Shade.Val, Shadow.Val, ShadowObscured.Val, Shape.Val, SheetId.Val, SheetName.Val, ShowBubbleSize.Val, ShowCategoryName.Val, ShowDataLabelsOverMaximum.Val, ShowDataLabelsRange.Val, ShowHorizontalBorder.Val, ShowKeys.Val, ShowLeaderLines.Val, ShowLegendKey.Val, ShowMarker.Val, ShowMediaControls.Val, ShowNegativeBubbles.Val, ShowOutlineBorder.Val, ShowPercent.Val, ShowSeriesName.Val, ShowSketchButton.Val, ShowValue.Val, ShowVerticalBorder.Val, Size.Val, SizeRepresents.Val, Smooth.Val, SpacingPercent.Val, SpacingPoints.Val, SplitPosition.Val, SplitType.Val, Strike.Val, StringVariantValue.Val, Style.Val, StyleColor.Val, StyleDefinitionTitle.Val, StyleLabelDescription.Val, Symbol.Val, SystemColor.Val, Tag.Val, Thickness.Val, TickLabelPosition.Val, TickLabelSkip.Val, TickMarkSkip.Val, TimeAbsolute.Val, TimeNode.Val, TimePercentage.Val, Tint.Val, Title.Val, Top.Val, Top10.Val, TopMode.Val, TrendlineType.Val, Underline.Val, UnsignedIntegerType.Val, UseLocalDpi.Val, UserInterface.Val, VaryColors.Val, VerticalTextAlignment.Val, Width.Val, WidthMode.Val, Wireframe.Val. + /// + /// + public static readonly XName val = "val"; + + /// + /// Represents the valIso XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DynamicFilter.ValIso. + /// + /// + public static readonly XName valIso = "valIso"; + + /// + /// Represents the value XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: BrushProperty.Value, ChannelProperty.Value, DataLabelVisibilities.Value, Kpi.Value, Latency.Value, SampleRate.Value, SourceProperty.Value, WebExtensionProperty.Value. + /// + /// + public static readonly XName value = "value"; + + /// + /// Represents the valueType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Animate.ValueType, PivotEditValue.ValueType. + /// + /// + public static readonly XName valueType = "valueType"; + + /// + /// Represents the variable XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Bind.Variable. + /// + /// + public static readonly XName variable = "variable"; + + /// + /// Represents the varPSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.ApplyVariancePInSubtotal, PivotField.ApplyVariancePInSubtotal. + /// + /// + public static readonly XName varPSubtotal = "varPSubtotal"; + + /// + /// Represents the varScale XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonViewProperties.VariableScale. + /// + /// + public static readonly XName varScale = "varScale"; + + /// + /// Represents the varSubtotal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotAreaReference.ApplyVarianceInSubtotal, PivotField.ApplyVarianceInSubtotal. + /// + /// + public static readonly XName varSubtotal = "varSubtotal"; + + /// + /// Represents the vbProcedure XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DefinedName.VbProcedure. + /// + /// + public static readonly XName vbProcedure = "vbProcedure"; + + /// + /// Represents the version XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Emma.Version, Headers.Version, VTVStreamData.Version, WebExtensionStoreReference.Version. + /// + /// + public static readonly XName version = "version"; + + /// + /// Represents the vert XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BodyProperties.Vertical, TableCellProperties.Vertical, TextBodyProperties.Vertical. + /// + /// + public static readonly XName vert = "vert"; + + /// + /// Represents the vertBarState XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NormalViewProperties.VerticalBarState. + /// + /// + public static readonly XName vertBarState = "vertBarState"; + + /// + /// Represents the vertical XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Alignment.Vertical. + /// + /// + public static readonly XName vertical = "vertical"; + + /// + /// Represents the verticalBar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.VerticalBar. + /// + /// + public static readonly XName verticalBar = "verticalBar"; + + /// + /// Represents the verticalCentered XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PrintOptions.VerticalCentered. + /// + /// + public static readonly XName verticalCentered = "verticalCentered"; + + /// + /// Represents the verticalDpi XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ChartSheetPageSetup.VerticalDpi, PageSetup.VerticalDpi. + /// + /// + public static readonly XName verticalDpi = "verticalDpi"; + + /// + /// Represents the verticies XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Lock.Verticies. + /// + /// + public static readonly XName verticies = "verticies"; + + /// + /// Represents the vertOverflow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.VerticalOverflow, TextBodyProperties.VerticalOverflow. + /// + /// + public static readonly XName vertOverflow = "vertOverflow"; + + /// + /// Represents the vid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ThemeFamily.Vid. + /// + /// + public static readonly XName vid = "vid"; + + /// + /// Represents the view XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomSheetView.View, SheetView.View. + /// + /// + public static readonly XName view = "view"; + + /// + /// Represents the viewpoint XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.Viewpoint. + /// + /// + public static readonly XName viewpoint = "viewpoint"; + + /// + /// Represents the viewpointorigin XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Extrusion.ViewpointOrigin. + /// + /// + public static readonly XName viewpointorigin = "viewpointorigin"; + + /// + /// Represents the visibility XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: WebExtensionTaskpane.Visibility, WorkbookView.Visibility. + /// + /// + public static readonly XName visibility = "visibility"; + + /// + /// Represents the visible XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BackstageCheckBox.Visible, BackstageComboBox.Visible, BackstageDropDown.Visible, BackstageEditBox.Visible, BackstageFastCommandButton.Visible, BackstageGroup.Visible, BackstageGroupButton.Visible, BackstageLabelControl.Visible, BackstageMenuButton.Visible, BackstageMenuCheckBox.Visible, BackstageMenuToggleButton.Visible, BackstagePrimaryMenu.Visible, BackstageRegularButton.Visible, BackstageSubMenu.Visible, BackstageTab.Visible, Box.Visible, Button.Visible, ButtonGroup.Visible, ButtonRegular.Visible, CheckBox.Visible, ComboBox.Visible, ContextualTabSet.Visible, ControlClone.Visible, ControlCloneQat.Visible, ControlCloneRegular.Visible, DropDown.Visible, DropDownRegular.Visible, DynamicMenu.Visible, DynamicMenuRegular.Visible, EditBox.Visible, Gallery.Visible, GalleryRegular.Visible, Group.Visible, Hyperlink.Visible, ImageControl.Visible, ImageEffect.Visible, LabelControl.Visible, Menu.Visible, MenuRegular.Visible, MenuWithTitle.Visible, QuickAccessToolbarControlClone.Visible, RadioGroup.Visible, Separator.Visible, SplitButton.Visible, SplitButtonRegular.Visible, SplitButtonWithTitle.Visible, Tab.Visible, TabSet.Visible, TaskFormGroup.Visible, TaskFormGroupCategory.Visible, TaskFormGroupTask.Visible, TaskGroup.Visible, TaskGroupCategory.Visible, TaskGroupTask.Visible, TextLabel.Visible, ToggleButton.Visible, ToggleButtonRegular.Visible, UnsizedButton.Visible, UnsizedControlClone.Visible, UnsizedDynamicMenu.Visible, UnsizedGallery.Visible, UnsizedMenu.Visible, UnsizedSplitButton.Visible, UnsizedToggleButton.Visible, VerticalSeparator.Visible. + /// + /// + public static readonly XName visible = "visible"; + + /// + /// Represents the visualTotals XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.VisualTotals. + /// + /// + public static readonly XName visualTotals = "visualTotals"; + + /// + /// Represents the visualTotalsForSets XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PivotTableDefinition.VisualTotalsForSets. + /// + /// + public static readonly XName visualTotalsForSets = "visualTotalsForSets"; + + /// + /// Represents the vm XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Cell.ValueMetaIndex, ExternalCell.ValueMetaIndex, NewCell.ValueMetaIndex, OldCell.ValueMetaIndex. + /// + /// + public static readonly XName vm = "vm"; + + /// + /// Represents the vMerge XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableCell.VerticalMerge. + /// + /// + public static readonly XName vMerge = "vMerge"; + + /// + /// Represents the vml XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebPublishing.UseVml. + /// + /// + public static readonly XName vml = "vml"; + + /// + /// Represents the vocabulary XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Characteristic.Vocabulary. + /// + /// + public static readonly XName vocabulary = "vocabulary"; + + /// + /// Represents the vol XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonMediaNode.Volume. + /// + /// + public static readonly XName vol = "vol"; + + /// + /// Represents the w XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Bevel.Width, BevelBottom.Width, BevelTop.Width, BottomBorderLineProperties.Width, BottomLeftToTopRightBorderLineProperties.Width, GridColumn.Width, HeadEnd.Width, HiddenLineProperties.Width, LeftBorderLineProperties.Width, Outline.Width, Path.Width, RightBorderLineProperties.Width, TailEnd.Width, TopBorderLineProperties.Width, TopLeftToBottomRightBorderLineProperties.Width, Underline.Width, WebVideoProperty.Width. + /// + /// + public static readonly XName w = "w"; + + /// + /// Represents the weight XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.Weight, ColumnStroke.Weight, Kpi.Weight, LeftStroke.Weight, RightStroke.Weight, Stroke.Weight, TopStroke.Weight. + /// + /// + public static readonly XName weight = "weight"; + + /// + /// Represents the weightExpression XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PivotChange.WeightExpression, PivotTableDefinition.WeightExpression. + /// + /// + public static readonly XName weightExpression = "weightExpression"; + + /// + /// Represents the width XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: ActiveArea.Width, BottomBorder.Width, Column.Width, LeftBorder.Width, RightBorder.Width, TopBorder.Width, WebExtensionTaskpane.Width. + /// + /// + public static readonly XName width = "width"; + + /// + /// Represents the widthMin XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FormControlProperties.MinimumWidth. + /// + /// + public static readonly XName widthMin = "widthMin"; + + /// + /// Represents the windowHeight XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.WindowHeight, WorkbookView.WindowHeight. + /// + /// + public static readonly XName windowHeight = "windowHeight"; + + /// + /// Represents the windowProtection XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetView.WindowProtection. + /// + /// + public static readonly XName windowProtection = "windowProtection"; + + /// + /// Represents the windowWidth XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.WindowWidth, WorkbookView.WindowWidth. + /// + /// + public static readonly XName windowWidth = "windowWidth"; + + /// + /// Represents the workbookAlgorithmName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.WorkbookAlgorithmName. + /// + /// + public static readonly XName workbookAlgorithmName = "workbookAlgorithmName"; + + /// + /// Represents the workbookHashValue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.WorkbookHashValue. + /// + /// + public static readonly XName workbookHashValue = "workbookHashValue"; + + /// + /// Represents the workbookParameter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DefinedName.WorkbookParameter. + /// + /// + public static readonly XName workbookParameter = "workbookParameter"; + + /// + /// Represents the workbookPassword XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.WorkbookPassword. + /// + /// + public static readonly XName workbookPassword = "workbookPassword"; + + /// + /// Represents the workbookSaltValue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.WorkbookSaltValue. + /// + /// + public static readonly XName workbookSaltValue = "workbookSaltValue"; + + /// + /// Represents the workbookSpinCount XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WorkbookProtection.WorkbookSpinCount. + /// + /// + public static readonly XName workbookSpinCount = "workbookSpinCount"; + + /// + /// Represents the workbookViewId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChartSheetView.WorkbookViewId, SheetView.WorkbookViewId. + /// + /// + public static readonly XName workbookViewId = "workbookViewId"; + + /// + /// Represents the wR XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ArcTo.WidthRadius. + /// + /// + public static readonly XName wR = "wR"; + + /// + /// Represents the wrap XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BodyProperties.Wrap, TextBodyProperties.Wrap. + /// + /// + public static readonly XName wrap = "wrap"; + + /// + /// Represents the wrapcoords XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Wrapcoords, Curve.WrapCoordinates, Group.WrapCoordinates, ImageFile.WrapCoordinates, Line.WrapCoordinates, Oval.WrapCoordinates, PolyLine.WrapCoordinates, Rectangle.WrapCoordinates, RoundRectangle.WrapCoordinates, Shape.WrapCoordinates, Shapetype.WrapCoordinates. + /// + /// + public static readonly XName wrapcoords = "wrapcoords"; + + /// + /// Represents the wrapText XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Alignment.WrapText, WrapSquare.WrapText, WrapThrough.WrapText, WrapTight.WrapText. + /// + /// + public static readonly XName wrapText = "wrapText"; + + /// + /// Represents the x XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Anchor.X, ByPosition.X, ChildOffset.X, Field.Index, FieldUsage.Index, FromPosition.X, Item.Index, LineTo.X, NameIndex.Index, Offset.X, Origin.X, Point.X, Position.X, RotationCenter.X, SimplePosition.X, StartPoint.X, TabularSlicerCacheItem.Atom, ToPosition.X, TracePoint.XCoordinate. + /// + /// + public static readonly XName x = "x"; + + /// + /// Represents the x1 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BackgroundMark.FirstXCoordinate, ForegroundMark.FirstXCoordinate. + /// + /// + public static readonly XName x1 = "x1"; + + /// + /// Represents the x2 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BackgroundMark.SecondXCoordinate, ForegroundMark.SecondXCoordinate. + /// + /// + public static readonly XName x2 = "x2"; + + /// + /// Represents the xfDxf XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: RevisionCellChange.RowColumnFormattingAffected, RevisionFormat.RowOrColumnAffected. + /// + /// + public static readonly XName xfDxf = "xfDxf"; + + /// + /// Represents the xfId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CellFormat.FormatId, CellStyle.FormatId. + /// + /// + public static readonly XName xfId = "xfId"; + + /// + /// Represents the xfrmType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonBehavior.TransformType. + /// + /// + public static readonly XName xfrmType = "xfrmType"; + + /// + /// Represents the xl2000 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.RefreshedInExcel2000. + /// + /// + public static readonly XName xl2000 = "xl2000"; + + /// + /// Represents the xl97 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.CreatedInExcel97. + /// + /// + public static readonly XName xl97 = "xl97"; + + /// + /// Represents the xlm XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DefinedName.Xlm. + /// + /// + public static readonly XName xlm = "xlm"; + + /// + /// Represents the xml XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WebQueryProperties.XmlSource. + /// + /// + public static readonly XName xml = "xml"; + + /// + /// Represents the xmlDataType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: XmlColumnProperties.XmlDataType, XmlProperties.XmlDataType. + /// + /// + public static readonly XName xmlDataType = "xmlDataType"; + + /// + /// Represents the xpath XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: XmlColumnProperties.XPath, XmlProperties.XPath. + /// + /// + public static readonly XName xpath = "xpath"; + + /// + /// Represents the xrange XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeHandle.XRange. + /// + /// + public static readonly XName xrange = "xrange"; + + /// + /// Represents the xscale XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextPath.XScale. + /// + /// + public static readonly XName xscale = "xscale"; + + /// + /// Represents the xSplit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Pane.HorizontalSplit. + /// + /// + public static readonly XName xSplit = "xSplit"; + + /// + /// Represents the xWindow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.XWindow, DataValidations.XWindow, WorkbookView.XWindow. + /// + /// + public static readonly XName xWindow = "xWindow"; + + /// + /// Represents the y XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Anchor.Y, ByPosition.Y, ChildOffset.Y, FromPosition.Y, LineTo.Y, Offset.Y, Origin.Y, Point.Y, Position.Y, RotationCenter.Y, SimplePosition.Y, StartPoint.Y, ToPosition.Y, TracePoint.YCoordinate. + /// + /// + public static readonly XName y = "y"; + + /// + /// Represents the y1 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BackgroundMark.FirstYCoordinate, ForegroundMark.FirstYCoordinate. + /// + /// + public static readonly XName y1 = "y1"; + + /// + /// Represents the y2 XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BackgroundMark.SecondYCoordinate, ForegroundMark.SecondYCoordinate. + /// + /// + public static readonly XName y2 = "y2"; + + /// + /// Represents the year XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DateGroupItem.Year. + /// + /// + public static readonly XName year = "year"; + + /// + /// Represents the yrange XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ShapeHandle.YRange. + /// + /// + public static readonly XName yrange = "yrange"; + + /// + /// Represents the ySplit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Pane.VerticalSplit. + /// + /// + public static readonly XName ySplit = "ySplit"; + + /// + /// Represents the yWindow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: CustomWorkbookView.YWindow, DataValidations.YWindow, WorkbookView.YWindow. + /// + /// + public static readonly XName yWindow = "yWindow"; + + /// + /// Represents the z XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , . + /// corresponds to the following strongly-typed properties: Anchor.Z, FlatText.Z, HiddenShape3D.Z, Shape3D.Z, Shape3DType.Z. + /// + /// + public static readonly XName z = "z"; + + /// + /// Represents the z-order XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ObjectAnchor.ZOrder. + /// + /// + public static readonly XName z_order = "z-order"; + + /// + /// Represents the zeroHeight XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetFormatProperties.ZeroHeight. + /// + /// + public static readonly XName zeroHeight = "zeroHeight"; + + /// + /// Represents the zeroValues XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomSheetView.ZeroValues. + /// + /// + public static readonly XName zeroValues = "zeroValues"; + + /// + /// Represents the zoom XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Camera.Zoom. + /// + /// + public static readonly XName zoom = "zoom"; + + /// + /// Represents the zoomContents XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AnimateScale.ZoomContents. + /// + /// + public static readonly XName zoomContents = "zoomContents"; + + /// + /// Represents the zoomScale XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ChartSheetView.ZoomScale, SheetView.ZoomScale. + /// + /// + public static readonly XName zoomScale = "zoomScale"; + + /// + /// Represents the zoomScaleNormal XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetView.ZoomScaleNormal. + /// + /// + public static readonly XName zoomScaleNormal = "zoomScaleNormal"; + + /// + /// Represents the zoomScalePageLayoutView XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetView.ZoomScalePageLayoutView. + /// + /// + public static readonly XName zoomScalePageLayoutView = "zoomScalePageLayoutView"; + + /// + /// Represents the zoomScaleSheetLayoutView XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SheetView.ZoomScaleSheetLayoutView. + /// + /// + public static readonly XName zoomScaleSheetLayoutView = "zoomScaleSheetLayoutView"; + + /// + /// Represents the zoomToFit XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ChartSheetView.ZoomToFit, CustomChartsheetView.ZoomToFit. + /// + /// + public static readonly XName zoomToFit = "zoomToFit"; + + /// + /// Represents the zOrderOff XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shape.ZOrderOffset. + /// + /// + public static readonly XName zOrderOff = "zOrderOff"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/O.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/O.g.cs new file mode 100644 index 000000000..84a3d3dbd --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/O.g.cs @@ -0,0 +1,1074 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:o="urn:schemas-microsoft-com:office:office" namespace. + /// + public static class O + { + /// + /// Defines the XML namespace associated with the o prefix. + /// + public static readonly XNamespace o = "urn:schemas-microsoft-com:office:office"; + + /// + /// Represents the o:allowincell XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.AllowInCell, Curve.AllowInCell, Group.AllowInCell, ImageFile.AllowInCell, Line.AllowInCell, Oval.AllowInCell, PolyLine.AllowInCell, Rectangle.AllowInCell, RoundRectangle.AllowInCell, Shape.AllowInCell, ShapeDefaults.AllowInCell, Shapetype.AllowInCell. + /// + /// + public static readonly XName allowincell = o + "allowincell"; + + /// + /// Represents the o:allowoverlap XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.AllowOverlap, Curve.AllowOverlap, Group.AllowOverlap, ImageFile.AllowOverlap, Line.AllowOverlap, Oval.AllowOverlap, PolyLine.AllowOverlap, Rectangle.AllowOverlap, RoundRectangle.AllowOverlap, Shape.AllowOverlap, ShapeDefaults.AllowOverlap, Shapetype.AllowOverlap. + /// + /// + public static readonly XName allowoverlap = o + "allowoverlap"; + + /// + /// Represents the o:althref XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.AlternateImageReference, ColumnStroke.AlternateImageReference, Fill.AlternateImageReference, LeftStroke.AlternateImageReference, RightStroke.AlternateImageReference, Stroke.AlternateImageReference, TopStroke.AlternateImageReference. + /// + /// + public static readonly XName althref = o + "althref"; + + /// + /// Represents the o:borderbottomcolor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.BorderBottomColor, Curve.BorderBottomColor, ImageFile.BorderBottomColor, Line.BorderBottomColor, Oval.BorderBottomColor, PolyLine.BorderBottomColor, Rectangle.BorderBottomColor, RoundRectangle.BorderBottomColor, Shape.BorderBottomColor, Shapetype.BorderBottomColor. + /// + /// + public static readonly XName borderbottomcolor = o + "borderbottomcolor"; + + /// + /// Represents the o:borderleftcolor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.BorderLeftColor, Curve.BorderLeftColor, ImageFile.BorderLeftColor, Line.BorderLeftColor, Oval.BorderLeftColor, PolyLine.BorderLeftColor, Rectangle.BorderLeftColor, RoundRectangle.BorderLeftColor, Shape.BorderLeftColor, Shapetype.BorderLeftColor. + /// + /// + public static readonly XName borderleftcolor = o + "borderleftcolor"; + + /// + /// Represents the o:borderrightcolor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.BorderRightColor, Curve.BorderRightColor, ImageFile.BorderRightColor, Line.BorderRightColor, Oval.BorderRightColor, PolyLine.BorderRightColor, Rectangle.BorderRightColor, RoundRectangle.BorderRightColor, Shape.BorderRightColor, Shapetype.BorderRightColor. + /// + /// + public static readonly XName borderrightcolor = o + "borderrightcolor"; + + /// + /// Represents the o:bordertopcolor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.BorderTopColor, Curve.BorderTopColor, ImageFile.BorderTopColor, Line.BorderTopColor, Oval.BorderTopColor, PolyLine.BorderTopColor, Rectangle.BorderTopColor, RoundRectangle.BorderTopColor, Shape.BorderTopColor, Shapetype.BorderTopColor. + /// + /// + public static readonly XName bordertopcolor = o + "bordertopcolor"; + + /// + /// Represents the o:bottom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BottomStroke. + /// + /// + public static readonly XName bottom = o + "bottom"; + + /// + /// Represents the o:bullet XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Bullet, Curve.Bullet, Group.Bullet, ImageFile.Bullet, Line.Bullet, Oval.Bullet, PolyLine.Bullet, Rectangle.Bullet, RoundRectangle.Bullet, Shape.Bullet, Shapetype.Bullet. + /// + /// + public static readonly XName bullet = o + "bullet"; + + /// + /// Represents the o:button XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Button, Curve.Button, Group.Button, ImageFile.Button, Line.Button, Oval.Button, PolyLine.Button, Rectangle.Button, RoundRectangle.Button, Shape.Button, Shapetype.Button. + /// + /// + public static readonly XName button = o + "button"; + + /// + /// Represents the o:bwmode XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.BlackWhiteMode, Background.BlackWhiteMode, Curve.BlackWhiteMode, ImageFile.BlackWhiteMode, Line.BlackWhiteMode, Oval.BlackWhiteMode, PolyLine.BlackWhiteMode, Rectangle.BlackWhiteMode, RoundRectangle.BlackWhiteMode, Shape.BlackWhiteMode, Shapetype.BlackWhiteMode. + /// + /// + public static readonly XName bwmode = o + "bwmode"; + + /// + /// Represents the o:bwnormal XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.NormalBlackWhiteMode, Background.NormalBlackWhiteMode, Curve.NormalBlackWhiteMode, ImageFile.NormalBlackWhiteMode, Line.NormalBlackWhiteMode, Oval.NormalBlackWhiteMode, PolyLine.NormalBlackWhiteMode, Rectangle.NormalBlackWhiteMode, RoundRectangle.NormalBlackWhiteMode, Shape.NormalBlackWhiteMode, Shapetype.NormalBlackWhiteMode. + /// + /// + public static readonly XName bwnormal = o + "bwnormal"; + + /// + /// Represents the o:bwpure XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.PureBlackWhiteMode, Background.PureBlackWhiteMode, Curve.PureBlackWhiteMode, ImageFile.PureBlackWhiteMode, Line.PureBlackWhiteMode, Oval.PureBlackWhiteMode, PolyLine.PureBlackWhiteMode, Rectangle.PureBlackWhiteMode, RoundRectangle.PureBlackWhiteMode, Shape.PureBlackWhiteMode, Shapetype.PureBlackWhiteMode. + /// + /// + public static readonly XName bwpure = o + "bwpure"; + + /// + /// Represents the o:callout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Callout. + /// + /// + public static readonly XName callout = o + "callout"; + + /// + /// Represents the o:clip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Clip, Curve.Clip, ImageFile.Clip, Line.Clip, Oval.Clip, PolyLine.Clip, Rectangle.Clip, RoundRectangle.Clip, Shape.Clip, Shapetype.Clip. + /// + /// + public static readonly XName clip = o + "clip"; + + /// + /// Represents the o:clippath XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ClipPath. + /// + /// + public static readonly XName clippath = o + "clippath"; + + /// + /// Represents the o:cliptowrap XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.ClipToWrap, Curve.ClipToWrap, ImageFile.ClipToWrap, Line.ClipToWrap, Oval.ClipToWrap, PolyLine.ClipToWrap, Rectangle.ClipToWrap, RoundRectangle.ClipToWrap, Shape.ClipToWrap, Shapetype.ClipToWrap. + /// + /// + public static readonly XName cliptowrap = o + "cliptowrap"; + + /// + /// Represents the o:colormenu XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: ColorMenu. + /// + /// + public static readonly XName colormenu = o + "colormenu"; + + /// + /// Represents the o:colormru XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColorMostRecentlyUsed. + /// + /// + public static readonly XName colormru = o + "colormru"; + + /// + /// Represents the o:column XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ColumnStroke. + /// + /// + public static readonly XName column = o + "column"; + + /// + /// Represents the o:complex XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Complex. + /// + /// + public static readonly XName complex = o + "complex"; + + /// + /// Represents the o:connectangles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.ConnectAngles. + /// + /// + public static readonly XName connectangles = o + "connectangles"; + + /// + /// Represents the o:connectlocs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.ConnectionPoints. + /// + /// + public static readonly XName connectlocs = o + "connectlocs"; + + /// + /// Represents the o:connectortype XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.ConnectorType, Curve.ConnectorType, ImageFile.ConnectorType, Line.ConnectorType, Oval.ConnectorType, PolyLine.ConnectorType, Rectangle.ConnectorType, RoundRectangle.ConnectorType, Shape.ConnectorType, Shapetype.ConnectorType. + /// + /// + public static readonly XName connectortype = o + "connectortype"; + + /// + /// Represents the o:connecttype XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.ConnectionPointType. + /// + /// + public static readonly XName connecttype = o + "connecttype"; + + /// + /// Represents the o:detectmouseclick XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Fill.DetectMouseClick, ImageData.DetectMouseClick. + /// + /// + public static readonly XName detectmouseclick = o + "detectmouseclick"; + + /// + /// Represents the o:dgmlayout XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.DiagramLayout, Curve.DiagramLayout, Group.DiagramLayout, ImageFile.DiagramLayout, Line.DiagramLayout, Oval.DiagramLayout, PolyLine.DiagramLayout, Rectangle.DiagramLayout, RoundRectangle.DiagramLayout, Shape.DiagramLayout, Shapetype.DiagramLayout. + /// + /// + public static readonly XName dgmlayout = o + "dgmlayout"; + + /// + /// Represents the o:dgmlayoutmru XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.DiagramLayoutMostRecentUsed, Curve.DiagramLayoutMostRecentUsed, Group.DiagramLayoutMostRecentUsed, ImageFile.DiagramLayoutMostRecentUsed, Line.DiagramLayoutMostRecentUsed, Oval.DiagramLayoutMostRecentUsed, PolyLine.DiagramLayoutMostRecentUsed, Rectangle.DiagramLayoutMostRecentUsed, RoundRectangle.DiagramLayoutMostRecentUsed, Shape.DiagramLayoutMostRecentUsed, Shapetype.DiagramLayoutMostRecentUsed. + /// + /// + public static readonly XName dgmlayoutmru = o + "dgmlayoutmru"; + + /// + /// Represents the o:dgmnodekind XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.DiagramNodeKind, Curve.DiagramNodeKind, Group.DiagramNodeKind, ImageFile.DiagramNodeKind, Line.DiagramNodeKind, Oval.DiagramNodeKind, PolyLine.DiagramNodeKind, Rectangle.DiagramNodeKind, RoundRectangle.DiagramNodeKind, Shape.DiagramNodeKind, Shapetype.DiagramNodeKind. + /// + /// + public static readonly XName dgmnodekind = o + "dgmnodekind"; + + /// + /// Represents the o:diagram XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Diagram. + /// + /// + public static readonly XName diagram = o + "diagram"; + + /// + /// Represents the o:doubleclicknotify XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.DoubleClickNotify, Curve.DoubleClickNotify, Group.DoubleClickNotify, ImageFile.DoubleClickNotify, Line.DoubleClickNotify, Oval.DoubleClickNotify, PolyLine.DoubleClickNotify, Rectangle.DoubleClickNotify, RoundRectangle.DoubleClickNotify, Shape.DoubleClickNotify, Shapetype.DoubleClickNotify. + /// + /// + public static readonly XName doubleclicknotify = o + "doubleclicknotify"; + + /// + /// Represents the o:entry XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Entry. + /// + /// + public static readonly XName entry = o + "entry"; + + /// + /// Represents the o:extrusion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Extrusion. + /// + /// + public static readonly XName extrusion = o + "extrusion"; + + /// + /// Represents the o:extrusionok XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Path.AllowExtrusion. + /// + /// + public static readonly XName extrusionok = o + "extrusionok"; + + /// + /// Represents the o:FieldCodes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FieldCodes. + /// + /// + public static readonly XName FieldCodes = o + "FieldCodes"; + + /// + /// Represents the o:fill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FillExtendedProperties. + /// + /// + public static readonly XName fill = o + "fill"; + + /// + /// Represents the o:forcedash XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.ForceDash, BottomStroke.ForceDash, ColumnStroke.ForceDash, Curve.ForceDash, ImageFile.ForceDash, LeftStroke.ForceDash, Line.ForceDash, Oval.ForceDash, PolyLine.ForceDash, Rectangle.ForceDash, RightStroke.ForceDash, RoundRectangle.ForceDash, Shape.ForceDash, Shapetype.ForceDash, Stroke.ForceDash, TopStroke.ForceDash. + /// + /// + public static readonly XName forcedash = o + "forcedash"; + + /// + /// Represents the o:gfxdata XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Gfxdata, Curve.Gfxdata, Group.Gfxdata, ImageFile.Gfxdata, Line.Gfxdata, Oval.Gfxdata, PolyLine.Gfxdata, Rectangle.Gfxdata, RoundRectangle.Gfxdata, Shape.EncodedPackage. + /// + /// + public static readonly XName gfxdata = o + "gfxdata"; + + /// + /// Represents the o:hr XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Horizontal, Curve.Horizontal, Group.Horizontal, ImageFile.Horizontal, Line.Horizontal, Oval.Horizontal, PolyLine.Horizontal, Rectangle.Horizontal, RoundRectangle.Horizontal, Shape.Horizontal, Shapetype.Horizontal. + /// + /// + public static readonly XName hr = o + "hr"; + + /// + /// Represents the o:hralign XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.HorizontalAlignment, Curve.HorizontalAlignment, Group.HorizontalAlignment, ImageFile.HorizontalAlignment, Line.HorizontalAlignment, Oval.HorizontalAlignment, PolyLine.HorizontalAlignment, Rectangle.HorizontalAlignment, RoundRectangle.HorizontalAlignment, Shape.HorizontalAlignment, Shapetype.HorizontalAlignment. + /// + /// + public static readonly XName hralign = o + "hralign"; + + /// + /// Represents the o:href XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.Href, ColumnStroke.Href, Fill.Href, LeftStroke.Href, RightStroke.Href, Stroke.Href, TopStroke.Href. + /// + /// + public static readonly XName href = o + "href"; + + /// + /// Represents the o:hrnoshade XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.HorizontalNoShade, Curve.HorizontalNoShade, Group.HorizontalNoShade, ImageFile.HorizontalNoShade, Line.HorizontalNoShade, Oval.HorizontalNoShade, PolyLine.HorizontalNoShade, Rectangle.HorizontalNoShade, RoundRectangle.HorizontalNoShade, Shape.HorizontalNoShade, Shapetype.HorizontalNoShade. + /// + /// + public static readonly XName hrnoshade = o + "hrnoshade"; + + /// + /// Represents the o:hrpct XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.HorizontalPercentage, Curve.HorizontalPercentage, Group.HorizontalPercentage, ImageFile.HorizontalPercentage, Line.HorizontalPercentage, Oval.HorizontalPercentage, PolyLine.HorizontalPercentage, Rectangle.HorizontalPercentage, RoundRectangle.HorizontalPercentage, Shape.HorizontalPercentage, Shapetype.HorizontalPercentage. + /// + /// + public static readonly XName hrpct = o + "hrpct"; + + /// + /// Represents the o:hrstd XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.HorizontalStandard, Curve.HorizontalStandard, Group.HorizontalStandard, ImageFile.HorizontalStandard, Line.HorizontalStandard, Oval.HorizontalStandard, PolyLine.HorizontalStandard, Rectangle.HorizontalStandard, RoundRectangle.HorizontalStandard, Shape.HorizontalStandard, Shapetype.HorizontalStandard. + /// + /// + public static readonly XName hrstd = o + "hrstd"; + + /// + /// Represents the o:idmap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ShapeIdMap. + /// + /// + public static readonly XName idmap = o + "idmap"; + + /// + /// Represents the o:ink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Ink. + /// + /// + public static readonly XName ink = o + "ink"; + + /// + /// Represents the o:insetmode XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.InsetMode, Curve.InsetMode, Group.InsetMode, ImageFile.InsetMode, Line.InsetMode, Oval.InsetMode, PolyLine.InsetMode, Rectangle.InsetMode, RoundRectangle.InsetMode, Shape.InsetMode, ShapeDefaults.InsetMode, Shapetype.InsetMode. + /// + /// + public static readonly XName insetmode = o + "insetmode"; + + /// + /// Represents the o:left XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: LeftStroke. + /// + /// + public static readonly XName left = o + "left"; + + /// + /// Represents the o:LinkType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: LinkType. + /// + /// + public static readonly XName LinkType = o + "LinkType"; + + /// + /// Represents the o:lock XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Lock. + /// + /// + public static readonly XName @lock = o + "lock"; + + /// + /// Represents the o:LockedField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: LockedField. + /// + /// + public static readonly XName LockedField = o + "LockedField"; + + /// + /// Represents the o:master XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shapetype.Master. + /// + /// + public static readonly XName master = o + "master"; + + /// + /// Represents the o:ole XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Ole, Curve.Ole, ImageFile.Ole, Line.Ole, Oval.Ole, PolyLine.Ole, Rectangle.Ole, RoundRectangle.Ole, Shape.Ole, Shapetype.Ole. + /// + /// + public static readonly XName ole = o + "ole"; + + /// + /// Represents the o:oleicon XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.OleIcon, Curve.OleIcon, ImageFile.OleIcon, Line.OleIcon, Oval.OleIcon, PolyLine.OleIcon, Rectangle.OleIcon, RoundRectangle.OleIcon, Shape.OleIcon, Shapetype.OleIcon. + /// + /// + public static readonly XName oleicon = o + "oleicon"; + + /// + /// Represents the o:OLEObject XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: OleObject. + /// + /// + public static readonly XName OLEObject = o + "OLEObject"; + + /// + /// Represents the o:oned XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.Oned, Curve.Oned, Group.Oned, ImageFile.Oned, Line.Oned, Oval.Oned, PolyLine.Oned, Rectangle.Oned, RoundRectangle.Oned, Shape.Oned, Shapetype.Oned. + /// + /// + public static readonly XName oned = o + "oned"; + + /// + /// Represents the o:opacity2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fill.Opacity2. + /// + /// + public static readonly XName opacity2 = o + "opacity2"; + + /// + /// Represents the o:preferrelative XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.PreferRelative, Curve.PreferRelative, ImageFile.PreferRelative, Line.PreferRelative, Oval.PreferRelative, PolyLine.PreferRelative, Rectangle.PreferRelative, RoundRectangle.PreferRelative, Shape.PreferRelative, Shapetype.PreferRelative. + /// + /// + public static readonly XName preferrelative = o + "preferrelative"; + + /// + /// Represents the o:proxy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Proxy. + /// + /// + public static readonly XName proxy = o + "proxy"; + + /// + /// Represents the o:r XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Rule. + /// + /// + public static readonly XName r = o + "r"; + + /// + /// Represents the o:regroupid XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.RegroupId, Curve.RegroupId, Group.RegroupId, ImageFile.RegroupId, Line.RegroupId, Oval.RegroupId, PolyLine.RegroupId, Rectangle.RegroupId, RoundRectangle.RegroupId, Shape.RegroupId, Shapetype.RegroupId. + /// + /// + public static readonly XName regroupid = o + "regroupid"; + + /// + /// Represents the o:regrouptable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RegroupTable. + /// + /// + public static readonly XName regrouptable = o + "regrouptable"; + + /// + /// Represents the o:rel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Relation. + /// + /// + public static readonly XName rel = o + "rel"; + + /// + /// Represents the o:relationtable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RelationTable. + /// + /// + public static readonly XName relationtable = o + "relationtable"; + + /// + /// Represents the o:relid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ImageData.RelId. + /// + /// + public static readonly XName relid = o + "relid"; + + /// + /// Represents the o:right XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RightStroke. + /// + /// + public static readonly XName right = o + "right"; + + /// + /// Represents the o:rules XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Rules. + /// + /// + public static readonly XName rules = o + "rules"; + + /// + /// Represents the o:shapedefaults XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ShapeDefaults. + /// + /// + public static readonly XName shapedefaults = o + "shapedefaults"; + + /// + /// Represents the o:shapelayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeLayout. + /// + /// + public static readonly XName shapelayout = o + "shapelayout"; + + /// + /// Represents the o:signatureline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SignatureLine. + /// + /// + public static readonly XName signatureline = o + "signatureline"; + + /// + /// Represents the o:singleclick XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextBox.SingleClick. + /// + /// + public static readonly XName singleclick = o + "singleclick"; + + /// + /// Represents the o:skew XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Skew. + /// + /// + public static readonly XName skew = o + "skew"; + + /// + /// Represents the o:spid XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.OptionalString, Curve.OptionalString, Group.OptionalString, ImageFile.OptionalString, Line.OptionalString, Oval.OptionalString, PolyLine.OptionalString, Rectangle.OptionalString, RoundRectangle.OptionalString, Shape.OptionalString, Shapetype.OptionalString. + /// + /// + public static readonly XName spid = o + "spid"; + + /// + /// Represents the o:spt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.OptionalNumber, Curve.OptionalNumber, ImageFile.OptionalNumber, Line.OptionalNumber, Oval.OptionalNumber, PolyLine.OptionalNumber, Rectangle.OptionalNumber, RoundRectangle.OptionalNumber, Shape.OptionalNumber, Shapetype.OptionalNumber. + /// + /// + public static readonly XName spt = o + "spt"; + + /// + /// Represents the o:suggestedsigner XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SuggestedSigner. + /// + /// + public static readonly XName suggestedsigner = o + "suggestedsigner"; + + /// + /// Represents the o:suggestedsigner2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SuggestedSigner2. + /// + /// + public static readonly XName suggestedsigner2 = o + "suggestedsigner2"; + + /// + /// Represents the o:suggestedsigneremail XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SignatureLine.SuggestedSignerEmail. + /// + /// + public static readonly XName suggestedsigneremail = o + "suggestedsigneremail"; + + /// + /// Represents the o:tablelimits XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Group.TableLimits. + /// + /// + public static readonly XName tablelimits = o + "tablelimits"; + + /// + /// Represents the o:tableproperties XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Group.TableProperties. + /// + /// + public static readonly XName tableproperties = o + "tableproperties"; + + /// + /// Represents the o:targetscreensize XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Background.TargetScreenSize. + /// + /// + public static readonly XName targetscreensize = o + "targetscreensize"; + + /// + /// Represents the o:title XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.Title, ColumnStroke.Title, Fill.Title, ImageData.Title, LeftStroke.Title, RightStroke.Title, Stroke.Title, TopStroke.Title. + /// + /// + public static readonly XName title = o + "title"; + + /// + /// Represents the o:top XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TopStroke. + /// + /// + public static readonly XName top = o + "top"; + + /// + /// Represents the o:userdrawn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.UserDrawn, Curve.UserDrawn, Group.UserDrawn, ImageFile.UserDrawn, Line.UserDrawn, Oval.UserDrawn, PolyLine.UserDrawn, Rectangle.UserDrawn, RoundRectangle.UserDrawn, Shape.UserDrawn, Shapetype.UserDrawn. + /// + /// + public static readonly XName userdrawn = o + "userdrawn"; + + /// + /// Represents the o:userhidden XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Arc.UserHidden, Curve.UserHidden, Group.UserHidden, ImageFile.UserHidden, Line.UserHidden, Oval.UserHidden, PolyLine.UserHidden, Rectangle.UserHidden, RoundRectangle.UserHidden, Shape.UserHidden, Shapetype.UserHidden. + /// + /// + public static readonly XName userhidden = o + "userhidden"; + + /// + /// Represents the o:v XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ClipPath.Value. + /// + /// + public static readonly XName v = o + "v"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/OP.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/OP.g.cs new file mode 100644 index 000000000..fd95ce066 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/OP.g.cs @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:op="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" namespace. + /// + public static class OP + { + /// + /// Defines the XML namespace associated with the op prefix. + /// + public static readonly XNamespace op = "http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"; + + /// + /// Represents the op:Properties XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Properties. + /// + /// + public static readonly XName Properties = op + "Properties"; + + /// + /// Represents the op:property XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: CustomDocumentProperty. + /// + /// + public static readonly XName property = op + "property"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P.g.cs new file mode 100644 index 000000000..434963cce --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P.g.cs @@ -0,0 +1,2833 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:p="http://schemas.openxmlformats.org/presentationml/2006/main" namespace. + /// + public static class P + { + /// + /// Defines the XML namespace associated with the p prefix. + /// + public static readonly XNamespace p = "http://schemas.openxmlformats.org/presentationml/2006/main"; + + /// + /// Represents the p:anim XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Animate. + /// + /// + public static readonly XName anim = p + "anim"; + + /// + /// Represents the p:animClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: AnimateColor. + /// + /// + public static readonly XName animClr = p + "animClr"; + + /// + /// Represents the p:animEffect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: AnimateEffect. + /// + /// + public static readonly XName animEffect = p + "animEffect"; + + /// + /// Represents the p:animMotion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: AnimateMotion. + /// + /// + public static readonly XName animMotion = p + "animMotion"; + + /// + /// Represents the p:animRot XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: AnimateRotation. + /// + /// + public static readonly XName animRot = p + "animRot"; + + /// + /// Represents the p:animScale XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: AnimateScale. + /// + /// + public static readonly XName animScale = p + "animScale"; + + /// + /// Represents the p:attrName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AttributeName. + /// + /// + public static readonly XName attrName = p + "attrName"; + + /// + /// Represents the p:attrNameLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AttributeNameList. + /// + /// + public static readonly XName attrNameLst = p + "attrNameLst"; + + /// + /// Represents the p:audio XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Audio. + /// + /// + public static readonly XName audio = p + "audio"; + + /// + /// Represents the p:bg XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Background, BackgroundAnimation. + /// + /// + public static readonly XName bg = p + "bg"; + + /// + /// Represents the p:bgPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BackgroundProperties. + /// + /// + public static readonly XName bgPr = p + "bgPr"; + + /// + /// Represents the p:bgRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BackgroundStyleReference. + /// + /// + public static readonly XName bgRef = p + "bgRef"; + + /// + /// Represents the p:bldAsOne XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: BuildAsOne. + /// + /// + public static readonly XName bldAsOne = p + "bldAsOne"; + + /// + /// Represents the p:bldDgm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: BuildDiagram. + /// + /// + public static readonly XName bldDgm = p + "bldDgm"; + + /// + /// Represents the p:bldGraphic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: BuildGraphics. + /// + /// + public static readonly XName bldGraphic = p + "bldGraphic"; + + /// + /// Represents the p:bldLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: BuildList. + /// + /// + public static readonly XName bldLst = p + "bldLst"; + + /// + /// Represents the p:bldOleChart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: BuildOleChart. + /// + /// + public static readonly XName bldOleChart = p + "bldOleChart"; + + /// + /// Represents the p:bldP XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: BuildParagraph. + /// + /// + public static readonly XName bldP = p + "bldP"; + + /// + /// Represents the p:bldSub XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: BuildSubElement. + /// + /// + public static readonly XName bldSub = p + "bldSub"; + + /// + /// Represents the p:blinds XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BlindsTransition. + /// + /// + public static readonly XName blinds = p + "blinds"; + + /// + /// Represents the p:blipFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BlipFill. + /// + /// + public static readonly XName blipFill = p + "blipFill"; + + /// + /// Represents the p:bodyStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BodyStyle. + /// + /// + public static readonly XName bodyStyle = p + "bodyStyle"; + + /// + /// Represents the p:bold XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BoldFont. + /// + /// + public static readonly XName bold = p + "bold"; + + /// + /// Represents the p:boldItalic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BoldItalicFont. + /// + /// + public static readonly XName boldItalic = p + "boldItalic"; + + /// + /// Represents the p:boolVal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BooleanVariantValue. + /// + /// + public static readonly XName boolVal = p + "boolVal"; + + /// + /// Represents the p:browse XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BrowseSlideMode. + /// + /// + public static readonly XName browse = p + "browse"; + + /// + /// Represents the p:by XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ByColor, ByPosition. + /// + /// + public static readonly XName by = p + "by"; + + /// + /// Represents the p:cBhvr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: CommonBehavior. + /// + /// + public static readonly XName cBhvr = p + "cBhvr"; + + /// + /// Represents the p:charRg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CharRange. + /// + /// + public static readonly XName charRg = p + "charRg"; + + /// + /// Represents the p:checker XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CheckerTransition. + /// + /// + public static readonly XName checker = p + "checker"; + + /// + /// Represents the p:childTnLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ChildTimeNodeList. + /// + /// + public static readonly XName childTnLst = p + "childTnLst"; + + /// + /// Represents the p:circle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CircleTransition. + /// + /// + public static readonly XName circle = p + "circle"; + + /// + /// Represents the p:clrMap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ColorMap. + /// + /// + public static readonly XName clrMap = p + "clrMap"; + + /// + /// Represents the p:clrMapOvr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ColorMapOverride. + /// + /// + public static readonly XName clrMapOvr = p + "clrMapOvr"; + + /// + /// Represents the p:clrMru XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ColorMostRecentlyUsed. + /// + /// + public static readonly XName clrMru = p + "clrMru"; + + /// + /// Represents the p:clrVal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ColorValue. + /// + /// + public static readonly XName clrVal = p + "clrVal"; + + /// + /// Represents the p:cm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Comment. + /// + /// + public static readonly XName cm = p + "cm"; + + /// + /// Represents the p:cmAuthor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: CommentAuthor. + /// + /// + public static readonly XName cmAuthor = p + "cmAuthor"; + + /// + /// Represents the p:cmAuthorLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CommentAuthorList. + /// + /// + public static readonly XName cmAuthorLst = p + "cmAuthorLst"; + + /// + /// Represents the p:cmd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Command. + /// + /// + public static readonly XName cmd = p + "cmd"; + + /// + /// Represents the p:cMediaNode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: CommonMediaNode. + /// + /// + public static readonly XName cMediaNode = p + "cMediaNode"; + + /// + /// Represents the p:cmLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CommentList. + /// + /// + public static readonly XName cmLst = p + "cmLst"; + + /// + /// Represents the p:cNvCxnSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: NonVisualConnectorShapeDrawingProperties. + /// + /// + public static readonly XName cNvCxnSpPr = p + "cNvCxnSpPr"; + + /// + /// Represents the p:cNvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameDrawingProperties. + /// + /// + public static readonly XName cNvGraphicFramePr = p + "cNvGraphicFramePr"; + + /// + /// Represents the p:cNvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupShapeDrawingProperties. + /// + /// + public static readonly XName cNvGrpSpPr = p + "cNvGrpSpPr"; + + /// + /// Represents the p:cNvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualPictureDrawingProperties. + /// + /// + public static readonly XName cNvPicPr = p + "cNvPicPr"; + + /// + /// Represents the p:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = p + "cNvPr"; + + /// + /// Represents the p:cNvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualShapeDrawingProperties. + /// + /// + public static readonly XName cNvSpPr = p + "cNvSpPr"; + + /// + /// Represents the p:comb XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CombTransition. + /// + /// + public static readonly XName comb = p + "comb"; + + /// + /// Represents the p:cond XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Condition. + /// + /// + public static readonly XName cond = p + "cond"; + + /// + /// Represents the p:contentPart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ContentPart. + /// + /// + public static readonly XName contentPart = p + "contentPart"; + + /// + /// Represents the p:control XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Control. + /// + /// + public static readonly XName control = p + "control"; + + /// + /// Represents the p:controls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ControlList. + /// + /// + public static readonly XName controls = p + "controls"; + + /// + /// Represents the p:cover XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CoverTransition. + /// + /// + public static readonly XName cover = p + "cover"; + + /// + /// Represents the p:cSld XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CommonSlideData. + /// + /// + public static readonly XName cSld = p + "cSld"; + + /// + /// Represents the p:cSldViewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CommonSlideViewProperties. + /// + /// + public static readonly XName cSldViewPr = p + "cSldViewPr"; + + /// + /// Represents the p:cTn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CommonTimeNode. + /// + /// + public static readonly XName cTn = p + "cTn"; + + /// + /// Represents the p:custData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomerData. + /// + /// + public static readonly XName custData = p + "custData"; + + /// + /// Represents the p:custDataLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: CustomerDataList. + /// + /// + public static readonly XName custDataLst = p + "custDataLst"; + + /// + /// Represents the p:custShow XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CustomShow, CustomShowReference. + /// + /// + public static readonly XName custShow = p + "custShow"; + + /// + /// Represents the p:custShowLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CustomShowList. + /// + /// + public static readonly XName custShowLst = p + "custShowLst"; + + /// + /// Represents the p:cut XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CutTransition. + /// + /// + public static readonly XName cut = p + "cut"; + + /// + /// Represents the p:cViewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CommonViewProperties. + /// + /// + public static readonly XName cViewPr = p + "cViewPr"; + + /// + /// Represents the p:cxnSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ConnectionShape. + /// + /// + public static readonly XName cxnSp = p + "cxnSp"; + + /// + /// Represents the p:defaultTextStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DefaultTextStyle. + /// + /// + public static readonly XName defaultTextStyle = p + "defaultTextStyle"; + + /// + /// Represents the p:diamond XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DiamondTransition. + /// + /// + public static readonly XName diamond = p + "diamond"; + + /// + /// Represents the p:dissolve XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DissolveTransition. + /// + /// + public static readonly XName dissolve = p + "dissolve"; + + /// + /// Represents the p:embed XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OleObjectEmbed. + /// + /// + public static readonly XName embed = p + "embed"; + + /// + /// Represents the p:embeddedFont XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: EmbeddedFont. + /// + /// + public static readonly XName embeddedFont = p + "embeddedFont"; + + /// + /// Represents the p:embeddedFontLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: EmbeddedFontList. + /// + /// + public static readonly XName embeddedFontLst = p + "embeddedFontLst"; + + /// + /// Represents the p:endCondLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: EndConditionList. + /// + /// + public static readonly XName endCondLst = p + "endCondLst"; + + /// + /// Represents the p:endSnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EndSoundAction. + /// + /// + public static readonly XName endSnd = p + "endSnd"; + + /// + /// Represents the p:endSync XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: EndSync. + /// + /// + public static readonly XName endSync = p + "endSync"; + + /// + /// Represents the p:excl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ExclusiveTimeNode. + /// + /// + public static readonly XName excl = p + "excl"; + + /// + /// Represents the p:ext XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ApplicationNonVisualDrawingPropertiesExtension, CommentAuthorExtension, CommentExtension, CommonSlideDataExtension, Extension, HandoutMasterExtension, NotesMasterExtension, PresentationExtension, PresentationPropertiesExtension, ShowPropertiesExtension, SlideExtension, SlideLayoutExtension, SlideMasterExtension. + /// + /// + public static readonly XName ext = p + "ext"; + + /// + /// Represents the p:extLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ApplicationNonVisualDrawingPropertiesExtensionList, CommentAuthorExtensionList, CommentExtensionList, CommonSlideDataExtensionList, ExtensionList, ExtensionListWithModification, HandoutMasterExtensionList, NotesMasterExtensionList, PresentationExtensionList, PresentationPropertiesExtensionList, ShowPropertiesExtensionList, SlideExtensionList, SlideLayoutExtensionList, SlideMasterExtensionList. + /// + /// + public static readonly XName extLst = p + "extLst"; + + /// + /// Represents the p:fade XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FadeTransition. + /// + /// + public static readonly XName fade = p + "fade"; + + /// + /// Represents the p:fltVal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FloatVariantValue. + /// + /// + public static readonly XName fltVal = p + "fltVal"; + + /// + /// Represents the p:font XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Font. + /// + /// + public static readonly XName font = p + "font"; + + /// + /// Represents the p:from XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FromColor, FromPosition. + /// + /// + public static readonly XName from = p + "from"; + + /// + /// Represents the p:graphicEl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: GraphicElement. + /// + /// + public static readonly XName graphicEl = p + "graphicEl"; + + /// + /// Represents the p:graphicFrame XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: GraphicFrame. + /// + /// + public static readonly XName graphicFrame = p + "graphicFrame"; + + /// + /// Represents the p:gridSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: GridSpacing. + /// + /// + public static readonly XName gridSpacing = p + "gridSpacing"; + + /// + /// Represents the p:grpSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: GroupShape. + /// + /// + public static readonly XName grpSp = p + "grpSp"; + + /// + /// Represents the p:grpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupShapeProperties. + /// + /// + public static readonly XName grpSpPr = p + "grpSpPr"; + + /// + /// Represents the p:guide XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Guide. + /// + /// + public static readonly XName guide = p + "guide"; + + /// + /// Represents the p:guideLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: GuideList. + /// + /// + public static readonly XName guideLst = p + "guideLst"; + + /// + /// Represents the p:handoutMaster XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: HandoutMaster. + /// + /// + public static readonly XName handoutMaster = p + "handoutMaster"; + + /// + /// Represents the p:handoutMasterId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HandoutMasterId. + /// + /// + public static readonly XName handoutMasterId = p + "handoutMasterId"; + + /// + /// Represents the p:handoutMasterIdLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: HandoutMasterIdList. + /// + /// + public static readonly XName handoutMasterIdLst = p + "handoutMasterIdLst"; + + /// + /// Represents the p:hf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: HeaderFooter. + /// + /// + public static readonly XName hf = p + "hf"; + + /// + /// Represents the p:hsl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: HslColor. + /// + /// + public static readonly XName hsl = p + "hsl"; + + /// + /// Represents the p:htmlPubPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: HtmlPublishProperties. + /// + /// + public static readonly XName htmlPubPr = p + "htmlPubPr"; + + /// + /// Represents the p:inkTgt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: InkTarget. + /// + /// + public static readonly XName inkTgt = p + "inkTgt"; + + /// + /// Represents the p:intVal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: IntegerVariantValue. + /// + /// + public static readonly XName intVal = p + "intVal"; + + /// + /// Represents the p:italic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ItalicFont. + /// + /// + public static readonly XName italic = p + "italic"; + + /// + /// Represents the p:iterate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Iterate. + /// + /// + public static readonly XName iterate = p + "iterate"; + + /// + /// Represents the p:kinsoku XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Kinsoku. + /// + /// + public static readonly XName kinsoku = p + "kinsoku"; + + /// + /// Represents the p:kiosk XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: KioskSlideMode. + /// + /// + public static readonly XName kiosk = p + "kiosk"; + + /// + /// Represents the p:link XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OleObjectLink. + /// + /// + public static readonly XName link = p + "link"; + + /// + /// Represents the p:modifyVerifier XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ModificationVerifier. + /// + /// + public static readonly XName modifyVerifier = p + "modifyVerifier"; + + /// + /// Represents the p:newsflash XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: NewsflashTransition. + /// + /// + public static readonly XName newsflash = p + "newsflash"; + + /// + /// Represents the p:nextCondLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: NextConditionList. + /// + /// + public static readonly XName nextCondLst = p + "nextCondLst"; + + /// + /// Represents the p:normalViewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NormalViewProperties. + /// + /// + public static readonly XName normalViewPr = p + "normalViewPr"; + + /// + /// Represents the p:notes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NotesSlide. + /// + /// + public static readonly XName notes = p + "notes"; + + /// + /// Represents the p:notesMaster XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: NotesMaster. + /// + /// + public static readonly XName notesMaster = p + "notesMaster"; + + /// + /// Represents the p:notesMasterId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NotesMasterId. + /// + /// + public static readonly XName notesMasterId = p + "notesMasterId"; + + /// + /// Represents the p:notesMasterIdLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: NotesMasterIdList. + /// + /// + public static readonly XName notesMasterIdLst = p + "notesMasterIdLst"; + + /// + /// Represents the p:notesStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: NotesStyle. + /// + /// + public static readonly XName notesStyle = p + "notesStyle"; + + /// + /// Represents the p:notesSz XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NotesSize. + /// + /// + public static readonly XName notesSz = p + "notesSz"; + + /// + /// Represents the p:notesTextViewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NotesTextViewProperties. + /// + /// + public static readonly XName notesTextViewPr = p + "notesTextViewPr"; + + /// + /// Represents the p:notesViewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NotesViewProperties. + /// + /// + public static readonly XName notesViewPr = p + "notesViewPr"; + + /// + /// Represents the p:nvCxnSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: NonVisualConnectionShapeProperties. + /// + /// + public static readonly XName nvCxnSpPr = p + "nvCxnSpPr"; + + /// + /// Represents the p:nvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameProperties. + /// + /// + public static readonly XName nvGraphicFramePr = p + "nvGraphicFramePr"; + + /// + /// Represents the p:nvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: NonVisualGroupShapeProperties. + /// + /// + public static readonly XName nvGrpSpPr = p + "nvGrpSpPr"; + + /// + /// Represents the p:nvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: NonVisualPictureProperties. + /// + /// + public static readonly XName nvPicPr = p + "nvPicPr"; + + /// + /// Represents the p:nvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ApplicationNonVisualDrawingProperties. + /// + /// + public static readonly XName nvPr = p + "nvPr"; + + /// + /// Represents the p:nvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: NonVisualShapeProperties. + /// + /// + public static readonly XName nvSpPr = p + "nvSpPr"; + + /// + /// Represents the p:oleChartEl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: OleChartElement. + /// + /// + public static readonly XName oleChartEl = p + "oleChartEl"; + + /// + /// Represents the p:oleObj XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: OleObject. + /// + /// + public static readonly XName oleObj = p + "oleObj"; + + /// + /// Represents the p:origin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Origin. + /// + /// + public static readonly XName origin = p + "origin"; + + /// + /// Represents the p:otherStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: OtherStyle. + /// + /// + public static readonly XName otherStyle = p + "otherStyle"; + + /// + /// Represents the p:outlineViewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: OutlineViewProperties. + /// + /// + public static readonly XName outlineViewPr = p + "outlineViewPr"; + + /// + /// Represents the p:par XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ParallelTimeNode. + /// + /// + public static readonly XName par = p + "par"; + + /// + /// Represents the p:penClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: PenColor. + /// + /// + public static readonly XName penClr = p + "penClr"; + + /// + /// Represents the p:ph XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: PlaceholderShape. + /// + /// + public static readonly XName ph = p + "ph"; + + /// + /// Represents the p:photoAlbum XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: PhotoAlbum. + /// + /// + public static readonly XName photoAlbum = p + "photoAlbum"; + + /// + /// Represents the p:pic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Picture. + /// + /// + public static readonly XName pic = p + "pic"; + + /// + /// Represents the p:plus XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PlusTransition. + /// + /// + public static readonly XName plus = p + "plus"; + + /// + /// Represents the p:pos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Position. + /// + /// + public static readonly XName pos = p + "pos"; + + /// + /// Represents the p:present XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PresenterSlideMode. + /// + /// + public static readonly XName present = p + "present"; + + /// + /// Represents the p:presentation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Presentation. + /// + /// + public static readonly XName presentation = p + "presentation"; + + /// + /// Represents the p:presentationPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: PresentationProperties. + /// + /// + public static readonly XName presentationPr = p + "presentationPr"; + + /// + /// Represents the p:prevCondLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PreviousConditionList. + /// + /// + public static readonly XName prevCondLst = p + "prevCondLst"; + + /// + /// Represents the p:pRg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ParagraphIndexRange. + /// + /// + public static readonly XName pRg = p + "pRg"; + + /// + /// Represents the p:prnPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: PrintingProperties. + /// + /// + public static readonly XName prnPr = p + "prnPr"; + + /// + /// Represents the p:progress XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Progress. + /// + /// + public static readonly XName progress = p + "progress"; + + /// + /// Represents the p:pull XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PullTransition. + /// + /// + public static readonly XName pull = p + "pull"; + + /// + /// Represents the p:push XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PushTransition. + /// + /// + public static readonly XName push = p + "push"; + + /// + /// Represents the p:random XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: RandomTransition. + /// + /// + public static readonly XName random = p + "random"; + + /// + /// Represents the p:randomBar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RandomBarTransition. + /// + /// + public static readonly XName randomBar = p + "randomBar"; + + /// + /// Represents the p:rCtr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RotationCenter. + /// + /// + public static readonly XName rCtr = p + "rCtr"; + + /// + /// Represents the p:regular XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RegularFont. + /// + /// + public static readonly XName regular = p + "regular"; + + /// + /// Represents the p:restoredLeft XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RestoredLeft. + /// + /// + public static readonly XName restoredLeft = p + "restoredLeft"; + + /// + /// Represents the p:restoredTop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RestoredTop. + /// + /// + public static readonly XName restoredTop = p + "restoredTop"; + + /// + /// Represents the p:rgb XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: RgbColor. + /// + /// + public static readonly XName rgb = p + "rgb"; + + /// + /// Represents the p:rtn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RuntimeNodeTrigger. + /// + /// + public static readonly XName rtn = p + "rtn"; + + /// + /// Represents the p:scale XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ScaleFactor. + /// + /// + public static readonly XName scale = p + "scale"; + + /// + /// Represents the p:seq XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SequenceTimeNode. + /// + /// + public static readonly XName seq = p + "seq"; + + /// + /// Represents the p:set XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SetBehavior. + /// + /// + public static readonly XName set = p + "set"; + + /// + /// Represents the p:showPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ShowProperties. + /// + /// + public static readonly XName showPr = p + "showPr"; + + /// + /// Represents the p:sld XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: OutlineViewSlideListEntry, Slide, SlideListEntry. + /// + /// + public static readonly XName sld = p + "sld"; + + /// + /// Represents the p:sldAll XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: SlideAll. + /// + /// + public static readonly XName sldAll = p + "sldAll"; + + /// + /// Represents the p:sldId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SlideId. + /// + /// + public static readonly XName sldId = p + "sldId"; + + /// + /// Represents the p:sldIdLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlideIdList. + /// + /// + public static readonly XName sldIdLst = p + "sldIdLst"; + + /// + /// Represents the p:sldLayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: SlideLayout. + /// + /// + public static readonly XName sldLayout = p + "sldLayout"; + + /// + /// Represents the p:sldLayoutId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SlideLayoutId. + /// + /// + public static readonly XName sldLayoutId = p + "sldLayoutId"; + + /// + /// Represents the p:sldLayoutIdLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlideLayoutIdList. + /// + /// + public static readonly XName sldLayoutIdLst = p + "sldLayoutIdLst"; + + /// + /// Represents the p:sldLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OutlineViewSlideList, SlideList. + /// + /// + public static readonly XName sldLst = p + "sldLst"; + + /// + /// Represents the p:sldMaster XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SlideMaster. + /// + /// + public static readonly XName sldMaster = p + "sldMaster"; + + /// + /// Represents the p:sldMasterId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SlideMasterId. + /// + /// + public static readonly XName sldMasterId = p + "sldMasterId"; + + /// + /// Represents the p:sldMasterIdLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlideMasterIdList. + /// + /// + public static readonly XName sldMasterIdLst = p + "sldMasterIdLst"; + + /// + /// Represents the p:sldRg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SlideRange. + /// + /// + public static readonly XName sldRg = p + "sldRg"; + + /// + /// Represents the p:sldSyncPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SlideSyncProperties. + /// + /// + public static readonly XName sldSyncPr = p + "sldSyncPr"; + + /// + /// Represents the p:sldSz XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SlideSize. + /// + /// + public static readonly XName sldSz = p + "sldSz"; + + /// + /// Represents the p:sldTgt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SlideTarget. + /// + /// + public static readonly XName sldTgt = p + "sldTgt"; + + /// + /// Represents the p:slideViewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SlideViewProperties. + /// + /// + public static readonly XName slideViewPr = p + "slideViewPr"; + + /// + /// Represents the p:snd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Sound. + /// + /// + public static readonly XName snd = p + "snd"; + + /// + /// Represents the p:sndAc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SoundAction. + /// + /// + public static readonly XName sndAc = p + "sndAc"; + + /// + /// Represents the p:sndTgt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SoundTarget. + /// + /// + public static readonly XName sndTgt = p + "sndTgt"; + + /// + /// Represents the p:sorterViewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SorterViewProperties. + /// + /// + public static readonly XName sorterViewPr = p + "sorterViewPr"; + + /// + /// Represents the p:sp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName sp = p + "sp"; + + /// + /// Represents the p:split XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SplitTransition. + /// + /// + public static readonly XName split = p + "split"; + + /// + /// Represents the p:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = p + "spPr"; + + /// + /// Represents the p:spTgt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeTarget. + /// + /// + public static readonly XName spTgt = p + "spTgt"; + + /// + /// Represents the p:spTree XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: ShapeTree. + /// + /// + public static readonly XName spTree = p + "spTree"; + + /// + /// Represents the p:stCondLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: StartConditionList. + /// + /// + public static readonly XName stCondLst = p + "stCondLst"; + + /// + /// Represents the p:strips XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StripsTransition. + /// + /// + public static readonly XName strips = p + "strips"; + + /// + /// Represents the p:strVal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StringVariantValue. + /// + /// + public static readonly XName strVal = p + "strVal"; + + /// + /// Represents the p:stSnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StartSoundAction. + /// + /// + public static readonly XName stSnd = p + "stSnd"; + + /// + /// Represents the p:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ShapeStyle. + /// + /// + public static readonly XName style = p + "style"; + + /// + /// Represents the p:subSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SubShape. + /// + /// + public static readonly XName subSp = p + "subSp"; + + /// + /// Represents the p:subTnLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SubTimeNodeList. + /// + /// + public static readonly XName subTnLst = p + "subTnLst"; + + /// + /// Represents the p:tag XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Tag. + /// + /// + public static readonly XName tag = p + "tag"; + + /// + /// Represents the p:tagLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TagList. + /// + /// + public static readonly XName tagLst = p + "tagLst"; + + /// + /// Represents the p:tags XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomerDataTags. + /// + /// + public static readonly XName tags = p + "tags"; + + /// + /// Represents the p:tav XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TimeAnimateValue. + /// + /// + public static readonly XName tav = p + "tav"; + + /// + /// Represents the p:tavLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TimeAnimateValueList. + /// + /// + public static readonly XName tavLst = p + "tavLst"; + + /// + /// Represents the p:text XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Text. + /// + /// + public static readonly XName text = p + "text"; + + /// + /// Represents the p:tgtEl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: TargetElement. + /// + /// + public static readonly XName tgtEl = p + "tgtEl"; + + /// + /// Represents the p:timing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Timing. + /// + /// + public static readonly XName timing = p + "timing"; + + /// + /// Represents the p:titleStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TitleStyle. + /// + /// + public static readonly XName titleStyle = p + "titleStyle"; + + /// + /// Represents the p:tmAbs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimeAbsolute. + /// + /// + public static readonly XName tmAbs = p + "tmAbs"; + + /// + /// Represents the p:tmPct XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimePercentage. + /// + /// + public static readonly XName tmPct = p + "tmPct"; + + /// + /// Represents the p:tmpl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Template. + /// + /// + public static readonly XName tmpl = p + "tmpl"; + + /// + /// Represents the p:tmplLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TemplateList. + /// + /// + public static readonly XName tmplLst = p + "tmplLst"; + + /// + /// Represents the p:tn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimeNode. + /// + /// + public static readonly XName tn = p + "tn"; + + /// + /// Represents the p:tnLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TimeNodeList. + /// + /// + public static readonly XName tnLst = p + "tnLst"; + + /// + /// Represents the p:to XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ToColor, ToPosition, ToVariantValue. + /// + /// + public static readonly XName to = p + "to"; + + /// + /// Represents the p:transition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Transition. + /// + /// + public static readonly XName transition = p + "transition"; + + /// + /// Represents the p:txBody XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: TextBody. + /// + /// + public static readonly XName txBody = p + "txBody"; + + /// + /// Represents the p:txEl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: TextElement. + /// + /// + public static readonly XName txEl = p + "txEl"; + + /// + /// Represents the p:txStyles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: TextStyles. + /// + /// + public static readonly XName txStyles = p + "txStyles"; + + /// + /// Represents the p:val XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: VariantValue. + /// + /// + public static readonly XName val = p + "val"; + + /// + /// Represents the p:video XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Video. + /// + /// + public static readonly XName video = p + "video"; + + /// + /// Represents the p:viewPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ViewProperties. + /// + /// + public static readonly XName viewPr = p + "viewPr"; + + /// + /// Represents the p:webPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: WebProperties. + /// + /// + public static readonly XName webPr = p + "webPr"; + + /// + /// Represents the p:wedge XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: WedgeTransition. + /// + /// + public static readonly XName wedge = p + "wedge"; + + /// + /// Represents the p:wheel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WheelTransition. + /// + /// + public static readonly XName wheel = p + "wheel"; + + /// + /// Represents the p:wipe XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WipeTransition. + /// + /// + public static readonly XName wipe = p + "wipe"; + + /// + /// Represents the p:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform. + /// + /// + public static readonly XName xfrm = p + "xfrm"; + + /// + /// Represents the p:zoom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ZoomTransition. + /// + /// + public static readonly XName zoom = p + "zoom"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P14.g.cs new file mode 100644 index 000000000..57637a319 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P14.g.cs @@ -0,0 +1,773 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:p14="http://schemas.microsoft.com/office/powerpoint/2010/main" namespace. + /// + public static class P14 + { + /// + /// Defines the XML namespace associated with the p14 prefix. + /// + public static readonly XNamespace p14 = "http://schemas.microsoft.com/office/powerpoint/2010/main"; + + /// + /// Represents the p14:bmk XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MediaBookmark. + /// + /// + public static readonly XName bmk = p14 + "bmk"; + + /// + /// Represents the p14:bmkLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MediaBookmarkList. + /// + /// + public static readonly XName bmkLst = p14 + "bmkLst"; + + /// + /// Represents the p14:bmkTgt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BookmarkTarget. + /// + /// + public static readonly XName bmkTgt = p14 + "bmkTgt"; + + /// + /// Represents the p14:bounceEnd XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Animate.BounceEnd, AnimateMotion.BounceEnd, AnimateRotation.BounceEnd, AnimateScale.BounceEnd. + /// + /// + public static readonly XName bounceEnd = p14 + "bounceEnd"; + + /// + /// Represents the p14:browseMode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BrowseMode. + /// + /// + public static readonly XName browseMode = p14 + "browseMode"; + + /// + /// Represents the p14:bwMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContentPart.BwMode. + /// + /// + public static readonly XName bwMode = p14 + "bwMode"; + + /// + /// Represents the p14:cNvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualInkContentPartProperties. + /// + /// + public static readonly XName cNvContentPartPr = p14 + "cNvContentPartPr"; + + /// + /// Represents the p14:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = p14 + "cNvPr"; + + /// + /// Represents the p14:conveyor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConveyorTransition. + /// + /// + public static readonly XName conveyor = p14 + "conveyor"; + + /// + /// Represents the p14:creationId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CreationId. + /// + /// + public static readonly XName creationId = p14 + "creationId"; + + /// + /// Represents the p14:defaultImageDpi XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DefaultImageDpi. + /// + /// + public static readonly XName defaultImageDpi = p14 + "defaultImageDpi"; + + /// + /// Represents the p14:discardImageEditData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DiscardImageEditData. + /// + /// + public static readonly XName discardImageEditData = p14 + "discardImageEditData"; + + /// + /// Represents the p14:doors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoorsTransition. + /// + /// + public static readonly XName doors = p14 + "doors"; + + /// + /// Represents the p14:dur XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Transition.Duration. + /// + /// + public static readonly XName dur = p14 + "dur"; + + /// + /// Represents the p14:extLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ExtensionList, ExtensionListModify. + /// + /// + public static readonly XName extLst = p14 + "extLst"; + + /// + /// Represents the p14:fade XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MediaFade. + /// + /// + public static readonly XName fade = p14 + "fade"; + + /// + /// Represents the p14:ferris XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FerrisTransition. + /// + /// + public static readonly XName ferris = p14 + "ferris"; + + /// + /// Represents the p14:flash XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: FlashTransition. + /// + /// + public static readonly XName flash = p14 + "flash"; + + /// + /// Represents the p14:flip XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FlipTransition. + /// + /// + public static readonly XName flip = p14 + "flip"; + + /// + /// Represents the p14:flythrough XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FlythroughTransition. + /// + /// + public static readonly XName flythrough = p14 + "flythrough"; + + /// + /// Represents the p14:gallery XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GalleryTransition. + /// + /// + public static readonly XName gallery = p14 + "gallery"; + + /// + /// Represents the p14:glitter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: GlitterTransition. + /// + /// + public static readonly XName glitter = p14 + "glitter"; + + /// + /// Represents the p14:honeycomb XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: HoneycombTransition. + /// + /// + public static readonly XName honeycomb = p14 + "honeycomb"; + + /// + /// Represents the p14:laserClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: LaserColor. + /// + /// + public static readonly XName laserClr = p14 + "laserClr"; + + /// + /// Represents the p14:laserTraceLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: LaserTraceList. + /// + /// + public static readonly XName laserTraceLst = p14 + "laserTraceLst"; + + /// + /// Represents the p14:media XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Media. + /// + /// + public static readonly XName media = p14 + "media"; + + /// + /// Represents the p14:modId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ModificationId. + /// + /// + public static readonly XName modId = p14 + "modId"; + + /// + /// Represents the p14:nullEvt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NullEventRecord. + /// + /// + public static readonly XName nullEvt = p14 + "nullEvt"; + + /// + /// Represents the p14:nvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: NonVisualContentPartProperties. + /// + /// + public static readonly XName nvContentPartPr = p14 + "nvContentPartPr"; + + /// + /// Represents the p14:nvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ApplicationNonVisualDrawingProperties. + /// + /// + public static readonly XName nvPr = p14 + "nvPr"; + + /// + /// Represents the p14:pan XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PanTransition. + /// + /// + public static readonly XName pan = p14 + "pan"; + + /// + /// Represents the p14:pauseEvt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PauseEventRecord. + /// + /// + public static readonly XName pauseEvt = p14 + "pauseEvt"; + + /// + /// Represents the p14:playEvt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PlayEventRecord. + /// + /// + public static readonly XName playEvt = p14 + "playEvt"; + + /// + /// Represents the p14:presetBounceEnd XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommonTimeNode.PresetBounceEnd. + /// + /// + public static readonly XName presetBounceEnd = p14 + "presetBounceEnd"; + + /// + /// Represents the p14:prism XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: PrismTransition. + /// + /// + public static readonly XName prism = p14 + "prism"; + + /// + /// Represents the p14:resumeEvt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ResumeEventRecord. + /// + /// + public static readonly XName resumeEvt = p14 + "resumeEvt"; + + /// + /// Represents the p14:reveal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RevealTransition. + /// + /// + public static readonly XName reveal = p14 + "reveal"; + + /// + /// Represents the p14:ripple XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RippleTransition. + /// + /// + public static readonly XName ripple = p14 + "ripple"; + + /// + /// Represents the p14:section XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Section, SectionOld. + /// + /// + public static readonly XName section = p14 + "section"; + + /// + /// Represents the p14:sectionLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SectionList. + /// + /// + public static readonly XName sectionLst = p14 + "sectionLst"; + + /// + /// Represents the p14:sectionPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SectionProperties. + /// + /// + public static readonly XName sectionPr = p14 + "sectionPr"; + + /// + /// Represents the p14:seekEvt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SeekEventRecord. + /// + /// + public static readonly XName seekEvt = p14 + "seekEvt"; + + /// + /// Represents the p14:showEvtLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: ShowEventRecordList. + /// + /// + public static readonly XName showEvtLst = p14 + "showEvtLst"; + + /// + /// Represents the p14:showMediaCtrls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowMediaControls. + /// + /// + public static readonly XName showMediaCtrls = p14 + "showMediaCtrls"; + + /// + /// Represents the p14:shred XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ShredTransition. + /// + /// + public static readonly XName shred = p14 + "shred"; + + /// + /// Represents the p14:sldId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SectionSlideIdListEntry. + /// + /// + public static readonly XName sldId = p14 + "sldId"; + + /// + /// Represents the p14:sldIdLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SectionSlideIdList. + /// + /// + public static readonly XName sldIdLst = p14 + "sldIdLst"; + + /// + /// Represents the p14:stopEvt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: StopEventRecord. + /// + /// + public static readonly XName stopEvt = p14 + "stopEvt"; + + /// + /// Represents the p14:switch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SwitchTransition. + /// + /// + public static readonly XName @switch = p14 + "switch"; + + /// + /// Represents the p14:tracePt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TracePoint. + /// + /// + public static readonly XName tracePt = p14 + "tracePt"; + + /// + /// Represents the p14:tracePtLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TracePointList. + /// + /// + public static readonly XName tracePtLst = p14 + "tracePtLst"; + + /// + /// Represents the p14:triggerEvt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TriggerEventRecord. + /// + /// + public static readonly XName triggerEvt = p14 + "triggerEvt"; + + /// + /// Represents the p14:trim XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MediaTrim. + /// + /// + public static readonly XName trim = p14 + "trim"; + + /// + /// Represents the p14:vortex XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VortexTransition. + /// + /// + public static readonly XName vortex = p14 + "vortex"; + + /// + /// Represents the p14:warp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WarpTransition. + /// + /// + public static readonly XName warp = p14 + "warp"; + + /// + /// Represents the p14:wheelReverse XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WheelReverseTransition. + /// + /// + public static readonly XName wheelReverse = p14 + "wheelReverse"; + + /// + /// Represents the p14:window XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WindowTransition. + /// + /// + public static readonly XName window = p14 + "window"; + + /// + /// Represents the p14:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform2D. + /// + /// + public static readonly XName xfrm = p14 + "xfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P15.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P15.g.cs new file mode 100644 index 000000000..622b27219 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/P15.g.cs @@ -0,0 +1,150 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:p15="http://schemas.microsoft.com/office/powerpoint/2012/main" namespace. + /// + public static class P15 + { + /// + /// Defines the XML namespace associated with the p15 prefix. + /// + public static readonly XNamespace p15 = "http://schemas.microsoft.com/office/powerpoint/2012/main"; + + /// + /// Represents the p15:chartTrackingRefBased XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ChartTrackingReferenceBased. + /// + /// + public static readonly XName chartTrackingRefBased = p15 + "chartTrackingRefBased"; + + /// + /// Represents the p15:clr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ColorType. + /// + /// + public static readonly XName clr = p15 + "clr"; + + /// + /// Represents the p15:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ExtensionList. + /// + /// + public static readonly XName extLst = p15 + "extLst"; + + /// + /// Represents the p15:guide XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: ExtendedGuide. + /// + /// + public static readonly XName guide = p15 + "guide"; + + /// + /// Represents the p15:notesGuideLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NotesGuideList. + /// + /// + public static readonly XName notesGuideLst = p15 + "notesGuideLst"; + + /// + /// Represents the p15:parentCm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ParentCommentIdentifier. + /// + /// + public static readonly XName parentCm = p15 + "parentCm"; + + /// + /// Represents the p15:presenceInfo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PresenceInfo. + /// + /// + public static readonly XName presenceInfo = p15 + "presenceInfo"; + + /// + /// Represents the p15:prstTrans XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: PresetTransition. + /// + /// + public static readonly XName prstTrans = p15 + "prstTrans"; + + /// + /// Represents the p15:sldGuideLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SlideGuideList. + /// + /// + public static readonly XName sldGuideLst = p15 + "sldGuideLst"; + + /// + /// Represents the p15:threadingInfo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ThreadingInfo. + /// + /// + public static readonly XName threadingInfo = p15 + "threadingInfo"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PIC.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PIC.g.cs new file mode 100644 index 000000000..09c552eb9 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PIC.g.cs @@ -0,0 +1,100 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" namespace. + /// + public static class PIC + { + /// + /// Defines the XML namespace associated with the pic prefix. + /// + public static readonly XNamespace pic = "http://schemas.openxmlformats.org/drawingml/2006/picture"; + + /// + /// Represents the pic:blipFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BlipFill. + /// + /// + public static readonly XName blipFill = pic + "blipFill"; + + /// + /// Represents the pic:cNvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualPictureDrawingProperties. + /// + /// + public static readonly XName cNvPicPr = pic + "cNvPicPr"; + + /// + /// Represents the pic:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = pic + "cNvPr"; + + /// + /// Represents the pic:nvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualPictureProperties. + /// + /// + public static readonly XName nvPicPr = pic + "nvPicPr"; + + /// + /// Represents the pic:pic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Picture. + /// + /// + public static readonly XName pic_ = pic + "pic"; + + /// + /// Represents the pic:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = pic + "spPr"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PIC14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PIC14.g.cs new file mode 100644 index 000000000..bdf22c687 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PIC14.g.cs @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:pic14="http://schemas.microsoft.com/office/drawing/2010/picture" namespace. + /// + public static class PIC14 + { + /// + /// Defines the XML namespace associated with the pic14 prefix. + /// + public static readonly XNamespace pic14 = "http://schemas.microsoft.com/office/drawing/2010/picture"; + + /// + /// Represents the pic14:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = pic14 + "extLst"; + + /// + /// Represents the pic14:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ShapeStyle. + /// + /// + public static readonly XName style = pic14 + "style"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PVML.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PVML.g.cs new file mode 100644 index 000000000..d6c823524 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/PVML.g.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:pvml="urn:schemas-microsoft-com:office:powerpoint" namespace. + /// + public static class PVML + { + /// + /// Defines the XML namespace associated with the pvml prefix. + /// + public static readonly XNamespace pvml = "urn:schemas-microsoft-com:office:powerpoint"; + + /// + /// Represents the pvml:iscomment XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: InkAnnotationFlag. + /// + /// + public static readonly XName iscomment = pvml + "iscomment"; + + /// + /// Represents the pvml:textdata XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TextData. + /// + /// + public static readonly XName textdata = pvml + "textdata"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/R.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/R.g.cs new file mode 100644 index 000000000..52503c23e --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/R.g.cs @@ -0,0 +1,138 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" namespace. + /// + public static class R + { + /// + /// Defines the XML namespace associated with the r prefix. + /// + public static readonly XNamespace r = "http://schemas.openxmlformats.org/officeDocument/2006/relationships"; + + /// + /// Represents the r:blip XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shape.Blip. + /// + /// + public static readonly XName blip = r + "blip"; + + /// + /// Represents the r:cs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RelationshipIds.ColorPart. + /// + /// + public static readonly XName cs = r + "cs"; + + /// + /// Represents the r:dm XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RelationshipIds.DataPart. + /// + /// + public static readonly XName dm = r + "dm"; + + /// + /// Represents the r:embed XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed properties: Blip.Embed, HyperlinkSound.Embed, ImageLayer.Embed, Media.Embed, Snapshot.Embed, Sound.Embed, SoundTarget.Embed, SVGBlip.Embed, WaveAudioFile.Embed. + /// + /// + public static readonly XName embed = r + "embed"; + + /// + /// Represents the r:href XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ImageData.RelHref. + /// + /// + public static readonly XName href = r + "href"; + + /// + /// Represents the r:id XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AltChunk.Id, AttachedTemplate.Id, BoldFont.Id, BoldItalicFont.Id, ChartReference.Id, ChartSheetPageSetup.Id, ContentPart.Id, ContentPart.RelationshipId, Control.Id, ControlProperties.Id, CustomerData.Id, CustomerDataTags.Id, CustomProperty.Id, DataReference.Id, DataSourceReference.Id, Drawing.Id, DrawingHeaderFooter.Id, EmbedBoldFont.Id, EmbedBoldItalicFont.Id, EmbeddedObjectProperties.Id, EmbedItalicFont.Id, EmbedRegularFont.Id, ExternalBook.Id, ExternalData.Id, ExternalReference.Id, Fill.RelationshipId, FooterReference.Id, GvmlContentPart.RelationshipId, HandoutMasterId.Id, Header.Id, HeaderReference.Id, HeaderSource.Id, HtmlPublishProperties.Id, Hyperlink.Id, HyperlinkOnClick.Id, HyperlinkOnHover.Id, HyperlinkOnMouseOver.Id, HyperlinkRuby.Id, ImageData.RelationshipId, ItalicFont.Id, LegacyDrawing.Id, LegacyDrawingHeaderFooter.Id, MovieReference.Id, NotesMasterId.Id, ObjectEmbed.Id, ObjectLink.Id, OleLink.Id, OleObject.Id, OutlineViewSlideListEntry.Id, PageSetup.Id, Picture.Id, PictureAttributionSourceURL.Id, PivotCache.Id, PivotCacheDefinition.Id, PivotSelection.Id, PivotTableReference.Id, PrinterSettingsReference.Id, RangeSet.Id, RecipientDataReference.Id, RegularFont.Id, SaveThroughXslt.Id, Sheet.Id, SlicerCache.Id, SlicerRef.Id, SlideId.RelationshipId, SlideLayoutId.RelationshipId, SlideListEntry.Id, SlideMasterId.RelationshipId, SourceFileReference.Id, SourceReference.Id, Stroke.RelationshipId, SubDocumentReference.Id, TablePart.Id, TimelineCacheReference.Id, TimelineReference.Id, ToolbarData.Id, UserShapesReference.Id, WebExtensionPartReference.Id, WebExtensionReference.Id, WorksheetSource.Id. + /// + /// + public static readonly XName id = r + "id"; + + /// + /// Represents the r:link XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , . + /// corresponds to the following strongly-typed properties: AudioFromFile.Link, Blip.Link, Media.Link, QuickTimeFromFile.Link, Snapshot.Link, SVGBlip.Link, VideoFromFile.Link. + /// + /// + public static readonly XName link = r + "link"; + + /// + /// Represents the r:lo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RelationshipIds.LayoutPart. + /// + /// + public static readonly XName lo = r + "lo"; + + /// + /// Represents the r:pict XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ImageData.Picture. + /// + /// + public static readonly XName pict = r + "pict"; + + /// + /// Represents the r:qs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RelationshipIds.StylePart. + /// + /// + public static readonly XName qs = r + "qs"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/SL.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/SL.g.cs new file mode 100644 index 000000000..791073716 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/SL.g.cs @@ -0,0 +1,80 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" namespace. + /// + public static class SL + { + /// + /// Defines the XML namespace associated with the sl prefix. + /// + public static readonly XNamespace sl = "http://schemas.openxmlformats.org/schemaLibrary/2006/main"; + + /// + /// Represents the sl:manifestLocation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Schema.ManifestLocation. + /// + /// + public static readonly XName manifestLocation = sl + "manifestLocation"; + + /// + /// Represents the sl:schema XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Schema. + /// + /// + public static readonly XName schema = sl + "schema"; + + /// + /// Represents the sl:schemaLibrary XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SchemaLibrary. + /// + /// + public static readonly XName schemaLibrary = sl + "schemaLibrary"; + + /// + /// Represents the sl:schemaLocation XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Schema.SchemaLocation. + /// + /// + public static readonly XName schemaLocation = sl + "schemaLocation"; + + /// + /// Represents the sl:uri XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Schema.Uri. + /// + /// + public static readonly XName uri = sl + "uri"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/SLE.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/SLE.g.cs new file mode 100644 index 000000000..a99a67bcd --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/SLE.g.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:sle="http://schemas.microsoft.com/office/drawing/2010/slicer" namespace. + /// + public static class SLE + { + /// + /// Defines the XML namespace associated with the sle prefix. + /// + public static readonly XNamespace sle = "http://schemas.microsoft.com/office/drawing/2010/slicer"; + + /// + /// Represents the sle:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = sle + "extLst"; + + /// + /// Represents the sle:slicer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Slicer. + /// + /// + public static readonly XName slicer = sle + "slicer"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/THM15.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/THM15.g.cs new file mode 100644 index 000000000..9b5df9bb9 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/THM15.g.cs @@ -0,0 +1,57 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:thm15="http://schemas.microsoft.com/office/thememl/2012/main" namespace. + /// + public static class THM15 + { + /// + /// Defines the XML namespace associated with the thm15 prefix. + /// + public static readonly XNamespace thm15 = "http://schemas.microsoft.com/office/thememl/2012/main"; + + /// + /// Represents the thm15:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = thm15 + "extLst"; + + /// + /// Represents the thm15:id XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Theme.ThemeId. + /// + /// + public static readonly XName id = thm15 + "id"; + + /// + /// Represents the thm15:themeFamily XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ThemeFamily. + /// + /// + public static readonly XName themeFamily = thm15 + "themeFamily"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/TSLE.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/TSLE.g.cs new file mode 100644 index 000000000..51cc38c2d --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/TSLE.g.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:tsle="http://schemas.microsoft.com/office/drawing/2012/timeslicer" namespace. + /// + public static class TSLE + { + /// + /// Defines the XML namespace associated with the tsle prefix. + /// + public static readonly XNamespace tsle = "http://schemas.microsoft.com/office/drawing/2012/timeslicer"; + + /// + /// Represents the tsle:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = tsle + "extLst"; + + /// + /// Represents the tsle:timeslicer XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimeSlicer. + /// + /// + public static readonly XName timeslicer = tsle + "timeslicer"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/V.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/V.g.cs new file mode 100644 index 000000000..da41da0e1 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/V.g.cs @@ -0,0 +1,344 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:v="urn:schemas-microsoft-com:vml" namespace. + /// + public static class V + { + /// + /// Defines the XML namespace associated with the v prefix. + /// + public static readonly XNamespace v = "urn:schemas-microsoft-com:vml"; + + /// + /// Represents the v:arc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Arc. + /// + /// + public static readonly XName arc = v + "arc"; + + /// + /// Represents the v:background XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: Background. + /// + /// + public static readonly XName background = v + "background"; + + /// + /// Represents the v:curve XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Curve. + /// + /// + public static readonly XName curve = v + "curve"; + + /// + /// Represents the v:ext XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomStroke.Extension, Callout.Extension, ColorMenu.Extension, ColorMostRecentlyUsed.Extension, ColumnStroke.Extension, Complex.Extension, Diagram.Extension, Extrusion.Extension, FillExtendedProperties.Extension, LeftStroke.Extension, Lock.Extension, RegroupTable.Extension, Relation.Extension, RelationTable.Extension, RightStroke.Extension, Rules.Extension, ShapeDefaults.Extension, ShapeIdMap.Extension, ShapeLayout.Extension, SignatureLine.Extension, Skew.Extension, TopStroke.Extension. + /// + /// + public static readonly XName ext = v + "ext"; + + /// + /// Represents the v:f XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Formula. + /// + /// + public static readonly XName f = v + "f"; + + /// + /// Represents the v:fill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Fill. + /// + /// + public static readonly XName fill = v + "fill"; + + /// + /// Represents the v:formulas XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Formulas. + /// + /// + public static readonly XName formulas = v + "formulas"; + + /// + /// Represents the v:group XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Group. + /// + /// + public static readonly XName group = v + "group"; + + /// + /// Represents the v:h XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: ShapeHandle. + /// + /// + public static readonly XName h = v + "h"; + + /// + /// Represents the v:handles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ShapeHandles. + /// + /// + public static readonly XName handles = v + "handles"; + + /// + /// Represents the v:image XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ImageFile. + /// + /// + public static readonly XName image = v + "image"; + + /// + /// Represents the v:imagedata XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ImageData. + /// + /// + public static readonly XName imagedata = v + "imagedata"; + + /// + /// Represents the v:line XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Line. + /// + /// + public static readonly XName line = v + "line"; + + /// + /// Represents the v:oval XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Oval. + /// + /// + public static readonly XName oval = v + "oval"; + + /// + /// Represents the v:path XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Path. + /// + /// + public static readonly XName path = v + "path"; + + /// + /// Represents the v:polyline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PolyLine. + /// + /// + public static readonly XName polyline = v + "polyline"; + + /// + /// Represents the v:rect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Rectangle. + /// + /// + public static readonly XName rect = v + "rect"; + + /// + /// Represents the v:roundrect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RoundRectangle. + /// + /// + public static readonly XName roundrect = v + "roundrect"; + + /// + /// Represents the v:shadow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Shadow. + /// + /// + public static readonly XName shadow = v + "shadow"; + + /// + /// Represents the v:shape XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName shape = v + "shape"; + + /// + /// Represents the v:shapetype XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Shapetype. + /// + /// + public static readonly XName shapetype = v + "shapetype"; + + /// + /// Represents the v:stroke XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Stroke. + /// + /// + public static readonly XName stroke = v + "stroke"; + + /// + /// Represents the v:textbox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: TextBox. + /// + /// + public static readonly XName textbox = v + "textbox"; + + /// + /// Represents the v:textpath XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: TextPath. + /// + /// + public static readonly XName textpath = v + "textpath"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/VT.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/VT.g.cs new file mode 100644 index 000000000..efcd37e85 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/VT.g.cs @@ -0,0 +1,445 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" namespace. + /// + public static class VT + { + /// + /// Defines the XML namespace associated with the vt prefix. + /// + public static readonly XNamespace vt = "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"; + + /// + /// Represents the vt:array XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: VTArray. + /// + /// + public static readonly XName array = vt + "array"; + + /// + /// Represents the vt:blob XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTBlob. + /// + /// + public static readonly XName blob = vt + "blob"; + + /// + /// Represents the vt:bool XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTBool. + /// + /// + public static readonly XName @bool = vt + "bool"; + + /// + /// Represents the vt:bstr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTBString. + /// + /// + public static readonly XName bstr = vt + "bstr"; + + /// + /// Represents the vt:cf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: VTClipboardData. + /// + /// + public static readonly XName cf = vt + "cf"; + + /// + /// Represents the vt:clsid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTClassId. + /// + /// + public static readonly XName clsid = vt + "clsid"; + + /// + /// Represents the vt:cy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTCurrency. + /// + /// + public static readonly XName cy = vt + "cy"; + + /// + /// Represents the vt:date XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTDate. + /// + /// + public static readonly XName date = vt + "date"; + + /// + /// Represents the vt:decimal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTDecimal. + /// + /// + public static readonly XName @decimal = vt + "decimal"; + + /// + /// Represents the vt:empty XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: VTEmpty. + /// + /// + public static readonly XName empty = vt + "empty"; + + /// + /// Represents the vt:error XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTError. + /// + /// + public static readonly XName error = vt + "error"; + + /// + /// Represents the vt:filetime XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTFileTime. + /// + /// + public static readonly XName filetime = vt + "filetime"; + + /// + /// Represents the vt:i1 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTByte. + /// + /// + public static readonly XName i1 = vt + "i1"; + + /// + /// Represents the vt:i2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTShort. + /// + /// + public static readonly XName i2 = vt + "i2"; + + /// + /// Represents the vt:i4 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTInt32. + /// + /// + public static readonly XName i4 = vt + "i4"; + + /// + /// Represents the vt:i8 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTInt64. + /// + /// + public static readonly XName i8 = vt + "i8"; + + /// + /// Represents the vt:int XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTInteger. + /// + /// + public static readonly XName @int = vt + "int"; + + /// + /// Represents the vt:lpstr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTLPSTR. + /// + /// + public static readonly XName lpstr = vt + "lpstr"; + + /// + /// Represents the vt:lpwstr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTLPWSTR. + /// + /// + public static readonly XName lpwstr = vt + "lpwstr"; + + /// + /// Represents the vt:null XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: VTNull. + /// + /// + public static readonly XName @null = vt + "null"; + + /// + /// Represents the vt:oblob XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: VTOBlob. + /// + /// + public static readonly XName oblob = vt + "oblob"; + + /// + /// Represents the vt:ostorage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: VTOStorage. + /// + /// + public static readonly XName ostorage = vt + "ostorage"; + + /// + /// Represents the vt:ostream XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: VTOStreamData. + /// + /// + public static readonly XName ostream = vt + "ostream"; + + /// + /// Represents the vt:r4 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTFloat. + /// + /// + public static readonly XName r4 = vt + "r4"; + + /// + /// Represents the vt:r8 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTDouble. + /// + /// + public static readonly XName r8 = vt + "r8"; + + /// + /// Represents the vt:storage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: VTStorage. + /// + /// + public static readonly XName storage = vt + "storage"; + + /// + /// Represents the vt:stream XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: VTStreamData. + /// + /// + public static readonly XName stream = vt + "stream"; + + /// + /// Represents the vt:ui1 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTUnsignedByte. + /// + /// + public static readonly XName ui1 = vt + "ui1"; + + /// + /// Represents the vt:ui2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTUnsignedShort. + /// + /// + public static readonly XName ui2 = vt + "ui2"; + + /// + /// Represents the vt:ui4 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: VTUnsignedInt32. + /// + /// + public static readonly XName ui4 = vt + "ui4"; + + /// + /// Represents the vt:ui8 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTUnsignedInt64. + /// + /// + public static readonly XName ui8 = vt + "ui8"; + + /// + /// Represents the vt:uint XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// corresponds to the following strongly-typed classes: VTUnsignedInteger. + /// + /// + public static readonly XName @uint = vt + "uint"; + + /// + /// Represents the vt:variant XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Variant. + /// + /// + public static readonly XName variant = vt + "variant"; + + /// + /// Represents the vt:vector XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: VTVector. + /// + /// + public static readonly XName vector = vt + "vector"; + + /// + /// Represents the vt:vstream XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VTVStreamData. + /// + /// + public static readonly XName vstream = vt + "vstream"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W.g.cs new file mode 100644 index 000000000..28c7acb1e --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W.g.cs @@ -0,0 +1,10861 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" namespace. + /// + public static class W + { + /// + /// Defines the XML namespace associated with the w prefix. + /// + public static readonly XNamespace w = "http://schemas.openxmlformats.org/wordprocessingml/2006/main"; + + /// + /// Represents the w:abstractNum XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AbstractNum. + /// + /// + public static readonly XName abstractNum = w + "abstractNum"; + + /// + /// Represents the w:abstractNumId XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AbstractNumId. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AbstractNum.AbstractNumberId. + /// + /// + public static readonly XName abstractNumId = w + "abstractNumId"; + + /// + /// Represents the w:accent1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Accent1. + /// + /// + public static readonly XName accent1 = w + "accent1"; + + /// + /// Represents the w:accent2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Accent2. + /// + /// + public static readonly XName accent2 = w + "accent2"; + + /// + /// Represents the w:accent3 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Accent3. + /// + /// + public static readonly XName accent3 = w + "accent3"; + + /// + /// Represents the w:accent4 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Accent4. + /// + /// + public static readonly XName accent4 = w + "accent4"; + + /// + /// Represents the w:accent5 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Accent5. + /// + /// + public static readonly XName accent5 = w + "accent5"; + + /// + /// Represents the w:accent6 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Accent6. + /// + /// + public static readonly XName accent6 = w + "accent6"; + + /// + /// Represents the w:active XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Active. + /// + /// + public static readonly XName active = w + "active"; + + /// + /// Represents the w:activeRecord XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ActiveRecord. + /// + /// + public static readonly XName activeRecord = w + "activeRecord"; + + /// + /// Represents the w:activeWritingStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: ActiveWritingStyle. + /// + /// + public static readonly XName activeWritingStyle = w + "activeWritingStyle"; + + /// + /// Represents the w:actualPg XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ReadModeInkLockDown.UseActualPages. + /// + /// + public static readonly XName actualPg = w + "actualPg"; + + /// + /// Represents the w:addressFieldName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AddressFieldName. + /// + /// + public static readonly XName addressFieldName = w + "addressFieldName"; + + /// + /// Represents the w:adjustLineHeightInTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AdjustLineHeightInTable. + /// + /// + public static readonly XName adjustLineHeightInTable = w + "adjustLineHeightInTable"; + + /// + /// Represents the w:adjustRightInd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AdjustRightIndent. + /// + /// + public static readonly XName adjustRightInd = w + "adjustRightInd"; + + /// + /// Represents the w:after XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SpacingBetweenLines.After. + /// + /// + public static readonly XName after = w + "after"; + + /// + /// Represents the w:afterAutospacing XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SpacingBetweenLines.AfterAutoSpacing. + /// + /// + public static readonly XName afterAutospacing = w + "afterAutospacing"; + + /// + /// Represents the w:afterLines XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SpacingBetweenLines.AfterLines. + /// + /// + public static readonly XName afterLines = w + "afterLines"; + + /// + /// Represents the w:algIdExt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.AlgorithmIdExtensibility, WriteProtection.AlgorithmIdExtensibility. + /// + /// + public static readonly XName algIdExt = w + "algIdExt"; + + /// + /// Represents the w:algIdExtSource XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.AlgorithmIdExtensibilitySource, WriteProtection.AlgorithmIdExtensibilitySource. + /// + /// + public static readonly XName algIdExtSource = w + "algIdExtSource"; + + /// + /// Represents the w:algorithmName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.AlgorithmName, WriteProtection.AlgorithmName. + /// + /// + public static readonly XName algorithmName = w + "algorithmName"; + + /// + /// Represents the w:alias XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SdtAlias. + /// + /// + public static readonly XName alias = w + "alias"; + + /// + /// Represents the w:aliases XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Aliases. + /// + /// + public static readonly XName aliases = w + "aliases"; + + /// + /// Represents the w:alignBordersAndEdges XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlignBorderAndEdges. + /// + /// + public static readonly XName alignBordersAndEdges = w + "alignBordersAndEdges"; + + /// + /// Represents the w:alignment XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PositionalTab.Alignment. + /// + /// + public static readonly XName alignment = w + "alignment"; + + /// + /// Represents the w:alignTablesRowByRow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlignTablesRowByRow. + /// + /// + public static readonly XName alignTablesRowByRow = w + "alignTablesRowByRow"; + + /// + /// Represents the w:all XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DocPartTypes.All. + /// + /// + public static readonly XName all = w + "all"; + + /// + /// Represents the w:allowPNG XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AllowPNG. + /// + /// + public static readonly XName allowPNG = w + "allowPNG"; + + /// + /// Represents the w:allowSpaceOfSameStyleInTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AllowSpaceOfSameStyleInTable. + /// + /// + public static readonly XName allowSpaceOfSameStyleInTable = w + "allowSpaceOfSameStyleInTable"; + + /// + /// Represents the w:allStyles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.AllStyles. + /// + /// + public static readonly XName allStyles = w + "allStyles"; + + /// + /// Represents the w:altChunk XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AltChunk. + /// + /// + public static readonly XName altChunk = w + "altChunk"; + + /// + /// Represents the w:altChunkPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AltChunkProperties. + /// + /// + public static readonly XName altChunkPr = w + "altChunkPr"; + + /// + /// Represents the w:alternateStyleNames XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.AlternateStyleNames. + /// + /// + public static readonly XName alternateStyleNames = w + "alternateStyleNames"; + + /// + /// Represents the w:altName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AltName. + /// + /// + public static readonly XName altName = w + "altName"; + + /// + /// Represents the w:alwaysMergeEmptyNamespace XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlwaysMergeEmptyNamespace. + /// + /// + public static readonly XName alwaysMergeEmptyNamespace = w + "alwaysMergeEmptyNamespace"; + + /// + /// Represents the w:alwaysShowPlaceholderText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AlwaysShowPlaceholderText. + /// + /// + public static readonly XName alwaysShowPlaceholderText = w + "alwaysShowPlaceholderText"; + + /// + /// Represents the w:anchor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Hyperlink.Anchor, HyperlinkRuby.Anchor. + /// + /// + public static readonly XName anchor = w + "anchor"; + + /// + /// Represents the w:anchorLock XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.AnchorLock. + /// + /// + public static readonly XName anchorLock = w + "anchorLock"; + + /// + /// Represents the w:annotationRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: AnnotationReferenceMark. + /// + /// + public static readonly XName annotationRef = w + "annotationRef"; + + /// + /// Represents the w:applyBreakingRules XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ApplyBreakingRules. + /// + /// + public static readonly XName applyBreakingRules = w + "applyBreakingRules"; + + /// + /// Represents the w:appName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ActiveWritingStyle.ApplicationName. + /// + /// + public static readonly XName appName = w + "appName"; + + /// + /// Represents the w:ascii XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RunFonts.Ascii. + /// + /// + public static readonly XName ascii = w + "ascii"; + + /// + /// Represents the w:asciiTheme XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RunFonts.AsciiTheme. + /// + /// + public static readonly XName asciiTheme = w + "asciiTheme"; + + /// + /// Represents the w:attachedSchema XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AttachedSchema. + /// + /// + public static readonly XName attachedSchema = w + "attachedSchema"; + + /// + /// Represents the w:attachedTemplate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AttachedTemplate. + /// + /// + public static readonly XName attachedTemplate = w + "attachedTemplate"; + + /// + /// Represents the w:attr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CustomXmlAttribute. + /// + /// + public static readonly XName attr = w + "attr"; + + /// + /// Represents the w:author XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: CellDeletion.Author, CellInsertion.Author, CellMerge.Author, Comment.Author, ConflictDeletion.Author, ConflictInsertion.Author, CustomXmlConflictDeletionRangeStart.Author, CustomXmlConflictInsertionRangeStart.Author, CustomXmlDelRangeStart.Author, CustomXmlInsRangeStart.Author, CustomXmlMoveFromRangeStart.Author, CustomXmlMoveToRangeStart.Author, Deleted.Author, DeletedMathControl.Author, DeletedRun.Author, Inserted.Author, InsertedMathControl.Author, InsertedRun.Author, MoveFrom.Author, MoveFromMathControl.Author, MoveFromRangeStart.Author, MoveFromRun.Author, MoveTo.Author, MoveToMathControl.Author, MoveToRangeStart.Author, MoveToRun.Author, NumberingChange.Author, ParagraphMarkRunPropertiesChange.Author, ParagraphPropertiesChange.Author, RunConflictDeletion.Author, RunConflictInsertion.Author, RunPropertiesChange.Author, SectionPropertiesChange.Author, TableCellPropertiesChange.Author, TablePropertiesChange.Author, TablePropertyExceptionsChange.Author, TableRowPropertiesChange.Author. + /// + /// + public static readonly XName author = w + "author"; + + /// + /// Represents the w:autoCaption XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: AutoCaption. + /// + /// + public static readonly XName autoCaption = w + "autoCaption"; + + /// + /// Represents the w:autoCaptions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AutoCaptions. + /// + /// + public static readonly XName autoCaptions = w + "autoCaptions"; + + /// + /// Represents the w:autofitToFirstFixedWidthCell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutofitToFirstFixedWidthCell. + /// + /// + public static readonly XName autofitToFirstFixedWidthCell = w + "autofitToFirstFixedWidthCell"; + + /// + /// Represents the w:autoFormatOverride XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoFormatOverride. + /// + /// + public static readonly XName autoFormatOverride = w + "autoFormatOverride"; + + /// + /// Represents the w:autoHyphenation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoHyphenation. + /// + /// + public static readonly XName autoHyphenation = w + "autoHyphenation"; + + /// + /// Represents the w:autoRedefine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoRedefine. + /// + /// + public static readonly XName autoRedefine = w + "autoRedefine"; + + /// + /// Represents the w:autoSpaceDE XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoSpaceDE. + /// + /// + public static readonly XName autoSpaceDE = w + "autoSpaceDE"; + + /// + /// Represents the w:autoSpaceDN XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoSpaceDN. + /// + /// + public static readonly XName autoSpaceDN = w + "autoSpaceDN"; + + /// + /// Represents the w:autoSpaceLikeWord95 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoSpaceLikeWord95. + /// + /// + public static readonly XName autoSpaceLikeWord95 = w + "autoSpaceLikeWord95"; + + /// + /// Represents the w:b XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Bold. + /// + /// + public static readonly XName b = w + "b"; + + /// + /// Represents the w:background XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: DocumentBackground. + /// + /// + public static readonly XName background = w + "background"; + + /// + /// Represents the w:balanceSingleByteDoubleByteWidth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BalanceSingleByteDoubleByteWidth. + /// + /// + public static readonly XName balanceSingleByteDoubleByteWidth = w + "balanceSingleByteDoubleByteWidth"; + + /// + /// Represents the w:bar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: BarBorder. + /// + /// + public static readonly XName bar = w + "bar"; + + /// + /// Represents the w:basedOn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BasedOn. + /// + /// + public static readonly XName basedOn = w + "basedOn"; + + /// + /// Represents the w:bCs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BoldComplexScript. + /// + /// + public static readonly XName bCs = w + "bCs"; + + /// + /// Represents the w:bdo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BidirectionalOverride. + /// + /// + public static readonly XName bdo = w + "bdo"; + + /// + /// Represents the w:bdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Border. + /// + /// + public static readonly XName bdr = w + "bdr"; + + /// + /// Represents the w:before XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SpacingBetweenLines.Before. + /// + /// + public static readonly XName before = w + "before"; + + /// + /// Represents the w:beforeAutospacing XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SpacingBetweenLines.BeforeAutoSpacing. + /// + /// + public static readonly XName beforeAutospacing = w + "beforeAutospacing"; + + /// + /// Represents the w:beforeLines XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SpacingBetweenLines.BeforeLines. + /// + /// + public static readonly XName beforeLines = w + "beforeLines"; + + /// + /// Represents the w:behavior XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Behavior. + /// + /// + public static readonly XName behavior = w + "behavior"; + + /// + /// Represents the w:behaviors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Behaviors. + /// + /// + public static readonly XName behaviors = w + "behaviors"; + + /// + /// Represents the w:between XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: BetweenBorder. + /// + /// + public static readonly XName between = w + "between"; + + /// + /// Represents the w:bg1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Background1. + /// + /// + public static readonly XName bg1 = w + "bg1"; + + /// + /// Represents the w:bg2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Background2. + /// + /// + public static readonly XName bg2 = w + "bg2"; + + /// + /// Represents the w:bibliography XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SdtContentBibliography. + /// + /// + public static readonly XName bibliography = w + "bibliography"; + + /// + /// Represents the w:bidi XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BiDi. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Languages.Bidi, ThemeFontLanguages.Bidi. + /// + /// + public static readonly XName bidi = w + "bidi"; + + /// + /// Represents the w:bidiVisual XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BiDiVisual. + /// + /// + public static readonly XName bidiVisual = w + "bidiVisual"; + + /// + /// Represents the w:blockQuote XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BlockQuote. + /// + /// + public static readonly XName blockQuote = w + "blockQuote"; + + /// + /// Represents the w:body XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Body. + /// + /// + public static readonly XName body = w + "body"; + + /// + /// Represents the w:bodyDiv XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BodyDiv. + /// + /// + public static readonly XName bodyDiv = w + "bodyDiv"; + + /// + /// Represents the w:bookFoldPrinting XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BookFoldPrinting. + /// + /// + public static readonly XName bookFoldPrinting = w + "bookFoldPrinting"; + + /// + /// Represents the w:bookFoldPrintingSheets XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BookFoldPrintingSheets. + /// + /// + public static readonly XName bookFoldPrintingSheets = w + "bookFoldPrintingSheets"; + + /// + /// Represents the w:bookFoldRevPrinting XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BookFoldReversePrinting. + /// + /// + public static readonly XName bookFoldRevPrinting = w + "bookFoldRevPrinting"; + + /// + /// Represents the w:bookmarkEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BookmarkEnd. + /// + /// + public static readonly XName bookmarkEnd = w + "bookmarkEnd"; + + /// + /// Represents the w:bookmarkStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: BookmarkStart. + /// + /// + public static readonly XName bookmarkStart = w + "bookmarkStart"; + + /// + /// Represents the w:bordersDoNotSurroundFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BordersDoNotSurroundFooter. + /// + /// + public static readonly XName bordersDoNotSurroundFooter = w + "bordersDoNotSurroundFooter"; + + /// + /// Represents the w:bordersDoNotSurroundHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BordersDoNotSurroundHeader. + /// + /// + public static readonly XName bordersDoNotSurroundHeader = w + "bordersDoNotSurroundHeader"; + + /// + /// Represents the w:bottom XML elements and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: BottomBorder, BottomMargin. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageMargin.Bottom. + /// + /// + public static readonly XName bottom = w + "bottom"; + + /// + /// Represents the w:bottomFromText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.BottomFromText. + /// + /// + public static readonly XName bottomFromText = w + "bottomFromText"; + + /// + /// Represents the w:br XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Break. + /// + /// + public static readonly XName br = w + "br"; + + /// + /// Represents the w:cachedColBalance XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CachedColumnBalance. + /// + /// + public static readonly XName cachedColBalance = w + "cachedColBalance"; + + /// + /// Represents the w:calcOnExit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CalculateOnExit. + /// + /// + public static readonly XName calcOnExit = w + "calcOnExit"; + + /// + /// Represents the w:calendar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Calendar. + /// + /// + public static readonly XName calendar = w + "calendar"; + + /// + /// Represents the w:cantSplit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CantSplit. + /// + /// + public static readonly XName cantSplit = w + "cantSplit"; + + /// + /// Represents the w:caps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Caps. + /// + /// + public static readonly XName caps = w + "caps"; + + /// + /// Represents the w:caption XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: Caption. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AutoCaption.Caption. + /// + /// + public static readonly XName caption = w + "caption"; + + /// + /// Represents the w:captions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Captions. + /// + /// + public static readonly XName captions = w + "captions"; + + /// + /// Represents the w:category XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Category. + /// + /// + public static readonly XName category = w + "category"; + + /// + /// Represents the w:cellDel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CellDeletion. + /// + /// + public static readonly XName cellDel = w + "cellDel"; + + /// + /// Represents the w:cellIns XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CellInsertion. + /// + /// + public static readonly XName cellIns = w + "cellIns"; + + /// + /// Represents the w:cellMerge XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: CellMerge. + /// + /// + public static readonly XName cellMerge = w + "cellMerge"; + + /// + /// Represents the w:chapNum XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Caption.ChapterNumber. + /// + /// + public static readonly XName chapNum = w + "chapNum"; + + /// + /// Represents the w:chapSep XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageNumberType.ChapterSeparator. + /// + /// + public static readonly XName chapSep = w + "chapSep"; + + /// + /// Represents the w:chapStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageNumberType.ChapterStyle. + /// + /// + public static readonly XName chapStyle = w + "chapStyle"; + + /// + /// Represents the w:char XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SymbolChar.Char. + /// + /// + public static readonly XName @char = w + "char"; + + /// + /// Represents the w:characterSet XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FontCharSet.StrictCharacterSet. + /// + /// + public static readonly XName characterSet = w + "characterSet"; + + /// + /// Represents the w:characterSpacingControl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CharacterSpacingControl. + /// + /// + public static readonly XName characterSpacingControl = w + "characterSpacingControl"; + + /// + /// Represents the w:charset XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FontCharSet. + /// + /// + public static readonly XName charset = w + "charset"; + + /// + /// Represents the w:charSpace XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DocGrid.CharacterSpace. + /// + /// + public static readonly XName charSpace = w + "charSpace"; + + /// + /// Represents the w:checkBox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: CheckBox. + /// + /// + public static readonly XName checkBox = w + "checkBox"; + + /// + /// Represents the w:checked XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Checked. + /// + /// + public static readonly XName @checked = w + "checked"; + + /// + /// Represents the w:checkErrors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CheckErrors. + /// + /// + public static readonly XName checkErrors = w + "checkErrors"; + + /// + /// Represents the w:checkStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ActiveWritingStyle.CheckStyle. + /// + /// + public static readonly XName checkStyle = w + "checkStyle"; + + /// + /// Represents the w:citation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SdtContentCitation. + /// + /// + public static readonly XName citation = w + "citation"; + + /// + /// Represents the w:clear XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Break.Clear. + /// + /// + public static readonly XName clear = w + "clear"; + + /// + /// Represents the w:clearFormatting XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.ClearFormatting. + /// + /// + public static readonly XName clearFormatting = w + "clearFormatting"; + + /// + /// Represents the w:clickAndTypeStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ClickAndTypeStyle. + /// + /// + public static readonly XName clickAndTypeStyle = w + "clickAndTypeStyle"; + + /// + /// Represents the w:clrSchemeMapping XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ColorSchemeMapping. + /// + /// + public static readonly XName clrSchemeMapping = w + "clrSchemeMapping"; + + /// + /// Represents the w:cnfStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ConditionalFormatStyle. + /// + /// + public static readonly XName cnfStyle = w + "cnfStyle"; + + /// + /// Represents the w:code XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageSize.Code. + /// + /// + public static readonly XName code = w + "code"; + + /// + /// Represents the w:col XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Column. + /// + /// + public static readonly XName col = w + "col"; + + /// + /// Represents the w:colDelim XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnDelimiter. + /// + /// + public static readonly XName colDelim = w + "colDelim"; + + /// + /// Represents the w:colFirst XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BookmarkStart.ColumnFirst, MoveFromRangeStart.ColumnFirst, MoveToRangeStart.ColumnFirst, PermStart.ColumnFirst. + /// + /// + public static readonly XName colFirst = w + "colFirst"; + + /// + /// Represents the w:colLast XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: BookmarkStart.ColumnLast, MoveFromRangeStart.ColumnLast, MoveToRangeStart.ColumnLast, PermStart.ColumnLast. + /// + /// + public static readonly XName colLast = w + "colLast"; + + /// + /// Represents the w:color XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Color. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BarBorder.Color, BetweenBorder.Color, Border.Color, BottomBorder.Color, DocumentBackground.Color, EndBorder.Color, InsideHorizontalBorder.Color, InsideVerticalBorder.Color, LeftBorder.Color, RightBorder.Color, Shading.Color, StartBorder.Color, TopBorder.Color, TopLeftToBottomRightCellBorder.Color, TopRightToBottomLeftCellBorder.Color, Underline.Color. + /// + /// + public static readonly XName color = w + "color"; + + /// + /// Represents the w:cols XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Columns. + /// + /// + public static readonly XName cols = w + "cols"; + + /// + /// Represents the w:column XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnIndex. + /// + /// + public static readonly XName column = w + "column"; + + /// + /// Represents the w:combine XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EastAsianLayout.Combine. + /// + /// + public static readonly XName combine = w + "combine"; + + /// + /// Represents the w:combineBrackets XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EastAsianLayout.CombineBrackets. + /// + /// + public static readonly XName combineBrackets = w + "combineBrackets"; + + /// + /// Represents the w:comboBox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SdtContentComboBox. + /// + /// + public static readonly XName comboBox = w + "comboBox"; + + /// + /// Represents the w:comment XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Comment. + /// + /// + public static readonly XName comment = w + "comment"; + + /// + /// Represents the w:commentRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CommentRangeEnd. + /// + /// + public static readonly XName commentRangeEnd = w + "commentRangeEnd"; + + /// + /// Represents the w:commentRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CommentRangeStart. + /// + /// + public static readonly XName commentRangeStart = w + "commentRangeStart"; + + /// + /// Represents the w:commentReference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CommentReference. + /// + /// + public static readonly XName commentReference = w + "commentReference"; + + /// + /// Represents the w:comments XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Comments. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionView.Comments. + /// + /// + public static readonly XName comments = w + "comments"; + + /// + /// Represents the w:compat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Compatibility. + /// + /// + public static readonly XName compat = w + "compat"; + + /// + /// Represents the w:compatSetting XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CompatibilitySetting. + /// + /// + public static readonly XName compatSetting = w + "compatSetting"; + + /// + /// Represents the w:conformance XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Document.Conformance. + /// + /// + public static readonly XName conformance = w + "conformance"; + + /// + /// Represents the w:connectString XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConnectString. + /// + /// + public static readonly XName connectString = w + "connectString"; + + /// + /// Represents the w:consecutiveHyphenLimit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConsecutiveHyphenLimit. + /// + /// + public static readonly XName consecutiveHyphenLimit = w + "consecutiveHyphenLimit"; + + /// + /// Represents the w:contentPart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ContentPart. + /// + /// + public static readonly XName contentPart = w + "contentPart"; + + /// + /// Represents the w:contextualSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ContextualSpacing. + /// + /// + public static readonly XName contextualSpacing = w + "contextualSpacing"; + + /// + /// Represents the w:continuationSeparator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: ContinuationSeparatorMark. + /// + /// + public static readonly XName continuationSeparator = w + "continuationSeparator"; + + /// + /// Represents the w:control XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Control. + /// + /// + public static readonly XName control = w + "control"; + + /// + /// Represents the w:convMailMergeEsc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConvertMailMergeEscape. + /// + /// + public static readonly XName convMailMergeEsc = w + "convMailMergeEsc"; + + /// + /// Represents the w:count XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyles.Count. + /// + /// + public static readonly XName count = w + "count"; + + /// + /// Represents the w:countBy XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LineNumberType.CountBy. + /// + /// + public static readonly XName countBy = w + "countBy"; + + /// + /// Represents the w:cr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: CarriageReturn. + /// + /// + public static readonly XName cr = w + "cr"; + + /// + /// Represents the w:cryptAlgorithmClass XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.CryptographicAlgorithmClass, WriteProtection.CryptographicAlgorithmClass. + /// + /// + public static readonly XName cryptAlgorithmClass = w + "cryptAlgorithmClass"; + + /// + /// Represents the w:cryptAlgorithmSid XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.CryptographicAlgorithmSid, WriteProtection.CryptographicAlgorithmSid. + /// + /// + public static readonly XName cryptAlgorithmSid = w + "cryptAlgorithmSid"; + + /// + /// Represents the w:cryptAlgorithmType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.CryptographicAlgorithmType, WriteProtection.CryptographicAlgorithmType. + /// + /// + public static readonly XName cryptAlgorithmType = w + "cryptAlgorithmType"; + + /// + /// Represents the w:cryptProvider XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.CryptographicProvider, WriteProtection.CryptographicProvider. + /// + /// + public static readonly XName cryptProvider = w + "cryptProvider"; + + /// + /// Represents the w:cryptProviderType XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.CryptographicProviderType, WriteProtection.CryptographicProviderType. + /// + /// + public static readonly XName cryptProviderType = w + "cryptProviderType"; + + /// + /// Represents the w:cryptProviderTypeExt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.CryptographicProviderTypeExtensibility, WriteProtection.CryptographicProviderTypeExtensibility. + /// + /// + public static readonly XName cryptProviderTypeExt = w + "cryptProviderTypeExt"; + + /// + /// Represents the w:cryptProviderTypeExtSource XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.CryptographicProviderTypeExtSource, WriteProtection.CryptographicProviderTypeExtSource. + /// + /// + public static readonly XName cryptProviderTypeExtSource = w + "cryptProviderTypeExtSource"; + + /// + /// Represents the w:cryptSpinCount XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.CryptographicSpinCount, WriteProtection.CryptographicSpinCount. + /// + /// + public static readonly XName cryptSpinCount = w + "cryptSpinCount"; + + /// + /// Represents the w:cs XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ComplexScript. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RunFonts.ComplexScript. + /// + /// + public static readonly XName cs = w + "cs"; + + /// + /// Represents the w:csb0 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FontSignature.CodePageSignature0. + /// + /// + public static readonly XName csb0 = w + "csb0"; + + /// + /// Represents the w:csb1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FontSignature.CodePageSignature1. + /// + /// + public static readonly XName csb1 = w + "csb1"; + + /// + /// Represents the w:cstheme XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RunFonts.ComplexScriptTheme. + /// + /// + public static readonly XName cstheme = w + "cstheme"; + + /// + /// Represents the w:customMarkFollows XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: EndnoteReference.CustomMarkFollows, FootnoteReference.CustomMarkFollows. + /// + /// + public static readonly XName customMarkFollows = w + "customMarkFollows"; + + /// + /// Represents the w:customStyle XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Style.CustomStyle. + /// + /// + public static readonly XName customStyle = w + "customStyle"; + + /// + /// Represents the w:customStyles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.CustomStyles. + /// + /// + public static readonly XName customStyles = w + "customStyles"; + + /// + /// Represents the w:customXml XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CustomXmlBlock, CustomXmlCell, CustomXmlRow, CustomXmlRuby, CustomXmlRun. + /// + /// + public static readonly XName customXml = w + "customXml"; + + /// + /// Represents the w:customXmlDelRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomXmlDelRangeEnd. + /// + /// + public static readonly XName customXmlDelRangeEnd = w + "customXmlDelRangeEnd"; + + /// + /// Represents the w:customXmlDelRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CustomXmlDelRangeStart. + /// + /// + public static readonly XName customXmlDelRangeStart = w + "customXmlDelRangeStart"; + + /// + /// Represents the w:customXmlInsRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomXmlInsRangeEnd. + /// + /// + public static readonly XName customXmlInsRangeEnd = w + "customXmlInsRangeEnd"; + + /// + /// Represents the w:customXmlInsRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CustomXmlInsRangeStart. + /// + /// + public static readonly XName customXmlInsRangeStart = w + "customXmlInsRangeStart"; + + /// + /// Represents the w:customXmlMoveFromRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomXmlMoveFromRangeEnd. + /// + /// + public static readonly XName customXmlMoveFromRangeEnd = w + "customXmlMoveFromRangeEnd"; + + /// + /// Represents the w:customXmlMoveFromRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CustomXmlMoveFromRangeStart. + /// + /// + public static readonly XName customXmlMoveFromRangeStart = w + "customXmlMoveFromRangeStart"; + + /// + /// Represents the w:customXmlMoveToRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomXmlMoveToRangeEnd. + /// + /// + public static readonly XName customXmlMoveToRangeEnd = w + "customXmlMoveToRangeEnd"; + + /// + /// Represents the w:customXmlMoveToRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CustomXmlMoveToRangeStart. + /// + /// + public static readonly XName customXmlMoveToRangeStart = w + "customXmlMoveToRangeStart"; + + /// + /// Represents the w:customXmlPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: CustomXmlProperties. + /// + /// + public static readonly XName customXmlPr = w + "customXmlPr"; + + /// + /// Represents the w:dataBinding XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: DataBinding. + /// + /// + public static readonly XName dataBinding = w + "dataBinding"; + + /// + /// Represents the w:dataSource XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataSourceReference. + /// + /// + public static readonly XName dataSource = w + "dataSource"; + + /// + /// Represents the w:dataType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataType. + /// + /// + public static readonly XName dataType = w + "dataType"; + + /// + /// Represents the w:date XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SdtContentDate. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: CellDeletion.Date, CellInsertion.Date, CellMerge.Date, Comment.Date, ConflictDeletion.Date, ConflictInsertion.Date, CustomXmlConflictDeletionRangeStart.Date, CustomXmlConflictInsertionRangeStart.Date, CustomXmlDelRangeStart.Date, CustomXmlInsRangeStart.Date, CustomXmlMoveFromRangeStart.Date, CustomXmlMoveToRangeStart.Date, Deleted.Date, DeletedMathControl.Date, DeletedRun.Date, Inserted.Date, InsertedMathControl.Date, InsertedRun.Date, MoveFrom.Date, MoveFromMathControl.Date, MoveFromRangeStart.Date, MoveFromRun.Date, MoveTo.Date, MoveToMathControl.Date, MoveToRangeStart.Date, MoveToRun.Date, NumberingChange.Date, ParagraphMarkRunPropertiesChange.Date, ParagraphPropertiesChange.Date, RunConflictDeletion.Date, RunConflictInsertion.Date, RunPropertiesChange.Date, SectionPropertiesChange.Date, TableCellPropertiesChange.Date, TablePropertiesChange.Date, TablePropertyExceptionsChange.Date, TableRowPropertiesChange.Date. + /// + /// + public static readonly XName date = w + "date"; + + /// + /// Represents the w:dateFormat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DateFormat. + /// + /// + public static readonly XName dateFormat = w + "dateFormat"; + + /// + /// Represents the w:dayLong XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: DayLong. + /// + /// + public static readonly XName dayLong = w + "dayLong"; + + /// + /// Represents the w:dayShort XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: DayShort. + /// + /// + public static readonly XName dayShort = w + "dayShort"; + + /// + /// Represents the w:ddList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: DropDownListFormField. + /// + /// + public static readonly XName ddList = w + "ddList"; + + /// + /// Represents the w:decimalSymbol XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DecimalSymbol. + /// + /// + public static readonly XName decimalSymbol = w + "decimalSymbol"; + + /// + /// Represents the w:decorated XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DocPartName.Decorated. + /// + /// + public static readonly XName decorated = w + "decorated"; + + /// + /// Represents the w:default XML elements and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DefaultCheckBoxFormFieldState, DefaultDropDownListItemIndex, DefaultTextBoxFormFieldString. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Style.Default. + /// + /// + public static readonly XName @default = w + "default"; + + /// + /// Represents the w:defaultTableStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DefaultTableStyle. + /// + /// + public static readonly XName defaultTableStyle = w + "defaultTableStyle"; + + /// + /// Represents the w:defaultTabStop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DefaultTabStop. + /// + /// + public static readonly XName defaultTabStop = w + "defaultTabStop"; + + /// + /// Represents the w:defLockedState XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyles.DefaultLockedState. + /// + /// + public static readonly XName defLockedState = w + "defLockedState"; + + /// + /// Represents the w:defQFormat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyles.DefaultPrimaryStyle. + /// + /// + public static readonly XName defQFormat = w + "defQFormat"; + + /// + /// Represents the w:defSemiHidden XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyles.DefaultSemiHidden. + /// + /// + public static readonly XName defSemiHidden = w + "defSemiHidden"; + + /// + /// Represents the w:defUIPriority XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyles.DefaultUiPriority. + /// + /// + public static readonly XName defUIPriority = w + "defUIPriority"; + + /// + /// Represents the w:defUnhideWhenUsed XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyles.DefaultUnhideWhenUsed. + /// + /// + public static readonly XName defUnhideWhenUsed = w + "defUnhideWhenUsed"; + + /// + /// Represents the w:del XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Deleted, DeletedMathControl, DeletedRun. + /// + /// + public static readonly XName del = w + "del"; + + /// + /// Represents the w:delInstrText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DeletedFieldCode. + /// + /// + public static readonly XName delInstrText = w + "delInstrText"; + + /// + /// Represents the w:delText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DeletedText. + /// + /// + public static readonly XName delText = w + "delText"; + + /// + /// Represents the w:description XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Description. + /// + /// + public static readonly XName description = w + "description"; + + /// + /// Represents the w:destination XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Destination. + /// + /// + public static readonly XName destination = w + "destination"; + + /// + /// Represents the w:dir XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BidirectionalEmbedding. + /// + /// + public static readonly XName dir = w + "dir"; + + /// + /// Represents the w:directFormattingOnNumbering XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.DirectFormattingOnNumbering. + /// + /// + public static readonly XName directFormattingOnNumbering = w + "directFormattingOnNumbering"; + + /// + /// Represents the w:directFormattingOnParagraphs XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.DirectFormattingOnParagraphs. + /// + /// + public static readonly XName directFormattingOnParagraphs = w + "directFormattingOnParagraphs"; + + /// + /// Represents the w:directFormattingOnRuns XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.DirectFormattingOnRuns. + /// + /// + public static readonly XName directFormattingOnRuns = w + "directFormattingOnRuns"; + + /// + /// Represents the w:directFormattingOnTables XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.DirectFormattingOnTables. + /// + /// + public static readonly XName directFormattingOnTables = w + "directFormattingOnTables"; + + /// + /// Represents the w:dirty XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Dirty. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: FieldChar.Dirty, SimpleField.Dirty, SimpleFieldRuby.Dirty. + /// + /// + public static readonly XName dirty = w + "dirty"; + + /// + /// Represents the w:displacedByCustomXml XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BookmarkEnd.DisplacedByCustomXml, BookmarkStart.DisplacedByCustomXml, CommentRangeEnd.DisplacedByCustomXml, CommentRangeStart.DisplacedByCustomXml, MoveFromRangeEnd.DisplacedByCustomXml, MoveFromRangeStart.DisplacedByCustomXml, MoveToRangeEnd.DisplacedByCustomXml, MoveToRangeStart.DisplacedByCustomXml, PermEnd.DisplacedByCustomXml, PermStart.DisplacedByCustomXml. + /// + /// + public static readonly XName displacedByCustomXml = w + "displacedByCustomXml"; + + /// + /// Represents the w:display XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageBorders.Display. + /// + /// + public static readonly XName display = w + "display"; + + /// + /// Represents the w:displayBackgroundShape XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DisplayBackgroundShape. + /// + /// + public static readonly XName displayBackgroundShape = w + "displayBackgroundShape"; + + /// + /// Represents the w:displayHangulFixedWidth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DisplayHangulFixedWidth. + /// + /// + public static readonly XName displayHangulFixedWidth = w + "displayHangulFixedWidth"; + + /// + /// Represents the w:displayHorizontalDrawingGridEvery XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DisplayHorizontalDrawingGrid. + /// + /// + public static readonly XName displayHorizontalDrawingGridEvery = w + "displayHorizontalDrawingGridEvery"; + + /// + /// Represents the w:displayText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ListItem.DisplayText. + /// + /// + public static readonly XName displayText = w + "displayText"; + + /// + /// Represents the w:displayVerticalDrawingGridEvery XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DisplayVerticalDrawingGrid. + /// + /// + public static readonly XName displayVerticalDrawingGridEvery = w + "displayVerticalDrawingGridEvery"; + + /// + /// Represents the w:distance XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LineNumberType.Distance. + /// + /// + public static readonly XName distance = w + "distance"; + + /// + /// Represents the w:div XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Div. + /// + /// + public static readonly XName div = w + "div"; + + /// + /// Represents the w:divBdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: DivBorder. + /// + /// + public static readonly XName divBdr = w + "divBdr"; + + /// + /// Represents the w:divId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DivId. + /// + /// + public static readonly XName divId = w + "divId"; + + /// + /// Represents the w:divs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Divs. + /// + /// + public static readonly XName divs = w + "divs"; + + /// + /// Represents the w:divsChild XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DivsChild. + /// + /// + public static readonly XName divsChild = w + "divsChild"; + + /// + /// Represents the w:dllVersion XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ActiveWritingStyle.DllVersion. + /// + /// + public static readonly XName dllVersion = w + "dllVersion"; + + /// + /// Represents the w:docDefaults XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: DocDefaults. + /// + /// + public static readonly XName docDefaults = w + "docDefaults"; + + /// + /// Represents the w:docGrid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: DocGrid. + /// + /// + public static readonly XName docGrid = w + "docGrid"; + + /// + /// Represents the w:docLocation XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Hyperlink.DocLocation, HyperlinkRuby.DocLocation. + /// + /// + public static readonly XName docLocation = w + "docLocation"; + + /// + /// Represents the w:docPart XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocPart, DocPartReference. + /// + /// + public static readonly XName docPart = w + "docPart"; + + /// + /// Represents the w:docPartBody XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DocPartBody. + /// + /// + public static readonly XName docPartBody = w + "docPartBody"; + + /// + /// Represents the w:docPartCategory XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocPartCategory. + /// + /// + public static readonly XName docPartCategory = w + "docPartCategory"; + + /// + /// Represents the w:docPartGallery XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocPartGallery. + /// + /// + public static readonly XName docPartGallery = w + "docPartGallery"; + + /// + /// Represents the w:docPartList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: SdtContentDocPartList. + /// + /// + public static readonly XName docPartList = w + "docPartList"; + + /// + /// Represents the w:docPartObj XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: SdtContentDocPartObject. + /// + /// + public static readonly XName docPartObj = w + "docPartObj"; + + /// + /// Represents the w:docPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: DocPartProperties. + /// + /// + public static readonly XName docPartPr = w + "docPartPr"; + + /// + /// Represents the w:docParts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DocParts. + /// + /// + public static readonly XName docParts = w + "docParts"; + + /// + /// Represents the w:docPartUnique XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocPartUnique. + /// + /// + public static readonly XName docPartUnique = w + "docPartUnique"; + + /// + /// Represents the w:document XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Document. + /// + /// + public static readonly XName document = w + "document"; + + /// + /// Represents the w:documentProtection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DocumentProtection. + /// + /// + public static readonly XName documentProtection = w + "documentProtection"; + + /// + /// Represents the w:documentType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocumentType. + /// + /// + public static readonly XName documentType = w + "documentType"; + + /// + /// Represents the w:docVar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DocumentVariable. + /// + /// + public static readonly XName docVar = w + "docVar"; + + /// + /// Represents the w:docVars XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DocumentVariables. + /// + /// + public static readonly XName docVars = w + "docVars"; + + /// + /// Represents the w:doNotAutoCompressPictures XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotAutoCompressPictures. + /// + /// + public static readonly XName doNotAutoCompressPictures = w + "doNotAutoCompressPictures"; + + /// + /// Represents the w:doNotAutofitConstrainedTables XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotAutofitConstrainedTables. + /// + /// + public static readonly XName doNotAutofitConstrainedTables = w + "doNotAutofitConstrainedTables"; + + /// + /// Represents the w:doNotBreakConstrainedForcedTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotBreakConstrainedForcedTable. + /// + /// + public static readonly XName doNotBreakConstrainedForcedTable = w + "doNotBreakConstrainedForcedTable"; + + /// + /// Represents the w:doNotBreakWrappedTables XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotBreakWrappedTables. + /// + /// + public static readonly XName doNotBreakWrappedTables = w + "doNotBreakWrappedTables"; + + /// + /// Represents the w:doNotDemarcateInvalidXml XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotDemarcateInvalidXml. + /// + /// + public static readonly XName doNotDemarcateInvalidXml = w + "doNotDemarcateInvalidXml"; + + /// + /// Represents the w:doNotDisplayPageBoundaries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotDisplayPageBoundaries. + /// + /// + public static readonly XName doNotDisplayPageBoundaries = w + "doNotDisplayPageBoundaries"; + + /// + /// Represents the w:doNotExpandShiftReturn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotExpandShiftReturn. + /// + /// + public static readonly XName doNotExpandShiftReturn = w + "doNotExpandShiftReturn"; + + /// + /// Represents the w:doNotHyphenateCaps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotHyphenateCaps. + /// + /// + public static readonly XName doNotHyphenateCaps = w + "doNotHyphenateCaps"; + + /// + /// Represents the w:doNotIncludeSubdocsInStats XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotIncludeSubdocsInStats. + /// + /// + public static readonly XName doNotIncludeSubdocsInStats = w + "doNotIncludeSubdocsInStats"; + + /// + /// Represents the w:doNotLeaveBackslashAlone XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotLeaveBackslashAlone. + /// + /// + public static readonly XName doNotLeaveBackslashAlone = w + "doNotLeaveBackslashAlone"; + + /// + /// Represents the w:doNotOrganizeInFolder XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotOrganizeInFolder. + /// + /// + public static readonly XName doNotOrganizeInFolder = w + "doNotOrganizeInFolder"; + + /// + /// Represents the w:doNotRelyOnCSS XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotRelyOnCSS. + /// + /// + public static readonly XName doNotRelyOnCSS = w + "doNotRelyOnCSS"; + + /// + /// Represents the w:doNotSaveAsSingleFile XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotSaveAsSingleFile. + /// + /// + public static readonly XName doNotSaveAsSingleFile = w + "doNotSaveAsSingleFile"; + + /// + /// Represents the w:doNotShadeFormData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotShadeFormData. + /// + /// + public static readonly XName doNotShadeFormData = w + "doNotShadeFormData"; + + /// + /// Represents the w:doNotSnapToGridInCell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotSnapToGridInCell. + /// + /// + public static readonly XName doNotSnapToGridInCell = w + "doNotSnapToGridInCell"; + + /// + /// Represents the w:doNotSuppressBlankLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotSuppressBlankLines. + /// + /// + public static readonly XName doNotSuppressBlankLines = w + "doNotSuppressBlankLines"; + + /// + /// Represents the w:doNotSuppressIndentation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotSuppressIndentation. + /// + /// + public static readonly XName doNotSuppressIndentation = w + "doNotSuppressIndentation"; + + /// + /// Represents the w:doNotSuppressParagraphBorders XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotSuppressParagraphBorders. + /// + /// + public static readonly XName doNotSuppressParagraphBorders = w + "doNotSuppressParagraphBorders"; + + /// + /// Represents the w:doNotTrackFormatting XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotTrackFormatting. + /// + /// + public static readonly XName doNotTrackFormatting = w + "doNotTrackFormatting"; + + /// + /// Represents the w:doNotTrackMoves XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotTrackMoves. + /// + /// + public static readonly XName doNotTrackMoves = w + "doNotTrackMoves"; + + /// + /// Represents the w:doNotUseEastAsianBreakRules XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotUseEastAsianBreakRules. + /// + /// + public static readonly XName doNotUseEastAsianBreakRules = w + "doNotUseEastAsianBreakRules"; + + /// + /// Represents the w:doNotUseHTMLParagraphAutoSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotUseHTMLParagraphAutoSpacing. + /// + /// + public static readonly XName doNotUseHTMLParagraphAutoSpacing = w + "doNotUseHTMLParagraphAutoSpacing"; + + /// + /// Represents the w:doNotUseIndentAsNumberingTabStop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotUseIndentAsNumberingTabStop. + /// + /// + public static readonly XName doNotUseIndentAsNumberingTabStop = w + "doNotUseIndentAsNumberingTabStop"; + + /// + /// Represents the w:doNotUseLongFileNames XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotUseLongFileNames. + /// + /// + public static readonly XName doNotUseLongFileNames = w + "doNotUseLongFileNames"; + + /// + /// Represents the w:doNotUseMarginsForDrawingGridOrigin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotUseMarginsForDrawingGridOrigin. + /// + /// + public static readonly XName doNotUseMarginsForDrawingGridOrigin = w + "doNotUseMarginsForDrawingGridOrigin"; + + /// + /// Represents the w:doNotValidateAgainstSchema XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotValidateAgainstSchema. + /// + /// + public static readonly XName doNotValidateAgainstSchema = w + "doNotValidateAgainstSchema"; + + /// + /// Represents the w:doNotVertAlignCellWithSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotVerticallyAlignCellWithShape. + /// + /// + public static readonly XName doNotVertAlignCellWithSp = w + "doNotVertAlignCellWithSp"; + + /// + /// Represents the w:doNotVertAlignInTxbx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotVerticallyAlignInTextBox. + /// + /// + public static readonly XName doNotVertAlignInTxbx = w + "doNotVertAlignInTxbx"; + + /// + /// Represents the w:doNotWrapTextWithPunct XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotWrapTextWithPunctuation. + /// + /// + public static readonly XName doNotWrapTextWithPunct = w + "doNotWrapTextWithPunct"; + + /// + /// Represents the w:drawAspect XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ObjectEmbed.drawAspect, ObjectLink.drawAspect. + /// + /// + public static readonly XName drawAspect = w + "drawAspect"; + + /// + /// Represents the w:drawing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Drawing. + /// + /// + public static readonly XName drawing = w + "drawing"; + + /// + /// Represents the w:drawingGridHorizontalOrigin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DrawingGridHorizontalOrigin. + /// + /// + public static readonly XName drawingGridHorizontalOrigin = w + "drawingGridHorizontalOrigin"; + + /// + /// Represents the w:drawingGridHorizontalSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DrawingGridHorizontalSpacing. + /// + /// + public static readonly XName drawingGridHorizontalSpacing = w + "drawingGridHorizontalSpacing"; + + /// + /// Represents the w:drawingGridVerticalOrigin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DrawingGridVerticalOrigin. + /// + /// + public static readonly XName drawingGridVerticalOrigin = w + "drawingGridVerticalOrigin"; + + /// + /// Represents the w:drawingGridVerticalSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DrawingGridVerticalSpacing. + /// + /// + public static readonly XName drawingGridVerticalSpacing = w + "drawingGridVerticalSpacing"; + + /// + /// Represents the w:dropCap XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.DropCap. + /// + /// + public static readonly XName dropCap = w + "dropCap"; + + /// + /// Represents the w:dropDownList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SdtContentDropDownList. + /// + /// + public static readonly XName dropDownList = w + "dropDownList"; + + /// + /// Represents the w:dstrike XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoubleStrike. + /// + /// + public static readonly XName dstrike = w + "dstrike"; + + /// + /// Represents the w:dxaOrig XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EmbeddedObject.DxaOriginal. + /// + /// + public static readonly XName dxaOrig = w + "dxaOrig"; + + /// + /// Represents the w:dyaOrig XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EmbeddedObject.DyaOriginal. + /// + /// + public static readonly XName dyaOrig = w + "dyaOrig"; + + /// + /// Represents the w:dynamicAddress XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DynamicAddress. + /// + /// + public static readonly XName dynamicAddress = w + "dynamicAddress"; + + /// + /// Represents the w:eastAsia XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Languages.EastAsia, RunFonts.EastAsia, ThemeFontLanguages.EastAsia. + /// + /// + public static readonly XName eastAsia = w + "eastAsia"; + + /// + /// Represents the w:eastAsianLayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: EastAsianLayout. + /// + /// + public static readonly XName eastAsianLayout = w + "eastAsianLayout"; + + /// + /// Represents the w:eastAsiaTheme XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RunFonts.EastAsiaTheme. + /// + /// + public static readonly XName eastAsiaTheme = w + "eastAsiaTheme"; + + /// + /// Represents the w:ed XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PermStart.Ed. + /// + /// + public static readonly XName ed = w + "ed"; + + /// + /// Represents the w:edGrp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PermStart.EditorGroup. + /// + /// + public static readonly XName edGrp = w + "edGrp"; + + /// + /// Represents the w:edit XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DocumentProtection.Edit. + /// + /// + public static readonly XName edit = w + "edit"; + + /// + /// Represents the w:effect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TextEffect. + /// + /// + public static readonly XName effect = w + "effect"; + + /// + /// Represents the w:element XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CustomXmlBlock.Element, CustomXmlCell.Element, CustomXmlRow.Element, CustomXmlRuby.Element, CustomXmlRun.Element. + /// + /// + public static readonly XName element = w + "element"; + + /// + /// Represents the w:em XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Emphasis. + /// + /// + public static readonly XName em = w + "em"; + + /// + /// Represents the w:embedBold XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: EmbedBoldFont. + /// + /// + public static readonly XName embedBold = w + "embedBold"; + + /// + /// Represents the w:embedBoldItalic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: EmbedBoldItalicFont. + /// + /// + public static readonly XName embedBoldItalic = w + "embedBoldItalic"; + + /// + /// Represents the w:embedItalic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: EmbedItalicFont. + /// + /// + public static readonly XName embedItalic = w + "embedItalic"; + + /// + /// Represents the w:embedRegular XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: EmbedRegularFont. + /// + /// + public static readonly XName embedRegular = w + "embedRegular"; + + /// + /// Represents the w:embedSystemFonts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EmbedSystemFonts. + /// + /// + public static readonly XName embedSystemFonts = w + "embedSystemFonts"; + + /// + /// Represents the w:embedTrueTypeFonts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EmbedTrueTypeFonts. + /// + /// + public static readonly XName embedTrueTypeFonts = w + "embedTrueTypeFonts"; + + /// + /// Represents the w:emboss XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Emboss. + /// + /// + public static readonly XName emboss = w + "emboss"; + + /// + /// Represents the w:enabled XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Enabled. + /// + /// + public static readonly XName enabled = w + "enabled"; + + /// + /// Represents the w:encoding XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebPageEncoding. + /// + /// + public static readonly XName encoding = w + "encoding"; + + /// + /// Represents the w:end XML elements and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: EndBorder, EndMargin. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.End. + /// + /// + public static readonly XName end = w + "end"; + + /// + /// Represents the w:endChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.EndCharacters. + /// + /// + public static readonly XName endChars = w + "endChars"; + + /// + /// Represents the w:endnote XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Endnote, EndnoteSpecialReference. + /// + /// + public static readonly XName endnote = w + "endnote"; + + /// + /// Represents the w:endnotePr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: EndnoteDocumentWideProperties, EndnoteProperties. + /// + /// + public static readonly XName endnotePr = w + "endnotePr"; + + /// + /// Represents the w:endnoteRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: EndnoteReferenceMark. + /// + /// + public static readonly XName endnoteRef = w + "endnoteRef"; + + /// + /// Represents the w:endnoteReference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: EndnoteReference. + /// + /// + public static readonly XName endnoteReference = w + "endnoteReference"; + + /// + /// Represents the w:endnotes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Endnotes. + /// + /// + public static readonly XName endnotes = w + "endnotes"; + + /// + /// Represents the w:enforcement XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DocumentProtection.Enforcement. + /// + /// + public static readonly XName enforcement = w + "enforcement"; + + /// + /// Represents the w:entryMacro XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EntryMacro. + /// + /// + public static readonly XName entryMacro = w + "entryMacro"; + + /// + /// Represents the w:equalWidth XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Columns.EqualWidth. + /// + /// + public static readonly XName equalWidth = w + "equalWidth"; + + /// + /// Represents the w:equation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SdtContentEquation. + /// + /// + public static readonly XName equation = w + "equation"; + + /// + /// Represents the w:evenAndOddHeaders XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EvenAndOddHeaders. + /// + /// + public static readonly XName evenAndOddHeaders = w + "evenAndOddHeaders"; + + /// + /// Represents the w:evenHBand XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.EvenHorizontalBand. + /// + /// + public static readonly XName evenHBand = w + "evenHBand"; + + /// + /// Represents the w:evenVBand XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.EvenVerticalBand. + /// + /// + public static readonly XName evenVBand = w + "evenVBand"; + + /// + /// Represents the w:exitMacro XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ExitMacro. + /// + /// + public static readonly XName exitMacro = w + "exitMacro"; + + /// + /// Represents the w:family XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontFamily. + /// + /// + public static readonly XName family = w + "family"; + + /// + /// Represents the w:ffData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: FormFieldData. + /// + /// + public static readonly XName ffData = w + "ffData"; + + /// + /// Represents the w:fHdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FirstRowHeader. + /// + /// + public static readonly XName fHdr = w + "fHdr"; + + /// + /// Represents the w:fieldCodes XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ObjectEmbed.FieldCodes, ObjectLink.FieldCodes. + /// + /// + public static readonly XName fieldCodes = w + "fieldCodes"; + + /// + /// Represents the w:fieldMapData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: FieldMapData. + /// + /// + public static readonly XName fieldMapData = w + "fieldMapData"; + + /// + /// Represents the w:fill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shading.Fill. + /// + /// + public static readonly XName fill = w + "fill"; + + /// + /// Represents the w:first XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PaperSource.First. + /// + /// + public static readonly XName first = w + "first"; + + /// + /// Represents the w:firstColumn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.FirstColumn, TableLook.FirstColumn. + /// + /// + public static readonly XName firstColumn = w + "firstColumn"; + + /// + /// Represents the w:firstLine XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.FirstLine. + /// + /// + public static readonly XName firstLine = w + "firstLine"; + + /// + /// Represents the w:firstLineChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.FirstLineChars. + /// + /// + public static readonly XName firstLineChars = w + "firstLineChars"; + + /// + /// Represents the w:firstRow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.FirstRow, TableLook.FirstRow. + /// + /// + public static readonly XName firstRow = w + "firstRow"; + + /// + /// Represents the w:firstRowFirstColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.FirstRowFirstColumn. + /// + /// + public static readonly XName firstRowFirstColumn = w + "firstRowFirstColumn"; + + /// + /// Represents the w:firstRowLastColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.FirstRowLastColumn. + /// + /// + public static readonly XName firstRowLastColumn = w + "firstRowLastColumn"; + + /// + /// Represents the w:fitText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FitText. + /// + /// + public static readonly XName fitText = w + "fitText"; + + /// + /// Represents the w:flatBorders XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FlatBorders. + /// + /// + public static readonly XName flatBorders = w + "flatBorders"; + + /// + /// Represents the w:fldChar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: FieldChar. + /// + /// + public static readonly XName fldChar = w + "fldChar"; + + /// + /// Represents the w:fldCharType XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FieldChar.FieldCharType. + /// + /// + public static readonly XName fldCharType = w + "fldCharType"; + + /// + /// Represents the w:fldData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: FieldData. + /// + /// + public static readonly XName fldData = w + "fldData"; + + /// + /// Represents the w:fldLock XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: FieldChar.FieldLock, SimpleField.FieldLock, SimpleFieldRuby.FieldLock. + /// + /// + public static readonly XName fldLock = w + "fldLock"; + + /// + /// Represents the w:fldSimple XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SimpleField, SimpleFieldRuby. + /// + /// + public static readonly XName fldSimple = w + "fldSimple"; + + /// + /// Represents the w:fmt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageNumberType.Format. + /// + /// + public static readonly XName fmt = w + "fmt"; + + /// + /// Represents the w:followedHyperlink XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.FollowedHyperlink. + /// + /// + public static readonly XName followedHyperlink = w + "followedHyperlink"; + + /// + /// Represents the w:font XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Font. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SymbolChar.Font. + /// + /// + public static readonly XName font = w + "font"; + + /// + /// Represents the w:fontKey XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: EmbedBoldFont.FontKey, EmbedBoldItalicFont.FontKey, EmbedItalicFont.FontKey, EmbedRegularFont.FontKey. + /// + /// + public static readonly XName fontKey = w + "fontKey"; + + /// + /// Represents the w:fonts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Fonts. + /// + /// + public static readonly XName fonts = w + "fonts"; + + /// + /// Represents the w:fontSz XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ReadModeInkLockDown.FontSize. + /// + /// + public static readonly XName fontSz = w + "fontSz"; + + /// + /// Represents the w:footer XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageMargin.Footer. + /// + /// + public static readonly XName footer = w + "footer"; + + /// + /// Represents the w:footerReference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FooterReference. + /// + /// + public static readonly XName footerReference = w + "footerReference"; + + /// + /// Represents the w:footnote XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Footnote, FootnoteSpecialReference. + /// + /// + public static readonly XName footnote = w + "footnote"; + + /// + /// Represents the w:footnoteLayoutLikeWW8 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FootnoteLayoutLikeWord8. + /// + /// + public static readonly XName footnoteLayoutLikeWW8 = w + "footnoteLayoutLikeWW8"; + + /// + /// Represents the w:footnotePr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: FootnoteDocumentWideProperties, FootnoteProperties. + /// + /// + public static readonly XName footnotePr = w + "footnotePr"; + + /// + /// Represents the w:footnoteRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: FootnoteReferenceMark. + /// + /// + public static readonly XName footnoteRef = w + "footnoteRef"; + + /// + /// Represents the w:footnoteReference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FootnoteReference. + /// + /// + public static readonly XName footnoteReference = w + "footnoteReference"; + + /// + /// Represents the w:footnotes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Footnotes. + /// + /// + public static readonly XName footnotes = w + "footnotes"; + + /// + /// Represents the w:forceUpgrade XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ForceUpgrade. + /// + /// + public static readonly XName forceUpgrade = w + "forceUpgrade"; + + /// + /// Represents the w:forgetLastTabAlignment XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ForgetLastTabAlignment. + /// + /// + public static readonly XName forgetLastTabAlignment = w + "forgetLastTabAlignment"; + + /// + /// Represents the w:format XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Format. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NumberingFormat.Format. + /// + /// + public static readonly XName format = w + "format"; + + /// + /// Represents the w:formatting XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.Formatting, RevisionView.Formatting. + /// + /// + public static readonly XName formatting = w + "formatting"; + + /// + /// Represents the w:formProt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FormProtection. + /// + /// + public static readonly XName formProt = w + "formProt"; + + /// + /// Represents the w:formsDesign XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FormsDesign. + /// + /// + public static readonly XName formsDesign = w + "formsDesign"; + + /// + /// Represents the w:frame XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Frame. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BarBorder.Frame, BetweenBorder.Frame, Border.Frame, BottomBorder.Frame, EndBorder.Frame, InsideHorizontalBorder.Frame, InsideVerticalBorder.Frame, LeftBorder.Frame, RightBorder.Frame, StartBorder.Frame, TopBorder.Frame, TopLeftToBottomRightCellBorder.Frame, TopRightToBottomLeftCellBorder.Frame. + /// + /// + public static readonly XName frame = w + "frame"; + + /// + /// Represents the w:frameLayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FrameLayout. + /// + /// + public static readonly XName frameLayout = w + "frameLayout"; + + /// + /// Represents the w:framePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: FrameProperties. + /// + /// + public static readonly XName framePr = w + "framePr"; + + /// + /// Represents the w:frameset XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: Frameset. + /// + /// + public static readonly XName frameset = w + "frameset"; + + /// + /// Represents the w:framesetSplitbar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: FramesetSplitbar. + /// + /// + public static readonly XName framesetSplitbar = w + "framesetSplitbar"; + + /// + /// Represents the w:ftr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Footer. + /// + /// + public static readonly XName ftr = w + "ftr"; + + /// + /// Represents the w:fullDate XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SdtContentDate.FullDate. + /// + /// + public static readonly XName fullDate = w + "fullDate"; + + /// + /// Represents the w:gallery XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Gallery. + /// + /// + public static readonly XName gallery = w + "gallery"; + + /// + /// Represents the w:glossaryDocument XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: GlossaryDocument. + /// + /// + public static readonly XName glossaryDocument = w + "glossaryDocument"; + + /// + /// Represents the w:grammar XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ProofState.Grammar. + /// + /// + public static readonly XName grammar = w + "grammar"; + + /// + /// Represents the w:gridAfter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GridAfter. + /// + /// + public static readonly XName gridAfter = w + "gridAfter"; + + /// + /// Represents the w:gridBefore XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GridBefore. + /// + /// + public static readonly XName gridBefore = w + "gridBefore"; + + /// + /// Represents the w:gridCol XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GridColumn. + /// + /// + public static readonly XName gridCol = w + "gridCol"; + + /// + /// Represents the w:gridSpan XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GridSpan. + /// + /// + public static readonly XName gridSpan = w + "gridSpan"; + + /// + /// Represents the w:group XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SdtContentGroup. + /// + /// + public static readonly XName group = w + "group"; + + /// + /// Represents the w:growAutofit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GrowAutofit. + /// + /// + public static readonly XName growAutofit = w + "growAutofit"; + + /// + /// Represents the w:guid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocPartId. + /// + /// + public static readonly XName guid = w + "guid"; + + /// + /// Represents the w:gutter XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageMargin.Gutter. + /// + /// + public static readonly XName gutter = w + "gutter"; + + /// + /// Represents the w:gutterAtTop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GutterAtTop. + /// + /// + public static readonly XName gutterAtTop = w + "gutterAtTop"; + + /// + /// Represents the w:h XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: FrameProperties.Height, PageSize.Height, ReadModeInkLockDown.Height. + /// + /// + public static readonly XName h = w + "h"; + + /// + /// Represents the w:hAnchor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.HorizontalPosition. + /// + /// + public static readonly XName hAnchor = w + "hAnchor"; + + /// + /// Represents the w:hanging XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.Hanging. + /// + /// + public static readonly XName hanging = w + "hanging"; + + /// + /// Represents the w:hangingChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.HangingChars. + /// + /// + public static readonly XName hangingChars = w + "hangingChars"; + + /// + /// Represents the w:hAnsi XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RunFonts.HighAnsi. + /// + /// + public static readonly XName hAnsi = w + "hAnsi"; + + /// + /// Represents the w:hAnsiTheme XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RunFonts.HighAnsiTheme. + /// + /// + public static readonly XName hAnsiTheme = w + "hAnsiTheme"; + + /// + /// Represents the w:hash XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.Hash, WriteProtection.Hash. + /// + /// + public static readonly XName hash = w + "hash"; + + /// + /// Represents the w:hashValue XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.HashValue, WriteProtection.HashValue. + /// + /// + public static readonly XName hashValue = w + "hashValue"; + + /// + /// Represents the w:hdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Header. + /// + /// + public static readonly XName hdr = w + "hdr"; + + /// + /// Represents the w:hdrShapeDefaults XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: HeaderShapeDefaults. + /// + /// + public static readonly XName hdrShapeDefaults = w + "hdrShapeDefaults"; + + /// + /// Represents the w:header XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageMargin.Header. + /// + /// + public static readonly XName header = w + "header"; + + /// + /// Represents the w:headerReference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: HeaderReference. + /// + /// + public static readonly XName headerReference = w + "headerReference"; + + /// + /// Represents the w:headerSource XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HeaderSource. + /// + /// + public static readonly XName headerSource = w + "headerSource"; + + /// + /// Represents the w:heading XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Caption.Heading. + /// + /// + public static readonly XName heading = w + "heading"; + + /// + /// Represents the w:headingStyles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.HeadingStyles. + /// + /// + public static readonly XName headingStyles = w + "headingStyles"; + + /// + /// Represents the w:helpText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: HelpText. + /// + /// + public static readonly XName helpText = w + "helpText"; + + /// + /// Represents the w:hidden XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Hidden, StyleHidden. + /// + /// + public static readonly XName hidden = w + "hidden"; + + /// + /// Represents the w:hideGrammaticalErrors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideGrammaticalErrors. + /// + /// + public static readonly XName hideGrammaticalErrors = w + "hideGrammaticalErrors"; + + /// + /// Represents the w:hideMark XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideMark. + /// + /// + public static readonly XName hideMark = w + "hideMark"; + + /// + /// Represents the w:hideSpellingErrors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HideSpellingErrors. + /// + /// + public static readonly XName hideSpellingErrors = w + "hideSpellingErrors"; + + /// + /// Represents the w:highlight XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Highlight. + /// + /// + public static readonly XName highlight = w + "highlight"; + + /// + /// Represents the w:hint XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RunFonts.Hint. + /// + /// + public static readonly XName hint = w + "hint"; + + /// + /// Represents the w:history XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Hyperlink.History, HyperlinkRuby.History. + /// + /// + public static readonly XName history = w + "history"; + + /// + /// Represents the w:hMerge XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HorizontalMerge. + /// + /// + public static readonly XName hMerge = w + "hMerge"; + + /// + /// Represents the w:horzAnchor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.HorizontalAnchor. + /// + /// + public static readonly XName horzAnchor = w + "horzAnchor"; + + /// + /// Represents the w:hps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PhoneticGuideTextFontSize. + /// + /// + public static readonly XName hps = w + "hps"; + + /// + /// Represents the w:hpsBaseText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PhoneticGuideBaseTextSize. + /// + /// + public static readonly XName hpsBaseText = w + "hpsBaseText"; + + /// + /// Represents the w:hpsRaise XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PhoneticGuideRaise. + /// + /// + public static readonly XName hpsRaise = w + "hpsRaise"; + + /// + /// Represents the w:hRule XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: FrameProperties.HeightType, TableRowHeight.HeightType. + /// + /// + public static readonly XName hRule = w + "hRule"; + + /// + /// Represents the w:hSpace XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.HorizontalSpace. + /// + /// + public static readonly XName hSpace = w + "hSpace"; + + /// + /// Represents the w:hyperlink XML elements and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Hyperlink, HyperlinkRuby. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Hyperlink. + /// + /// + public static readonly XName hyperlink = w + "hyperlink"; + + /// + /// Represents the w:hyphenationZone XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HyphenationZone. + /// + /// + public static readonly XName hyphenationZone = w + "hyphenationZone"; + + /// + /// Represents the w:i XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Italic. + /// + /// + public static readonly XName i = w + "i"; + + /// + /// Represents the w:iCs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ItalicComplexScript. + /// + /// + public static readonly XName iCs = w + "iCs"; + + /// + /// Represents the w:id XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SdtId. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BookmarkEnd.Id, BookmarkStart.Id, CellDeletion.Id, CellInsertion.Id, CellMerge.Id, Comment.Id, CommentRangeEnd.Id, CommentRangeStart.Id, CommentReference.Id, ConflictDeletion.Id, ConflictInsertion.Id, CustomXmlConflictDeletionRangeEnd.Id, CustomXmlConflictDeletionRangeStart.Id, CustomXmlConflictInsertionRangeEnd.Id, CustomXmlConflictInsertionRangeStart.Id, CustomXmlDelRangeEnd.Id, CustomXmlDelRangeStart.Id, CustomXmlInsRangeEnd.Id, CustomXmlInsRangeStart.Id, CustomXmlMoveFromRangeEnd.Id, CustomXmlMoveFromRangeStart.Id, CustomXmlMoveToRangeEnd.Id, CustomXmlMoveToRangeStart.Id, Deleted.Id, DeletedMathControl.Id, DeletedRun.Id, Div.Id, EastAsianLayout.Id, Endnote.Id, EndnoteReference.Id, EndnoteSpecialReference.Id, FitText.Id, Footnote.Id, FootnoteReference.Id, FootnoteSpecialReference.Id, Inserted.Id, InsertedMathControl.Id, InsertedRun.Id, MoveFrom.Id, MoveFromMathControl.Id, MoveFromRangeEnd.Id, MoveFromRangeStart.Id, MoveFromRun.Id, MoveTo.Id, MoveToMathControl.Id, MoveToRangeEnd.Id, MoveToRangeStart.Id, MoveToRun.Id, NumberingChange.Id, ParagraphMarkRunPropertiesChange.Id, ParagraphPropertiesChange.Id, PermEnd.Id, PermStart.Id, RunConflictDeletion.Id, RunConflictInsertion.Id, RunPropertiesChange.Id, SectionPropertiesChange.Id, TableCellPropertiesChange.Id, TableGridChange.Id, TablePropertiesChange.Id, TablePropertyExceptionsChange.Id, TableRowPropertiesChange.Id. + /// + /// + public static readonly XName id = w + "id"; + + /// + /// Represents the w:ignoreMixedContent XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: IgnoreMixedContent. + /// + /// + public static readonly XName ignoreMixedContent = w + "ignoreMixedContent"; + + /// + /// Represents the w:ilvl XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingLevelReference. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Level.LevelIndex, LevelOverride.LevelIndex. + /// + /// + public static readonly XName ilvl = w + "ilvl"; + + /// + /// Represents the w:imprint XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Imprint. + /// + /// + public static readonly XName imprint = w + "imprint"; + + /// + /// Represents the w:ind XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Indentation. + /// + /// + public static readonly XName ind = w + "ind"; + + /// + /// Represents the w:initials XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Comment.Initials. + /// + /// + public static readonly XName initials = w + "initials"; + + /// + /// Represents the w:inkAnnotations XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionView.InkAnnotations. + /// + /// + public static readonly XName inkAnnotations = w + "inkAnnotations"; + + /// + /// Represents the w:ins XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Inserted, InsertedMathControl, InsertedRun. + /// + /// + public static readonly XName ins = w + "ins"; + + /// + /// Represents the w:insDel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionView.DisplayRevision. + /// + /// + public static readonly XName insDel = w + "insDel"; + + /// + /// Represents the w:insideH XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: InsideHorizontalBorder. + /// + /// + public static readonly XName insideH = w + "insideH"; + + /// + /// Represents the w:insideV XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: InsideVerticalBorder. + /// + /// + public static readonly XName insideV = w + "insideV"; + + /// + /// Represents the w:instr XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SimpleField.Instruction, SimpleFieldRuby.Instruction. + /// + /// + public static readonly XName instr = w + "instr"; + + /// + /// Represents the w:instrText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FieldCode. + /// + /// + public static readonly XName instrText = w + "instrText"; + + /// + /// Represents the w:isLgl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: IsLegalNumberingStyle. + /// + /// + public static readonly XName isLgl = w + "isLgl"; + + /// + /// Represents the w:jc XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Justification, TableJustification. + /// + /// + public static readonly XName jc = w + "jc"; + + /// + /// Represents the w:keepLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: KeepLines. + /// + /// + public static readonly XName keepLines = w + "keepLines"; + + /// + /// Represents the w:keepNext XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: KeepNext. + /// + /// + public static readonly XName keepNext = w + "keepNext"; + + /// + /// Represents the w:kern XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Kern. + /// + /// + public static readonly XName kern = w + "kern"; + + /// + /// Represents the w:kinsoku XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Kinsoku. + /// + /// + public static readonly XName kinsoku = w + "kinsoku"; + + /// + /// Represents the w:lang XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Languages. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: ActiveWritingStyle.Language, NoLineBreaksAfterKinsoku.Language, NoLineBreaksBeforeKinsoku.Language. + /// + /// + public static readonly XName lang = w + "lang"; + + /// + /// Represents the w:lastColumn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.LastColumn, TableLook.LastColumn. + /// + /// + public static readonly XName lastColumn = w + "lastColumn"; + + /// + /// Represents the w:lastRenderedPageBreak XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: LastRenderedPageBreak. + /// + /// + public static readonly XName lastRenderedPageBreak = w + "lastRenderedPageBreak"; + + /// + /// Represents the w:lastRow XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.LastRow, TableLook.LastRow. + /// + /// + public static readonly XName lastRow = w + "lastRow"; + + /// + /// Represents the w:lastRowFirstColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.LastRowFirstColumn. + /// + /// + public static readonly XName lastRowFirstColumn = w + "lastRowFirstColumn"; + + /// + /// Represents the w:lastRowLastColumn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.LastRowLastColumn. + /// + /// + public static readonly XName lastRowLastColumn = w + "lastRowLastColumn"; + + /// + /// Represents the w:lastValue XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: SdtContentComboBox.LastValue, SdtContentDropDownList.LastValue. + /// + /// + public static readonly XName lastValue = w + "lastValue"; + + /// + /// Represents the w:latentStyles XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: LatentStyles. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.LatentStyles. + /// + /// + public static readonly XName latentStyles = w + "latentStyles"; + + /// + /// Represents the w:layoutRawTableWidth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LayoutRawTableWidth. + /// + /// + public static readonly XName layoutRawTableWidth = w + "layoutRawTableWidth"; + + /// + /// Represents the w:layoutTableRowsApart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LayoutTableRowsApart. + /// + /// + public static readonly XName layoutTableRowsApart = w + "layoutTableRowsApart"; + + /// + /// Represents the w:leader XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: PositionalTab.Leader, TabStop.Leader. + /// + /// + public static readonly XName leader = w + "leader"; + + /// + /// Represents the w:left XML elements and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: LeftBorder, LeftMargin, TableCellLeftMargin. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Indentation.Left, PageMargin.Left. + /// + /// + public static readonly XName left = w + "left"; + + /// + /// Represents the w:leftChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.LeftChars. + /// + /// + public static readonly XName leftChars = w + "leftChars"; + + /// + /// Represents the w:leftFromText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.LeftFromText. + /// + /// + public static readonly XName leftFromText = w + "leftFromText"; + + /// + /// Represents the w:legacy XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: LegacyNumbering. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LegacyNumbering.Legacy. + /// + /// + public static readonly XName legacy = w + "legacy"; + + /// + /// Represents the w:legacyIndent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LegacyNumbering.LegacyIndent. + /// + /// + public static readonly XName legacyIndent = w + "legacyIndent"; + + /// + /// Represents the w:legacySpace XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LegacyNumbering.LegacySpace. + /// + /// + public static readonly XName legacySpace = w + "legacySpace"; + + /// + /// Represents the w:lid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LanguageId. + /// + /// + public static readonly XName lid = w + "lid"; + + /// + /// Represents the w:line XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SpacingBetweenLines.Line. + /// + /// + public static readonly XName line = w + "line"; + + /// + /// Represents the w:linePitch XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: DocGrid.LinePitch. + /// + /// + public static readonly XName linePitch = w + "linePitch"; + + /// + /// Represents the w:lineRule XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SpacingBetweenLines.LineRule. + /// + /// + public static readonly XName lineRule = w + "lineRule"; + + /// + /// Represents the w:lines XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.Lines. + /// + /// + public static readonly XName lines = w + "lines"; + + /// + /// Represents the w:lineWrapLikeWord6 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LineWrapLikeWord6. + /// + /// + public static readonly XName lineWrapLikeWord6 = w + "lineWrapLikeWord6"; + + /// + /// Represents the w:link XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LinkedStyle. + /// + /// + public static readonly XName link = w + "link"; + + /// + /// Represents the w:linkedToFile XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LinkedToFile. + /// + /// + public static readonly XName linkedToFile = w + "linkedToFile"; + + /// + /// Represents the w:linkStyles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LinkStyles. + /// + /// + public static readonly XName linkStyles = w + "linkStyles"; + + /// + /// Represents the w:linkToQuery XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LinkToQuery. + /// + /// + public static readonly XName linkToQuery = w + "linkToQuery"; + + /// + /// Represents the w:listEntry XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ListEntryFormField. + /// + /// + public static readonly XName listEntry = w + "listEntry"; + + /// + /// Represents the w:listItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ListItem. + /// + /// + public static readonly XName listItem = w + "listItem"; + + /// + /// Represents the w:listSeparator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ListSeparator. + /// + /// + public static readonly XName listSeparator = w + "listSeparator"; + + /// + /// Represents the w:lnNumType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: LineNumberType. + /// + /// + public static readonly XName lnNumType = w + "lnNumType"; + + /// + /// Represents the w:lock XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Lock. + /// + /// + public static readonly XName @lock = w + "lock"; + + /// + /// Represents the w:locked XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Locked. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyleExceptionInfo.Locked. + /// + /// + public static readonly XName locked = w + "locked"; + + /// + /// Represents the w:lockedField XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ObjectLink.LockedField. + /// + /// + public static readonly XName lockedField = w + "lockedField"; + + /// + /// Represents the w:lsdException XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: LatentStyleExceptionInfo. + /// + /// + public static readonly XName lsdException = w + "lsdException"; + + /// + /// Represents the w:lvl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Level. + /// + /// + public static readonly XName lvl = w + "lvl"; + + /// + /// Represents the w:lvlJc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LevelJustification. + /// + /// + public static readonly XName lvlJc = w + "lvlJc"; + + /// + /// Represents the w:lvlOverride XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LevelOverride. + /// + /// + public static readonly XName lvlOverride = w + "lvlOverride"; + + /// + /// Represents the w:lvlPicBulletId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LevelPictureBulletId. + /// + /// + public static readonly XName lvlPicBulletId = w + "lvlPicBulletId"; + + /// + /// Represents the w:lvlRestart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LevelRestart. + /// + /// + public static readonly XName lvlRestart = w + "lvlRestart"; + + /// + /// Represents the w:lvlText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LevelText. + /// + /// + public static readonly XName lvlText = w + "lvlText"; + + /// + /// Represents the w:mailAsAttachment XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MailAsAttachment. + /// + /// + public static readonly XName mailAsAttachment = w + "mailAsAttachment"; + + /// + /// Represents the w:mailMerge XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: MailMerge. + /// + /// + public static readonly XName mailMerge = w + "mailMerge"; + + /// + /// Represents the w:mailSubject XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MailSubject. + /// + /// + public static readonly XName mailSubject = w + "mailSubject"; + + /// + /// Represents the w:mainDocumentType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MainDocumentType. + /// + /// + public static readonly XName mainDocumentType = w + "mainDocumentType"; + + /// + /// Represents the w:mappedName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MappedName. + /// + /// + public static readonly XName mappedName = w + "mappedName"; + + /// + /// Represents the w:marBottom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BottomMarginDiv. + /// + /// + public static readonly XName marBottom = w + "marBottom"; + + /// + /// Represents the w:marH XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MarginHeight. + /// + /// + public static readonly XName marH = w + "marH"; + + /// + /// Represents the w:markup XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: RevisionView.Markup. + /// + /// + public static readonly XName markup = w + "markup"; + + /// + /// Represents the w:marLeft XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LeftMarginDiv. + /// + /// + public static readonly XName marLeft = w + "marLeft"; + + /// + /// Represents the w:marRight XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RightMarginDiv. + /// + /// + public static readonly XName marRight = w + "marRight"; + + /// + /// Represents the w:marTop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TopMarginDiv. + /// + /// + public static readonly XName marTop = w + "marTop"; + + /// + /// Represents the w:marW XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MarginWidth. + /// + /// + public static readonly XName marW = w + "marW"; + + /// + /// Represents the w:matchSrc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MatchSource. + /// + /// + public static readonly XName matchSrc = w + "matchSrc"; + + /// + /// Represents the w:maxLength XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MaxLength. + /// + /// + public static readonly XName maxLength = w + "maxLength"; + + /// + /// Represents the w:mirrorIndents XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MirrorIndents. + /// + /// + public static readonly XName mirrorIndents = w + "mirrorIndents"; + + /// + /// Represents the w:mirrorMargins XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MirrorMargins. + /// + /// + public static readonly XName mirrorMargins = w + "mirrorMargins"; + + /// + /// Represents the w:monthLong XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: MonthLong. + /// + /// + public static readonly XName monthLong = w + "monthLong"; + + /// + /// Represents the w:monthShort XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: MonthShort. + /// + /// + public static readonly XName monthShort = w + "monthShort"; + + /// + /// Represents the w:moveFrom XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: MoveFrom, MoveFromMathControl, MoveFromRun. + /// + /// + public static readonly XName moveFrom = w + "moveFrom"; + + /// + /// Represents the w:moveFromRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MoveFromRangeEnd. + /// + /// + public static readonly XName moveFromRangeEnd = w + "moveFromRangeEnd"; + + /// + /// Represents the w:moveFromRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: MoveFromRangeStart. + /// + /// + public static readonly XName moveFromRangeStart = w + "moveFromRangeStart"; + + /// + /// Represents the w:moveTo XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: MoveTo, MoveToMathControl, MoveToRun. + /// + /// + public static readonly XName moveTo = w + "moveTo"; + + /// + /// Represents the w:moveToRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MoveToRangeEnd. + /// + /// + public static readonly XName moveToRangeEnd = w + "moveToRangeEnd"; + + /// + /// Represents the w:moveToRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: MoveToRangeStart. + /// + /// + public static readonly XName moveToRangeStart = w + "moveToRangeStart"; + + /// + /// Represents the w:movie XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MovieReference. + /// + /// + public static readonly XName movie = w + "movie"; + + /// + /// Represents the w:multiLevelType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MultiLevelType. + /// + /// + public static readonly XName multiLevelType = w + "multiLevelType"; + + /// + /// Represents the w:multiLine XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SdtContentText.MultiLine. + /// + /// + public static readonly XName multiLine = w + "multiLine"; + + /// + /// Represents the w:mwSmallCaps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MacWordSmallCaps. + /// + /// + public static readonly XName mwSmallCaps = w + "mwSmallCaps"; + + /// + /// Represents the w:name XML elements and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: AbstractNumDefinitionName, DocPartName, FormFieldName, FrameName, Name, StyleName. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AutoCaption.Name, BookmarkStart.Name, Caption.Name, CompatibilitySetting.Name, Control.Name, CustomXmlAttribute.Name, DocumentVariable.Name, Font.Name, LatentStyleExceptionInfo.Name, MoveFromRangeStart.Name, MoveToRangeStart.Name. + /// + /// + public static readonly XName name = w + "name"; + + /// + /// Represents the w:next XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NextParagraphStyle. + /// + /// + public static readonly XName next = w + "next"; + + /// + /// Represents the w:nlCheck XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ActiveWritingStyle.NaturalLanguageGrammarCheck. + /// + /// + public static readonly XName nlCheck = w + "nlCheck"; + + /// + /// Represents the w:noBorder XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoBorder. + /// + /// + public static readonly XName noBorder = w + "noBorder"; + + /// + /// Represents the w:noBreakHyphen XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: NoBreakHyphen. + /// + /// + public static readonly XName noBreakHyphen = w + "noBreakHyphen"; + + /// + /// Represents the w:noColumnBalance XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoColumnBalance. + /// + /// + public static readonly XName noColumnBalance = w + "noColumnBalance"; + + /// + /// Represents the w:noEndnote XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoEndnote. + /// + /// + public static readonly XName noEndnote = w + "noEndnote"; + + /// + /// Represents the w:noExtraLineSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoExtraLineSpacing. + /// + /// + public static readonly XName noExtraLineSpacing = w + "noExtraLineSpacing"; + + /// + /// Represents the w:noHBand XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableLook.NoHorizontalBand. + /// + /// + public static readonly XName noHBand = w + "noHBand"; + + /// + /// Represents the w:noLabel XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Caption.NoLabel. + /// + /// + public static readonly XName noLabel = w + "noLabel"; + + /// + /// Represents the w:noLeading XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoLeading. + /// + /// + public static readonly XName noLeading = w + "noLeading"; + + /// + /// Represents the w:noLineBreaksAfter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NoLineBreaksAfterKinsoku. + /// + /// + public static readonly XName noLineBreaksAfter = w + "noLineBreaksAfter"; + + /// + /// Represents the w:noLineBreaksBefore XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NoLineBreaksBeforeKinsoku. + /// + /// + public static readonly XName noLineBreaksBefore = w + "noLineBreaksBefore"; + + /// + /// Represents the w:noProof XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoProof. + /// + /// + public static readonly XName noProof = w + "noProof"; + + /// + /// Represents the w:noPunctuationKerning XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoPunctuationKerning. + /// + /// + public static readonly XName noPunctuationKerning = w + "noPunctuationKerning"; + + /// + /// Represents the w:noResizeAllowed XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoResizeAllowed. + /// + /// + public static readonly XName noResizeAllowed = w + "noResizeAllowed"; + + /// + /// Represents the w:noSpaceRaiseLower XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoSpaceRaiseLower. + /// + /// + public static readonly XName noSpaceRaiseLower = w + "noSpaceRaiseLower"; + + /// + /// Represents the w:noTabHangInd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoTabHangIndent. + /// + /// + public static readonly XName noTabHangInd = w + "noTabHangInd"; + + /// + /// Represents the w:notTrueType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NotTrueType. + /// + /// + public static readonly XName notTrueType = w + "notTrueType"; + + /// + /// Represents the w:noVBand XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableLook.NoVerticalBand. + /// + /// + public static readonly XName noVBand = w + "noVBand"; + + /// + /// Represents the w:noWrap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NoWrap. + /// + /// + public static readonly XName noWrap = w + "noWrap"; + + /// + /// Represents the w:nsid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Nsid. + /// + /// + public static readonly XName nsid = w + "nsid"; + + /// + /// Represents the w:null XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LevelText.Null. + /// + /// + public static readonly XName @null = w + "null"; + + /// + /// Represents the w:num XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingInstance. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Columns.ColumnCount. + /// + /// + public static readonly XName num = w + "num"; + + /// + /// Represents the w:numbering XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: Numbering. + /// + /// + public static readonly XName numbering = w + "numbering"; + + /// + /// Represents the w:numberingChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: NumberingChange. + /// + /// + public static readonly XName numberingChange = w + "numberingChange"; + + /// + /// Represents the w:numberingStyles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.NumberingStyles. + /// + /// + public static readonly XName numberingStyles = w + "numberingStyles"; + + /// + /// Represents the w:numFmt XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NumberingFormat. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Caption.NumberFormat. + /// + /// + public static readonly XName numFmt = w + "numFmt"; + + /// + /// Represents the w:numId XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingId. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NumberingInstance.NumberID. + /// + /// + public static readonly XName numId = w + "numId"; + + /// + /// Represents the w:numIdMacAtCleanup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingIdMacAtCleanup. + /// + /// + public static readonly XName numIdMacAtCleanup = w + "numIdMacAtCleanup"; + + /// + /// Represents the w:numPicBullet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingPictureBullet. + /// + /// + public static readonly XName numPicBullet = w + "numPicBullet"; + + /// + /// Represents the w:numPicBulletId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NumberingPictureBullet.NumberingPictureBulletId. + /// + /// + public static readonly XName numPicBulletId = w + "numPicBulletId"; + + /// + /// Represents the w:numPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: NumberingProperties. + /// + /// + public static readonly XName numPr = w + "numPr"; + + /// + /// Represents the w:numRestart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingRestart. + /// + /// + public static readonly XName numRestart = w + "numRestart"; + + /// + /// Represents the w:numStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingStart. + /// + /// + public static readonly XName numStart = w + "numStart"; + + /// + /// Represents the w:numStyleLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingStyleLink. + /// + /// + public static readonly XName numStyleLink = w + "numStyleLink"; + + /// + /// Represents the w:object XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: EmbeddedObject. + /// + /// + public static readonly XName @object = w + "object"; + + /// + /// Represents the w:objectEmbed XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: ObjectEmbed. + /// + /// + public static readonly XName objectEmbed = w + "objectEmbed"; + + /// + /// Represents the w:objectLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: ObjectLink. + /// + /// + public static readonly XName objectLink = w + "objectLink"; + + /// + /// Represents the w:oddHBand XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.OddHorizontalBand. + /// + /// + public static readonly XName oddHBand = w + "oddHBand"; + + /// + /// Represents the w:oddVBand XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ConditionalFormatStyle.OddVerticalBand. + /// + /// + public static readonly XName oddVBand = w + "oddVBand"; + + /// + /// Represents the w:odso XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: DataSourceObject. + /// + /// + public static readonly XName odso = w + "odso"; + + /// + /// Represents the w:offsetFrom XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageBorders.OffsetFrom. + /// + /// + public static readonly XName offsetFrom = w + "offsetFrom"; + + /// + /// Represents the w:oMath XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OfficeMath. + /// + /// + public static readonly XName oMath = w + "oMath"; + + /// + /// Represents the w:optimizeForBrowser XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OptimizeForBrowser. + /// + /// + public static readonly XName optimizeForBrowser = w + "optimizeForBrowser"; + + /// + /// Represents the w:orient XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageSize.Orient. + /// + /// + public static readonly XName orient = w + "orient"; + + /// + /// Represents the w:original XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: NumberingChange.Original. + /// + /// + public static readonly XName original = w + "original"; + + /// + /// Represents the w:other XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PaperSource.Other. + /// + /// + public static readonly XName other = w + "other"; + + /// + /// Represents the w:outline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Outline. + /// + /// + public static readonly XName outline = w + "outline"; + + /// + /// Represents the w:outlineLvl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OutlineLevel. + /// + /// + public static readonly XName outlineLvl = w + "outlineLvl"; + + /// + /// Represents the w:overflowPunct XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OverflowPunctuation. + /// + /// + public static readonly XName overflowPunct = w + "overflowPunct"; + + /// + /// Represents the w:p XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: Paragraph. + /// + /// + public static readonly XName p = w + "p"; + + /// + /// Represents the w:pageBreakBefore XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PageBreakBefore. + /// + /// + public static readonly XName pageBreakBefore = w + "pageBreakBefore"; + + /// + /// Represents the w:panose1 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Panose1Number. + /// + /// + public static readonly XName panose1 = w + "panose1"; + + /// + /// Represents the w:paperSrc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PaperSource. + /// + /// + public static readonly XName paperSrc = w + "paperSrc"; + + /// + /// Represents the w:pBdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: ParagraphBorders. + /// + /// + public static readonly XName pBdr = w + "pBdr"; + + /// + /// Represents the w:percent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Zoom.Percent. + /// + /// + public static readonly XName percent = w + "percent"; + + /// + /// Represents the w:permEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PermEnd. + /// + /// + public static readonly XName permEnd = w + "permEnd"; + + /// + /// Represents the w:permStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: PermStart. + /// + /// + public static readonly XName permStart = w + "permStart"; + + /// + /// Represents the w:personal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Personal. + /// + /// + public static readonly XName personal = w + "personal"; + + /// + /// Represents the w:personalCompose XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PersonalCompose. + /// + /// + public static readonly XName personalCompose = w + "personalCompose"; + + /// + /// Represents the w:personalReply XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PersonalReply. + /// + /// + public static readonly XName personalReply = w + "personalReply"; + + /// + /// Represents the w:pgBorders XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: PageBorders. + /// + /// + public static readonly XName pgBorders = w + "pgBorders"; + + /// + /// Represents the w:pgMar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: PageMargin. + /// + /// + public static readonly XName pgMar = w + "pgMar"; + + /// + /// Represents the w:pgNum XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: PageNumber. + /// + /// + public static readonly XName pgNum = w + "pgNum"; + + /// + /// Represents the w:pgNumType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: PageNumberType. + /// + /// + public static readonly XName pgNumType = w + "pgNumType"; + + /// + /// Represents the w:pgSz XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: PageSize. + /// + /// + public static readonly XName pgSz = w + "pgSz"; + + /// + /// Represents the w:pict XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Picture, PictureBulletBase. + /// + /// + public static readonly XName pict = w + "pict"; + + /// + /// Represents the w:picture XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SdtContentPicture. + /// + /// + public static readonly XName picture = w + "picture"; + + /// + /// Represents the w:pitch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Pitch. + /// + /// + public static readonly XName pitch = w + "pitch"; + + /// + /// Represents the w:pixelsPerInch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PixelsPerInch. + /// + /// + public static readonly XName pixelsPerInch = w + "pixelsPerInch"; + + /// + /// Represents the w:placeholder XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomXmlPlaceholder, SdtPlaceholder. + /// + /// + public static readonly XName placeholder = w + "placeholder"; + + /// + /// Represents the w:pos XML elements and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EndnotePosition, FootnotePosition. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Caption.Position, TabStop.Position. + /// + /// + public static readonly XName pos = w + "pos"; + + /// + /// Represents the w:position XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Position. + /// + /// + public static readonly XName position = w + "position"; + + /// + /// Represents the w:pPr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ParagraphProperties, ParagraphPropertiesBaseStyle, ParagraphPropertiesExtended, PreviousParagraphProperties, StyleParagraphProperties. + /// + /// + public static readonly XName pPr = w + "pPr"; + + /// + /// Represents the w:pPrChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ParagraphPropertiesChange. + /// + /// + public static readonly XName pPrChange = w + "pPrChange"; + + /// + /// Represents the w:pPrDefault XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ParagraphPropertiesDefault. + /// + /// + public static readonly XName pPrDefault = w + "pPrDefault"; + + /// + /// Represents the w:prefixMappings XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataBinding.PrefixMappings. + /// + /// + public static readonly XName prefixMappings = w + "prefixMappings"; + + /// + /// Represents the w:printBodyTextBeforeHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PrintBodyTextBeforeHeader. + /// + /// + public static readonly XName printBodyTextBeforeHeader = w + "printBodyTextBeforeHeader"; + + /// + /// Represents the w:printColBlack XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PrintColorBlackWhite. + /// + /// + public static readonly XName printColBlack = w + "printColBlack"; + + /// + /// Represents the w:printerSettings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PrinterSettingsReference. + /// + /// + public static readonly XName printerSettings = w + "printerSettings"; + + /// + /// Represents the w:printFormsData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PrintFormsData. + /// + /// + public static readonly XName printFormsData = w + "printFormsData"; + + /// + /// Represents the w:printFractionalCharacterWidth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PrintFractionalCharacterWidth. + /// + /// + public static readonly XName printFractionalCharacterWidth = w + "printFractionalCharacterWidth"; + + /// + /// Represents the w:printPostScriptOverText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PrintPostScriptOverText. + /// + /// + public static readonly XName printPostScriptOverText = w + "printPostScriptOverText"; + + /// + /// Represents the w:printTwoOnOne XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PrintTwoOnOne. + /// + /// + public static readonly XName printTwoOnOne = w + "printTwoOnOne"; + + /// + /// Represents the w:progId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ObjectEmbed.ProgId, ObjectLink.ProgId. + /// + /// + public static readonly XName progId = w + "progId"; + + /// + /// Represents the w:proofErr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ProofError. + /// + /// + public static readonly XName proofErr = w + "proofErr"; + + /// + /// Represents the w:proofState XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ProofState. + /// + /// + public static readonly XName proofState = w + "proofState"; + + /// + /// Represents the w:pStyle XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ParagraphStyleId, ParagraphStyleIdInLevel. + /// + /// + public static readonly XName pStyle = w + "pStyle"; + + /// + /// Represents the w:ptab XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: PositionalTab. + /// + /// + public static readonly XName ptab = w + "ptab"; + + /// + /// Represents the w:qFormat XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PrimaryStyle. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyleExceptionInfo.PrimaryStyle. + /// + /// + public static readonly XName qFormat = w + "qFormat"; + + /// + /// Represents the w:query XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Query. + /// + /// + public static readonly XName query = w + "query"; + + /// + /// Represents the w:r XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Run. + /// + /// + public static readonly XName r = w + "r"; + + /// + /// Represents the w:readModeInkLockDown XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ReadModeInkLockDown. + /// + /// + public static readonly XName readModeInkLockDown = w + "readModeInkLockDown"; + + /// + /// Represents the w:recipientData XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RecipientData, RecipientDataReference. + /// + /// + public static readonly XName recipientData = w + "recipientData"; + + /// + /// Represents the w:recipients XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Recipients. + /// + /// + public static readonly XName recipients = w + "recipients"; + + /// + /// Represents the w:recommended XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: WriteProtection.Recommended. + /// + /// + public static readonly XName recommended = w + "recommended"; + + /// + /// Represents the w:relativeTo XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PositionalTab.RelativeTo. + /// + /// + public static readonly XName relativeTo = w + "relativeTo"; + + /// + /// Represents the w:relyOnVML XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RelyOnVML. + /// + /// + public static readonly XName relyOnVML = w + "relyOnVML"; + + /// + /// Represents the w:removeDateAndTime XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RemoveDateAndTime. + /// + /// + public static readonly XName removeDateAndTime = w + "removeDateAndTime"; + + /// + /// Represents the w:removePersonalInformation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RemovePersonalInformation. + /// + /// + public static readonly XName removePersonalInformation = w + "removePersonalInformation"; + + /// + /// Represents the w:restart XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LineNumberType.Restart. + /// + /// + public static readonly XName restart = w + "restart"; + + /// + /// Represents the w:result XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DropDownListSelection. + /// + /// + public static readonly XName result = w + "result"; + + /// + /// Represents the w:revisionView XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: RevisionView. + /// + /// + public static readonly XName revisionView = w + "revisionView"; + + /// + /// Represents the w:rFonts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: RunFonts. + /// + /// + public static readonly XName rFonts = w + "rFonts"; + + /// + /// Represents the w:richText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SdtContentRichText. + /// + /// + public static readonly XName richText = w + "richText"; + + /// + /// Represents the w:right XML elements and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RightBorder, RightMargin, TableCellRightMargin. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Indentation.Right, PageMargin.Right. + /// + /// + public static readonly XName right = w + "right"; + + /// + /// Represents the w:rightChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.RightChars. + /// + /// + public static readonly XName rightChars = w + "rightChars"; + + /// + /// Represents the w:rightFromText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.RightFromText. + /// + /// + public static readonly XName rightFromText = w + "rightFromText"; + + /// + /// Represents the w:rPr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: NumberingSymbolRunProperties, ParagraphMarkRunProperties, PreviousParagraphMarkRunProperties, PreviousRunProperties, RunProperties, RunPropertiesBaseStyle, StyleRunProperties. + /// + /// + public static readonly XName rPr = w + "rPr"; + + /// + /// Represents the w:rPrChange XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ParagraphMarkRunPropertiesChange, RunPropertiesChange. + /// + /// + public static readonly XName rPrChange = w + "rPrChange"; + + /// + /// Represents the w:rPrDefault XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: RunPropertiesDefault. + /// + /// + public static readonly XName rPrDefault = w + "rPrDefault"; + + /// + /// Represents the w:rsid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Rsid. + /// + /// + public static readonly XName rsid = w + "rsid"; + + /// + /// Represents the w:rsidDel XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Paragraph.RsidParagraphDeletion, PreviousSectionProperties.RsidDel, Run.RsidRunDeletion, SectionProperties.RsidDel, TableRow.RsidTableRowDeletion. + /// + /// + public static readonly XName rsidDel = w + "rsidDel"; + + /// + /// Represents the w:rsidP XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Paragraph.RsidParagraphProperties. + /// + /// + public static readonly XName rsidP = w + "rsidP"; + + /// + /// Represents the w:rsidR XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Paragraph.RsidParagraphAddition, PreviousSectionProperties.RsidR, Run.RsidRunAddition, SectionProperties.RsidR, TableRow.RsidTableRowAddition. + /// + /// + public static readonly XName rsidR = w + "rsidR"; + + /// + /// Represents the w:rsidRDefault XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Paragraph.RsidRunAdditionDefault. + /// + /// + public static readonly XName rsidRDefault = w + "rsidRDefault"; + + /// + /// Represents the w:rsidRoot XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RsidRoot. + /// + /// + public static readonly XName rsidRoot = w + "rsidRoot"; + + /// + /// Represents the w:rsidRPr XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: Paragraph.RsidParagraphMarkRevision, PreviousSectionProperties.RsidRPr, Run.RsidRunProperties, SectionProperties.RsidRPr, TableRow.RsidTableRowMarkRevision. + /// + /// + public static readonly XName rsidRPr = w + "rsidRPr"; + + /// + /// Represents the w:rsids XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Rsids. + /// + /// + public static readonly XName rsids = w + "rsids"; + + /// + /// Represents the w:rsidSect XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PreviousSectionProperties.RsidSect, SectionProperties.RsidSect. + /// + /// + public static readonly XName rsidSect = w + "rsidSect"; + + /// + /// Represents the w:rsidTr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TableRow.RsidTableRowProperties. + /// + /// + public static readonly XName rsidTr = w + "rsidTr"; + + /// + /// Represents the w:rStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RunStyle. + /// + /// + public static readonly XName rStyle = w + "rStyle"; + + /// + /// Represents the w:rt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RubyContent. + /// + /// + public static readonly XName rt = w + "rt"; + + /// + /// Represents the w:rtl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RightToLeftText. + /// + /// + public static readonly XName rtl = w + "rtl"; + + /// + /// Represents the w:rtlGutter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GutterOnRight. + /// + /// + public static readonly XName rtlGutter = w + "rtlGutter"; + + /// + /// Represents the w:ruby XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Ruby. + /// + /// + public static readonly XName ruby = w + "ruby"; + + /// + /// Represents the w:rubyAlign XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RubyAlign. + /// + /// + public static readonly XName rubyAlign = w + "rubyAlign"; + + /// + /// Represents the w:rubyBase XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RubyBase. + /// + /// + public static readonly XName rubyBase = w + "rubyBase"; + + /// + /// Represents the w:rubyPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: RubyProperties. + /// + /// + public static readonly XName rubyPr = w + "rubyPr"; + + /// + /// Represents the w:salt XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.Salt, WriteProtection.Salt. + /// + /// + public static readonly XName salt = w + "salt"; + + /// + /// Represents the w:saltValue XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.SaltValue, WriteProtection.SaltValue. + /// + /// + public static readonly XName saltValue = w + "saltValue"; + + /// + /// Represents the w:saveFormsData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SaveFormsData. + /// + /// + public static readonly XName saveFormsData = w + "saveFormsData"; + + /// + /// Represents the w:saveInvalidXml XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SaveInvalidXml. + /// + /// + public static readonly XName saveInvalidXml = w + "saveInvalidXml"; + + /// + /// Represents the w:savePreviewPicture XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SavePreviewPicture. + /// + /// + public static readonly XName savePreviewPicture = w + "savePreviewPicture"; + + /// + /// Represents the w:saveSubsetFonts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SaveSubsetFonts. + /// + /// + public static readonly XName saveSubsetFonts = w + "saveSubsetFonts"; + + /// + /// Represents the w:saveThroughXslt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SaveThroughXslt. + /// + /// + public static readonly XName saveThroughXslt = w + "saveThroughXslt"; + + /// + /// Represents the w:saveXmlDataOnly XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SaveXmlDataOnly. + /// + /// + public static readonly XName saveXmlDataOnly = w + "saveXmlDataOnly"; + + /// + /// Represents the w:scrollbar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ScrollbarVisibility. + /// + /// + public static readonly XName scrollbar = w + "scrollbar"; + + /// + /// Represents the w:sdt XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SdtBlock, SdtCell, SdtRow, SdtRun, SdtRunRuby. + /// + /// + public static readonly XName sdt = w + "sdt"; + + /// + /// Represents the w:sdtContent XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SdtContentBlock, SdtContentCell, SdtContentRow, SdtContentRun, SdtContentRunRuby. + /// + /// + public static readonly XName sdtContent = w + "sdtContent"; + + /// + /// Represents the w:sdtEndPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SdtEndCharProperties. + /// + /// + public static readonly XName sdtEndPr = w + "sdtEndPr"; + + /// + /// Represents the w:sdtPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SdtProperties. + /// + /// + public static readonly XName sdtPr = w + "sdtPr"; + + /// + /// Represents the w:sectPr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: PreviousSectionProperties, SectionProperties. + /// + /// + public static readonly XName sectPr = w + "sectPr"; + + /// + /// Represents the w:sectPrChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SectionPropertiesChange. + /// + /// + public static readonly XName sectPrChange = w + "sectPrChange"; + + /// + /// Represents the w:selectFldWithFirstOrLastChar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SelectFieldWithFirstOrLastChar. + /// + /// + public static readonly XName selectFldWithFirstOrLastChar = w + "selectFldWithFirstOrLastChar"; + + /// + /// Represents the w:semiHidden XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SemiHidden. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyleExceptionInfo.SemiHidden. + /// + /// + public static readonly XName semiHidden = w + "semiHidden"; + + /// + /// Represents the w:sep XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Caption.Separator, Columns.Separator. + /// + /// + public static readonly XName sep = w + "sep"; + + /// + /// Represents the w:separator XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: SeparatorMark. + /// + /// + public static readonly XName separator = w + "separator"; + + /// + /// Represents the w:settings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Settings. + /// + /// + public static readonly XName settings = w + "settings"; + + /// + /// Represents the w:shadow XML element and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Shadow. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BarBorder.Shadow, BetweenBorder.Shadow, Border.Shadow, BottomBorder.Shadow, EndBorder.Shadow, InsideHorizontalBorder.Shadow, InsideVerticalBorder.Shadow, LeftBorder.Shadow, RightBorder.Shadow, StartBorder.Shadow, TopBorder.Shadow, TopLeftToBottomRightCellBorder.Shadow, TopRightToBottomLeftCellBorder.Shadow. + /// + /// + public static readonly XName shadow = w + "shadow"; + + /// + /// Represents the w:shapeDefaults XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ShapeDefaults. + /// + /// + public static readonly XName shapeDefaults = w + "shapeDefaults"; + + /// + /// Represents the w:shapeid XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Control.ShapeId. + /// + /// + public static readonly XName shapeid = w + "shapeid"; + + /// + /// Represents the w:shapeId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: ObjectEmbed.ShapeId, ObjectLink.ShapeId. + /// + /// + public static readonly XName shapeId_ = w + "shapeId"; + + /// + /// Represents the w:shapeLayoutLikeWW8 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeLayoutLikeWord8. + /// + /// + public static readonly XName shapeLayoutLikeWW8 = w + "shapeLayoutLikeWW8"; + + /// + /// Represents the w:shd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Shading. + /// + /// + public static readonly XName shd = w + "shd"; + + /// + /// Represents the w:showBreaksInFrames XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowBreaksInFrames. + /// + /// + public static readonly XName showBreaksInFrames = w + "showBreaksInFrames"; + + /// + /// Represents the w:showEnvelope XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowEnvelope. + /// + /// + public static readonly XName showEnvelope = w + "showEnvelope"; + + /// + /// Represents the w:showingPlcHdr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowingPlaceholder. + /// + /// + public static readonly XName showingPlcHdr = w + "showingPlcHdr"; + + /// + /// Represents the w:showXMLTags XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShowXmlTags. + /// + /// + public static readonly XName showXMLTags = w + "showXMLTags"; + + /// + /// Represents the w:sig XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: FontSignature. + /// + /// + public static readonly XName sig = w + "sig"; + + /// + /// Represents the w:size XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FormFieldSize. + /// + /// + public static readonly XName size = w + "size"; + + /// + /// Represents the w:sizeAuto XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutomaticallySizeFormField. + /// + /// + public static readonly XName sizeAuto = w + "sizeAuto"; + + /// + /// Represents the w:smallCaps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SmallCaps. + /// + /// + public static readonly XName smallCaps = w + "smallCaps"; + + /// + /// Represents the w:snapToGrid XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SnapToGrid. + /// + /// + public static readonly XName snapToGrid = w + "snapToGrid"; + + /// + /// Represents the w:softHyphen XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: SoftHyphen. + /// + /// + public static readonly XName softHyphen = w + "softHyphen"; + + /// + /// Represents the w:solutionID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SaveThroughXslt.SolutionId. + /// + /// + public static readonly XName solutionID = w + "solutionID"; + + /// + /// Represents the w:sourceFileName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SourceFileReference. + /// + /// + public static readonly XName sourceFileName = w + "sourceFileName"; + + /// + /// Represents the w:space XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BarBorder.Space, BetweenBorder.Space, Border.Space, BottomBorder.Space, Column.Space, Columns.Space, EndBorder.Space, InsideHorizontalBorder.Space, InsideVerticalBorder.Space, LeftBorder.Space, RightBorder.Space, StartBorder.Space, TopBorder.Space, TopLeftToBottomRightCellBorder.Space, TopRightToBottomLeftCellBorder.Space. + /// + /// + public static readonly XName space = w + "space"; + + /// + /// Represents the w:spaceForUL XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SpaceForUnderline. + /// + /// + public static readonly XName spaceForUL = w + "spaceForUL"; + + /// + /// Represents the w:spacing XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Spacing, SpacingBetweenLines. + /// + /// + public static readonly XName spacing = w + "spacing"; + + /// + /// Represents the w:spacingInWholePoints XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SpacingInWholePoints. + /// + /// + public static readonly XName spacingInWholePoints = w + "spacingInWholePoints"; + + /// + /// Represents the w:specVanish XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SpecVanish. + /// + /// + public static readonly XName specVanish = w + "specVanish"; + + /// + /// Represents the w:spelling XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ProofState.Spelling. + /// + /// + public static readonly XName spelling = w + "spelling"; + + /// + /// Represents the w:spinCount XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DocumentProtection.SpinCount, WriteProtection.SpinCount. + /// + /// + public static readonly XName spinCount = w + "spinCount"; + + /// + /// Represents the w:splitPgBreakAndParaMark XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SplitPageBreakAndParagraphMark. + /// + /// + public static readonly XName splitPgBreakAndParaMark = w + "splitPgBreakAndParaMark"; + + /// + /// Represents the w:src XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SourceReference. + /// + /// + public static readonly XName src = w + "src"; + + /// + /// Represents the w:start XML elements and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: StartBorder, StartMargin, StartNumberingValue. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Indentation.Start, LineNumberType.Start, PageNumberType.Start. + /// + /// + public static readonly XName start = w + "start"; + + /// + /// Represents the w:startChars XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Indentation.StartCharacters. + /// + /// + public static readonly XName startChars = w + "startChars"; + + /// + /// Represents the w:startOverride XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StartOverrideNumberingValue. + /// + /// + public static readonly XName startOverride = w + "startOverride"; + + /// + /// Represents the w:statusText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: StatusText. + /// + /// + public static readonly XName statusText = w + "statusText"; + + /// + /// Represents the w:storeItemID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataBinding.StoreItemId. + /// + /// + public static readonly XName storeItemID = w + "storeItemID"; + + /// + /// Represents the w:storeMappedDataAs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SdtDateMappingType. + /// + /// + public static readonly XName storeMappedDataAs = w + "storeMappedDataAs"; + + /// + /// Represents the w:strictFirstAndLastChars XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StrictFirstAndLastChars. + /// + /// + public static readonly XName strictFirstAndLastChars = w + "strictFirstAndLastChars"; + + /// + /// Represents the w:strike XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Strike. + /// + /// + public static readonly XName strike = w + "strike"; + + /// + /// Represents the w:style XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Style, StyleId. + /// + /// + public static readonly XName style = w + "style"; + + /// + /// Represents the w:styleId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Style.StyleId. + /// + /// + public static readonly XName styleId = w + "styleId"; + + /// + /// Represents the w:styleLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StyleLink. + /// + /// + public static readonly XName styleLink = w + "styleLink"; + + /// + /// Represents the w:styleLockQFSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StyleLockStylesPart. + /// + /// + public static readonly XName styleLockQFSet = w + "styleLockQFSet"; + + /// + /// Represents the w:styleLockTheme XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StyleLockThemesPart. + /// + /// + public static readonly XName styleLockTheme = w + "styleLockTheme"; + + /// + /// Represents the w:stylePaneFormatFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: StylePaneFormatFilter. + /// + /// + public static readonly XName stylePaneFormatFilter = w + "stylePaneFormatFilter"; + + /// + /// Represents the w:stylePaneSortMethod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StylePaneSortMethods. + /// + /// + public static readonly XName stylePaneSortMethod = w + "stylePaneSortMethod"; + + /// + /// Represents the w:styles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Styles. + /// + /// + public static readonly XName styles = w + "styles"; + + /// + /// Represents the w:stylesInUse XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.StylesInUse. + /// + /// + public static readonly XName stylesInUse = w + "stylesInUse"; + + /// + /// Represents the w:subDoc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SubDocumentReference. + /// + /// + public static readonly XName subDoc = w + "subDoc"; + + /// + /// Represents the w:subFontBySize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SubFontBySize. + /// + /// + public static readonly XName subFontBySize = w + "subFontBySize"; + + /// + /// Represents the w:subsetted XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , . + /// corresponds to the following strongly-typed properties: EmbedBoldFont.Subsetted, EmbedBoldItalicFont.Subsetted, EmbedItalicFont.Subsetted, EmbedRegularFont.Subsetted. + /// + /// + public static readonly XName subsetted = w + "subsetted"; + + /// + /// Represents the w:suff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LevelSuffix. + /// + /// + public static readonly XName suff = w + "suff"; + + /// + /// Represents the w:summaryLength XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SummaryLength. + /// + /// + public static readonly XName summaryLength = w + "summaryLength"; + + /// + /// Represents the w:suppressAutoHyphens XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SuppressAutoHyphens. + /// + /// + public static readonly XName suppressAutoHyphens = w + "suppressAutoHyphens"; + + /// + /// Represents the w:suppressBottomSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SuppressBottomSpacing. + /// + /// + public static readonly XName suppressBottomSpacing = w + "suppressBottomSpacing"; + + /// + /// Represents the w:suppressLineNumbers XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SuppressLineNumbers. + /// + /// + public static readonly XName suppressLineNumbers = w + "suppressLineNumbers"; + + /// + /// Represents the w:suppressOverlap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SuppressOverlap. + /// + /// + public static readonly XName suppressOverlap = w + "suppressOverlap"; + + /// + /// Represents the w:suppressSpacingAtTopOfPage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SuppressSpacingAtTopOfPage. + /// + /// + public static readonly XName suppressSpacingAtTopOfPage = w + "suppressSpacingAtTopOfPage"; + + /// + /// Represents the w:suppressSpBfAfterPgBrk XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SuppressSpacingBeforeAfterPageBreak. + /// + /// + public static readonly XName suppressSpBfAfterPgBrk = w + "suppressSpBfAfterPgBrk"; + + /// + /// Represents the w:suppressTopSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SuppressTopSpacing. + /// + /// + public static readonly XName suppressTopSpacing = w + "suppressTopSpacing"; + + /// + /// Represents the w:suppressTopSpacingWP XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SuppressTopSpacingWordPerfect. + /// + /// + public static readonly XName suppressTopSpacingWP = w + "suppressTopSpacingWP"; + + /// + /// Represents the w:swapBordersFacingPages XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SwapBordersFacingPages. + /// + /// + public static readonly XName swapBordersFacingPages = w + "swapBordersFacingPages"; + + /// + /// Represents the w:sym XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SymbolChar. + /// + /// + public static readonly XName sym = w + "sym"; + + /// + /// Represents the w:sz XML elements and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontSize, FrameSize. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BarBorder.Size, BetweenBorder.Size, Border.Size, BottomBorder.Size, EndBorder.Size, InsideHorizontalBorder.Size, InsideVerticalBorder.Size, LeftBorder.Size, RightBorder.Size, StartBorder.Size, TopBorder.Size, TopLeftToBottomRightCellBorder.Size, TopRightToBottomLeftCellBorder.Size. + /// + /// + public static readonly XName sz = w + "sz"; + + /// + /// Represents the w:szCs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontSizeComplexScript. + /// + /// + public static readonly XName szCs = w + "szCs"; + + /// + /// Represents the w:t XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Text. + /// + /// + public static readonly XName t = w + "t"; + + /// + /// Represents the w:t1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Text1. + /// + /// + public static readonly XName t1 = w + "t1"; + + /// + /// Represents the w:t2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ColorSchemeMapping.Text2. + /// + /// + public static readonly XName t2 = w + "t2"; + + /// + /// Represents the w:tab XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TabChar, TabStop. + /// + /// + public static readonly XName tab = w + "tab"; + + /// + /// Represents the w:table XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataSourceTableName. + /// + /// + public static readonly XName table = w + "table"; + + /// + /// Represents the w:tableStyles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.TableStyles. + /// + /// + public static readonly XName tableStyles = w + "tableStyles"; + + /// + /// Represents the w:tabs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Tabs. + /// + /// + public static readonly XName tabs = w + "tabs"; + + /// + /// Represents the w:tag XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Tag. + /// + /// + public static readonly XName tag = w + "tag"; + + /// + /// Represents the w:targetScreenSz XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TargetScreenSize. + /// + /// + public static readonly XName targetScreenSz = w + "targetScreenSz"; + + /// + /// Represents the w:tbl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Table. + /// + /// + public static readonly XName tbl = w + "tbl"; + + /// + /// Represents the w:tblBorders XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: TableBorders. + /// + /// + public static readonly XName tblBorders = w + "tblBorders"; + + /// + /// Represents the w:tblCaption XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableCaption. + /// + /// + public static readonly XName tblCaption = w + "tblCaption"; + + /// + /// Represents the w:tblCellMar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: TableCellMarginDefault. + /// + /// + public static readonly XName tblCellMar = w + "tblCellMar"; + + /// + /// Represents the w:tblCellSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TableCellSpacing. + /// + /// + public static readonly XName tblCellSpacing = w + "tblCellSpacing"; + + /// + /// Represents the w:tblDescription XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableDescription. + /// + /// + public static readonly XName tblDescription = w + "tblDescription"; + + /// + /// Represents the w:tblGrid XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: PreviousTableGrid, TableGrid. + /// + /// + public static readonly XName tblGrid = w + "tblGrid"; + + /// + /// Represents the w:tblGridChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableGridChange. + /// + /// + public static readonly XName tblGridChange = w + "tblGridChange"; + + /// + /// Represents the w:tblHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableHeader. + /// + /// + public static readonly XName tblHeader = w + "tblHeader"; + + /// + /// Represents the w:tblInd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TableIndentation. + /// + /// + public static readonly XName tblInd = w + "tblInd"; + + /// + /// Represents the w:tblLayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableLayout. + /// + /// + public static readonly XName tblLayout = w + "tblLayout"; + + /// + /// Represents the w:tblLook XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: TableLook. + /// + /// + public static readonly XName tblLook = w + "tblLook"; + + /// + /// Represents the w:tblOverlap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableOverlap. + /// + /// + public static readonly XName tblOverlap = w + "tblOverlap"; + + /// + /// Represents the w:tblpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TablePositionProperties. + /// + /// + public static readonly XName tblpPr = w + "tblpPr"; + + /// + /// Represents the w:tblPr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PreviousTableProperties, StyleTableProperties, TableProperties, TableStyleConditionalFormattingTableProperties. + /// + /// + public static readonly XName tblPr = w + "tblPr"; + + /// + /// Represents the w:tblPrChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TablePropertiesChange. + /// + /// + public static readonly XName tblPrChange = w + "tblPrChange"; + + /// + /// Represents the w:tblPrEx XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PreviousTablePropertyExceptions, TablePropertyExceptions. + /// + /// + public static readonly XName tblPrEx = w + "tblPrEx"; + + /// + /// Represents the w:tblPrExChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TablePropertyExceptionsChange. + /// + /// + public static readonly XName tblPrExChange = w + "tblPrExChange"; + + /// + /// Represents the w:tblpX XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.TablePositionX. + /// + /// + public static readonly XName tblpX = w + "tblpX"; + + /// + /// Represents the w:tblpXSpec XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.TablePositionXAlignment. + /// + /// + public static readonly XName tblpXSpec = w + "tblpXSpec"; + + /// + /// Represents the w:tblpY XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.TablePositionY. + /// + /// + public static readonly XName tblpY = w + "tblpY"; + + /// + /// Represents the w:tblpYSpec XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.TablePositionYAlignment. + /// + /// + public static readonly XName tblpYSpec = w + "tblpYSpec"; + + /// + /// Represents the w:tblStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableStyle. + /// + /// + public static readonly XName tblStyle = w + "tblStyle"; + + /// + /// Represents the w:tblStyleColBandSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableStyleColumnBandSize. + /// + /// + public static readonly XName tblStyleColBandSize = w + "tblStyleColBandSize"; + + /// + /// Represents the w:tblStylePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableStyleProperties. + /// + /// + public static readonly XName tblStylePr = w + "tblStylePr"; + + /// + /// Represents the w:tblStyleRowBandSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableStyleRowBandSize. + /// + /// + public static readonly XName tblStyleRowBandSize = w + "tblStyleRowBandSize"; + + /// + /// Represents the w:tblW XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TableWidth. + /// + /// + public static readonly XName tblW = w + "tblW"; + + /// + /// Represents the w:tc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TableCell. + /// + /// + public static readonly XName tc = w + "tc"; + + /// + /// Represents the w:tcBorders XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TableCellBorders. + /// + /// + public static readonly XName tcBorders = w + "tcBorders"; + + /// + /// Represents the w:tcFitText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableCellFitText. + /// + /// + public static readonly XName tcFitText = w + "tcFitText"; + + /// + /// Represents the w:tcMar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// corresponds to the following strongly-typed classes: TableCellMargin. + /// + /// + public static readonly XName tcMar = w + "tcMar"; + + /// + /// Represents the w:tcPr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PreviousTableCellProperties, StyleTableCellProperties, TableCellProperties, TableStyleConditionalFormattingTableCellProperties. + /// + /// + public static readonly XName tcPr = w + "tcPr"; + + /// + /// Represents the w:tcPrChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TableCellPropertiesChange. + /// + /// + public static readonly XName tcPrChange = w + "tcPrChange"; + + /// + /// Represents the w:tcW XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TableCellWidth. + /// + /// + public static readonly XName tcW = w + "tcW"; + + /// + /// Represents the w:temporary XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TemporarySdt. + /// + /// + public static readonly XName temporary = w + "temporary"; + + /// + /// Represents the w:tentative XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Level.Tentative. + /// + /// + public static readonly XName tentative = w + "tentative"; + + /// + /// Represents the w:text XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SdtContentText. + /// + /// + public static readonly XName text = w + "text"; + + /// + /// Represents the w:textAlignment XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TextAlignment. + /// + /// + public static readonly XName textAlignment = w + "textAlignment"; + + /// + /// Represents the w:textboxTightWrap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TextBoxTightWrap. + /// + /// + public static readonly XName textboxTightWrap = w + "textboxTightWrap"; + + /// + /// Represents the w:textDirection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TextDirection. + /// + /// + public static readonly XName textDirection = w + "textDirection"; + + /// + /// Represents the w:textInput XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: TextInput. + /// + /// + public static readonly XName textInput = w + "textInput"; + + /// + /// Represents the w:tgtFrame XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Hyperlink.TargetFrame, HyperlinkRuby.TargetFrame. + /// + /// + public static readonly XName tgtFrame = w + "tgtFrame"; + + /// + /// Represents the w:themeColor XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BarBorder.ThemeColor, BetweenBorder.ThemeColor, Border.ThemeColor, BottomBorder.ThemeColor, Color.ThemeColor, DocumentBackground.ThemeColor, EndBorder.ThemeColor, InsideHorizontalBorder.ThemeColor, InsideVerticalBorder.ThemeColor, LeftBorder.ThemeColor, RightBorder.ThemeColor, Shading.ThemeColor, StartBorder.ThemeColor, TopBorder.ThemeColor, TopLeftToBottomRightCellBorder.ThemeColor, TopRightToBottomLeftCellBorder.ThemeColor, Underline.ThemeColor. + /// + /// + public static readonly XName themeColor = w + "themeColor"; + + /// + /// Represents the w:themeFill XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shading.ThemeFill. + /// + /// + public static readonly XName themeFill = w + "themeFill"; + + /// + /// Represents the w:themeFillShade XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shading.ThemeFillShade. + /// + /// + public static readonly XName themeFillShade = w + "themeFillShade"; + + /// + /// Represents the w:themeFillTint XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Shading.ThemeFillTint. + /// + /// + public static readonly XName themeFillTint = w + "themeFillTint"; + + /// + /// Represents the w:themeFontLang XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ThemeFontLanguages. + /// + /// + public static readonly XName themeFontLang = w + "themeFontLang"; + + /// + /// Represents the w:themeShade XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BarBorder.ThemeShade, BetweenBorder.ThemeShade, Border.ThemeShade, BottomBorder.ThemeShade, Color.ThemeShade, DocumentBackground.ThemeShade, EndBorder.ThemeShade, InsideHorizontalBorder.ThemeShade, InsideVerticalBorder.ThemeShade, LeftBorder.ThemeShade, RightBorder.ThemeShade, Shading.ThemeShade, StartBorder.ThemeShade, TopBorder.ThemeShade, TopLeftToBottomRightCellBorder.ThemeShade, TopRightToBottomLeftCellBorder.ThemeShade, Underline.ThemeShade. + /// + /// + public static readonly XName themeShade = w + "themeShade"; + + /// + /// Represents the w:themeTint XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BarBorder.ThemeTint, BetweenBorder.ThemeTint, Border.ThemeTint, BottomBorder.ThemeTint, Color.ThemeTint, DocumentBackground.ThemeTint, EndBorder.ThemeTint, InsideHorizontalBorder.ThemeTint, InsideVerticalBorder.ThemeTint, LeftBorder.ThemeTint, RightBorder.ThemeTint, Shading.ThemeTint, StartBorder.ThemeTint, TopBorder.ThemeTint, TopLeftToBottomRightCellBorder.ThemeTint, TopRightToBottomLeftCellBorder.ThemeTint, Underline.ThemeTint. + /// + /// + public static readonly XName themeTint = w + "themeTint"; + + /// + /// Represents the w:titlePg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TitlePage. + /// + /// + public static readonly XName titlePg = w + "titlePg"; + + /// + /// Represents the w:tl2br XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: TopLeftToBottomRightCellBorder. + /// + /// + public static readonly XName tl2br = w + "tl2br"; + + /// + /// Represents the w:tmpl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TemplateCode. + /// + /// + public static readonly XName tmpl = w + "tmpl"; + + /// + /// Represents the w:tooltip XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Hyperlink.Tooltip, HyperlinkRuby.Tooltip. + /// + /// + public static readonly XName tooltip = w + "tooltip"; + + /// + /// Represents the w:top XML elements and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TopBorder, TopMargin. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageMargin.Top. + /// + /// + public static readonly XName top = w + "top"; + + /// + /// Represents the w:top3HeadingStyles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.Top3HeadingStyles. + /// + /// + public static readonly XName top3HeadingStyles = w + "top3HeadingStyles"; + + /// + /// Represents the w:topFromText XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.TopFromText. + /// + /// + public static readonly XName topFromText = w + "topFromText"; + + /// + /// Represents the w:topLinePunct XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TopLinePunctuation. + /// + /// + public static readonly XName topLinePunct = w + "topLinePunct"; + + /// + /// Represents the w:tplc XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Level.TemplateCode. + /// + /// + public static readonly XName tplc = w + "tplc"; + + /// + /// Represents the w:tr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: TableRow. + /// + /// + public static readonly XName tr = w + "tr"; + + /// + /// Represents the w:tr2bl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: TopRightToBottomLeftCellBorder. + /// + /// + public static readonly XName tr2bl = w + "tr2bl"; + + /// + /// Represents the w:trackRevisions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TrackRevisions. + /// + /// + public static readonly XName trackRevisions = w + "trackRevisions"; + + /// + /// Represents the w:trHeight XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TableRowHeight. + /// + /// + public static readonly XName trHeight = w + "trHeight"; + + /// + /// Represents the w:trPr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PreviousTableRowProperties, TableRowProperties, TableStyleConditionalFormattingTableRowProperties. + /// + /// + public static readonly XName trPr = w + "trPr"; + + /// + /// Represents the w:trPrChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TableRowPropertiesChange. + /// + /// + public static readonly XName trPrChange = w + "trPrChange"; + + /// + /// Represents the w:truncateFontHeightsLikeWP6 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TruncateFontHeightsLikeWordPerfect. + /// + /// + public static readonly XName truncateFontHeightsLikeWP6 = w + "truncateFontHeightsLikeWP6"; + + /// + /// Represents the w:txbxContent XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TextBoxContent. + /// + /// + public static readonly XName txbxContent = w + "txbxContent"; + + /// + /// Represents the w:type XML elements and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocPartType, MailMergeFieldType, MailMergeSource, SectionType, TextBoxFormFieldType. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomMargin.Type, Break.Type, DocGrid.Type, EndMargin.Type, Endnote.Type, FooterReference.Type, Footnote.Type, HeaderReference.Type, HelpText.Type, LeftMargin.Type, ProofError.Type, RightMargin.Type, StartMargin.Type, StatusText.Type, Style.Type, TableCellLeftMargin.Type, TableCellRightMargin.Type, TableCellSpacing.Type, TableCellWidth.Type, TableIndentation.Type, TableLayout.Type, TableStyleProperties.Type, TableWidth.Type, TopMargin.Type, WidthAfterTableRow.Type, WidthBeforeTableRow.Type. + /// + /// + public static readonly XName type = w + "type"; + + /// + /// Represents the w:types XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocPartTypes. + /// + /// + public static readonly XName types = w + "types"; + + /// + /// Represents the w:u XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Underline. + /// + /// + public static readonly XName u = w + "u"; + + /// + /// Represents the w:udl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UdlConnectionString. + /// + /// + public static readonly XName udl = w + "udl"; + + /// + /// Represents the w:uiCompat97To2003 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UICompatibleWith97To2003. + /// + /// + public static readonly XName uiCompat97To2003 = w + "uiCompat97To2003"; + + /// + /// Represents the w:uiPriority XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UIPriority. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyleExceptionInfo.UiPriority. + /// + /// + public static readonly XName uiPriority = w + "uiPriority"; + + /// + /// Represents the w:ulTrailSpace XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UnderlineTrailingSpaces. + /// + /// + public static readonly XName ulTrailSpace = w + "ulTrailSpace"; + + /// + /// Represents the w:underlineTabInNumList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UnderlineTabInNumberingList. + /// + /// + public static readonly XName underlineTabInNumList = w + "underlineTabInNumList"; + + /// + /// Represents the w:unhideWhenUsed XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UnhideWhenUsed. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LatentStyleExceptionInfo.UnhideWhenUsed. + /// + /// + public static readonly XName unhideWhenUsed = w + "unhideWhenUsed"; + + /// + /// Represents the w:uniqueTag XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UniqueTag. + /// + /// + public static readonly XName uniqueTag = w + "uniqueTag"; + + /// + /// Represents the w:updateFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UpdateFieldsOnOpen. + /// + /// + public static readonly XName updateFields = w + "updateFields"; + + /// + /// Represents the w:updateMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ObjectLink.UpdateMode. + /// + /// + public static readonly XName updateMode = w + "updateMode"; + + /// + /// Represents the w:uri XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CompatibilitySetting.Uri, CustomXmlAttribute.Uri. + /// + /// + public static readonly XName uri = w + "uri"; + + /// + /// Represents the w:usb0 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FontSignature.UnicodeSignature0. + /// + /// + public static readonly XName usb0 = w + "usb0"; + + /// + /// Represents the w:usb1 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FontSignature.UnicodeSignature1. + /// + /// + public static readonly XName usb1 = w + "usb1"; + + /// + /// Represents the w:usb2 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FontSignature.UnicodeSignature2. + /// + /// + public static readonly XName usb2 = w + "usb2"; + + /// + /// Represents the w:usb3 XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FontSignature.UnicodeSignature3. + /// + /// + public static readonly XName usb3 = w + "usb3"; + + /// + /// Represents the w:useAltKinsokuLineBreakRules XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseAltKinsokuLineBreakRules. + /// + /// + public static readonly XName useAltKinsokuLineBreakRules = w + "useAltKinsokuLineBreakRules"; + + /// + /// Represents the w:useAnsiKerningPairs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseAnsiKerningPairs. + /// + /// + public static readonly XName useAnsiKerningPairs = w + "useAnsiKerningPairs"; + + /// + /// Represents the w:useFELayout XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseFarEastLayout. + /// + /// + public static readonly XName useFELayout = w + "useFELayout"; + + /// + /// Represents the w:useNormalStyleForList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseNormalStyleForList. + /// + /// + public static readonly XName useNormalStyleForList = w + "useNormalStyleForList"; + + /// + /// Represents the w:usePrinterMetrics XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UsePrinterMetrics. + /// + /// + public static readonly XName usePrinterMetrics = w + "usePrinterMetrics"; + + /// + /// Represents the w:useSingleBorderforContiguousCells XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseSingleBorderForContiguousCells. + /// + /// + public static readonly XName useSingleBorderforContiguousCells = w + "useSingleBorderforContiguousCells"; + + /// + /// Represents the w:useWord2002TableStyleRules XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseWord2002TableStyleRules. + /// + /// + public static readonly XName useWord2002TableStyleRules = w + "useWord2002TableStyleRules"; + + /// + /// Represents the w:useWord97LineBreakRules XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseWord97LineBreakRules. + /// + /// + public static readonly XName useWord97LineBreakRules = w + "useWord97LineBreakRules"; + + /// + /// Represents the w:useXSLTWhenSaving XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: UseXsltWhenSaving. + /// + /// + public static readonly XName useXSLTWhenSaving = w + "useXSLTWhenSaving"; + + /// + /// Represents the w:val XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: AbstractNumDefinitionName.Val, AbstractNumId.Val, Active.Val, ActiveRecord.Val, AddressFieldName.Val, AdjustLineHeightInTable.Val, AdjustRightIndent.Val, Aliases.Val, AlignBorderAndEdges.Val, AlignTablesRowByRow.Val, AllowPNG.Val, AllowSpaceOfSameStyleInTable.Val, AltName.Val, AlwaysMergeEmptyNamespace.Val, AlwaysShowPlaceholderText.Val, ApplyBreakingRules.Val, AttachedSchema.Val, AutofitToFirstFixedWidthCell.Val, AutoFormatOverride.Val, AutoHyphenation.Val, AutomaticallySizeFormField.Val, AutoRedefine.Val, AutoSpaceDE.Val, AutoSpaceDN.Val, AutoSpaceLikeWord95.Val, BalanceSingleByteDoubleByteWidth.Val, BarBorder.Val, BasedOn.Val, Behavior.Val, BetweenBorder.Val, BiDi.Val, BidirectionalEmbedding.Val, BidirectionalOverride.Val, BiDiVisual.Val, BlockQuote.Val, BodyDiv.Val, Bold.Val, BoldComplexScript.Val, BookFoldPrinting.Val, BookFoldPrintingSheets.Val, BookFoldReversePrinting.Val, Border.Val, BordersDoNotSurroundFooter.Val, BordersDoNotSurroundHeader.Val, BottomBorder.Val, BottomMarginDiv.Val, CachedColumnBalance.Val, CalculateOnExit.Val, Calendar.Val, CantSplit.Val, Caps.Val, CharacterScale.Val, CharacterSpacingControl.Val, ChartTrackingRefBased.Val, Checked.Val, CheckErrors.Val, ClickAndTypeStyle.Val, Color.Val, ColumnDelimiter.Val, ColumnIndex.Val, CompatibilitySetting.Val, ComplexScript.Val, ConditionalFormatStyle.Val, ConnectString.Val, ConsecutiveHyphenLimit.Val, ContextualSpacing.Val, ConvertMailMergeEscape.Val, CustomXmlAttribute.Val, CustomXmlPlaceholder.Val, DataSourceTableName.Val, DataType.Val, DateFormat.Val, DecimalSymbol.Val, DefaultCheckBoxFormFieldState.Val, DefaultCollapsed.Val, DefaultDropDownListItemIndex.Val, DefaultTableStyle.Val, DefaultTabStop.Val, DefaultTextBoxFormFieldString.Val, Description.Val, Destination.Val, Dirty.Val, DisplayBackgroundShape.Val, DisplayHangulFixedWidth.Val, DisplayHorizontalDrawingGrid.Val, DisplayVerticalDrawingGrid.Val, DivId.Val, DocPartCategory.Val, DocPartGallery.Val, DocPartId.Val, DocPartName.Val, DocPartReference.Val, DocPartType.Val, DocPartUnique.Val, DocumentType.Val, DocumentVariable.Val, DoNotAllowInsertDeleteSection.Val, DoNotAutoCompressPictures.Val, DoNotAutofitConstrainedTables.Val, DoNotBreakConstrainedForcedTable.Val, DoNotBreakWrappedTables.Val, DoNotDemarcateInvalidXml.Val, DoNotDisplayPageBoundaries.Val, DoNotExpandShiftReturn.Val, DoNotHyphenateCaps.Val, DoNotIncludeSubdocsInStats.Val, DoNotLeaveBackslashAlone.Val, DoNotOrganizeInFolder.Val, DoNotRelyOnCSS.Val, DoNotSaveAsSingleFile.Val, DoNotShadeFormData.Val, DoNotSnapToGridInCell.Val, DoNotSuppressBlankLines.Val, DoNotSuppressIndentation.Val, DoNotSuppressParagraphBorders.Val, DoNotTrackFormatting.Val, DoNotTrackMoves.Val, DoNotUseEastAsianBreakRules.Val, DoNotUseHTMLParagraphAutoSpacing.Val, DoNotUseIndentAsNumberingTabStop.Val, DoNotUseLongFileNames.Val, DoNotUseMarginsForDrawingGridOrigin.Val, DoNotValidateAgainstSchema.Val, DoNotVerticallyAlignCellWithShape.Val, DoNotVerticallyAlignInTextBox.Val, DoNotWrapTextWithPunctuation.Val, DoubleStrike.Val, DrawingGridHorizontalOrigin.Val, DrawingGridHorizontalSpacing.Val, DrawingGridVerticalOrigin.Val, DrawingGridVerticalSpacing.Val, DropDownListSelection.Val, DynamicAddress.Val, EmbedSystemFonts.Val, EmbedTrueTypeFonts.Val, Emboss.Val, Emphasis.Val, Enabled.Val, EndBorder.Val, EndnotePosition.Val, EntryMacro.Val, EvenAndOddHeaders.Val, ExitMacro.Val, FirstRowHeader.Val, FitText.Val, FlatBorders.Val, FontCharSet.Val, FontFamily.Val, FontSize.Val, FontSizeComplexScript.Val, FootnoteColumns.Val, FootnoteLayoutLikeWord8.Val, FootnotePosition.Val, ForgetLastTabAlignment.Val, Format.Val, FormFieldName.Val, FormFieldSize.Val, FormProtection.Val, FormsDesign.Val, FrameLayout.Val, FrameName.Val, FrameSize.Val, Gallery.Val, GridAfter.Val, GridBefore.Val, GridSpan.Val, GrowAutofit.Val, GutterAtTop.Val, GutterOnRight.Val, HelpText.Val, Hidden.Val, HideGrammaticalErrors.Val, HideMark.Val, HideSpellingErrors.Val, Highlight.Val, HorizontalMerge.Val, HyphenationZone.Val, IgnoreMixedContent.Val, Imprint.Val, InsideHorizontalBorder.Val, InsideVerticalBorder.Val, IsLegalNumberingStyle.Val, Italic.Val, ItalicComplexScript.Val, Justification.Val, KeepLines.Val, KeepNext.Val, Kern.Val, Kinsoku.Val, LanguageId.Val, Languages.Val, LayoutRawTableWidth.Val, LayoutTableRowsApart.Val, LeftBorder.Val, LeftMarginDiv.Val, LevelJustification.Val, LevelPictureBulletId.Val, LevelRestart.Val, LevelSuffix.Val, LevelText.Val, LineWrapLikeWord6.Val, LinkedStyle.Val, LinkedToFile.Val, LinkStyles.Val, LinkToQuery.Val, ListEntryFormField.Val, ListSeparator.Val, Lock.Val, Locked.Val, MacWordSmallCaps.Val, MailAsAttachment.Val, MailMergeFieldType.Val, MailMergeSource.Val, MailSubject.Val, MainDocumentType.Val, MappedName.Val, MarginHeight.Val, MarginWidth.Val, MatchSource.Val, MaxLength.Val, MirrorIndents.Val, MirrorMargins.Val, MultiLevelType.Val, Name.Val, NextParagraphStyle.Val, NoBorder.Val, NoColumnBalance.Val, NoEndnote.Val, NoExtraLineSpacing.Val, NoLeading.Val, NoLineBreaksAfterKinsoku.Val, NoLineBreaksBeforeKinsoku.Val, NoProof.Val, NoPunctuationKerning.Val, NoResizeAllowed.Val, NoSpaceRaiseLower.Val, NoTabHangIndent.Val, NotTrueType.Val, NoWrap.Val, Nsid.Val, NumberingFormat.Val, NumberingId.Val, NumberingIdMacAtCleanup.Val, NumberingLevelReference.Val, NumberingRestart.Val, NumberingStart.Val, NumberingStyleLink.Val, OfficeMath.Val, OptimizeForBrowser.Val, Outline.Val, OutlineLevel.Val, OverflowPunctuation.Val, PageBreakBefore.Val, Panose1Number.Val, ParagraphStyleId.Val, ParagraphStyleIdInLevel.Val, Personal.Val, PersonalCompose.Val, PersonalReply.Val, PhoneticGuideBaseTextSize.Val, PhoneticGuideRaise.Val, PhoneticGuideTextFontSize.Val, Pitch.Val, PixelsPerInch.Val, Position.Val, PrimaryStyle.Val, PrintBodyTextBeforeHeader.Val, PrintColorBlackWhite.Val, PrintFormsData.Val, PrintFractionalCharacterWidth.Val, PrintPostScriptOverText.Val, PrintTwoOnOne.Val, Query.Val, RelyOnVML.Val, RemoveDateAndTime.Val, RemovePersonalInformation.Val, RightBorder.Val, RightMarginDiv.Val, RightToLeftText.Val, Rsid.Val, RsidRoot.Val, RubyAlign.Val, RunStyle.Val, SaveFormsData.Val, SaveInvalidXml.Val, SavePreviewPicture.Val, SaveSubsetFonts.Val, SaveXmlDataOnly.Val, ScrollbarVisibility.Val, SdtAlias.Val, SdtDateMappingType.Val, SdtId.Val, SectionTitle.Val, SectionType.Val, SelectFieldWithFirstOrLastChar.Val, SemiHidden.Val, Shading.Val, Shadow.Val, ShapeLayoutLikeWord8.Val, ShowBreaksInFrames.Val, ShowEnvelope.Val, ShowingPlaceholder.Val, ShowXmlTags.Val, SmallCaps.Val, SnapToGrid.Val, SpaceForUnderline.Val, Spacing.Val, SpacingInWholePoints.Val, SpecVanish.Val, SplitPageBreakAndParagraphMark.Val, StartBorder.Val, StartNumberingValue.Val, StartOverrideNumberingValue.Val, StatusText.Val, StrictFirstAndLastChars.Val, Strike.Val, StyleHidden.Val, StyleId.Val, StyleLink.Val, StyleLockStylesPart.Val, StyleLockThemesPart.Val, StyleName.Val, StylePaneFormatFilter.Val, StylePaneSortMethods.Val, SubFontBySize.Val, SummaryLength.Val, SuppressAutoHyphens.Val, SuppressBottomSpacing.Val, SuppressLineNumbers.Val, SuppressOverlap.Val, SuppressSpacingAtTopOfPage.Val, SuppressSpacingBeforeAfterPageBreak.Val, SuppressTopSpacing.Val, SuppressTopSpacingWordPerfect.Val, SwapBordersFacingPages.Val, TableCaption.Val, TableCellFitText.Val, TableCellVerticalAlignment.Val, TableDescription.Val, TableHeader.Val, TableJustification.Val, TableLook.Val, TableOverlap.Val, TableRowHeight.Val, TableStyle.Val, TableStyleColumnBandSize.Val, TableStyleRowBandSize.Val, TabStop.Val, Tag.Val, TargetScreenSize.Val, TemplateCode.Val, TemporarySdt.Val, TextAlignment.Val, TextBoxFormFieldType.Val, TextBoxTightWrap.Val, TextDirection.Val, TextEffect.Val, ThemeFontLanguages.Val, TitlePage.Val, TopBorder.Val, TopLeftToBottomRightCellBorder.Val, TopLinePunctuation.Val, TopMarginDiv.Val, TopRightToBottomLeftCellBorder.Val, TrackRevisions.Val, TruncateFontHeightsLikeWordPerfect.Val, UdlConnectionString.Val, UICompatibleWith97To2003.Val, UIPriority.Val, Underline.Val, UnderlineTabInNumberingList.Val, UnderlineTrailingSpaces.Val, UnhideWhenUsed.Val, UniqueTag.Val, UpdateFieldsOnOpen.Val, UseAltKinsokuLineBreakRules.Val, UseAnsiKerningPairs.Val, UseFarEastLayout.Val, UseNormalStyleForList.Val, UsePrinterMetrics.Val, UseSingleBorderForContiguousCells.Val, UseWord2002TableStyleRules.Val, UseWord97LineBreakRules.Val, UseXsltWhenSaving.Val, Vanish.Val, VerticalMerge.Val, VerticalTextAlignment.Val, VerticalTextAlignmentOnPage.Val, View.Val, ViewMergedData.Val, WebExtensionCreated.Val, WebExtensionLinked.Val, WebHidden.Val, WebPageEncoding.Val, WidowControl.Val, Width.Val, WordPerfectJustification.Val, WordPerfectSpaceWidth.Val, WordWrap.Val, WrapTrailSpaces.Val, Zoom.Val. + /// + /// + public static readonly XName val = w + "val"; + + /// + /// Represents the w:vAlign XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableCellVerticalAlignment, VerticalTextAlignmentOnPage. + /// + /// + public static readonly XName vAlign = w + "vAlign"; + + /// + /// Represents the w:value XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ListItem.Value. + /// + /// + public static readonly XName value = w + "value"; + + /// + /// Represents the w:vAnchor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.VerticalPosition. + /// + /// + public static readonly XName vAnchor = w + "vAnchor"; + + /// + /// Represents the w:vanish XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Vanish. + /// + /// + public static readonly XName vanish = w + "vanish"; + + /// + /// Represents the w:vendorID XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ActiveWritingStyle.VendorID. + /// + /// + public static readonly XName vendorID = w + "vendorID"; + + /// + /// Represents the w:vert XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EastAsianLayout.Vertical. + /// + /// + public static readonly XName vert = w + "vert"; + + /// + /// Represents the w:vertAlign XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VerticalTextAlignment. + /// + /// + public static readonly XName vertAlign = w + "vertAlign"; + + /// + /// Represents the w:vertAnchor XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TablePositionProperties.VerticalAnchor. + /// + /// + public static readonly XName vertAnchor = w + "vertAnchor"; + + /// + /// Represents the w:vertCompress XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: EastAsianLayout.VerticalCompress. + /// + /// + public static readonly XName vertCompress = w + "vertCompress"; + + /// + /// Represents the w:view XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: View. + /// + /// + public static readonly XName view = w + "view"; + + /// + /// Represents the w:viewMergedData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ViewMergedData. + /// + /// + public static readonly XName viewMergedData = w + "viewMergedData"; + + /// + /// Represents the w:visibleStyles XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StylePaneFormatFilter.VisibleStyles. + /// + /// + public static readonly XName visibleStyles = w + "visibleStyles"; + + /// + /// Represents the w:vMerge XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VerticalMerge. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellMerge.VerticalMerge. + /// + /// + public static readonly XName vMerge = w + "vMerge"; + + /// + /// Represents the w:vMergeOrig XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CellMerge.VerticalMergeOriginal. + /// + /// + public static readonly XName vMergeOrig = w + "vMergeOrig"; + + /// + /// Represents the w:vSpace XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.VerticalSpace. + /// + /// + public static readonly XName vSpace = w + "vSpace"; + + /// + /// Represents the w:w XML elements and attributes. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CharacterScale, Width. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: BottomMargin.Width, Column.Width, EndMargin.Width, FrameProperties.Width, GridColumn.Width, LeftMargin.Width, PageSize.Width, ReadModeInkLockDown.Width, RightMargin.Width, StartMargin.Width, TableCellLeftMargin.Width, TableCellRightMargin.Width, TableCellSpacing.Width, TableCellWidth.Width, TableIndentation.Width, TableWidth.Width, TopMargin.Width, WidthAfterTableRow.Width, WidthBeforeTableRow.Width. + /// + /// + public static readonly XName w_ = w + "w"; + + /// + /// Represents the w:wAfter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: WidthAfterTableRow. + /// + /// + public static readonly XName wAfter = w + "wAfter"; + + /// + /// Represents the w:wBefore XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: WidthBeforeTableRow. + /// + /// + public static readonly XName wBefore = w + "wBefore"; + + /// + /// Represents the w:webHidden XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebHidden. + /// + /// + public static readonly XName webHidden = w + "webHidden"; + + /// + /// Represents the w:webSettings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: WebSettings. + /// + /// + public static readonly XName webSettings = w + "webSettings"; + + /// + /// Represents the w:widowControl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WidowControl. + /// + /// + public static readonly XName widowControl = w + "widowControl"; + + /// + /// Represents the w:wordWrap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WordWrap. + /// + /// + public static readonly XName wordWrap = w + "wordWrap"; + + /// + /// Represents the w:wpJustification XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WordPerfectJustification. + /// + /// + public static readonly XName wpJustification = w + "wpJustification"; + + /// + /// Represents the w:wpSpaceWidth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WordPerfectSpaceWidth. + /// + /// + public static readonly XName wpSpaceWidth = w + "wpSpaceWidth"; + + /// + /// Represents the w:wrap XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.Wrap. + /// + /// + public static readonly XName wrap = w + "wrap"; + + /// + /// Represents the w:wrapTrailSpaces XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WrapTrailSpaces. + /// + /// + public static readonly XName wrapTrailSpaces = w + "wrapTrailSpaces"; + + /// + /// Represents the w:writeProtection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: WriteProtection. + /// + /// + public static readonly XName writeProtection = w + "writeProtection"; + + /// + /// Represents the w:x XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.X. + /// + /// + public static readonly XName x = w + "x"; + + /// + /// Represents the w:xAlign XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.XAlign. + /// + /// + public static readonly XName xAlign = w + "xAlign"; + + /// + /// Represents the w:xpath XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: DataBinding.XPath. + /// + /// + public static readonly XName xpath = w + "xpath"; + + /// + /// Represents the w:y XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.Y. + /// + /// + public static readonly XName y = w + "y"; + + /// + /// Represents the w:yAlign XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FrameProperties.YAlign. + /// + /// + public static readonly XName yAlign = w + "yAlign"; + + /// + /// Represents the w:yearLong XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: YearLong. + /// + /// + public static readonly XName yearLong = w + "yearLong"; + + /// + /// Represents the w:yearShort XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: YearShort. + /// + /// + public static readonly XName yearShort = w + "yearShort"; + + /// + /// Represents the w:zoom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Zoom. + /// + /// + public static readonly XName zoom = w + "zoom"; + + /// + /// Represents the w:zOrder XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PageBorders.ZOrder. + /// + /// + public static readonly XName zOrder = w + "zOrder"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W10.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W10.g.cs new file mode 100644 index 000000000..2553fa314 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W10.g.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:w10="urn:schemas-microsoft-com:office:word" namespace. + /// + public static class W10 + { + /// + /// Defines the XML namespace associated with the w10 prefix. + /// + public static readonly XNamespace w10 = "urn:schemas-microsoft-com:office:word"; + + /// + /// Represents the w10:anchorlock XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: AnchorLock. + /// + /// + public static readonly XName anchorlock = w10 + "anchorlock"; + + /// + /// Represents the w10:borderbottom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: BottomBorder. + /// + /// + public static readonly XName borderbottom = w10 + "borderbottom"; + + /// + /// Represents the w10:borderleft XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: LeftBorder. + /// + /// + public static readonly XName borderleft = w10 + "borderleft"; + + /// + /// Represents the w10:borderright XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: RightBorder. + /// + /// + public static readonly XName borderright = w10 + "borderright"; + + /// + /// Represents the w10:bordertop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TopBorder. + /// + /// + public static readonly XName bordertop = w10 + "bordertop"; + + /// + /// Represents the w10:wrap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: TextWrap. + /// + /// + public static readonly XName wrap = w10 + "wrap"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W14.g.cs new file mode 100644 index 000000000..65510a3cb --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W14.g.cs @@ -0,0 +1,1383 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" namespace. + /// + public static class W14 + { + /// + /// Defines the XML namespace associated with the w14 prefix. + /// + public static readonly XNamespace w14 = "http://schemas.microsoft.com/office/word/2010/wordml"; + + /// + /// Represents the w14:algn XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: Reflection.Alignment, Shadow.Alignment, TextOutlineEffect.Alignment. + /// + /// + public static readonly XName algn = w14 + "algn"; + + /// + /// Represents the w14:alpha XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Alpha. + /// + /// + public static readonly XName alpha = w14 + "alpha"; + + /// + /// Represents the w14:anchorId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: EmbeddedObject.AnchorId, Picture.AnchorId. + /// + /// + public static readonly XName anchorId = w14 + "anchorId"; + + /// + /// Represents the w14:ang XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LinearShadeProperties.Angle. + /// + /// + public static readonly XName ang = w14 + "ang"; + + /// + /// Represents the w14:b XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FillToRectangle.Bottom. + /// + /// + public static readonly XName b = w14 + "b"; + + /// + /// Represents the w14:bevel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: BevelEmpty. + /// + /// + public static readonly XName bevel = w14 + "bevel"; + + /// + /// Represents the w14:bevelB XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: BevelBottom. + /// + /// + public static readonly XName bevelB = w14 + "bevelB"; + + /// + /// Represents the w14:bevelT XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: BevelTop. + /// + /// + public static readonly XName bevelT = w14 + "bevelT"; + + /// + /// Represents the w14:blurRad XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Reflection.BlurRadius, Shadow.BlurRadius. + /// + /// + public static readonly XName blurRad = w14 + "blurRad"; + + /// + /// Represents the w14:bwMode XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: ContentPart.BlackWhiteMode. + /// + /// + public static readonly XName bwMode = w14 + "bwMode"; + + /// + /// Represents the w14:camera XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Camera. + /// + /// + public static readonly XName camera = w14 + "camera"; + + /// + /// Represents the w14:cap XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextOutlineEffect.CapType. + /// + /// + public static readonly XName cap = w14 + "cap"; + + /// + /// Represents the w14:checkbox XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: SdtContentCheckBox. + /// + /// + public static readonly XName checkbox = w14 + "checkbox"; + + /// + /// Represents the w14:checked XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Checked. + /// + /// + public static readonly XName @checked = w14 + "checked"; + + /// + /// Represents the w14:checkedState XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CheckedState. + /// + /// + public static readonly XName checkedState = w14 + "checkedState"; + + /// + /// Represents the w14:cmpd XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: TextOutlineEffect.Compound. + /// + /// + public static readonly XName cmpd = w14 + "cmpd"; + + /// + /// Represents the w14:cntxtAlts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ContextualAlternatives. + /// + /// + public static readonly XName cntxtAlts = w14 + "cntxtAlts"; + + /// + /// Represents the w14:cNvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualInkContentPartProperties. + /// + /// + public static readonly XName cNvContentPartPr = w14 + "cNvContentPartPr"; + + /// + /// Represents the w14:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = w14 + "cNvPr"; + + /// + /// Represents the w14:conflictDel XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ConflictDeletion, RunConflictDeletion. + /// + /// + public static readonly XName conflictDel = w14 + "conflictDel"; + + /// + /// Represents the w14:conflictIns XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ConflictInsertion, RunConflictInsertion. + /// + /// + public static readonly XName conflictIns = w14 + "conflictIns"; + + /// + /// Represents the w14:conflictMode XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConflictMode. + /// + /// + public static readonly XName conflictMode = w14 + "conflictMode"; + + /// + /// Represents the w14:contentPart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ContentPart. + /// + /// + public static readonly XName contentPart = w14 + "contentPart"; + + /// + /// Represents the w14:contourClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ContourColor. + /// + /// + public static readonly XName contourClr = w14 + "contourClr"; + + /// + /// Represents the w14:contourW XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Properties3D.ContourWidth. + /// + /// + public static readonly XName contourW = w14 + "contourW"; + + /// + /// Represents the w14:customXmlConflictDelRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomXmlConflictDeletionRangeEnd. + /// + /// + public static readonly XName customXmlConflictDelRangeEnd = w14 + "customXmlConflictDelRangeEnd"; + + /// + /// Represents the w14:customXmlConflictDelRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CustomXmlConflictDeletionRangeStart. + /// + /// + public static readonly XName customXmlConflictDelRangeStart = w14 + "customXmlConflictDelRangeStart"; + + /// + /// Represents the w14:customXmlConflictInsRangeEnd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomXmlConflictInsertionRangeEnd. + /// + /// + public static readonly XName customXmlConflictInsRangeEnd = w14 + "customXmlConflictInsRangeEnd"; + + /// + /// Represents the w14:customXmlConflictInsRangeStart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CustomXmlConflictInsertionRangeStart. + /// + /// + public static readonly XName customXmlConflictInsRangeStart = w14 + "customXmlConflictInsRangeStart"; + + /// + /// Represents the w14:defaultImageDpi XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DefaultImageDpi. + /// + /// + public static readonly XName defaultImageDpi = w14 + "defaultImageDpi"; + + /// + /// Represents the w14:dir XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: LightRig.LightDirectionType, Reflection.DirectionAngle, Shadow.DirectionAngle. + /// + /// + public static readonly XName dir = w14 + "dir"; + + /// + /// Represents the w14:discardImageEditingData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DiscardImageEditingData. + /// + /// + public static readonly XName discardImageEditingData = w14 + "discardImageEditingData"; + + /// + /// Represents the w14:dist XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Reflection.DistanceFromText, Shadow.DistanceFromText. + /// + /// + public static readonly XName dist = w14 + "dist"; + + /// + /// Represents the w14:docId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DocumentId. + /// + /// + public static readonly XName docId = w14 + "docId"; + + /// + /// Represents the w14:endA XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.EndingOpacity. + /// + /// + public static readonly XName endA = w14 + "endA"; + + /// + /// Represents the w14:endPos XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.EndPosition. + /// + /// + public static readonly XName endPos = w14 + "endPos"; + + /// + /// Represents the w14:entityPicker XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: EntityPickerEmpty. + /// + /// + public static readonly XName entityPicker = w14 + "entityPicker"; + + /// + /// Represents the w14:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = w14 + "extLst"; + + /// + /// Represents the w14:extrusionClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ExtrusionColor. + /// + /// + public static readonly XName extrusionClr = w14 + "extrusionClr"; + + /// + /// Represents the w14:extrusionH XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Properties3D.ExtrusionHeight. + /// + /// + public static readonly XName extrusionH = w14 + "extrusionH"; + + /// + /// Represents the w14:fadeDir XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.FadeDirection. + /// + /// + public static readonly XName fadeDir = w14 + "fadeDir"; + + /// + /// Represents the w14:fillToRect XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: FillToRectangle. + /// + /// + public static readonly XName fillToRect = w14 + "fillToRect"; + + /// + /// Represents the w14:font XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: CheckedState.Font, UncheckedState.Font. + /// + /// + public static readonly XName font = w14 + "font"; + + /// + /// Represents the w14:glow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Glow. + /// + /// + public static readonly XName glow = w14 + "glow"; + + /// + /// Represents the w14:gradFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: GradientFillProperties. + /// + /// + public static readonly XName gradFill = w14 + "gradFill"; + + /// + /// Represents the w14:gs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GradientStop. + /// + /// + public static readonly XName gs = w14 + "gs"; + + /// + /// Represents the w14:gsLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: GradientStopList. + /// + /// + public static readonly XName gsLst = w14 + "gsLst"; + + /// + /// Represents the w14:h XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: BevelBottom.Height, BevelTop.Height. + /// + /// + public static readonly XName h = w14 + "h"; + + /// + /// Represents the w14:hueMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HueModulation. + /// + /// + public static readonly XName hueMod = w14 + "hueMod"; + + /// + /// Represents the w14:id XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: StyleSet.Id. + /// + /// + public static readonly XName id = w14 + "id"; + + /// + /// Represents the w14:kx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Reflection.HorizontalSkewAngle, Shadow.HorizontalSkewAngle. + /// + /// + public static readonly XName kx = w14 + "kx"; + + /// + /// Represents the w14:ky XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Reflection.VerticalSkewAngle, Shadow.VerticalSkewAngle. + /// + /// + public static readonly XName ky = w14 + "ky"; + + /// + /// Represents the w14:l XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FillToRectangle.Left. + /// + /// + public static readonly XName l = w14 + "l"; + + /// + /// Represents the w14:lat XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SphereCoordinates.Lattitude. + /// + /// + public static readonly XName lat = w14 + "lat"; + + /// + /// Represents the w14:ligatures XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Ligatures. + /// + /// + public static readonly XName ligatures = w14 + "ligatures"; + + /// + /// Represents the w14:lightRig XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LightRig. + /// + /// + public static readonly XName lightRig = w14 + "lightRig"; + + /// + /// Represents the w14:lim XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LineJoinMiterProperties.Limit. + /// + /// + public static readonly XName lim = w14 + "lim"; + + /// + /// Represents the w14:lin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LinearShadeProperties. + /// + /// + public static readonly XName lin = w14 + "lin"; + + /// + /// Represents the w14:lon XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SphereCoordinates.Longitude. + /// + /// + public static readonly XName lon = w14 + "lon"; + + /// + /// Represents the w14:lum XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Luminance. + /// + /// + public static readonly XName lum = w14 + "lum"; + + /// + /// Represents the w14:lumMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LuminanceModulation. + /// + /// + public static readonly XName lumMod = w14 + "lumMod"; + + /// + /// Represents the w14:lumOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LuminanceOffset. + /// + /// + public static readonly XName lumOff = w14 + "lumOff"; + + /// + /// Represents the w14:miter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LineJoinMiterProperties. + /// + /// + public static readonly XName miter = w14 + "miter"; + + /// + /// Represents the w14:noFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: NoFillEmpty. + /// + /// + public static readonly XName noFill = w14 + "noFill"; + + /// + /// Represents the w14:noSpellErr XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Paragraph.NoSpellError. + /// + /// + public static readonly XName noSpellErr = w14 + "noSpellErr"; + + /// + /// Represents the w14:numForm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingFormat. + /// + /// + public static readonly XName numForm = w14 + "numForm"; + + /// + /// Represents the w14:numSpacing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberSpacing. + /// + /// + public static readonly XName numSpacing = w14 + "numSpacing"; + + /// + /// Represents the w14:nvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: WordNonVisualContentPartShapeProperties. + /// + /// + public static readonly XName nvContentPartPr = w14 + "nvContentPartPr"; + + /// + /// Represents the w14:paraId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Paragraph.ParagraphId, TableRow.ParagraphId. + /// + /// + public static readonly XName paraId = w14 + "paraId"; + + /// + /// Represents the w14:path XML element and attribute. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PathShadeProperties. + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PathShadeProperties.Path. + /// + /// + public static readonly XName path = w14 + "path"; + + /// + /// Represents the w14:pos XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: GradientStop.StopPosition. + /// + /// + public static readonly XName pos = w14 + "pos"; + + /// + /// Represents the w14:props3d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Properties3D. + /// + /// + public static readonly XName props3d = w14 + "props3d"; + + /// + /// Represents the w14:prst XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BevelBottom.PresetProfileType, BevelTop.PresetProfileType, Camera.PresetCameraType. + /// + /// + public static readonly XName prst = w14 + "prst"; + + /// + /// Represents the w14:prstDash XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PresetLineDashProperties. + /// + /// + public static readonly XName prstDash = w14 + "prstDash"; + + /// + /// Represents the w14:prstMaterial XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Properties3D.PresetMaterialType. + /// + /// + public static readonly XName prstMaterial = w14 + "prstMaterial"; + + /// + /// Represents the w14:r XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FillToRectangle.Right. + /// + /// + public static readonly XName r = w14 + "r"; + + /// + /// Represents the w14:rad XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Glow.GlowRadius. + /// + /// + public static readonly XName rad = w14 + "rad"; + + /// + /// Represents the w14:reflection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Reflection. + /// + /// + public static readonly XName reflection = w14 + "reflection"; + + /// + /// Represents the w14:rev XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: SphereCoordinates.Revolution. + /// + /// + public static readonly XName rev = w14 + "rev"; + + /// + /// Represents the w14:rig XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LightRig.LightRigType. + /// + /// + public static readonly XName rig = w14 + "rig"; + + /// + /// Represents the w14:rot XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SphereCoordinates. + /// + /// + public static readonly XName rot = w14 + "rot"; + + /// + /// Represents the w14:round XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: RoundEmpty. + /// + /// + public static readonly XName round = w14 + "round"; + + /// + /// Represents the w14:sat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Saturation. + /// + /// + public static readonly XName sat = w14 + "sat"; + + /// + /// Represents the w14:satMod XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SaturationModulation. + /// + /// + public static readonly XName satMod = w14 + "satMod"; + + /// + /// Represents the w14:satOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SaturationOffset. + /// + /// + public static readonly XName satOff = w14 + "satOff"; + + /// + /// Represents the w14:scaled XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: LinearShadeProperties.Scaled. + /// + /// + public static readonly XName scaled = w14 + "scaled"; + + /// + /// Represents the w14:scene3d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Scene3D. + /// + /// + public static readonly XName scene3d = w14 + "scene3d"; + + /// + /// Represents the w14:schemeClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SchemeColor. + /// + /// + public static readonly XName schemeClr = w14 + "schemeClr"; + + /// + /// Represents the w14:shade XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Shade. + /// + /// + public static readonly XName shade = w14 + "shade"; + + /// + /// Represents the w14:shadow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: Shadow. + /// + /// + public static readonly XName shadow = w14 + "shadow"; + + /// + /// Represents the w14:solidFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SolidColorFillProperties. + /// + /// + public static readonly XName solidFill = w14 + "solidFill"; + + /// + /// Represents the w14:srgbClr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RgbColorModelHex. + /// + /// + public static readonly XName srgbClr = w14 + "srgbClr"; + + /// + /// Represents the w14:stA XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.StartingOpacity. + /// + /// + public static readonly XName stA = w14 + "stA"; + + /// + /// Represents the w14:stPos XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Reflection.StartPosition. + /// + /// + public static readonly XName stPos = w14 + "stPos"; + + /// + /// Represents the w14:styleSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: StyleSet. + /// + /// + public static readonly XName styleSet = w14 + "styleSet"; + + /// + /// Represents the w14:stylisticSets XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: StylisticSets. + /// + /// + public static readonly XName stylisticSets = w14 + "stylisticSets"; + + /// + /// Represents the w14:sx XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Reflection.HorizontalScalingFactor, Shadow.HorizontalScalingFactor. + /// + /// + public static readonly XName sx = w14 + "sx"; + + /// + /// Represents the w14:sy XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Reflection.VerticalScalingFactor, Shadow.VerticalScalingFactor. + /// + /// + public static readonly XName sy = w14 + "sy"; + + /// + /// Represents the w14:t XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FillToRectangle.Top. + /// + /// + public static readonly XName t = w14 + "t"; + + /// + /// Represents the w14:textFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: FillTextEffect. + /// + /// + public static readonly XName textFill = w14 + "textFill"; + + /// + /// Represents the w14:textId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Paragraph.TextId, TableRow.TextId. + /// + /// + public static readonly XName textId = w14 + "textId"; + + /// + /// Represents the w14:textOutline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: TextOutlineEffect. + /// + /// + public static readonly XName textOutline = w14 + "textOutline"; + + /// + /// Represents the w14:tint XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Tint. + /// + /// + public static readonly XName tint = w14 + "tint"; + + /// + /// Represents the w14:uncheckedState XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: UncheckedState. + /// + /// + public static readonly XName uncheckedState = w14 + "uncheckedState"; + + /// + /// Represents the w14:val XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Alpha.Val, Checked.Val, CheckedState.Val, ConflictMode.Val, ContextualAlternatives.Val, DefaultImageDpi.Val, DiscardImageEditingData.Val, DocumentId.Val, HueModulation.Val, Ligatures.Val, Luminance.Val, LuminanceModulation.Val, LuminanceOffset.Val, NumberingFormat.Val, NumberSpacing.Val, PresetLineDashProperties.Val, RgbColorModelHex.Val, Saturation.Val, SaturationModulation.Val, SaturationOffset.Val, SchemeColor.Val, Shade.Val, StyleSet.Val, Tint.Val, UncheckedState.Val. + /// + /// + public static readonly XName val = w14 + "val"; + + /// + /// Represents the w14:w XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: BevelBottom.Width, BevelTop.Width, TextOutlineEffect.LineWidth. + /// + /// + public static readonly XName w = w14 + "w"; + + /// + /// Represents the w14:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform2D. + /// + /// + public static readonly XName xfrm = w14 + "xfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W15.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W15.g.cs new file mode 100644 index 000000000..e238f72fd --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W15.g.cs @@ -0,0 +1,336 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" namespace. + /// + public static class W15 + { + /// + /// Defines the XML namespace associated with the w15 prefix. + /// + public static readonly XNamespace w15 = "http://schemas.microsoft.com/office/word/2012/wordml"; + + /// + /// Represents the w15:appearance XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Appearance. + /// + /// + public static readonly XName appearance = w15 + "appearance"; + + /// + /// Represents the w15:author XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Person.Author. + /// + /// + public static readonly XName author = w15 + "author"; + + /// + /// Represents the w15:chartTrackingRefBased XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ChartTrackingRefBased. + /// + /// + public static readonly XName chartTrackingRefBased = w15 + "chartTrackingRefBased"; + + /// + /// Represents the w15:collapsed XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DefaultCollapsed. + /// + /// + public static readonly XName collapsed = w15 + "collapsed"; + + /// + /// Represents the w15:color XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Color. + /// + /// + public static readonly XName color = w15 + "color"; + + /// + /// Represents the w15:commentEx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CommentEx. + /// + /// + public static readonly XName commentEx = w15 + "commentEx"; + + /// + /// Represents the w15:commentsEx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CommentsEx. + /// + /// + public static readonly XName commentsEx = w15 + "commentsEx"; + + /// + /// Represents the w15:dataBinding XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: DataBinding. + /// + /// + public static readonly XName dataBinding = w15 + "dataBinding"; + + /// + /// Represents the w15:docId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PersistentDocumentId. + /// + /// + public static readonly XName docId = w15 + "docId"; + + /// + /// Represents the w15:done XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentEx.Done. + /// + /// + public static readonly XName done = w15 + "done"; + + /// + /// Represents the w15:doNotAllowInsertDeleteSection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DoNotAllowInsertDeleteSection. + /// + /// + public static readonly XName doNotAllowInsertDeleteSection = w15 + "doNotAllowInsertDeleteSection"; + + /// + /// Represents the w15:footnoteColumns XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FootnoteColumns. + /// + /// + public static readonly XName footnoteColumns = w15 + "footnoteColumns"; + + /// + /// Represents the w15:paraId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentEx.ParaId. + /// + /// + public static readonly XName paraId = w15 + "paraId"; + + /// + /// Represents the w15:paraIdParent XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentEx.ParaIdParent. + /// + /// + public static readonly XName paraIdParent = w15 + "paraIdParent"; + + /// + /// Represents the w15:people XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: People. + /// + /// + public static readonly XName people = w15 + "people"; + + /// + /// Represents the w15:person XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Person. + /// + /// + public static readonly XName person = w15 + "person"; + + /// + /// Represents the w15:presenceInfo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PresenceInfo. + /// + /// + public static readonly XName presenceInfo = w15 + "presenceInfo"; + + /// + /// Represents the w15:providerId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PresenceInfo.ProviderId. + /// + /// + public static readonly XName providerId = w15 + "providerId"; + + /// + /// Represents the w15:repeatingSection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SdtRepeatedSection. + /// + /// + public static readonly XName repeatingSection = w15 + "repeatingSection"; + + /// + /// Represents the w15:repeatingSectionItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: SdtRepeatedSectionItem. + /// + /// + public static readonly XName repeatingSectionItem = w15 + "repeatingSectionItem"; + + /// + /// Represents the w15:sectionTitle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SectionTitle. + /// + /// + public static readonly XName sectionTitle = w15 + "sectionTitle"; + + /// + /// Represents the w15:userId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: PresenceInfo.UserId. + /// + /// + public static readonly XName userId = w15 + "userId"; + + /// + /// Represents the w15:val XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Appearance.Val, PersistentDocumentId.Val. + /// + /// + public static readonly XName val = w15 + "val"; + + /// + /// Represents the w15:webExtensionCreated XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebExtensionCreated. + /// + /// + public static readonly XName webExtensionCreated = w15 + "webExtensionCreated"; + + /// + /// Represents the w15:webExtensionLinked XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebExtensionLinked. + /// + /// + public static readonly XName webExtensionLinked = w15 + "webExtensionLinked"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W16CID.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W16CID.g.cs new file mode 100644 index 000000000..f4d89a272 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/W16CID.g.cs @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" namespace. + /// + public static class W16CID + { + /// + /// Defines the XML namespace associated with the w16cid prefix. + /// + public static readonly XNamespace w16cid = "http://schemas.microsoft.com/office/word/2016/wordml/cid"; + + /// + /// Represents the w16cid:commentId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CommentId. + /// + /// + public static readonly XName commentId = w16cid + "commentId"; + + /// + /// Represents the w16cid:commentsIds XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CommentsIds. + /// + /// + public static readonly XName commentsIds = w16cid + "commentsIds"; + + /// + /// Represents the w16cid:durableId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentId.DurableId. + /// + /// + public static readonly XName durableId = w16cid + "durableId"; + + /// + /// Represents the w16cid:paraId XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: CommentId.ParaId. + /// + /// + public static readonly XName paraId = w16cid + "paraId"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WE.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WE.g.cs new file mode 100644 index 000000000..ab850cdf4 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WE.g.cs @@ -0,0 +1,152 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:we="http://schemas.microsoft.com/office/webextensions/webextension/2010/11" namespace. + /// + public static class WE + { + /// + /// Defines the XML namespace associated with the we prefix. + /// + public static readonly XNamespace we = "http://schemas.microsoft.com/office/webextensions/webextension/2010/11"; + + /// + /// Represents the we:alternateReferences XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: WebExtensionReferenceList. + /// + /// + public static readonly XName alternateReferences = we + "alternateReferences"; + + /// + /// Represents the we:binding XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: WebExtensionBinding. + /// + /// + public static readonly XName binding = we + "binding"; + + /// + /// Represents the we:bindings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: WebExtensionBindingList. + /// + /// + public static readonly XName bindings = we + "bindings"; + + /// + /// Represents the we:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = we + "extLst"; + + /// + /// Represents the we:properties XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: WebExtensionPropertyBag. + /// + /// + public static readonly XName properties = we + "properties"; + + /// + /// Represents the we:property XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: WebExtensionProperty. + /// + /// + public static readonly XName property = we + "property"; + + /// + /// Represents the we:reference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: WebExtensionStoreReference. + /// + /// + public static readonly XName reference = we + "reference"; + + /// + /// Represents the we:snapshot XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Snapshot. + /// + /// + public static readonly XName snapshot = we + "snapshot"; + + /// + /// Represents the we:webextension XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: WebExtension. + /// + /// + public static readonly XName webextension = we + "webextension"; + + /// + /// Represents the we:webextensionref XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebExtensionReference. + /// + /// + public static readonly XName webextensionref = we + "webextensionref"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WETP.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WETP.g.cs new file mode 100644 index 000000000..86910b658 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WETP.g.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:wetp="http://schemas.microsoft.com/office/webextensions/taskpanes/2010/11" namespace. + /// + public static class WETP + { + /// + /// Defines the XML namespace associated with the wetp prefix. + /// + public static readonly XNamespace wetp = "http://schemas.microsoft.com/office/webextensions/taskpanes/2010/11"; + + /// + /// Represents the wetp:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = wetp + "extLst"; + + /// + /// Represents the wetp:taskpane XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: WebExtensionTaskpane. + /// + /// + public static readonly XName taskpane = wetp + "taskpane"; + + /// + /// Represents the wetp:taskpanes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Taskpanes. + /// + /// + public static readonly XName taskpanes = wetp + "taskpanes"; + + /// + /// Represents the wetp:webextensionref XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebExtensionPartReference. + /// + /// + public static readonly XName webextensionref = wetp + "webextensionref"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WNE.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WNE.g.cs new file mode 100644 index 000000000..53cfe63a1 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WNE.g.cs @@ -0,0 +1,674 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" namespace. + /// + public static class WNE + { + /// + /// Defines the XML namespace associated with the wne prefix. + /// + public static readonly XNamespace wne = "http://schemas.microsoft.com/office/word/2006/wordml"; + + /// + /// Represents the wne:acd XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: AllocatedCommand, AllocatedCommandKeyboardCustomization. + /// + /// + public static readonly XName acd = wne + "acd"; + + /// + /// Represents the wne:acdEntry XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AllocatedCommandManifestEntry. + /// + /// + public static readonly XName acdEntry = wne + "acdEntry"; + + /// + /// Represents the wne:acdManifest XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AllocatedCommandManifest. + /// + /// + public static readonly XName acdManifest = wne + "acdManifest"; + + /// + /// Represents the wne:acdName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: AllocatedCommand.AcceleratorName, AllocatedCommandKeyboardCustomization.AcceleratorName, AllocatedCommandManifestEntry.AcceleratorName. + /// + /// + public static readonly XName acdName = wne + "acdName"; + + /// + /// Represents the wne:acds XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AllocatedCommands. + /// + /// + public static readonly XName acds = wne + "acds"; + + /// + /// Represents the wne:active XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RecordIncluded. + /// + /// + public static readonly XName active = wne + "active"; + + /// + /// Represents the wne:argValue XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AllocatedCommand.ArgumentValue. + /// + /// + public static readonly XName argValue = wne + "argValue"; + + /// + /// Represents the wne:bEncrypt XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Mcd.BEncrypt. + /// + /// + public static readonly XName bEncrypt = wne + "bEncrypt"; + + /// + /// Represents the wne:chmPrimary XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: KeyMapEntry.CharacterMapPrimary. + /// + /// + public static readonly XName chmPrimary = wne + "chmPrimary"; + + /// + /// Represents the wne:chmSecondary XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: KeyMapEntry.CharacterMapSecondary. + /// + /// + public static readonly XName chmSecondary = wne + "chmSecondary"; + + /// + /// Represents the wne:cmg XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Mcd.Cmg. + /// + /// + public static readonly XName cmg = wne + "cmg"; + + /// + /// Represents the wne:docEvents XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DocEvents. + /// + /// + public static readonly XName docEvents = wne + "docEvents"; + + /// + /// Represents the wne:eventDocBuildingBlockAfterInsert XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocBuildingBlockAfterInsertXsdString. + /// + /// + public static readonly XName eventDocBuildingBlockAfterInsert = wne + "eventDocBuildingBlockAfterInsert"; + + /// + /// Represents the wne:eventDocClose XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocCloseXsdString. + /// + /// + public static readonly XName eventDocClose = wne + "eventDocClose"; + + /// + /// Represents the wne:eventDocContentControlAfterInsert XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocContentControlAfterInsertXsdString. + /// + /// + public static readonly XName eventDocContentControlAfterInsert = wne + "eventDocContentControlAfterInsert"; + + /// + /// Represents the wne:eventDocContentControlBeforeDelete XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocContentControlBeforeDeleteXsdString. + /// + /// + public static readonly XName eventDocContentControlBeforeDelete = wne + "eventDocContentControlBeforeDelete"; + + /// + /// Represents the wne:eventDocContentControlContentUpdate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocContentControlUpdateXsdString. + /// + /// + public static readonly XName eventDocContentControlContentUpdate = wne + "eventDocContentControlContentUpdate"; + + /// + /// Represents the wne:eventDocContentControlOnEnter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocContentControlOnEnterXsdString. + /// + /// + public static readonly XName eventDocContentControlOnEnter = wne + "eventDocContentControlOnEnter"; + + /// + /// Represents the wne:eventDocContentControlOnExit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocContentControlOnExistXsdString. + /// + /// + public static readonly XName eventDocContentControlOnExit = wne + "eventDocContentControlOnExit"; + + /// + /// Represents the wne:eventDocNew XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocNewXsdString. + /// + /// + public static readonly XName eventDocNew = wne + "eventDocNew"; + + /// + /// Represents the wne:eventDocOpen XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocOpenXsdString. + /// + /// + public static readonly XName eventDocOpen = wne + "eventDocOpen"; + + /// + /// Represents the wne:eventDocStoreUpdate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocStoreUpdateXsdString. + /// + /// + public static readonly XName eventDocStoreUpdate = wne + "eventDocStoreUpdate"; + + /// + /// Represents the wne:eventDocSync XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocSyncXsdString. + /// + /// + public static readonly XName eventDocSync = wne + "eventDocSync"; + + /// + /// Represents the wne:eventDocXmlAfterInsert XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocXmlAfterInsertXsdString. + /// + /// + public static readonly XName eventDocXmlAfterInsert = wne + "eventDocXmlAfterInsert"; + + /// + /// Represents the wne:eventDocXmlBeforeDelete XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: EventDocXmlBeforeDeleteXsdString. + /// + /// + public static readonly XName eventDocXmlBeforeDelete = wne + "eventDocXmlBeforeDelete"; + + /// + /// Represents the wne:fci XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: FixedCommandKeyboardCustomization. + /// + /// + public static readonly XName fci = wne + "fci"; + + /// + /// Represents the wne:fciBasedOn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AllocatedCommand.CommandBasedOn. + /// + /// + public static readonly XName fciBasedOn = wne + "fciBasedOn"; + + /// + /// Represents the wne:fciIndex XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FixedCommandKeyboardCustomization.CommandIndex. + /// + /// + public static readonly XName fciIndex = wne + "fciIndex"; + + /// + /// Represents the wne:fciIndexBasedOn XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: AllocatedCommand.CommandIndexBasedOn. + /// + /// + public static readonly XName fciIndexBasedOn = wne + "fciIndexBasedOn"; + + /// + /// Represents the wne:fciName XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FixedCommandKeyboardCustomization.CommandName. + /// + /// + public static readonly XName fciName = wne + "fciName"; + + /// + /// Represents the wne:hash XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RecordHashCode. + /// + /// + public static readonly XName hash = wne + "hash"; + + /// + /// Represents the wne:kcmPrimary XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: KeyMapEntry.KeyCodePrimary. + /// + /// + public static readonly XName kcmPrimary = wne + "kcmPrimary"; + + /// + /// Represents the wne:kcmSecondary XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: KeyMapEntry.KeyCodeSecondary. + /// + /// + public static readonly XName kcmSecondary = wne + "kcmSecondary"; + + /// + /// Represents the wne:keymap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: KeyMapEntry. + /// + /// + public static readonly XName keymap = wne + "keymap"; + + /// + /// Represents the wne:keymaps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: KeyMapCustomizations. + /// + /// + public static readonly XName keymaps = wne + "keymaps"; + + /// + /// Represents the wne:keymapsBad XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MismatchedKeyMapCustomization. + /// + /// + public static readonly XName keymapsBad = wne + "keymapsBad"; + + /// + /// Represents the wne:macro XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MacroKeyboardCustomization. + /// + /// + public static readonly XName macro = wne + "macro"; + + /// + /// Represents the wne:macroName XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: MacroKeyboardCustomization.MacroName, Mcd.MacroName, WllMacroKeyboardCustomization.MacroName. + /// + /// + public static readonly XName macroName = wne + "macroName"; + + /// + /// Represents the wne:mask XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: KeyMapEntry.Mask. + /// + /// + public static readonly XName mask = wne + "mask"; + + /// + /// Represents the wne:mcd XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Mcd. + /// + /// + public static readonly XName mcd = wne + "mcd"; + + /// + /// Represents the wne:mcds XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Mcds. + /// + /// + public static readonly XName mcds = wne + "mcds"; + + /// + /// Represents the wne:menuHelp XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Mcd.MenuHelp. + /// + /// + public static readonly XName menuHelp = wne + "menuHelp"; + + /// + /// Represents the wne:name XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Mcd.Name. + /// + /// + public static readonly XName name = wne + "name"; + + /// + /// Represents the wne:recipientData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SingleDataSourceRecord. + /// + /// + public static readonly XName recipientData = wne + "recipientData"; + + /// + /// Represents the wne:recipients XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MailMergeRecipients. + /// + /// + public static readonly XName recipients = wne + "recipients"; + + /// + /// Represents the wne:swArg XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: FixedCommandKeyboardCustomization.Argument. + /// + /// + public static readonly XName swArg = wne + "swArg"; + + /// + /// Represents the wne:tcg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: TemplateCommandGroup. + /// + /// + public static readonly XName tcg = wne + "tcg"; + + /// + /// Represents the wne:toolbarData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ToolbarData. + /// + /// + public static readonly XName toolbarData = wne + "toolbarData"; + + /// + /// Represents the wne:toolbars XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Toolbars. + /// + /// + public static readonly XName toolbars = wne + "toolbars"; + + /// + /// Represents the wne:val XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , . + /// corresponds to the following strongly-typed properties: CharacterInsertion.Val, RecordHashCode.Val, RecordIncluded.Val. + /// + /// + public static readonly XName val = wne + "val"; + + /// + /// Represents the wne:vbaSuppData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: VbaSuppData. + /// + /// + public static readonly XName vbaSuppData = wne + "vbaSuppData"; + + /// + /// Represents the wne:wch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CharacterInsertion. + /// + /// + public static readonly XName wch = wne + "wch"; + + /// + /// Represents the wne:wll XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WllMacroKeyboardCustomization. + /// + /// + public static readonly XName wll = wne + "wll"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP.g.cs new file mode 100644 index 000000000..d9c75f4d0 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP.g.cs @@ -0,0 +1,272 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" namespace. + /// + public static class WP + { + /// + /// Defines the XML namespace associated with the wp prefix. + /// + public static readonly XNamespace wp = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"; + + /// + /// Represents the wp:align XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: HorizontalAlignment, VerticalAlignment. + /// + /// + public static readonly XName align = wp + "align"; + + /// + /// Represents the wp:anchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Anchor. + /// + /// + public static readonly XName anchor = wp + "anchor"; + + /// + /// Represents the wp:cNvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameDrawingProperties. + /// + /// + public static readonly XName cNvGraphicFramePr = wp + "cNvGraphicFramePr"; + + /// + /// Represents the wp:docPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: DocProperties. + /// + /// + public static readonly XName docPr = wp + "docPr"; + + /// + /// Represents the wp:effectExtent XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: EffectExtent. + /// + /// + public static readonly XName effectExtent = wp + "effectExtent"; + + /// + /// Represents the wp:extent XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Extent. + /// + /// + public static readonly XName extent = wp + "extent"; + + /// + /// Represents the wp:inline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Inline. + /// + /// + public static readonly XName inline = wp + "inline"; + + /// + /// Represents the wp:lineTo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LineTo. + /// + /// + public static readonly XName lineTo = wp + "lineTo"; + + /// + /// Represents the wp:positionH XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HorizontalPosition. + /// + /// + public static readonly XName positionH = wp + "positionH"; + + /// + /// Represents the wp:positionV XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VerticalPosition. + /// + /// + public static readonly XName positionV = wp + "positionV"; + + /// + /// Represents the wp:posOffset XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: PositionOffset. + /// + /// + public static readonly XName posOffset = wp + "posOffset"; + + /// + /// Represents the wp:simplePos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SimplePosition. + /// + /// + public static readonly XName simplePos = wp + "simplePos"; + + /// + /// Represents the wp:start XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: StartPoint. + /// + /// + public static readonly XName start = wp + "start"; + + /// + /// Represents the wp:wrapNone XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: WrapNone. + /// + /// + public static readonly XName wrapNone = wp + "wrapNone"; + + /// + /// Represents the wp:wrapPolygon XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WrapPolygon. + /// + /// + public static readonly XName wrapPolygon = wp + "wrapPolygon"; + + /// + /// Represents the wp:wrapSquare XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: WrapSquare. + /// + /// + public static readonly XName wrapSquare = wp + "wrapSquare"; + + /// + /// Represents the wp:wrapThrough XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: WrapThrough. + /// + /// + public static readonly XName wrapThrough = wp + "wrapThrough"; + + /// + /// Represents the wp:wrapTight XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: WrapTight. + /// + /// + public static readonly XName wrapTight = wp + "wrapTight"; + + /// + /// Represents the wp:wrapTopAndBottom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: WrapTopBottom. + /// + /// + public static readonly XName wrapTopAndBottom = wp + "wrapTopAndBottom"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP14.g.cs new file mode 100644 index 000000000..3124a029b --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP14.g.cs @@ -0,0 +1,118 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" namespace. + /// + public static class WP14 + { + /// + /// Defines the XML namespace associated with the wp14 prefix. + /// + public static readonly XNamespace wp14 = "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"; + + /// + /// Represents the wp14:anchorId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Anchor.AnchorId, Inline.AnchorId. + /// + /// + public static readonly XName anchorId = wp14 + "anchorId"; + + /// + /// Represents the wp14:editId XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Anchor.EditId, Inline.EditId. + /// + /// + public static readonly XName editId = wp14 + "editId"; + + /// + /// Represents the wp14:pctHeight XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PercentageHeight. + /// + /// + public static readonly XName pctHeight = wp14 + "pctHeight"; + + /// + /// Represents the wp14:pctPosHOffset XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: PercentagePositionHeightOffset. + /// + /// + public static readonly XName pctPosHOffset = wp14 + "pctPosHOffset"; + + /// + /// Represents the wp14:pctPosVOffset XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// corresponds to the following strongly-typed classes: PercentagePositionVerticalOffset. + /// + /// + public static readonly XName pctPosVOffset = wp14 + "pctPosVOffset"; + + /// + /// Represents the wp14:pctWidth XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PercentageWidth. + /// + /// + public static readonly XName pctWidth = wp14 + "pctWidth"; + + /// + /// Represents the wp14:sizeRelH XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RelativeWidth. + /// + /// + public static readonly XName sizeRelH = wp14 + "sizeRelH"; + + /// + /// Represents the wp14:sizeRelV XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RelativeHeight. + /// + /// + public static readonly XName sizeRelV = wp14 + "sizeRelV"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP15.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP15.g.cs new file mode 100644 index 000000000..b87015fe8 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WP15.g.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:wp15="http://schemas.microsoft.com/office/word/2012/wordprocessingDrawing" namespace. + /// + public static class WP15 + { + /// + /// Defines the XML namespace associated with the wp15 prefix. + /// + public static readonly XNamespace wp15 = "http://schemas.microsoft.com/office/word/2012/wordprocessingDrawing"; + + /// + /// Represents the wp15:webVideoPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: WebVideoProperty. + /// + /// + public static readonly XName webVideoPr = wp15 + "webVideoPr"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPC.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPC.g.cs new file mode 100644 index 000000000..fdea57e60 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPC.g.cs @@ -0,0 +1,83 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" namespace. + /// + public static class WPC + { + /// + /// Defines the XML namespace associated with the wpc prefix. + /// + public static readonly XNamespace wpc = "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"; + + /// + /// Represents the wpc:bg XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: BackgroundFormatting. + /// + /// + public static readonly XName bg = wpc + "bg"; + + /// + /// Represents the wpc:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = wpc + "extLst"; + + /// + /// Represents the wpc:graphicFrame XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: GraphicFrameType. + /// + /// + public static readonly XName graphicFrame = wpc + "graphicFrame"; + + /// + /// Represents the wpc:whole XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: WholeFormatting. + /// + /// + public static readonly XName whole = wpc + "whole"; + + /// + /// Represents the wpc:wpc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: WordprocessingCanvas. + /// + /// + public static readonly XName wpc_ = wpc + "wpc"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPG.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPG.g.cs new file mode 100644 index 000000000..8afcc8d8c --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPG.g.cs @@ -0,0 +1,138 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" namespace. + /// + public static class WPG + { + /// + /// Defines the XML namespace associated with the wpg prefix. + /// + public static readonly XNamespace wpg = "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"; + + /// + /// Represents the wpg:cNvFrPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameProperties. + /// + /// + public static readonly XName cNvFrPr = wpg + "cNvFrPr"; + + /// + /// Represents the wpg:cNvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupDrawingShapeProperties. + /// + /// + public static readonly XName cNvGrpSpPr = wpg + "cNvGrpSpPr"; + + /// + /// Represents the wpg:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = wpg + "cNvPr"; + + /// + /// Represents the wpg:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = wpg + "extLst"; + + /// + /// Represents the wpg:graphicFrame XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: GraphicFrame. + /// + /// + public static readonly XName graphicFrame = wpg + "graphicFrame"; + + /// + /// Represents the wpg:grpSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: GroupShape. + /// + /// + public static readonly XName grpSp = wpg + "grpSp"; + + /// + /// Represents the wpg:grpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupShapeProperties. + /// + /// + public static readonly XName grpSpPr = wpg + "grpSpPr"; + + /// + /// Represents the wpg:wgp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: WordprocessingGroup. + /// + /// + public static readonly XName wgp = wpg + "wgp"; + + /// + /// Represents the wpg:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform2D. + /// + /// + public static readonly XName xfrm = wpg + "xfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPS.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPS.g.cs new file mode 100644 index 000000000..ed0f11be2 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/WPS.g.cs @@ -0,0 +1,155 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" namespace. + /// + public static class WPS + { + /// + /// Defines the XML namespace associated with the wps prefix. + /// + public static readonly XNamespace wps = "http://schemas.microsoft.com/office/word/2010/wordprocessingShape"; + + /// + /// Represents the wps:bodyPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TextBodyProperties. + /// + /// + public static readonly XName bodyPr = wps + "bodyPr"; + + /// + /// Represents the wps:cNvCnPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: NonVisualConnectorProperties. + /// + /// + public static readonly XName cNvCnPr = wps + "cNvCnPr"; + + /// + /// Represents the wps:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = wps + "cNvPr"; + + /// + /// Represents the wps:cNvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualDrawingShapeProperties. + /// + /// + public static readonly XName cNvSpPr = wps + "cNvSpPr"; + + /// + /// Represents the wps:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = wps + "extLst"; + + /// + /// Represents the wps:linkedTxbx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: LinkedTextBox. + /// + /// + public static readonly XName linkedTxbx = wps + "linkedTxbx"; + + /// + /// Represents the wps:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = wps + "spPr"; + + /// + /// Represents the wps:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ShapeStyle. + /// + /// + public static readonly XName style = wps + "style"; + + /// + /// Represents the wps:txbx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TextBoxInfo2. + /// + /// + public static readonly XName txbx = wps + "txbx"; + + /// + /// Represents the wps:wsp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WordprocessingShape. + /// + /// + public static readonly XName wsp = wps + "wsp"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X.g.cs new file mode 100644 index 000000000..8f723b54f --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X.g.cs @@ -0,0 +1,5170 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:x="http://schemas.openxmlformats.org/spreadsheetml/2006/main" namespace. + /// + public static class X + { + /// + /// Defines the XML namespace associated with the x prefix. + /// + public static readonly XNamespace x = "http://schemas.openxmlformats.org/spreadsheetml/2006/main"; + + /// + /// Represents the x:alignment XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Alignment. + /// + /// + public static readonly XName alignment = x + "alignment"; + + /// + /// Represents the x:anchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ObjectAnchor. + /// + /// + public static readonly XName anchor = x + "anchor"; + + /// + /// Represents the x:author XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Author. + /// + /// + public static readonly XName author = x + "author"; + + /// + /// Represents the x:authors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Authors. + /// + /// + public static readonly XName authors = x + "authors"; + + /// + /// Represents the x:autoFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AutoFilter. + /// + /// + public static readonly XName autoFilter = x + "autoFilter"; + + /// + /// Represents the x:autoSortScope XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: AutoSortScope. + /// + /// + public static readonly XName autoSortScope = x + "autoSortScope"; + + /// + /// Represents the x:b XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Bold, BooleanItem. + /// + /// + public static readonly XName b = x + "b"; + + /// + /// Represents the x:bgColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: BackgroundColor. + /// + /// + public static readonly XName bgColor = x + "bgColor"; + + /// + /// Represents the x:bk XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: FutureMetadataBlock, MetadataBlock. + /// + /// + public static readonly XName bk = x + "bk"; + + /// + /// Represents the x:bookViews XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: BookViews. + /// + /// + public static readonly XName bookViews = x + "bookViews"; + + /// + /// Represents the x:border XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Border. + /// + /// + public static readonly XName border = x + "border"; + + /// + /// Represents the x:borders XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Borders. + /// + /// + public static readonly XName borders = x + "borders"; + + /// + /// Represents the x:bottom XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BottomBorder. + /// + /// + public static readonly XName bottom = x + "bottom"; + + /// + /// Represents the x:brk XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Break. + /// + /// + public static readonly XName brk = x + "brk"; + + /// + /// Represents the x:c XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: CalculationCell, Cell. + /// + /// + public static readonly XName c = x + "c"; + + /// + /// Represents the x:cacheField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CacheField. + /// + /// + public static readonly XName cacheField = x + "cacheField"; + + /// + /// Represents the x:cacheFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CacheFields. + /// + /// + public static readonly XName cacheFields = x + "cacheFields"; + + /// + /// Represents the x:cacheHierarchies XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CacheHierarchies. + /// + /// + public static readonly XName cacheHierarchies = x + "cacheHierarchies"; + + /// + /// Represents the x:cacheHierarchy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CacheHierarchy. + /// + /// + public static readonly XName cacheHierarchy = x + "cacheHierarchy"; + + /// + /// Represents the x:cacheSource XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CacheSource. + /// + /// + public static readonly XName cacheSource = x + "cacheSource"; + + /// + /// Represents the x:calcChain XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: CalculationChain. + /// + /// + public static readonly XName calcChain = x + "calcChain"; + + /// + /// Represents the x:calcPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CalculationProperties. + /// + /// + public static readonly XName calcPr = x + "calcPr"; + + /// + /// Represents the x:calculatedColumnFormula XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CalculatedColumnFormula. + /// + /// + public static readonly XName calculatedColumnFormula = x + "calculatedColumnFormula"; + + /// + /// Represents the x:calculatedItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CalculatedItem. + /// + /// + public static readonly XName calculatedItem = x + "calculatedItem"; + + /// + /// Represents the x:calculatedItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CalculatedItems. + /// + /// + public static readonly XName calculatedItems = x + "calculatedItems"; + + /// + /// Represents the x:calculatedMember XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: CalculatedMember. + /// + /// + public static readonly XName calculatedMember = x + "calculatedMember"; + + /// + /// Represents the x:calculatedMembers XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CalculatedMembers. + /// + /// + public static readonly XName calculatedMembers = x + "calculatedMembers"; + + /// + /// Represents the x:cell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ExternalCell. + /// + /// + public static readonly XName cell = x + "cell"; + + /// + /// Represents the x:cellMetadata XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CellMetadata. + /// + /// + public static readonly XName cellMetadata = x + "cellMetadata"; + + /// + /// Represents the x:cellStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: CellStyle. + /// + /// + public static readonly XName cellStyle = x + "cellStyle"; + + /// + /// Represents the x:cellStyles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CellStyles. + /// + /// + public static readonly XName cellStyles = x + "cellStyles"; + + /// + /// Represents the x:cellStyleXfs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CellStyleFormats. + /// + /// + public static readonly XName cellStyleXfs = x + "cellStyleXfs"; + + /// + /// Represents the x:cellWatch XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CellWatch. + /// + /// + public static readonly XName cellWatch = x + "cellWatch"; + + /// + /// Represents the x:cellWatches XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CellWatches. + /// + /// + public static readonly XName cellWatches = x + "cellWatches"; + + /// + /// Represents the x:cellXfs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CellFormats. + /// + /// + public static readonly XName cellXfs = x + "cellXfs"; + + /// + /// Represents the x:cfRule XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ConditionalFormattingRule. + /// + /// + public static readonly XName cfRule = x + "cfRule"; + + /// + /// Represents the x:cfvo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ConditionalFormatValueObject. + /// + /// + public static readonly XName cfvo = x + "cfvo"; + + /// + /// Represents the x:charset XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontCharSet, RunPropertyCharSet. + /// + /// + public static readonly XName charset = x + "charset"; + + /// + /// Represents the x:chartFormat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ChartFormat. + /// + /// + public static readonly XName chartFormat = x + "chartFormat"; + + /// + /// Represents the x:chartFormats XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ChartFormats. + /// + /// + public static readonly XName chartFormats = x + "chartFormats"; + + /// + /// Represents the x:chartsheet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Chartsheet. + /// + /// + public static readonly XName chartsheet = x + "chartsheet"; + + /// + /// Represents the x:col XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Column. + /// + /// + public static readonly XName col = x + "col"; + + /// + /// Represents the x:colBreaks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColumnBreaks. + /// + /// + public static readonly XName colBreaks = x + "colBreaks"; + + /// + /// Represents the x:colFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnFields. + /// + /// + public static readonly XName colFields = x + "colFields"; + + /// + /// Represents the x:colHierarchiesUsage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnHierarchiesUsage. + /// + /// + public static readonly XName colHierarchiesUsage = x + "colHierarchiesUsage"; + + /// + /// Represents the x:colHierarchyUsage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnHierarchyUsage. + /// + /// + public static readonly XName colHierarchyUsage = x + "colHierarchyUsage"; + + /// + /// Represents the x:colItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ColumnItems. + /// + /// + public static readonly XName colItems = x + "colItems"; + + /// + /// Represents the x:color XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Color. + /// + /// + public static readonly XName color = x + "color"; + + /// + /// Represents the x:colorFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColorFilter. + /// + /// + public static readonly XName colorFilter = x + "colorFilter"; + + /// + /// Represents the x:colors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Colors. + /// + /// + public static readonly XName colors = x + "colors"; + + /// + /// Represents the x:colorScale XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ColorScale. + /// + /// + public static readonly XName colorScale = x + "colorScale"; + + /// + /// Represents the x:cols XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Columns. + /// + /// + public static readonly XName cols = x + "cols"; + + /// + /// Represents the x:comment XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Comment. + /// + /// + public static readonly XName comment = x + "comment"; + + /// + /// Represents the x:commentList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CommentList. + /// + /// + public static readonly XName commentList = x + "commentList"; + + /// + /// Represents the x:commentPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CommentProperties. + /// + /// + public static readonly XName commentPr = x + "commentPr"; + + /// + /// Represents the x:comments XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: Comments. + /// + /// + public static readonly XName comments = x + "comments"; + + /// + /// Represents the x:condense XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Condense. + /// + /// + public static readonly XName condense = x + "condense"; + + /// + /// Represents the x:conditionalFormat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ConditionalFormat. + /// + /// + public static readonly XName conditionalFormat = x + "conditionalFormat"; + + /// + /// Represents the x:conditionalFormats XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConditionalFormats. + /// + /// + public static readonly XName conditionalFormats = x + "conditionalFormats"; + + /// + /// Represents the x:conditionalFormatting XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ConditionalFormatting. + /// + /// + public static readonly XName conditionalFormatting = x + "conditionalFormatting"; + + /// + /// Represents the x:connection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Connection. + /// + /// + public static readonly XName connection = x + "connection"; + + /// + /// Represents the x:connections XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Connections. + /// + /// + public static readonly XName connections = x + "connections"; + + /// + /// Represents the x:consolidation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Consolidation. + /// + /// + public static readonly XName consolidation = x + "consolidation"; + + /// + /// Represents the x:control XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Control. + /// + /// + public static readonly XName control = x + "control"; + + /// + /// Represents the x:controlPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ControlProperties. + /// + /// + public static readonly XName controlPr = x + "controlPr"; + + /// + /// Represents the x:controls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Controls. + /// + /// + public static readonly XName controls = x + "controls"; + + /// + /// Represents the x:customFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CustomFilter. + /// + /// + public static readonly XName customFilter = x + "customFilter"; + + /// + /// Represents the x:customFilters XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomFilters. + /// + /// + public static readonly XName customFilters = x + "customFilters"; + + /// + /// Represents the x:customPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CustomProperty. + /// + /// + public static readonly XName customPr = x + "customPr"; + + /// + /// Represents the x:customProperties XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CustomProperties. + /// + /// + public static readonly XName customProperties = x + "customProperties"; + + /// + /// Represents the x:customSheetView XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CustomChartsheetView, CustomSheetView. + /// + /// + public static readonly XName customSheetView = x + "customSheetView"; + + /// + /// Represents the x:customSheetViews XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CustomChartsheetViews, CustomSheetViews. + /// + /// + public static readonly XName customSheetViews = x + "customSheetViews"; + + /// + /// Represents the x:customWorkbookView XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CustomWorkbookView. + /// + /// + public static readonly XName customWorkbookView = x + "customWorkbookView"; + + /// + /// Represents the x:customWorkbookViews XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CustomWorkbookViews. + /// + /// + public static readonly XName customWorkbookViews = x + "customWorkbookViews"; + + /// + /// Represents the x:d XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: DateTimeItem. + /// + /// + public static readonly XName d = x + "d"; + + /// + /// Represents the x:dataBar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: DataBar. + /// + /// + public static readonly XName dataBar = x + "dataBar"; + + /// + /// Represents the x:DataBinding XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: DataBinding. + /// + /// + public static readonly XName DataBinding = x + "DataBinding"; + + /// + /// Represents the x:dataConsolidate XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: DataConsolidate. + /// + /// + public static readonly XName dataConsolidate = x + "dataConsolidate"; + + /// + /// Represents the x:dataField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: DataField. + /// + /// + public static readonly XName dataField = x + "dataField"; + + /// + /// Represents the x:dataFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataFields. + /// + /// + public static readonly XName dataFields = x + "dataFields"; + + /// + /// Represents the x:dataRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: DataReference. + /// + /// + public static readonly XName dataRef = x + "dataRef"; + + /// + /// Represents the x:dataRefs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataReferences. + /// + /// + public static readonly XName dataRefs = x + "dataRefs"; + + /// + /// Represents the x:dataValidation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DataValidation. + /// + /// + public static readonly XName dataValidation = x + "dataValidation"; + + /// + /// Represents the x:dataValidations XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: DataValidations. + /// + /// + public static readonly XName dataValidations = x + "dataValidations"; + + /// + /// Represents the x:dateGroupItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: DateGroupItem. + /// + /// + public static readonly XName dateGroupItem = x + "dateGroupItem"; + + /// + /// Represents the x:dbPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: DatabaseProperties. + /// + /// + public static readonly XName dbPr = x + "dbPr"; + + /// + /// Represents the x:ddeItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: DdeItem. + /// + /// + public static readonly XName ddeItem = x + "ddeItem"; + + /// + /// Represents the x:ddeItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DdeItems. + /// + /// + public static readonly XName ddeItems = x + "ddeItems"; + + /// + /// Represents the x:ddeLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DdeLink. + /// + /// + public static readonly XName ddeLink = x + "ddeLink"; + + /// + /// Represents the x:definedName XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DefinedName, ExternalDefinedName. + /// + /// + public static readonly XName definedName = x + "definedName"; + + /// + /// Represents the x:definedNames XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DefinedNames, ExternalDefinedNames. + /// + /// + public static readonly XName definedNames = x + "definedNames"; + + /// + /// Represents the x:deletedField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DeletedField. + /// + /// + public static readonly XName deletedField = x + "deletedField"; + + /// + /// Represents the x:diagonal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DiagonalBorder. + /// + /// + public static readonly XName diagonal = x + "diagonal"; + + /// + /// Represents the x:dialogsheet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DialogSheet. + /// + /// + public static readonly XName dialogsheet = x + "dialogsheet"; + + /// + /// Represents the x:dimension XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Dimension, SheetDimension. + /// + /// + public static readonly XName dimension = x + "dimension"; + + /// + /// Represents the x:dimensions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Dimensions. + /// + /// + public static readonly XName dimensions = x + "dimensions"; + + /// + /// Represents the x:discretePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DiscreteProperties. + /// + /// + public static readonly XName discretePr = x + "discretePr"; + + /// + /// Represents the x:drawing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Drawing. + /// + /// + public static readonly XName drawing = x + "drawing"; + + /// + /// Represents the x:drawingHF XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DrawingHeaderFooter. + /// + /// + public static readonly XName drawingHF = x + "drawingHF"; + + /// + /// Represents the x:dxf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: DifferentialFormat. + /// + /// + public static readonly XName dxf = x + "dxf"; + + /// + /// Represents the x:dxfs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DifferentialFormats. + /// + /// + public static readonly XName dxfs = x + "dxfs"; + + /// + /// Represents the x:dynamicFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: DynamicFilter. + /// + /// + public static readonly XName dynamicFilter = x + "dynamicFilter"; + + /// + /// Represents the x:e XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ErrorItem. + /// + /// + public static readonly XName e = x + "e"; + + /// + /// Represents the x:end XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EndBorder. + /// + /// + public static readonly XName end = x + "end"; + + /// + /// Represents the x:entries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Entries. + /// + /// + public static readonly XName entries = x + "entries"; + + /// + /// Represents the x:evenFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EvenFooter. + /// + /// + public static readonly XName evenFooter = x + "evenFooter"; + + /// + /// Represents the x:evenHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: EvenHeader. + /// + /// + public static readonly XName evenHeader = x + "evenHeader"; + + /// + /// Represents the x:ext XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CacheFieldExtension, CacheHierarchyExtension, CacheSourceExtension, CalculatedMemberExtension, ConditionalFormattingRuleExtension, ConnectionExtension, DataFieldExtension, Extension, PivotCacheDefinitionExtension, PivotFieldExtension, PivotFilterExtension, PivotHierarchyExtension, PivotTableDefinitionExtension, QueryTableExtension, SlicerCacheDefinitionExtension, StylesheetExtension, TableExtension, WorkbookExtension, WorksheetExtension. + /// + /// + public static readonly XName ext = x + "ext"; + + /// + /// Represents the x:extend XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Extend. + /// + /// + public static readonly XName extend = x + "extend"; + + /// + /// Represents the x:externalBook XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ExternalBook. + /// + /// + public static readonly XName externalBook = x + "externalBook"; + + /// + /// Represents the x:externalLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ExternalLink. + /// + /// + public static readonly XName externalLink = x + "externalLink"; + + /// + /// Represents the x:externalReference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ExternalReference. + /// + /// + public static readonly XName externalReference = x + "externalReference"; + + /// + /// Represents the x:externalReferences XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ExternalReferences. + /// + /// + public static readonly XName externalReferences = x + "externalReferences"; + + /// + /// Represents the x:extLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CacheFieldExtensionList, CacheHierarchyExtensionList, CacheSourceExtensionList, CalculatedMemberExtensionList, ConditionalFormattingRuleExtensionList, ConnectionExtensionList, DataFieldExtensionList, ExtensionList, PivotCacheDefinitionExtensionList, PivotFieldExtensionList, PivotFilterExtensionList, PivotHierarchyExtensionList, PivotTableDefinitionExtensionList, QueryTableExtensionList, StylesheetExtensionList, TableExtensionList, WorkbookExtensionList, WorksheetExtensionList. + /// + /// + public static readonly XName extLst = x + "extLst"; + + /// + /// Represents the x:f XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CellFormula. + /// + /// + public static readonly XName f = x + "f"; + + /// + /// Represents the x:family XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontFamily, FontFamilyNumbering. + /// + /// + public static readonly XName family = x + "family"; + + /// + /// Represents the x:fgColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: ForegroundColor. + /// + /// + public static readonly XName fgColor = x + "fgColor"; + + /// + /// Represents the x:field XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Field. + /// + /// + public static readonly XName field = x + "field"; + + /// + /// Represents the x:fieldGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FieldGroup. + /// + /// + public static readonly XName fieldGroup = x + "fieldGroup"; + + /// + /// Represents the x:fieldsUsage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FieldsUsage. + /// + /// + public static readonly XName fieldsUsage = x + "fieldsUsage"; + + /// + /// Represents the x:fieldUsage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FieldUsage. + /// + /// + public static readonly XName fieldUsage = x + "fieldUsage"; + + /// + /// Represents the x:fileRecoveryPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: FileRecoveryProperties. + /// + /// + public static readonly XName fileRecoveryPr = x + "fileRecoveryPr"; + + /// + /// Represents the x:fileSharing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: FileSharing. + /// + /// + public static readonly XName fileSharing = x + "fileSharing"; + + /// + /// Represents the x:fileVersion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: FileVersion. + /// + /// + public static readonly XName fileVersion = x + "fileVersion"; + + /// + /// Represents the x:fill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Fill. + /// + /// + public static readonly XName fill = x + "fill"; + + /// + /// Represents the x:fills XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Fills. + /// + /// + public static readonly XName fills = x + "fills"; + + /// + /// Represents the x:filter XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Filter, PivotFilter. + /// + /// + public static readonly XName filter = x + "filter"; + + /// + /// Represents the x:filterColumn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: FilterColumn. + /// + /// + public static readonly XName filterColumn = x + "filterColumn"; + + /// + /// Represents the x:filters XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Filters, PivotFilters. + /// + /// + public static readonly XName filters = x + "filters"; + + /// + /// Represents the x:firstFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FirstFooter. + /// + /// + public static readonly XName firstFooter = x + "firstFooter"; + + /// + /// Represents the x:firstHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FirstHeader. + /// + /// + public static readonly XName firstHeader = x + "firstHeader"; + + /// + /// Represents the x:font XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Font. + /// + /// + public static readonly XName font = x + "font"; + + /// + /// Represents the x:fonts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Fonts. + /// + /// + public static readonly XName fonts = x + "fonts"; + + /// + /// Represents the x:format XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Format. + /// + /// + public static readonly XName format = x + "format"; + + /// + /// Represents the x:formats XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Formats. + /// + /// + public static readonly XName formats = x + "formats"; + + /// + /// Represents the x:formula XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Formula. + /// + /// + public static readonly XName formula = x + "formula"; + + /// + /// Represents the x:formula1 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Formula1. + /// + /// + public static readonly XName formula1 = x + "formula1"; + + /// + /// Represents the x:formula2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Formula2. + /// + /// + public static readonly XName formula2 = x + "formula2"; + + /// + /// Represents the x:from XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: FromMarker. + /// + /// + public static readonly XName from = x + "from"; + + /// + /// Represents the x:functionGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FunctionGroup. + /// + /// + public static readonly XName functionGroup = x + "functionGroup"; + + /// + /// Represents the x:functionGroups XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FunctionGroups. + /// + /// + public static readonly XName functionGroups = x + "functionGroups"; + + /// + /// Represents the x:futureMetadata XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FutureMetadata. + /// + /// + public static readonly XName futureMetadata = x + "futureMetadata"; + + /// + /// Represents the x:gradientFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: GradientFill. + /// + /// + public static readonly XName gradientFill = x + "gradientFill"; + + /// + /// Represents the x:group XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Group. + /// + /// + public static readonly XName group = x + "group"; + + /// + /// Represents the x:groupItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupItems. + /// + /// + public static readonly XName groupItems = x + "groupItems"; + + /// + /// Represents the x:groupLevel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: GroupLevel. + /// + /// + public static readonly XName groupLevel = x + "groupLevel"; + + /// + /// Represents the x:groupLevels XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupLevels. + /// + /// + public static readonly XName groupLevels = x + "groupLevels"; + + /// + /// Represents the x:groupMember XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: GroupMember. + /// + /// + public static readonly XName groupMember = x + "groupMember"; + + /// + /// Represents the x:groupMembers XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupMembers. + /// + /// + public static readonly XName groupMembers = x + "groupMembers"; + + /// + /// Represents the x:groups XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Groups. + /// + /// + public static readonly XName groups = x + "groups"; + + /// + /// Represents the x:header XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: Header. + /// + /// + public static readonly XName header = x + "header"; + + /// + /// Represents the x:headerFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: HeaderFooter. + /// + /// + public static readonly XName headerFooter = x + "headerFooter"; + + /// + /// Represents the x:headers XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Headers. + /// + /// + public static readonly XName headers = x + "headers"; + + /// + /// Represents the x:horizontal XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: HorizontalBorder. + /// + /// + public static readonly XName horizontal = x + "horizontal"; + + /// + /// Represents the x:hyperlink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Hyperlink. + /// + /// + public static readonly XName hyperlink = x + "hyperlink"; + + /// + /// Represents the x:hyperlinks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Hyperlinks. + /// + /// + public static readonly XName hyperlinks = x + "hyperlinks"; + + /// + /// Represents the x:i XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Italic, RowItem. + /// + /// + public static readonly XName i = x + "i"; + + /// + /// Represents the x:iconFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: IconFilter. + /// + /// + public static readonly XName iconFilter = x + "iconFilter"; + + /// + /// Represents the x:iconSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: IconSet. + /// + /// + public static readonly XName iconSet = x + "iconSet"; + + /// + /// Represents the x:ignoredError XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: IgnoredError. + /// + /// + public static readonly XName ignoredError = x + "ignoredError"; + + /// + /// Represents the x:ignoredErrors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: IgnoredErrors. + /// + /// + public static readonly XName ignoredErrors = x + "ignoredErrors"; + + /// + /// Represents the x:indexedColors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: IndexedColors. + /// + /// + public static readonly XName indexedColors = x + "indexedColors"; + + /// + /// Represents the x:inputCells XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: InputCells. + /// + /// + public static readonly XName inputCells = x + "inputCells"; + + /// + /// Represents the x:is XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: InlineString. + /// + /// + public static readonly XName @is = x + "is"; + + /// + /// Represents the x:item XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Item. + /// + /// + public static readonly XName item = x + "item"; + + /// + /// Represents the x:items XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Items. + /// + /// + public static readonly XName items = x + "items"; + + /// + /// Represents the x:k XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: MdxKpi. + /// + /// + public static readonly XName k = x + "k"; + + /// + /// Represents the x:kpi XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Kpi. + /// + /// + public static readonly XName kpi = x + "kpi"; + + /// + /// Represents the x:kpis XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Kpis. + /// + /// + public static readonly XName kpis = x + "kpis"; + + /// + /// Represents the x:left XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LeftBorder. + /// + /// + public static readonly XName left = x + "left"; + + /// + /// Represents the x:legacyDrawing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LegacyDrawing. + /// + /// + public static readonly XName legacyDrawing = x + "legacyDrawing"; + + /// + /// Represents the x:legacyDrawingHF XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: LegacyDrawingHeaderFooter. + /// + /// + public static readonly XName legacyDrawingHF = x + "legacyDrawingHF"; + + /// + /// Represents the x:location XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Location. + /// + /// + public static readonly XName location = x + "location"; + + /// + /// Represents the x:m XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: MissingItem, MissingTable. + /// + /// + public static readonly XName m = x + "m"; + + /// + /// Represents the x:main XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Main. + /// + /// + public static readonly XName main = x + "main"; + + /// + /// Represents the x:map XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MeasureDimensionMap. + /// + /// + public static readonly XName map = x + "map"; + + /// + /// Represents the x:Map XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: Map. + /// + /// + public static readonly XName Map_ = x + "Map"; + + /// + /// Represents the x:MapInfo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MapInfo. + /// + /// + public static readonly XName MapInfo = x + "MapInfo"; + + /// + /// Represents the x:maps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Maps. + /// + /// + public static readonly XName maps = x + "maps"; + + /// + /// Represents the x:mdx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Mdx. + /// + /// + public static readonly XName mdx = x + "mdx"; + + /// + /// Represents the x:mdxMetadata XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MdxMetadata. + /// + /// + public static readonly XName mdxMetadata = x + "mdxMetadata"; + + /// + /// Represents the x:measureGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MeasureGroup. + /// + /// + public static readonly XName measureGroup = x + "measureGroup"; + + /// + /// Represents the x:measureGroups XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MeasureGroups. + /// + /// + public static readonly XName measureGroups = x + "measureGroups"; + + /// + /// Represents the x:member XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Member. + /// + /// + public static readonly XName member = x + "member"; + + /// + /// Represents the x:members XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Members. + /// + /// + public static readonly XName members = x + "members"; + + /// + /// Represents the x:mergeCell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MergeCell. + /// + /// + public static readonly XName mergeCell = x + "mergeCell"; + + /// + /// Represents the x:mergeCells XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MergeCells. + /// + /// + public static readonly XName mergeCells = x + "mergeCells"; + + /// + /// Represents the x:metadata XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: Metadata. + /// + /// + public static readonly XName metadata = x + "metadata"; + + /// + /// Represents the x:metadataStrings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MetadataStrings. + /// + /// + public static readonly XName metadataStrings = x + "metadataStrings"; + + /// + /// Represents the x:metadataType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: MetadataType. + /// + /// + public static readonly XName metadataType = x + "metadataType"; + + /// + /// Represents the x:metadataTypes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MetadataTypes. + /// + /// + public static readonly XName metadataTypes = x + "metadataTypes"; + + /// + /// Represents the x:mp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: MemberProperty. + /// + /// + public static readonly XName mp = x + "mp"; + + /// + /// Represents the x:mpMap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MemberPropertiesMap. + /// + /// + public static readonly XName mpMap = x + "mpMap"; + + /// + /// Represents the x:mps XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: MemberProperties. + /// + /// + public static readonly XName mps = x + "mps"; + + /// + /// Represents the x:mruColors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: MruColors. + /// + /// + public static readonly XName mruColors = x + "mruColors"; + + /// + /// Represents the x:ms XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: MdxSet. + /// + /// + public static readonly XName ms = x + "ms"; + + /// + /// Represents the x:n XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: NameIndex, NumberItem. + /// + /// + public static readonly XName n = x + "n"; + + /// + /// Represents the x:name XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontName. + /// + /// + public static readonly XName name = x + "name"; + + /// + /// Represents the x:nc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: NewCell. + /// + /// + public static readonly XName nc = x + "nc"; + + /// + /// Represents the x:ndxf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: NewDifferentialFormat. + /// + /// + public static readonly XName ndxf = x + "ndxf"; + + /// + /// Represents the x:numFmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: NumberingFormat. + /// + /// + public static readonly XName numFmt = x + "numFmt"; + + /// + /// Represents the x:numFmts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NumberingFormats. + /// + /// + public static readonly XName numFmts = x + "numFmts"; + + /// + /// Represents the x:objectPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: EmbeddedObjectProperties. + /// + /// + public static readonly XName objectPr = x + "objectPr"; + + /// + /// Represents the x:oc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: OldCell. + /// + /// + public static readonly XName oc = x + "oc"; + + /// + /// Represents the x:oddFooter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OddFooter. + /// + /// + public static readonly XName oddFooter = x + "oddFooter"; + + /// + /// Represents the x:oddHeader XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OddHeader. + /// + /// + public static readonly XName oddHeader = x + "oddHeader"; + + /// + /// Represents the x:odxf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: OldDifferentialFormat. + /// + /// + public static readonly XName odxf = x + "odxf"; + + /// + /// Represents the x:olapPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: OlapProperties. + /// + /// + public static readonly XName olapPr = x + "olapPr"; + + /// + /// Represents the x:oldFormula XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OldFormula. + /// + /// + public static readonly XName oldFormula = x + "oldFormula"; + + /// + /// Represents the x:oleItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: OleItem. + /// + /// + public static readonly XName oleItem = x + "oleItem"; + + /// + /// Represents the x:oleItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: OleItems. + /// + /// + public static readonly XName oleItems = x + "oleItems"; + + /// + /// Represents the x:oleLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: OleLink. + /// + /// + public static readonly XName oleLink = x + "oleLink"; + + /// + /// Represents the x:oleObject XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: OleObject. + /// + /// + public static readonly XName oleObject = x + "oleObject"; + + /// + /// Represents the x:oleObjects XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OleObjects. + /// + /// + public static readonly XName oleObjects = x + "oleObjects"; + + /// + /// Represents the x:oleSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OleSize. + /// + /// + public static readonly XName oleSize = x + "oleSize"; + + /// + /// Represents the x:outline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Outline. + /// + /// + public static readonly XName outline = x + "outline"; + + /// + /// Represents the x:outlinePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: OutlineProperties. + /// + /// + public static readonly XName outlinePr = x + "outlinePr"; + + /// + /// Represents the x:p XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MdxMemberProp. + /// + /// + public static readonly XName p = x + "p"; + + /// + /// Represents the x:page XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Page. + /// + /// + public static readonly XName page = x + "page"; + + /// + /// Represents the x:pageField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: PageField. + /// + /// + public static readonly XName pageField = x + "pageField"; + + /// + /// Represents the x:pageFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PageFields. + /// + /// + public static readonly XName pageFields = x + "pageFields"; + + /// + /// Represents the x:pageItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PageItem. + /// + /// + public static readonly XName pageItem = x + "pageItem"; + + /// + /// Represents the x:pageMargins XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: PageMargins. + /// + /// + public static readonly XName pageMargins = x + "pageMargins"; + + /// + /// Represents the x:pages XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Pages. + /// + /// + public static readonly XName pages = x + "pages"; + + /// + /// Represents the x:pageSetup XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ChartSheetPageSetup, PageSetup. + /// + /// + public static readonly XName pageSetup = x + "pageSetup"; + + /// + /// Represents the x:pageSetUpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PageSetupProperties. + /// + /// + public static readonly XName pageSetUpPr = x + "pageSetUpPr"; + + /// + /// Represents the x:pane XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Pane. + /// + /// + public static readonly XName pane = x + "pane"; + + /// + /// Represents the x:parameter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Parameter. + /// + /// + public static readonly XName parameter = x + "parameter"; + + /// + /// Represents the x:parameters XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Parameters. + /// + /// + public static readonly XName parameters = x + "parameters"; + + /// + /// Represents the x:patternFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PatternFill. + /// + /// + public static readonly XName patternFill = x + "patternFill"; + + /// + /// Represents the x:phoneticPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: PhoneticProperties. + /// + /// + public static readonly XName phoneticPr = x + "phoneticPr"; + + /// + /// Represents the x:picture XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Picture. + /// + /// + public static readonly XName picture = x + "picture"; + + /// + /// Represents the x:pivotArea XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotArea. + /// + /// + public static readonly XName pivotArea = x + "pivotArea"; + + /// + /// Represents the x:pivotAreas XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotAreas. + /// + /// + public static readonly XName pivotAreas = x + "pivotAreas"; + + /// + /// Represents the x:pivotCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PivotCache. + /// + /// + public static readonly XName pivotCache = x + "pivotCache"; + + /// + /// Represents the x:pivotCacheDefinition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotCacheDefinition. + /// + /// + public static readonly XName pivotCacheDefinition = x + "pivotCacheDefinition"; + + /// + /// Represents the x:pivotCacheRecords XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotCacheRecords. + /// + /// + public static readonly XName pivotCacheRecords = x + "pivotCacheRecords"; + + /// + /// Represents the x:pivotCaches XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PivotCaches. + /// + /// + public static readonly XName pivotCaches = x + "pivotCaches"; + + /// + /// Represents the x:pivotField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotField. + /// + /// + public static readonly XName pivotField = x + "pivotField"; + + /// + /// Represents the x:pivotFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotFields. + /// + /// + public static readonly XName pivotFields = x + "pivotFields"; + + /// + /// Represents the x:pivotHierarchies XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotHierarchies. + /// + /// + public static readonly XName pivotHierarchies = x + "pivotHierarchies"; + + /// + /// Represents the x:pivotHierarchy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotHierarchy. + /// + /// + public static readonly XName pivotHierarchy = x + "pivotHierarchy"; + + /// + /// Represents the x:pivotSelection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotSelection. + /// + /// + public static readonly XName pivotSelection = x + "pivotSelection"; + + /// + /// Represents the x:pivotTableDefinition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotTableDefinition. + /// + /// + public static readonly XName pivotTableDefinition = x + "pivotTableDefinition"; + + /// + /// Represents the x:pivotTableStyleInfo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: PivotTableStyle. + /// + /// + public static readonly XName pivotTableStyleInfo = x + "pivotTableStyleInfo"; + + /// + /// Represents the x:printOptions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: PrintOptions. + /// + /// + public static readonly XName printOptions = x + "printOptions"; + + /// + /// Represents the x:protectedRange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: ProtectedRange. + /// + /// + public static readonly XName protectedRange = x + "protectedRange"; + + /// + /// Represents the x:protectedRanges XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ProtectedRanges. + /// + /// + public static readonly XName protectedRanges = x + "protectedRanges"; + + /// + /// Represents the x:protection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Protection. + /// + /// + public static readonly XName protection = x + "protection"; + + /// + /// Represents the x:query XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Query. + /// + /// + public static readonly XName query = x + "query"; + + /// + /// Represents the x:queryCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: QueryCache. + /// + /// + public static readonly XName queryCache = x + "queryCache"; + + /// + /// Represents the x:queryTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: QueryTable. + /// + /// + public static readonly XName queryTable = x + "queryTable"; + + /// + /// Represents the x:queryTableDeletedFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: QueryTableDeletedFields. + /// + /// + public static readonly XName queryTableDeletedFields = x + "queryTableDeletedFields"; + + /// + /// Represents the x:queryTableField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: QueryTableField. + /// + /// + public static readonly XName queryTableField = x + "queryTableField"; + + /// + /// Represents the x:queryTableFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: QueryTableFields. + /// + /// + public static readonly XName queryTableFields = x + "queryTableFields"; + + /// + /// Represents the x:queryTableRefresh XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: QueryTableRefresh. + /// + /// + public static readonly XName queryTableRefresh = x + "queryTableRefresh"; + + /// + /// Represents the x:r XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotCacheRecord, Run. + /// + /// + public static readonly XName r = x + "r"; + + /// + /// Represents the x:raf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: RevisionAutoFormat. + /// + /// + public static readonly XName raf = x + "raf"; + + /// + /// Represents the x:rangePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: RangeProperties. + /// + /// + public static readonly XName rangePr = x + "rangePr"; + + /// + /// Represents the x:rangeSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: RangeSet. + /// + /// + public static readonly XName rangeSet = x + "rangeSet"; + + /// + /// Represents the x:rangeSets XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RangeSets. + /// + /// + public static readonly XName rangeSets = x + "rangeSets"; + + /// + /// Represents the x:rc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: MetadataRecord. + /// + /// + public static readonly XName rc = x + "rc"; + + /// + /// Represents the x:rcc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RevisionCellChange. + /// + /// + public static readonly XName rcc = x + "rcc"; + + /// + /// Represents the x:rcft XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: RevisionConflict. + /// + /// + public static readonly XName rcft = x + "rcft"; + + /// + /// Represents the x:rcmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RevisionComment. + /// + /// + public static readonly XName rcmt = x + "rcmt"; + + /// + /// Represents the x:rcv XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RevisionCustomView. + /// + /// + public static readonly XName rcv = x + "rcv"; + + /// + /// Represents the x:rdn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RevisionDefinedName. + /// + /// + public static readonly XName rdn = x + "rdn"; + + /// + /// Represents the x:reference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotAreaReference. + /// + /// + public static readonly XName reference = x + "reference"; + + /// + /// Represents the x:references XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotAreaReferences. + /// + /// + public static readonly XName references = x + "references"; + + /// + /// Represents the x:reviewed XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Reviewed. + /// + /// + public static readonly XName reviewed = x + "reviewed"; + + /// + /// Represents the x:reviewedList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ReviewedList. + /// + /// + public static readonly XName reviewedList = x + "reviewedList"; + + /// + /// Represents the x:revisions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Revisions. + /// + /// + public static readonly XName revisions = x + "revisions"; + + /// + /// Represents the x:rfmt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: RevisionFormat. + /// + /// + public static readonly XName rfmt = x + "rfmt"; + + /// + /// Represents the x:rFont XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RunFont. + /// + /// + public static readonly XName rFont = x + "rFont"; + + /// + /// Represents the x:rgbColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RgbColor. + /// + /// + public static readonly XName rgbColor = x + "rgbColor"; + + /// + /// Represents the x:right XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RightBorder. + /// + /// + public static readonly XName right = x + "right"; + + /// + /// Represents the x:ris XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: RevisionInsertSheet. + /// + /// + public static readonly XName ris = x + "ris"; + + /// + /// Represents the x:rm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: RevisionMove. + /// + /// + public static readonly XName rm = x + "rm"; + + /// + /// Represents the x:row XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ExternalRow, Row. + /// + /// + public static readonly XName row = x + "row"; + + /// + /// Represents the x:rowBreaks XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RowBreaks. + /// + /// + public static readonly XName rowBreaks = x + "rowBreaks"; + + /// + /// Represents the x:rowFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RowFields. + /// + /// + public static readonly XName rowFields = x + "rowFields"; + + /// + /// Represents the x:rowHierarchiesUsage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RowHierarchiesUsage. + /// + /// + public static readonly XName rowHierarchiesUsage = x + "rowHierarchiesUsage"; + + /// + /// Represents the x:rowHierarchyUsage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RowHierarchyUsage. + /// + /// + public static readonly XName rowHierarchyUsage = x + "rowHierarchyUsage"; + + /// + /// Represents the x:rowItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RowItems. + /// + /// + public static readonly XName rowItems = x + "rowItems"; + + /// + /// Represents the x:rPh XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PhoneticRun. + /// + /// + public static readonly XName rPh = x + "rPh"; + + /// + /// Represents the x:rPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: RunProperties. + /// + /// + public static readonly XName rPr = x + "rPr"; + + /// + /// Represents the x:rqt XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: RevisionQueryTable. + /// + /// + public static readonly XName rqt = x + "rqt"; + + /// + /// Represents the x:rrc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: RevisionRowColumn. + /// + /// + public static readonly XName rrc = x + "rrc"; + + /// + /// Represents the x:rsnm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: RevisionSheetName. + /// + /// + public static readonly XName rsnm = x + "rsnm"; + + /// + /// Represents the x:s XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CharacterValue, StringItem. + /// + /// + public static readonly XName s = x + "s"; + + /// + /// Represents the x:scenario XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: Scenario. + /// + /// + public static readonly XName scenario = x + "scenario"; + + /// + /// Represents the x:scenarios XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Scenarios. + /// + /// + public static readonly XName scenarios = x + "scenarios"; + + /// + /// Represents the x:Schema XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Schema. + /// + /// + public static readonly XName Schema = x + "Schema"; + + /// + /// Represents the x:scheme XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontScheme. + /// + /// + public static readonly XName scheme = x + "scheme"; + + /// + /// Represents the x:selection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Selection. + /// + /// + public static readonly XName selection = x + "selection"; + + /// + /// Represents the x:serverFormat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ServerFormat. + /// + /// + public static readonly XName serverFormat = x + "serverFormat"; + + /// + /// Represents the x:serverFormats XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ServerFormats. + /// + /// + public static readonly XName serverFormats = x + "serverFormats"; + + /// + /// Represents the x:set XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: TupleSet. + /// + /// + public static readonly XName set = x + "set"; + + /// + /// Represents the x:sets XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Sets. + /// + /// + public static readonly XName sets = x + "sets"; + + /// + /// Represents the x:shadow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Shadow. + /// + /// + public static readonly XName shadow = x + "shadow"; + + /// + /// Represents the x:sharedItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SharedItems. + /// + /// + public static readonly XName sharedItems = x + "sharedItems"; + + /// + /// Represents the x:sheet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Sheet. + /// + /// + public static readonly XName sheet = x + "sheet"; + + /// + /// Represents the x:sheetCalcPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SheetCalculationProperties. + /// + /// + public static readonly XName sheetCalcPr = x + "sheetCalcPr"; + + /// + /// Represents the x:sheetData XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ExternalSheetData, SheetData. + /// + /// + public static readonly XName sheetData = x + "sheetData"; + + /// + /// Represents the x:sheetDataSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SheetDataSet. + /// + /// + public static readonly XName sheetDataSet = x + "sheetDataSet"; + + /// + /// Represents the x:sheetFormatPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SheetFormatProperties. + /// + /// + public static readonly XName sheetFormatPr = x + "sheetFormatPr"; + + /// + /// Represents the x:sheetId XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SheetId. + /// + /// + public static readonly XName sheetId = x + "sheetId"; + + /// + /// Represents the x:sheetIdMap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SheetIdMap. + /// + /// + public static readonly XName sheetIdMap = x + "sheetIdMap"; + + /// + /// Represents the x:sheetName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SheetName. + /// + /// + public static readonly XName sheetName = x + "sheetName"; + + /// + /// Represents the x:sheetNames XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SheetNames. + /// + /// + public static readonly XName sheetNames = x + "sheetNames"; + + /// + /// Represents the x:sheetPr XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: ChartSheetProperties, SheetProperties. + /// + /// + public static readonly XName sheetPr = x + "sheetPr"; + + /// + /// Represents the x:sheetProtection XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ChartSheetProtection, SheetProtection. + /// + /// + public static readonly XName sheetProtection = x + "sheetProtection"; + + /// + /// Represents the x:sheets XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Sheets. + /// + /// + public static readonly XName sheets = x + "sheets"; + + /// + /// Represents the x:sheetView XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ChartSheetView, SheetView. + /// + /// + public static readonly XName sheetView = x + "sheetView"; + + /// + /// Represents the x:sheetViews XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ChartSheetViews, SheetViews. + /// + /// + public static readonly XName sheetViews = x + "sheetViews"; + + /// + /// Represents the x:si XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: SharedStringItem. + /// + /// + public static readonly XName si = x + "si"; + + /// + /// Represents the x:singleXmlCell XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: SingleXmlCell. + /// + /// + public static readonly XName singleXmlCell = x + "singleXmlCell"; + + /// + /// Represents the x:singleXmlCells XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SingleXmlCells. + /// + /// + public static readonly XName singleXmlCells = x + "singleXmlCells"; + + /// + /// Represents the x:sortByTuple XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SortByTuple. + /// + /// + public static readonly XName sortByTuple = x + "sortByTuple"; + + /// + /// Represents the x:sortCondition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: SortCondition. + /// + /// + public static readonly XName sortCondition = x + "sortCondition"; + + /// + /// Represents the x:sortState XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: SortState. + /// + /// + public static readonly XName sortState = x + "sortState"; + + /// + /// Represents the x:sst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SharedStringTable. + /// + /// + public static readonly XName sst = x + "sst"; + + /// + /// Represents the x:start XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: StartBorder. + /// + /// + public static readonly XName start = x + "start"; + + /// + /// Represents the x:stop XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GradientStop. + /// + /// + public static readonly XName stop = x + "stop"; + + /// + /// Represents the x:stp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Subtopic. + /// + /// + public static readonly XName stp = x + "stp"; + + /// + /// Represents the x:strike XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Strike. + /// + /// + public static readonly XName strike = x + "strike"; + + /// + /// Represents the x:styleSheet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Stylesheet. + /// + /// + public static readonly XName styleSheet = x + "styleSheet"; + + /// + /// Represents the x:sz XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FontSize. + /// + /// + public static readonly XName sz = x + "sz"; + + /// + /// Represents the x:t XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: MdxTuple, Text. + /// + /// + public static readonly XName t = x + "t"; + + /// + /// Represents the x:tabColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: TabColor. + /// + /// + public static readonly XName tabColor = x + "tabColor"; + + /// + /// Represents the x:table XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Table. + /// + /// + public static readonly XName table = x + "table"; + + /// + /// Represents the x:tableColumn XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TableColumn. + /// + /// + public static readonly XName tableColumn = x + "tableColumn"; + + /// + /// Represents the x:tableColumns XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableColumns. + /// + /// + public static readonly XName tableColumns = x + "tableColumns"; + + /// + /// Represents the x:tablePart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TablePart. + /// + /// + public static readonly XName tablePart = x + "tablePart"; + + /// + /// Represents the x:tableParts XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TableParts. + /// + /// + public static readonly XName tableParts = x + "tableParts"; + + /// + /// Represents the x:tables XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Tables. + /// + /// + public static readonly XName tables = x + "tables"; + + /// + /// Represents the x:tableStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: TableStyle. + /// + /// + public static readonly XName tableStyle = x + "tableStyle"; + + /// + /// Represents the x:tableStyleElement XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TableStyleElement. + /// + /// + public static readonly XName tableStyleElement = x + "tableStyleElement"; + + /// + /// Represents the x:tableStyleInfo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: TableStyleInfo. + /// + /// + public static readonly XName tableStyleInfo = x + "tableStyleInfo"; + + /// + /// Represents the x:tableStyles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: TableStyles. + /// + /// + public static readonly XName tableStyles = x + "tableStyles"; + + /// + /// Represents the x:text XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: CommentText. + /// + /// + public static readonly XName text = x + "text"; + + /// + /// Represents the x:textField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TextField. + /// + /// + public static readonly XName textField = x + "textField"; + + /// + /// Represents the x:textFields XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TextFields. + /// + /// + public static readonly XName textFields = x + "textFields"; + + /// + /// Represents the x:textPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TextProperties. + /// + /// + public static readonly XName textPr = x + "textPr"; + + /// + /// Represents the x:to XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ToMarker. + /// + /// + public static readonly XName to = x + "to"; + + /// + /// Represents the x:top XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TopBorder. + /// + /// + public static readonly XName top = x + "top"; + + /// + /// Represents the x:top10 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Top10. + /// + /// + public static readonly XName top10 = x + "top10"; + + /// + /// Represents the x:totalsRowFormula XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TotalsRowFormula. + /// + /// + public static readonly XName totalsRowFormula = x + "totalsRowFormula"; + + /// + /// Represents the x:tp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Topic. + /// + /// + public static readonly XName tp = x + "tp"; + + /// + /// Represents the x:tpl XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Tuple. + /// + /// + public static readonly XName tpl = x + "tpl"; + + /// + /// Represents the x:tpls XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Tuples. + /// + /// + public static readonly XName tpls = x + "tpls"; + + /// + /// Represents the x:tr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TopicReferences. + /// + /// + public static readonly XName tr = x + "tr"; + + /// + /// Represents the x:tupleCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// corresponds to the following strongly-typed classes: TupleCache. + /// + /// + public static readonly XName tupleCache = x + "tupleCache"; + + /// + /// Represents the x:u XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Underline. + /// + /// + public static readonly XName u = x + "u"; + + /// + /// Represents the x:undo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Undo. + /// + /// + public static readonly XName undo = x + "undo"; + + /// + /// Represents the x:userInfo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: UserInfo. + /// + /// + public static readonly XName userInfo = x + "userInfo"; + + /// + /// Represents the x:users XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Users. + /// + /// + public static readonly XName users = x + "users"; + + /// + /// Represents the x:v XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CellValue, Xstring. + /// + /// + public static readonly XName v = x + "v"; + + /// + /// Represents the x:val XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DdeLinkValue. + /// + /// + public static readonly XName val = x + "val"; + + /// + /// Represents the x:value XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Value. + /// + /// + public static readonly XName value = x + "value"; + + /// + /// Represents the x:valueMetadata XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ValueMetadata. + /// + /// + public static readonly XName valueMetadata = x + "valueMetadata"; + + /// + /// Represents the x:values XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Values. + /// + /// + public static readonly XName values = x + "values"; + + /// + /// Represents the x:vertAlign XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VerticalTextAlignment. + /// + /// + public static readonly XName vertAlign = x + "vertAlign"; + + /// + /// Represents the x:vertical XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VerticalBorder. + /// + /// + public static readonly XName vertical = x + "vertical"; + + /// + /// Represents the x:volType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: VolatileType. + /// + /// + public static readonly XName volType = x + "volType"; + + /// + /// Represents the x:volTypes XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: VolatileTypes. + /// + /// + public static readonly XName volTypes = x + "volTypes"; + + /// + /// Represents the x:webPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: WebQueryProperties. + /// + /// + public static readonly XName webPr = x + "webPr"; + + /// + /// Represents the x:webPublishing XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: WebPublishing. + /// + /// + public static readonly XName webPublishing = x + "webPublishing"; + + /// + /// Represents the x:webPublishItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: WebPublishItem. + /// + /// + public static readonly XName webPublishItem = x + "webPublishItem"; + + /// + /// Represents the x:webPublishItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebPublishItems. + /// + /// + public static readonly XName webPublishItems = x + "webPublishItems"; + + /// + /// Represents the x:webPublishObject XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , . + /// corresponds to the following strongly-typed classes: WebPublishObject. + /// + /// + public static readonly XName webPublishObject = x + "webPublishObject"; + + /// + /// Represents the x:webPublishObjects XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebPublishObjects. + /// + /// + public static readonly XName webPublishObjects = x + "webPublishObjects"; + + /// + /// Represents the x:workbook XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Workbook. + /// + /// + public static readonly XName workbook = x + "workbook"; + + /// + /// Represents the x:workbookPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: WorkbookProperties. + /// + /// + public static readonly XName workbookPr = x + "workbookPr"; + + /// + /// Represents the x:workbookProtection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: WorkbookProtection. + /// + /// + public static readonly XName workbookProtection = x + "workbookProtection"; + + /// + /// Represents the x:workbookView XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: WorkbookView. + /// + /// + public static readonly XName workbookView = x + "workbookView"; + + /// + /// Represents the x:worksheet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Worksheet. + /// + /// + public static readonly XName worksheet = x + "worksheet"; + + /// + /// Represents the x:worksheetSource XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: WorksheetSource. + /// + /// + public static readonly XName worksheetSource = x + "worksheetSource"; + + /// + /// Represents the x:x XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: FieldItem, MemberPropertyIndex. + /// + /// + public static readonly XName x_ = x + "x"; + + /// + /// Represents the x:xf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: CellFormat. + /// + /// + public static readonly XName xf = x + "xf"; + + /// + /// Represents the x:xmlCellPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: XmlCellProperties. + /// + /// + public static readonly XName xmlCellPr = x + "xmlCellPr"; + + /// + /// Represents the x:xmlColumnPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: XmlColumnProperties. + /// + /// + public static readonly XName xmlColumnPr = x + "xmlColumnPr"; + + /// + /// Represents the x:xmlPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: XmlProperties. + /// + /// + public static readonly XName xmlPr = x + "xmlPr"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X12AC.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X12AC.g.cs new file mode 100644 index 000000000..4ac8287e8 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X12AC.g.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:x12ac="http://schemas.microsoft.com/office/spreadsheetml/2011/1/ac" namespace. + /// + public static class X12AC + { + /// + /// Defines the XML namespace associated with the x12ac prefix. + /// + public static readonly XNamespace x12ac = "http://schemas.microsoft.com/office/spreadsheetml/2011/1/ac"; + + /// + /// Represents the x12ac:list XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: List. + /// + /// + public static readonly XName list = x12ac + "list"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X14.g.cs new file mode 100644 index 000000000..385f52276 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X14.g.cs @@ -0,0 +1,1498 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:x14="http://schemas.microsoft.com/office/spreadsheetml/2009/9/main" namespace. + /// + public static class X14 + { + /// + /// Defines the XML namespace associated with the x14 prefix. + /// + public static readonly XNamespace x14 = "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main"; + + /// + /// Represents the x14:argumentDescription XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ArgumentDescription. + /// + /// + public static readonly XName argumentDescription = x14 + "argumentDescription"; + + /// + /// Represents the x14:argumentDescriptions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ArgumentDescriptions. + /// + /// + public static readonly XName argumentDescriptions = x14 + "argumentDescriptions"; + + /// + /// Represents the x14:axisColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: BarAxisColor. + /// + /// + public static readonly XName axisColor = x14 + "axisColor"; + + /// + /// Represents the x14:borderColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: BorderColor. + /// + /// + public static readonly XName borderColor = x14 + "borderColor"; + + /// + /// Represents the x14:cacheField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CacheField. + /// + /// + public static readonly XName cacheField = x14 + "cacheField"; + + /// + /// Represents the x14:cacheHierarchy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: CacheHierarchy. + /// + /// + public static readonly XName cacheHierarchy = x14 + "cacheHierarchy"; + + /// + /// Represents the x14:calculatedMember XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: CalculatedMember. + /// + /// + public static readonly XName calculatedMember = x14 + "calculatedMember"; + + /// + /// Represents the x14:calculatedMembers XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CalculatedMembers. + /// + /// + public static readonly XName calculatedMembers = x14 + "calculatedMembers"; + + /// + /// Represents the x14:cfIcon XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ConditionalFormattingIcon. + /// + /// + public static readonly XName cfIcon = x14 + "cfIcon"; + + /// + /// Represents the x14:cfRule XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: ConditionalFormattingRule. + /// + /// + public static readonly XName cfRule = x14 + "cfRule"; + + /// + /// Represents the x14:cfvo XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ConditionalFormattingValueObject. + /// + /// + public static readonly XName cfvo = x14 + "cfvo"; + + /// + /// Represents the x14:color XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Color. + /// + /// + public static readonly XName color = x14 + "color"; + + /// + /// Represents the x14:colorAxis XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: AxisColor. + /// + /// + public static readonly XName colorAxis = x14 + "colorAxis"; + + /// + /// Represents the x14:colorFirst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: FirstMarkerColor. + /// + /// + public static readonly XName colorFirst = x14 + "colorFirst"; + + /// + /// Represents the x14:colorHigh XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: HighMarkerColor. + /// + /// + public static readonly XName colorHigh = x14 + "colorHigh"; + + /// + /// Represents the x14:colorLast XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: LastMarkerColor. + /// + /// + public static readonly XName colorLast = x14 + "colorLast"; + + /// + /// Represents the x14:colorLow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: LowMarkerColor. + /// + /// + public static readonly XName colorLow = x14 + "colorLow"; + + /// + /// Represents the x14:colorMarkers XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: MarkersColor. + /// + /// + public static readonly XName colorMarkers = x14 + "colorMarkers"; + + /// + /// Represents the x14:colorNegative XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NegativeColor. + /// + /// + public static readonly XName colorNegative = x14 + "colorNegative"; + + /// + /// Represents the x14:colorScale XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ColorScale. + /// + /// + public static readonly XName colorScale = x14 + "colorScale"; + + /// + /// Represents the x14:colorSeries XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: SeriesColor. + /// + /// + public static readonly XName colorSeries = x14 + "colorSeries"; + + /// + /// Represents the x14:conditionalFormat XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ConditionalFormat. + /// + /// + public static readonly XName conditionalFormat = x14 + "conditionalFormat"; + + /// + /// Represents the x14:conditionalFormats XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConditionalFormats. + /// + /// + public static readonly XName conditionalFormats = x14 + "conditionalFormats"; + + /// + /// Represents the x14:conditionalFormatting XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ConditionalFormatting. + /// + /// + public static readonly XName conditionalFormatting = x14 + "conditionalFormatting"; + + /// + /// Represents the x14:conditionalFormattings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ConditionalFormattings. + /// + /// + public static readonly XName conditionalFormattings = x14 + "conditionalFormattings"; + + /// + /// Represents the x14:connection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Connection. + /// + /// + public static readonly XName connection = x14 + "connection"; + + /// + /// Represents the x14:customFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CustomFilter. + /// + /// + public static readonly XName customFilter = x14 + "customFilter"; + + /// + /// Represents the x14:customFilters XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CustomFilters. + /// + /// + public static readonly XName customFilters = x14 + "customFilters"; + + /// + /// Represents the x14:data XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: SlicerCacheData. + /// + /// + public static readonly XName data = x14 + "data"; + + /// + /// Represents the x14:dataBar XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: DataBar. + /// + /// + public static readonly XName dataBar = x14 + "dataBar"; + + /// + /// Represents the x14:dataField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: DataField. + /// + /// + public static readonly XName dataField = x14 + "dataField"; + + /// + /// Represents the x14:datastoreItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DatastoreItem. + /// + /// + public static readonly XName datastoreItem = x14 + "datastoreItem"; + + /// + /// Represents the x14:dataValidation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: DataValidation. + /// + /// + public static readonly XName dataValidation = x14 + "dataValidation"; + + /// + /// Represents the x14:dataValidations XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: DataValidations. + /// + /// + public static readonly XName dataValidations = x14 + "dataValidations"; + + /// + /// Represents the x14:definedName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DefinedName. + /// + /// + public static readonly XName definedName = x14 + "definedName"; + + /// + /// Represents the x14:definedNames XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DefinedNames. + /// + /// + public static readonly XName definedNames = x14 + "definedNames"; + + /// + /// Represents the x14:dxf XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , . + /// corresponds to the following strongly-typed classes: DifferentialType. + /// + /// + public static readonly XName dxf = x14 + "dxf"; + + /// + /// Represents the x14:dxfs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DifferentialFormats. + /// + /// + public static readonly XName dxfs = x14 + "dxfs"; + + /// + /// Represents the x14:editValue XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotEditValue. + /// + /// + public static readonly XName editValue = x14 + "editValue"; + + /// + /// Represents the x14:extLst XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ExtensionList, SlicerCacheDefinitionExtensionList. + /// + /// + public static readonly XName extLst = x14 + "extLst"; + + /// + /// Represents the x14:fillColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: FillColor. + /// + /// + public static readonly XName fillColor = x14 + "fillColor"; + + /// + /// Represents the x14:filter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: Filter. + /// + /// + public static readonly XName filter = x14 + "filter"; + + /// + /// Represents the x14:formControlPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: FormControlProperties. + /// + /// + public static readonly XName formControlPr = x14 + "formControlPr"; + + /// + /// Represents the x14:formula1 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DataValidationForumla1. + /// + /// + public static readonly XName formula1 = x14 + "formula1"; + + /// + /// Represents the x14:formula2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DataValidationForumla2. + /// + /// + public static readonly XName formula2 = x14 + "formula2"; + + /// + /// Represents the x14:header XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TupleSetHeader. + /// + /// + public static readonly XName header = x14 + "header"; + + /// + /// Represents the x14:headers XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TupleSetHeaders. + /// + /// + public static readonly XName headers = x14 + "headers"; + + /// + /// Represents the x14:i XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: OlapSlicerCacheItem, TabularSlicerCacheItem. + /// + /// + public static readonly XName i = x14 + "i"; + + /// + /// Represents the x14:iconFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: IconFilter. + /// + /// + public static readonly XName iconFilter = x14 + "iconFilter"; + + /// + /// Represents the x14:iconSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: IconSet. + /// + /// + public static readonly XName iconSet = x14 + "iconSet"; + + /// + /// Represents the x14:id XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Id. + /// + /// + public static readonly XName id = x14 + "id"; + + /// + /// Represents the x14:ignoredError XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , . + /// corresponds to the following strongly-typed classes: IgnoredError. + /// + /// + public static readonly XName ignoredError = x14 + "ignoredError"; + + /// + /// Represents the x14:ignoredErrors XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: IgnoredErrors. + /// + /// + public static readonly XName ignoredErrors = x14 + "ignoredErrors"; + + /// + /// Represents the x14:item XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ListItem. + /// + /// + public static readonly XName item = x14 + "item"; + + /// + /// Represents the x14:itemLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ListItems. + /// + /// + public static readonly XName itemLst = x14 + "itemLst"; + + /// + /// Represents the x14:items XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TabularSlicerCacheItems. + /// + /// + public static readonly XName items = x14 + "items"; + + /// + /// Represents the x14:level XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: OlapSlicerCacheLevelData. + /// + /// + public static readonly XName level = x14 + "level"; + + /// + /// Represents the x14:levels XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OlapSlicerCacheLevelsData. + /// + /// + public static readonly XName levels = x14 + "levels"; + + /// + /// Represents the x14:negativeBorderColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NegativeBorderColor. + /// + /// + public static readonly XName negativeBorderColor = x14 + "negativeBorderColor"; + + /// + /// Represents the x14:negativeFillColor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NegativeFillColor. + /// + /// + public static readonly XName negativeFillColor = x14 + "negativeFillColor"; + + /// + /// Represents the x14:olap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OlapSlicerCache. + /// + /// + public static readonly XName olap = x14 + "olap"; + + /// + /// Represents the x14:oleItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: OleItem. + /// + /// + public static readonly XName oleItem = x14 + "oleItem"; + + /// + /// Represents the x14:p XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OlapSlicerCacheItemParent. + /// + /// + public static readonly XName p = x14 + "p"; + + /// + /// Represents the x14:pivotArea XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotArea. + /// + /// + public static readonly XName pivotArea = x14 + "pivotArea"; + + /// + /// Represents the x14:pivotAreas XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotAreas. + /// + /// + public static readonly XName pivotAreas = x14 + "pivotAreas"; + + /// + /// Represents the x14:pivotCacheDefinition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: PivotCacheDefinition. + /// + /// + public static readonly XName pivotCacheDefinition = x14 + "pivotCacheDefinition"; + + /// + /// Represents the x14:pivotCaches XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PivotCaches. + /// + /// + public static readonly XName pivotCaches = x14 + "pivotCaches"; + + /// + /// Represents the x14:pivotChange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PivotChange. + /// + /// + public static readonly XName pivotChange = x14 + "pivotChange"; + + /// + /// Represents the x14:pivotChanges XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PivotChanges. + /// + /// + public static readonly XName pivotChanges = x14 + "pivotChanges"; + + /// + /// Represents the x14:pivotEdit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: PivotEdit. + /// + /// + public static readonly XName pivotEdit = x14 + "pivotEdit"; + + /// + /// Represents the x14:pivotEdits XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PivotEdits. + /// + /// + public static readonly XName pivotEdits = x14 + "pivotEdits"; + + /// + /// Represents the x14:pivotField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PivotField. + /// + /// + public static readonly XName pivotField = x14 + "pivotField"; + + /// + /// Represents the x14:pivotHierarchy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotHierarchy. + /// + /// + public static readonly XName pivotHierarchy = x14 + "pivotHierarchy"; + + /// + /// Represents the x14:pivotTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SlicerCachePivotTable. + /// + /// + public static readonly XName pivotTable = x14 + "pivotTable"; + + /// + /// Represents the x14:pivotTableDefinition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , , , , , , . + /// corresponds to the following strongly-typed classes: PivotTableDefinition. + /// + /// + public static readonly XName pivotTableDefinition = x14 + "pivotTableDefinition"; + + /// + /// Represents the x14:pivotTables XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlicerCachePivotTables. + /// + /// + public static readonly XName pivotTables = x14 + "pivotTables"; + + /// + /// Represents the x14:protectedRange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: ProtectedRange. + /// + /// + public static readonly XName protectedRange = x14 + "protectedRange"; + + /// + /// Represents the x14:protectedRanges XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ProtectedRanges. + /// + /// + public static readonly XName protectedRanges = x14 + "protectedRanges"; + + /// + /// Represents the x14:range XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OlapSlicerCacheRange. + /// + /// + public static readonly XName range = x14 + "range"; + + /// + /// Represents the x14:ranges XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OlapSlicerCacheRanges. + /// + /// + public static readonly XName ranges = x14 + "ranges"; + + /// + /// Represents the x14:row XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TupleSetRow. + /// + /// + public static readonly XName row = x14 + "row"; + + /// + /// Represents the x14:rowItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TupleSetRowItem. + /// + /// + public static readonly XName rowItem = x14 + "rowItem"; + + /// + /// Represents the x14:rows XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TupleSetRows. + /// + /// + public static readonly XName rows = x14 + "rows"; + + /// + /// Represents the x14:selection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OlapSlicerCacheSelection. + /// + /// + public static readonly XName selection = x14 + "selection"; + + /// + /// Represents the x14:selections XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OlapSlicerCacheSelections. + /// + /// + public static readonly XName selections = x14 + "selections"; + + /// + /// Represents the x14:setLevel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SetLevel. + /// + /// + public static readonly XName setLevel = x14 + "setLevel"; + + /// + /// Represents the x14:setLevels XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SetLevels. + /// + /// + public static readonly XName setLevels = x14 + "setLevels"; + + /// + /// Represents the x14:slicer XML elements. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Slicer, SlicerRef. + /// + /// + public static readonly XName slicer = x14 + "slicer"; + + /// + /// Represents the x14:slicerCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SlicerCache. + /// + /// + public static readonly XName slicerCache = x14 + "slicerCache"; + + /// + /// Represents the x14:slicerCacheDefinition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SlicerCacheDefinition. + /// + /// + public static readonly XName slicerCacheDefinition = x14 + "slicerCacheDefinition"; + + /// + /// Represents the x14:slicerCaches XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlicerCaches. + /// + /// + public static readonly XName slicerCaches = x14 + "slicerCaches"; + + /// + /// Represents the x14:slicerList XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlicerList. + /// + /// + public static readonly XName slicerList = x14 + "slicerList"; + + /// + /// Represents the x14:slicers XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Slicers. + /// + /// + public static readonly XName slicers = x14 + "slicers"; + + /// + /// Represents the x14:slicerStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SlicerStyle. + /// + /// + public static readonly XName slicerStyle = x14 + "slicerStyle"; + + /// + /// Represents the x14:slicerStyleElement XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SlicerStyleElement. + /// + /// + public static readonly XName slicerStyleElement = x14 + "slicerStyleElement"; + + /// + /// Represents the x14:slicerStyleElements XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlicerStyleElements. + /// + /// + public static readonly XName slicerStyleElements = x14 + "slicerStyleElements"; + + /// + /// Represents the x14:slicerStyles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SlicerStyles. + /// + /// + public static readonly XName slicerStyles = x14 + "slicerStyles"; + + /// + /// Represents the x14:sortCondition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: SortCondition. + /// + /// + public static readonly XName sortCondition = x14 + "sortCondition"; + + /// + /// Represents the x14:sourceConnection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SourceConnection. + /// + /// + public static readonly XName sourceConnection = x14 + "sourceConnection"; + + /// + /// Represents the x14:sparkline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: Sparkline. + /// + /// + public static readonly XName sparkline = x14 + "sparkline"; + + /// + /// Represents the x14:sparklineGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , . + /// has the following XML attributes: , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: SparklineGroup. + /// + /// + public static readonly XName sparklineGroup = x14 + "sparklineGroup"; + + /// + /// Represents the x14:sparklineGroups XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SparklineGroups. + /// + /// + public static readonly XName sparklineGroups = x14 + "sparklineGroups"; + + /// + /// Represents the x14:sparklines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Sparklines. + /// + /// + public static readonly XName sparklines = x14 + "sparklines"; + + /// + /// Represents the x14:table XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Table. + /// + /// + public static readonly XName table = x14 + "table"; + + /// + /// Represents the x14:tabular XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: TabularSlicerCache. + /// + /// + public static readonly XName tabular = x14 + "tabular"; + + /// + /// Represents the x14:tupleItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Xstring. + /// + /// + public static readonly XName tupleItem = x14 + "tupleItem"; + + /// + /// Represents the x14:tupleItems XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TupleItems. + /// + /// + public static readonly XName tupleItems = x14 + "tupleItems"; + + /// + /// Represents the x14:tupleSet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TupleSet. + /// + /// + public static readonly XName tupleSet = x14 + "tupleSet"; + + /// + /// Represents the x14:userEdit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: PivotUserEdit. + /// + /// + public static readonly XName userEdit = x14 + "userEdit"; + + /// + /// Represents the x14:values XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: DdeValues. + /// + /// + public static readonly XName values = x14 + "values"; + + /// + /// Represents the x14:workbookPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: WorkbookProperties. + /// + /// + public static readonly XName workbookPr = x14 + "workbookPr"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X14AC.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X14AC.g.cs new file mode 100644 index 000000000..44e0dca57 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X14AC.g.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac" namespace. + /// + public static class X14AC + { + /// + /// Defines the XML namespace associated with the x14ac prefix. + /// + public static readonly XNamespace x14ac = "http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"; + + /// + /// Represents the x14ac:dyDescent XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , . + /// corresponds to the following strongly-typed properties: Row.DyDescent, SheetFormatProperties.DyDescent. + /// + /// + public static readonly XName dyDescent = x14ac + "dyDescent"; + + /// + /// Represents the x14ac:knownFonts XML attribute. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: . + /// corresponds to the following strongly-typed properties: Fonts.KnownFonts. + /// + /// + public static readonly XName knownFonts = x14ac + "knownFonts"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X15.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X15.g.cs new file mode 100644 index 000000000..16ff0467b --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X15.g.cs @@ -0,0 +1,839 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:x15="http://schemas.microsoft.com/office/spreadsheetml/2010/11/main" namespace. + /// + public static class X15 + { + /// + /// Defines the XML namespace associated with the x15 prefix. + /// + public static readonly XNamespace x15 = "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main"; + + /// + /// Represents the x15:activeTabTopLevelEntity XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: FieldListActiveTabTopLevelEntity. + /// + /// + public static readonly XName activeTabTopLevelEntity = x15 + "activeTabTopLevelEntity"; + + /// + /// Represents the x15:bounds XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: BoundsTimelineRange. + /// + /// + public static readonly XName bounds = x15 + "bounds"; + + /// + /// Represents the x15:c XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PivotValueCell. + /// + /// + public static readonly XName c = x15 + "c"; + + /// + /// Represents the x15:cachedUniqueName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: CachedUniqueName. + /// + /// + public static readonly XName cachedUniqueName = x15 + "cachedUniqueName"; + + /// + /// Represents the x15:cachedUniqueNames XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: CachedUniqueNames. + /// + /// + public static readonly XName cachedUniqueNames = x15 + "cachedUniqueNames"; + + /// + /// Represents the x15:cacheHierarchy XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: CacheHierarchy. + /// + /// + public static readonly XName cacheHierarchy = x15 + "cacheHierarchy"; + + /// + /// Represents the x15:calculatedMember XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: CalculatedMember. + /// + /// + public static readonly XName calculatedMember = x15 + "calculatedMember"; + + /// + /// Represents the x15:connection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: Connection. + /// + /// + public static readonly XName connection = x15 + "connection"; + + /// + /// Represents the x15:dataFeedPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataFeedProperties. + /// + /// + public static readonly XName dataFeedPr = x15 + "dataFeedPr"; + + /// + /// Represents the x15:dataField XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataField. + /// + /// + public static readonly XName dataField = x15 + "dataField"; + + /// + /// Represents the x15:dataModel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DataModel. + /// + /// + public static readonly XName dataModel = x15 + "dataModel"; + + /// + /// Represents the x15:dbCommand XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DbCommand. + /// + /// + public static readonly XName dbCommand = x15 + "dbCommand"; + + /// + /// Represents the x15:dbTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DbTable. + /// + /// + public static readonly XName dbTable = x15 + "dbTable"; + + /// + /// Represents the x15:dbTables XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: DbTables. + /// + /// + public static readonly XName dbTables = x15 + "dbTables"; + + /// + /// Represents the x15:dxfs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: DifferentialFormats. + /// + /// + public static readonly XName dxfs = x15 + "dxfs"; + + /// + /// Represents the x15:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ExtensionList. + /// + /// + public static readonly XName extLst = x15 + "extLst"; + + /// + /// Represents the x15:modelRelationship XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: ModelRelationship. + /// + /// + public static readonly XName modelRelationship = x15 + "modelRelationship"; + + /// + /// Represents the x15:modelRelationships XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ModelRelationships. + /// + /// + public static readonly XName modelRelationships = x15 + "modelRelationships"; + + /// + /// Represents the x15:modelTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: ModelTable. + /// + /// + public static readonly XName modelTable = x15 + "modelTable"; + + /// + /// Represents the x15:modelTables XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: ModelTables. + /// + /// + public static readonly XName modelTables = x15 + "modelTables"; + + /// + /// Represents the x15:modelTextPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ModelTextProperties. + /// + /// + public static readonly XName modelTextPr = x15 + "modelTextPr"; + + /// + /// Represents the x15:movingPeriodState XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: MovingPeriodState. + /// + /// + public static readonly XName movingPeriodState = x15 + "movingPeriodState"; + + /// + /// Represents the x15:oledbPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: OleDbPrpoperties. + /// + /// + public static readonly XName oledbPr = x15 + "oledbPr"; + + /// + /// Represents the x15:pivotCacheDecoupled XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotCacheDecoupled. + /// + /// + public static readonly XName pivotCacheDecoupled = x15 + "pivotCacheDecoupled"; + + /// + /// Represents the x15:pivotCacheIdVersion XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PivotCacheIdVersion. + /// + /// + public static readonly XName pivotCacheIdVersion = x15 + "pivotCacheIdVersion"; + + /// + /// Represents the x15:pivotCaches XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PivotCaches. + /// + /// + public static readonly XName pivotCaches = x15 + "pivotCaches"; + + /// + /// Represents the x15:pivotFilter XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotFilter. + /// + /// + public static readonly XName pivotFilter = x15 + "pivotFilter"; + + /// + /// Represents the x15:pivotRow XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PivotRow. + /// + /// + public static readonly XName pivotRow = x15 + "pivotRow"; + + /// + /// Represents the x15:pivotTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TimelineCachePivotTable. + /// + /// + public static readonly XName pivotTable = x15 + "pivotTable"; + + /// + /// Represents the x15:pivotTableData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: PivotTableData. + /// + /// + public static readonly XName pivotTableData = x15 + "pivotTableData"; + + /// + /// Represents the x15:pivotTableReference XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: PivotTableReference. + /// + /// + public static readonly XName pivotTableReference = x15 + "pivotTableReference"; + + /// + /// Represents the x15:pivotTableReferences XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: PivotTableReferences. + /// + /// + public static readonly XName pivotTableReferences = x15 + "pivotTableReferences"; + + /// + /// Represents the x15:pivotTables XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TimelineCachePivotTables. + /// + /// + public static readonly XName pivotTables = x15 + "pivotTables"; + + /// + /// Represents the x15:pivotTableUISettings XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: PivotTableUISettings. + /// + /// + public static readonly XName pivotTableUISettings = x15 + "pivotTableUISettings"; + + /// + /// Represents the x15:queryTable XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: QueryTable. + /// + /// + public static readonly XName queryTable = x15 + "queryTable"; + + /// + /// Represents the x15:rangePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: RangeProperties. + /// + /// + public static readonly XName rangePr = x15 + "rangePr"; + + /// + /// Represents the x15:selection XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SelectionTimelineRange. + /// + /// + public static readonly XName selection = x15 + "selection"; + + /// + /// Represents the x15:slicerCacheHideItemsWithNoData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: SlicerCacheHideItemsWithNoData. + /// + /// + public static readonly XName slicerCacheHideItemsWithNoData = x15 + "slicerCacheHideItemsWithNoData"; + + /// + /// Represents the x15:slicerCacheOlapLevelName XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: SlicerCacheOlapLevelName. + /// + /// + public static readonly XName slicerCacheOlapLevelName = x15 + "slicerCacheOlapLevelName"; + + /// + /// Represents the x15:slicerCachePivotTables XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlicerCachePivotTables. + /// + /// + public static readonly XName slicerCachePivotTables = x15 + "slicerCachePivotTables"; + + /// + /// Represents the x15:slicerCaches XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: SlicerCaches. + /// + /// + public static readonly XName slicerCaches = x15 + "slicerCaches"; + + /// + /// Represents the x15:state XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , , , , , . + /// corresponds to the following strongly-typed classes: TimelineState. + /// + /// + public static readonly XName state = x15 + "state"; + + /// + /// Represents the x15:tableSlicerCache XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: TableSlicerCache. + /// + /// + public static readonly XName tableSlicerCache = x15 + "tableSlicerCache"; + + /// + /// Represents the x15:textPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: TextProperties. + /// + /// + public static readonly XName textPr = x15 + "textPr"; + + /// + /// Represents the x15:timeline XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Timeline. + /// + /// + public static readonly XName timeline = x15 + "timeline"; + + /// + /// Represents the x15:timelineCacheDefinition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TimelineCacheDefinition. + /// + /// + public static readonly XName timelineCacheDefinition = x15 + "timelineCacheDefinition"; + + /// + /// Represents the x15:timelineCachePivotCaches XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TimelineCachePivotCaches. + /// + /// + public static readonly XName timelineCachePivotCaches = x15 + "timelineCachePivotCaches"; + + /// + /// Represents the x15:timelineCacheRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimelineCacheReference. + /// + /// + public static readonly XName timelineCacheRef = x15 + "timelineCacheRef"; + + /// + /// Represents the x15:timelineCacheRefs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TimelineCacheReferences. + /// + /// + public static readonly XName timelineCacheRefs = x15 + "timelineCacheRefs"; + + /// + /// Represents the x15:timelinePivotCacheDefinition XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimelinePivotCacheDefinition. + /// + /// + public static readonly XName timelinePivotCacheDefinition = x15 + "timelinePivotCacheDefinition"; + + /// + /// Represents the x15:timelineRef XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimelineReference. + /// + /// + public static readonly XName timelineRef = x15 + "timelineRef"; + + /// + /// Represents the x15:timelineRefs XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TimelineReferences. + /// + /// + public static readonly XName timelineRefs = x15 + "timelineRefs"; + + /// + /// Represents the x15:timelines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: Timelines. + /// + /// + public static readonly XName timelines = x15 + "timelines"; + + /// + /// Represents the x15:timelineStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimelineStyle. + /// + /// + public static readonly XName timelineStyle = x15 + "timelineStyle"; + + /// + /// Represents the x15:timelineStyleElement XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: TimelineStyleElement. + /// + /// + public static readonly XName timelineStyleElement = x15 + "timelineStyleElement"; + + /// + /// Represents the x15:timelineStyleElements XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: TimelineStyleElements. + /// + /// + public static readonly XName timelineStyleElements = x15 + "timelineStyleElements"; + + /// + /// Represents the x15:timelineStyles XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TimelineStyles. + /// + /// + public static readonly XName timelineStyles = x15 + "timelineStyles"; + + /// + /// Represents the x15:v XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Xstring. + /// + /// + public static readonly XName v = x15 + "v"; + + /// + /// Represents the x15:webExtension XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WebExtension. + /// + /// + public static readonly XName webExtension = x15 + "webExtension"; + + /// + /// Represents the x15:webExtensions XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: WebExtensions. + /// + /// + public static readonly XName webExtensions = x15 + "webExtensions"; + + /// + /// Represents the x15:workbookPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: WorkbookProperties. + /// + /// + public static readonly XName workbookPr = x15 + "workbookPr"; + + /// + /// Represents the x15:x XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , , , , , , . + /// corresponds to the following strongly-typed classes: PivotValueCellExtra. + /// + /// + public static readonly XName x = x15 + "x"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X15AC.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X15AC.g.cs new file mode 100644 index 000000000..499739c23 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/X15AC.g.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:x15ac="http://schemas.microsoft.com/office/spreadsheetml/2010/11/ac" namespace. + /// + public static class X15AC + { + /// + /// Defines the XML namespace associated with the x15ac prefix. + /// + public static readonly XNamespace x15ac = "http://schemas.microsoft.com/office/spreadsheetml/2010/11/ac"; + + /// + /// Represents the x15ac:absPath XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: AbsolutePath. + /// + /// + public static readonly XName absPath = x15ac + "absPath"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XDR.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XDR.g.cs new file mode 100644 index 000000000..88b308bc4 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XDR.g.cs @@ -0,0 +1,495 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:xdr="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" namespace. + /// + public static class XDR + { + /// + /// Defines the XML namespace associated with the xdr prefix. + /// + public static readonly XNamespace xdr = "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"; + + /// + /// Represents the xdr:absoluteAnchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: AbsoluteAnchor. + /// + /// + public static readonly XName absoluteAnchor = xdr + "absoluteAnchor"; + + /// + /// Represents the xdr:blipFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: BlipFill. + /// + /// + public static readonly XName blipFill = xdr + "blipFill"; + + /// + /// Represents the xdr:clientData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ClientData. + /// + /// + public static readonly XName clientData = xdr + "clientData"; + + /// + /// Represents the xdr:cNvCxnSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: NonVisualConnectorShapeDrawingProperties. + /// + /// + public static readonly XName cNvCxnSpPr = xdr + "cNvCxnSpPr"; + + /// + /// Represents the xdr:cNvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameDrawingProperties. + /// + /// + public static readonly XName cNvGraphicFramePr = xdr + "cNvGraphicFramePr"; + + /// + /// Represents the xdr:cNvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupShapeDrawingProperties. + /// + /// + public static readonly XName cNvGrpSpPr = xdr + "cNvGrpSpPr"; + + /// + /// Represents the xdr:cNvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualPictureDrawingProperties. + /// + /// + public static readonly XName cNvPicPr = xdr + "cNvPicPr"; + + /// + /// Represents the xdr:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = xdr + "cNvPr"; + + /// + /// Represents the xdr:cNvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualShapeDrawingProperties. + /// + /// + public static readonly XName cNvSpPr = xdr + "cNvSpPr"; + + /// + /// Represents the xdr:col XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: ColumnId. + /// + /// + public static readonly XName col = xdr + "col"; + + /// + /// Represents the xdr:colOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: ColumnOffset. + /// + /// + public static readonly XName colOff = xdr + "colOff"; + + /// + /// Represents the xdr:contentPart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ContentPart. + /// + /// + public static readonly XName contentPart = xdr + "contentPart"; + + /// + /// Represents the xdr:cxnSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ConnectionShape. + /// + /// + public static readonly XName cxnSp = xdr + "cxnSp"; + + /// + /// Represents the xdr:ext XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Extent. + /// + /// + public static readonly XName ext = xdr + "ext"; + + /// + /// Represents the xdr:from XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: FromMarker. + /// + /// + public static readonly XName from = xdr + "from"; + + /// + /// Represents the xdr:graphicFrame XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: GraphicFrame. + /// + /// + public static readonly XName graphicFrame = xdr + "graphicFrame"; + + /// + /// Represents the xdr:grpSp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: GroupShape. + /// + /// + public static readonly XName grpSp = xdr + "grpSp"; + + /// + /// Represents the xdr:grpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: GroupShapeProperties. + /// + /// + public static readonly XName grpSpPr = xdr + "grpSpPr"; + + /// + /// Represents the xdr:nvCxnSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualConnectionShapeProperties. + /// + /// + public static readonly XName nvCxnSpPr = xdr + "nvCxnSpPr"; + + /// + /// Represents the xdr:nvGraphicFramePr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGraphicFrameProperties. + /// + /// + public static readonly XName nvGraphicFramePr = xdr + "nvGraphicFramePr"; + + /// + /// Represents the xdr:nvGrpSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualGroupShapeProperties. + /// + /// + public static readonly XName nvGrpSpPr = xdr + "nvGrpSpPr"; + + /// + /// Represents the xdr:nvPicPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualPictureProperties. + /// + /// + public static readonly XName nvPicPr = xdr + "nvPicPr"; + + /// + /// Represents the xdr:nvSpPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: NonVisualShapeProperties. + /// + /// + public static readonly XName nvSpPr = xdr + "nvSpPr"; + + /// + /// Represents the xdr:oneCellAnchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// corresponds to the following strongly-typed classes: OneCellAnchor. + /// + /// + public static readonly XName oneCellAnchor = xdr + "oneCellAnchor"; + + /// + /// Represents the xdr:pic XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Picture. + /// + /// + public static readonly XName pic = xdr + "pic"; + + /// + /// Represents the xdr:pos XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: Position. + /// + /// + public static readonly XName pos = xdr + "pos"; + + /// + /// Represents the xdr:row XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: RowId. + /// + /// + public static readonly XName row = xdr + "row"; + + /// + /// Represents the xdr:rowOff XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// corresponds to the following strongly-typed classes: RowOffset. + /// + /// + public static readonly XName rowOff = xdr + "rowOff"; + + /// + /// Represents the xdr:sp XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , , , . + /// corresponds to the following strongly-typed classes: Shape. + /// + /// + public static readonly XName sp = xdr + "sp"; + + /// + /// Represents the xdr:spPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ShapeProperties. + /// + /// + public static readonly XName spPr = xdr + "spPr"; + + /// + /// Represents the xdr:style XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ShapeStyle. + /// + /// + public static readonly XName style = xdr + "style"; + + /// + /// Represents the xdr:to XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , . + /// corresponds to the following strongly-typed classes: ToMarker. + /// + /// + public static readonly XName to = xdr + "to"; + + /// + /// Represents the xdr:twoCellAnchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: TwoCellAnchor. + /// + /// + public static readonly XName twoCellAnchor = xdr + "twoCellAnchor"; + + /// + /// Represents the xdr:txBody XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: TextBody. + /// + /// + public static readonly XName txBody = xdr + "txBody"; + + /// + /// Represents the xdr:wsDr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// corresponds to the following strongly-typed classes: WorksheetDrawing. + /// + /// + public static readonly XName wsDr = xdr + "wsDr"; + + /// + /// Represents the xdr:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform. + /// + /// + public static readonly XName xfrm = xdr + "xfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XDR14.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XDR14.g.cs new file mode 100644 index 000000000..00d3b4aea --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XDR14.g.cs @@ -0,0 +1,113 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:xdr14="http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing" namespace. + /// + public static class XDR14 + { + /// + /// Defines the XML namespace associated with the xdr14 prefix. + /// + public static readonly XNamespace xdr14 = "http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing"; + + /// + /// Represents the xdr14:cNvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: NonVisualInkContentPartProperties. + /// + /// + public static readonly XName cNvContentPartPr = xdr14 + "cNvContentPartPr"; + + /// + /// Represents the xdr14:cNvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: , , . + /// has the following XML attributes: , , , , . + /// corresponds to the following strongly-typed classes: NonVisualDrawingProperties. + /// + /// + public static readonly XName cNvPr = xdr14 + "cNvPr"; + + /// + /// Represents the xdr14:contentPart XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , , , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ContentPart. + /// + /// + public static readonly XName contentPart = xdr14 + "contentPart"; + + /// + /// Represents the xdr14:extLst XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: . + /// corresponds to the following strongly-typed classes: OfficeArtExtensionList. + /// + /// + public static readonly XName extLst = xdr14 + "extLst"; + + /// + /// Represents the xdr14:nvContentPartPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: ExcelNonVisualContentPartShapeProperties. + /// + /// + public static readonly XName nvContentPartPr = xdr14 + "nvContentPartPr"; + + /// + /// Represents the xdr14:nvPr XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ApplicationNonVisualDrawingProperties. + /// + /// + public static readonly XName nvPr = xdr14 + "nvPr"; + + /// + /// Represents the xdr14:xfrm XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , . + /// has the following child XML elements: , . + /// has the following XML attributes: , , . + /// corresponds to the following strongly-typed classes: Transform2D. + /// + /// + public static readonly XName xfrm = xdr14 + "xfrm"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XML.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XML.g.cs new file mode 100644 index 000000000..9e7c9e02c --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XML.g.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:xml="http://www.w3.org/XML/1998/namespace" namespace. + /// + public static class XML + { + /// + /// Defines the XML namespace associated with the xml prefix. + /// + public static readonly XNamespace xml = "http://www.w3.org/XML/1998/namespace"; + + /// + /// Represents the xml:id XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Brush.Id, Canvas.Id, CanvasTransform.Id, Channel.Id, Context.Id, InkSource.Id, Mapping.Id, Matrix.Id, Table.Id, Timestamp.Id, Trace.Id, TraceFormat.Id, TraceGroup.Id, TraceView.Id. + /// + /// + public static readonly XName id = xml + "id"; + + /// + /// Represents the xml:space XML attributes. + /// + /// + /// As an XML attribute, it: + /// + /// is contained in the following XML elements: , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed properties: Author.Space, CalculatedColumnFormula.Space, CellFormula.Space, CellValue.Space, DdeLinkValue.Space, DeletedFieldCode.Space, DeletedText.Space, EvenFooter.Space, EvenHeader.Space, FieldCode.Space, FirstFooter.Space, FirstHeader.Space, Formula.Space, Formula1.Space, Formula2.Space, OddFooter.Space, OddHeader.Space, OldFormula.Space, Subtopic.Space, Text.Space, TotalsRowFormula.Space. + /// + /// + public static readonly XName space = xml + "space"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XNE.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XNE.g.cs new file mode 100644 index 000000000..b3199ee0e --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XNE.g.cs @@ -0,0 +1,120 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:xne="http://schemas.microsoft.com/office/excel/2006/main" namespace. + /// + public static class XNE + { + /// + /// Defines the XML namespace associated with the xne prefix. + /// + public static readonly XNamespace xne = "http://schemas.microsoft.com/office/excel/2006/main"; + + /// + /// Represents the xne:col XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColumnSortMapItem. + /// + /// + public static readonly XName col = xne + "col"; + + /// + /// Represents the xne:colSortMap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: ColumnSortMap. + /// + /// + public static readonly XName colSortMap = xne + "colSortMap"; + + /// + /// Represents the xne:f XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , . + /// corresponds to the following strongly-typed classes: Formula. + /// + /// + public static readonly XName f = xne + "f"; + + /// + /// Represents the xne:macrosheet XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// corresponds to the following strongly-typed classes: Macrosheet. + /// + /// + public static readonly XName macrosheet = xne + "macrosheet"; + + /// + /// Represents the xne:row XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RowSortMapItem. + /// + /// + public static readonly XName row = xne + "row"; + + /// + /// Represents the xne:rowSortMap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// has the following child XML elements: . + /// has the following XML attributes: , . + /// corresponds to the following strongly-typed classes: RowSortMap. + /// + /// + public static readonly XName rowSortMap = xne + "rowSortMap"; + + /// + /// Represents the xne:sqref XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , . + /// corresponds to the following strongly-typed classes: ReferenceSequence. + /// + /// + public static readonly XName sqref = xne + "sqref"; + + /// + /// Represents the xne:worksheetSortMap XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following child XML elements: , . + /// corresponds to the following strongly-typed classes: WorksheetSortMap. + /// + /// + public static readonly XName worksheetSortMap = xne + "worksheetSortMap"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XVML.g.cs b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XVML.g.cs new file mode 100644 index 000000000..f0a0e39eb --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/GeneratedCode/XVML.g.cs @@ -0,0 +1,836 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:xvml="urn:schemas-microsoft-com:office:excel" namespace. + /// + public static class XVML + { + /// + /// Defines the XML namespace associated with the xvml prefix. + /// + public static readonly XNamespace xvml = "urn:schemas-microsoft-com:office:excel"; + + /// + /// Represents the xvml:Accel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AcceleratorPrimary. + /// + /// + public static readonly XName Accel = xvml + "Accel"; + + /// + /// Represents the xvml:Accel2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AcceleratorSecondary. + /// + /// + public static readonly XName Accel2 = xvml + "Accel2"; + + /// + /// Represents the xvml:Anchor XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Anchor. + /// + /// + public static readonly XName Anchor = xvml + "Anchor"; + + /// + /// Represents the xvml:AutoFill XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AutoFill. + /// + /// + public static readonly XName AutoFill = xvml + "AutoFill"; + + /// + /// Represents the xvml:AutoLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AutoLine. + /// + /// + public static readonly XName AutoLine = xvml + "AutoLine"; + + /// + /// Represents the xvml:AutoPict XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AutoSizePicture. + /// + /// + public static readonly XName AutoPict = xvml + "AutoPict"; + + /// + /// Represents the xvml:AutoScale XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: AutoScaleFont. + /// + /// + public static readonly XName AutoScale = xvml + "AutoScale"; + + /// + /// Represents the xvml:Camera XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CameraObject. + /// + /// + public static readonly XName Camera = xvml + "Camera"; + + /// + /// Represents the xvml:Cancel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CancelButton. + /// + /// + public static readonly XName Cancel = xvml + "Cancel"; + + /// + /// Represents the xvml:CF XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ClipboardFormat. + /// + /// + public static readonly XName CF = xvml + "CF"; + + /// + /// Represents the xvml:Checked XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Checked. + /// + /// + public static readonly XName Checked = xvml + "Checked"; + + /// + /// Represents the xvml:ClientData XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: , , , , , , , , , , , . + /// has the following child XML elements: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + /// has the following XML attributes: . + /// corresponds to the following strongly-typed classes: ClientData. + /// + /// + public static readonly XName ClientData = xvml + "ClientData"; + + /// + /// Represents the xvml:ColHidden XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ColumnHidden. + /// + /// + public static readonly XName ColHidden = xvml + "ColHidden"; + + /// + /// Represents the xvml:Colored XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Colored. + /// + /// + public static readonly XName Colored = xvml + "Colored"; + + /// + /// Represents the xvml:Column XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CommentColumnTarget. + /// + /// + public static readonly XName Column = xvml + "Column"; + + /// + /// Represents the xvml:DDE XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DdeObject. + /// + /// + public static readonly XName DDE = xvml + "DDE"; + + /// + /// Represents the xvml:Default XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DefaultButton. + /// + /// + public static readonly XName Default = xvml + "Default"; + + /// + /// Represents the xvml:DefaultSize XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DefaultSize. + /// + /// + public static readonly XName DefaultSize = xvml + "DefaultSize"; + + /// + /// Represents the xvml:Disabled XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Disabled. + /// + /// + public static readonly XName Disabled = xvml + "Disabled"; + + /// + /// Represents the xvml:Dismiss XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DismissButton. + /// + /// + public static readonly XName Dismiss = xvml + "Dismiss"; + + /// + /// Represents the xvml:DropLines XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DropLines. + /// + /// + public static readonly XName DropLines = xvml + "DropLines"; + + /// + /// Represents the xvml:DropStyle XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: DropStyle. + /// + /// + public static readonly XName DropStyle = xvml + "DropStyle"; + + /// + /// Represents the xvml:Dx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScrollBarWidth. + /// + /// + public static readonly XName Dx = xvml + "Dx"; + + /// + /// Represents the xvml:FirstButton XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FirstButton. + /// + /// + public static readonly XName FirstButton = xvml + "FirstButton"; + + /// + /// Represents the xvml:FmlaGroup XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FormulaGroup. + /// + /// + public static readonly XName FmlaGroup = xvml + "FmlaGroup"; + + /// + /// Represents the xvml:FmlaLink XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FormulaLink. + /// + /// + public static readonly XName FmlaLink = xvml + "FmlaLink"; + + /// + /// Represents the xvml:FmlaMacro XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FormulaMacro. + /// + /// + public static readonly XName FmlaMacro = xvml + "FmlaMacro"; + + /// + /// Represents the xvml:FmlaPict XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FormulaPicture. + /// + /// + public static readonly XName FmlaPict = xvml + "FmlaPict"; + + /// + /// Represents the xvml:FmlaRange XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FormulaRange. + /// + /// + public static readonly XName FmlaRange = xvml + "FmlaRange"; + + /// + /// Represents the xvml:FmlaTxbx XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: FormulaTextBox. + /// + /// + public static readonly XName FmlaTxbx = xvml + "FmlaTxbx"; + + /// + /// Represents the xvml:Help XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: HelpButton. + /// + /// + public static readonly XName Help = xvml + "Help"; + + /// + /// Represents the xvml:Horiz XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: HorizontalScrollBar. + /// + /// + public static readonly XName Horiz = xvml + "Horiz"; + + /// + /// Represents the xvml:Inc XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScrollBarIncrement. + /// + /// + public static readonly XName Inc = xvml + "Inc"; + + /// + /// Represents the xvml:JustLastX XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: JustifyLastLine. + /// + /// + public static readonly XName JustLastX = xvml + "JustLastX"; + + /// + /// Represents the xvml:LCT XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ListBoxCallbackType. + /// + /// + public static readonly XName LCT = xvml + "LCT"; + + /// + /// Represents the xvml:ListItem XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ListItem. + /// + /// + public static readonly XName ListItem = xvml + "ListItem"; + + /// + /// Represents the xvml:Locked XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Locked. + /// + /// + public static readonly XName Locked = xvml + "Locked"; + + /// + /// Represents the xvml:LockText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: LockText. + /// + /// + public static readonly XName LockText = xvml + "LockText"; + + /// + /// Represents the xvml:MapOCX XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: MapOcxControl. + /// + /// + public static readonly XName MapOCX = xvml + "MapOCX"; + + /// + /// Represents the xvml:Max XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScrollBarMax. + /// + /// + public static readonly XName Max = xvml + "Max"; + + /// + /// Represents the xvml:Min XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScrollBarMin. + /// + /// + public static readonly XName Min = xvml + "Min"; + + /// + /// Represents the xvml:MoveWithCells XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: MoveWithCells. + /// + /// + public static readonly XName MoveWithCells = xvml + "MoveWithCells"; + + /// + /// Represents the xvml:MultiLine XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: MultiLine. + /// + /// + public static readonly XName MultiLine = xvml + "MultiLine"; + + /// + /// Represents the xvml:MultiSel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: MultiSelections. + /// + /// + public static readonly XName MultiSel = xvml + "MultiSel"; + + /// + /// Represents the xvml:NoThreeD XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Disable3D. + /// + /// + public static readonly XName NoThreeD = xvml + "NoThreeD"; + + /// + /// Represents the xvml:NoThreeD2 XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Disable3DForListBoxAndDropDown. + /// + /// + public static readonly XName NoThreeD2 = xvml + "NoThreeD2"; + + /// + /// Represents the xvml:Page XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScrollBarPageIncrement. + /// + /// + public static readonly XName Page = xvml + "Page"; + + /// + /// Represents the xvml:PrintObject XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: PrintObject. + /// + /// + public static readonly XName PrintObject = xvml + "PrintObject"; + + /// + /// Represents the xvml:RecalcAlways XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: RecalculateAlways. + /// + /// + public static readonly XName RecalcAlways = xvml + "RecalcAlways"; + + /// + /// Represents the xvml:Row XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: CommentRowTarget. + /// + /// + public static readonly XName Row = xvml + "Row"; + + /// + /// Represents the xvml:RowHidden XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: RowHidden. + /// + /// + public static readonly XName RowHidden = xvml + "RowHidden"; + + /// + /// Represents the xvml:ScriptExtended XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScriptExtended. + /// + /// + public static readonly XName ScriptExtended = xvml + "ScriptExtended"; + + /// + /// Represents the xvml:ScriptLanguage XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScriptLanguage. + /// + /// + public static readonly XName ScriptLanguage = xvml + "ScriptLanguage"; + + /// + /// Represents the xvml:ScriptLocation XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScriptLocation. + /// + /// + public static readonly XName ScriptLocation = xvml + "ScriptLocation"; + + /// + /// Represents the xvml:ScriptText XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScriptText. + /// + /// + public static readonly XName ScriptText = xvml + "ScriptText"; + + /// + /// Represents the xvml:SecretEdit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SecretEdit. + /// + /// + public static readonly XName SecretEdit = xvml + "SecretEdit"; + + /// + /// Represents the xvml:Sel XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SelectionEntry. + /// + /// + public static readonly XName Sel = xvml + "Sel"; + + /// + /// Represents the xvml:SelType XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: SelectionType. + /// + /// + public static readonly XName SelType = xvml + "SelType"; + + /// + /// Represents the xvml:SizeWithCells XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ResizeWithCells. + /// + /// + public static readonly XName SizeWithCells = xvml + "SizeWithCells"; + + /// + /// Represents the xvml:TextHAlign XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: HorizontalTextAlignment. + /// + /// + public static readonly XName TextHAlign = xvml + "TextHAlign"; + + /// + /// Represents the xvml:TextVAlign XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: VerticalTextAlignment. + /// + /// + public static readonly XName TextVAlign = xvml + "TextVAlign"; + + /// + /// Represents the xvml:UIObj XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: UIObject. + /// + /// + public static readonly XName UIObj = xvml + "UIObj"; + + /// + /// Represents the xvml:Val XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ScrollBarPosition. + /// + /// + public static readonly XName Val = xvml + "Val"; + + /// + /// Represents the xvml:ValidIds XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: ValidIds. + /// + /// + public static readonly XName ValidIds = xvml + "ValidIds"; + + /// + /// Represents the xvml:Visible XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: Visible. + /// + /// + public static readonly XName Visible = xvml + "Visible"; + + /// + /// Represents the xvml:VScroll XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: VerticalScrollBar. + /// + /// + public static readonly XName VScroll = xvml + "VScroll"; + + /// + /// Represents the xvml:VTEdit XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: InputValidationType. + /// + /// + public static readonly XName VTEdit = xvml + "VTEdit"; + + /// + /// Represents the xvml:WidthMin XML element. + /// + /// + /// As an XML element, it: + /// + /// has the following parent XML elements: . + /// corresponds to the following strongly-typed classes: MinDropDownWidth. + /// + /// + public static readonly XName WidthMin = xvml + "WidthMin"; + } +} diff --git a/src/DocumentFormat.OpenXml.Linq/MC.cs b/src/DocumentFormat.OpenXml.Linq/MC.cs new file mode 100644 index 000000000..1defef9c4 --- /dev/null +++ b/src/DocumentFormat.OpenXml.Linq/MC.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Xml.Linq; + +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + +namespace DocumentFormat.OpenXml.Linq +{ + /// + /// Declares XNamespace and XName fields for the xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" namespace. + /// + public static class MC + { + public static readonly XNamespace mc = "http://schemas.openxmlformats.org/markup-compatibility/2006"; + + public static readonly XName AlternateContent = mc + "AlternateContent"; + public static readonly XName Choice = mc + "Choice"; + public static readonly XName Fallback = mc + "Fallback"; + public static readonly XName Ignorable = mc + "Ignorable"; + public static readonly XName PreserveAttributes = mc + "PreserveAttributes"; + } +} + +#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member diff --git a/src/DocumentFormat.OpenXml/Framework/Metadata/ElementMetadata.cs b/src/DocumentFormat.OpenXml/Framework/Metadata/ElementMetadata.cs index 2b52184a3..a10c300c5 100644 --- a/src/DocumentFormat.OpenXml/Framework/Metadata/ElementMetadata.cs +++ b/src/DocumentFormat.OpenXml/Framework/Metadata/ElementMetadata.cs @@ -13,15 +13,18 @@ namespace DocumentFormat.OpenXml.Framework.Metadata { internal class ElementMetadata { + public static readonly ElementMetadata None = new(typeof(OpenXmlElement)); + private static readonly ConcurrentDictionary _lookup = new ConcurrentDictionary(new[] { - new KeyValuePair(typeof(OpenXmlUnknownElement), new ElementMetadata()), - new KeyValuePair(typeof(OpenXmlMiscNode), new ElementMetadata()), + new KeyValuePair(typeof(OpenXmlUnknownElement), new ElementMetadata(typeof(OpenXmlUnknownElement))), + new KeyValuePair(typeof(OpenXmlMiscNode), new ElementMetadata(typeof(OpenXmlMiscNode))), }); private readonly Lazy? _children; internal ElementMetadata( + Type type, ReadOnlyArray attributes, ReadOnlyArray validators, ReadOnlyArray constraints, @@ -30,6 +33,7 @@ internal ElementMetadata( CompiledParticle? particle, Lazy lookup) { + Type = type; Attributes = attributes; Validators = validators; Constraints = constraints; @@ -39,10 +43,13 @@ internal ElementMetadata( _children = lookup; } - private ElementMetadata() + private ElementMetadata(Type type) { + Type = type; } + public Type Type { get; } + public ReadOnlyArray Attributes { get; } public ElementLookup Children => _children?.Value ?? ElementLookup.Empty; @@ -80,7 +87,7 @@ public static ElementMetadata Create() private static ElementMetadata CreateInternal(OpenXmlElement element) { - var builder = new Builder(); + var builder = new Builder(element.GetType()); element.ConfigureMetadata(builder); @@ -91,11 +98,18 @@ public class Builder : ValidatorBuilder { private static readonly Lazy _lazy = new Lazy(() => ElementLookup.Empty, true); + private readonly Type _type; + private List>? _attributes; private HashSet>? _children; private List? _constraints; private OpenXmlQualifiedName _qname; + public Builder(Type type) + { + _type = type; + } + public Builder AddElement() where TElement : OpenXmlElement { @@ -150,7 +164,7 @@ public ElementMetadata Build() { var lookup = _children is null ? _lazy : new Lazy(() => new ElementLookup(_children.Select(c => c.Build())), true); - return new ElementMetadata(BuildAttributes(), GetValidators(), _constraints?.ToArray(), Availability, _qname, Particle.Compile(), lookup); + return new ElementMetadata(_type, BuildAttributes(), GetValidators(), _constraints?.ToArray(), Availability, _qname, Particle.Compile(), lookup); } private AttributeMetadata[]? BuildAttributes() diff --git a/src/DocumentFormat.OpenXml/Properties/Properties.cs b/src/DocumentFormat.OpenXml/Properties/Properties.cs index ed8e8b64c..27f6c84c5 100644 --- a/src/DocumentFormat.OpenXml/Properties/Properties.cs +++ b/src/DocumentFormat.OpenXml/Properties/Properties.cs @@ -18,6 +18,9 @@ [assembly: InternalsVisibleTo("DocumentFormat.OpenXml.CodeGeneration.Schemas, Publickey=002400000480000094000000060200000024000052534131000400000100010061d8931836c82bf25ca6b773dfd6e7b3ab4e43fba60cf4a86347170373415a165ccc40da3da4a52163822db9fa91f15828236d32d6a9fe754859f10d1f8262646c1f3fb6b4348123f14d733db0ff11c3198b7cf56caaebbf14563990446a6c32aff36d5a7097194294c127fe3cdf9f2609daae5f4daf26f8b6227f203d2a8bbf")] [assembly: InternalsVisibleTo("DocumentFormat.OpenXml.CodeGeneration.Schematron, Publickey=002400000480000094000000060200000024000052534131000400000100010061d8931836c82bf25ca6b773dfd6e7b3ab4e43fba60cf4a86347170373415a165ccc40da3da4a52163822db9fa91f15828236d32d6a9fe754859f10d1f8262646c1f3fb6b4348123f14d733db0ff11c3198b7cf56caaebbf14563990446a6c32aff36d5a7097194294c127fe3cdf9f2609daae5f4daf26f8b6227f203d2a8bbf")] +// For Linq namespace class genertion +[assembly: InternalsVisibleTo("DocumentFormat.OpenXml.CodeGeneration.Linq, Publickey=002400000480000094000000060200000024000052534131000400000100010061d8931836c82bf25ca6b773dfd6e7b3ab4e43fba60cf4a86347170373415a165ccc40da3da4a52163822db9fa91f15828236d32d6a9fe754859f10d1f8262646c1f3fb6b4348123f14d733db0ff11c3198b7cf56caaebbf14563990446a6c32aff36d5a7097194294c127fe3cdf9f2609daae5f4daf26f8b6227f203d2a8bbf")] + [assembly: CLSCompliant(true)] [assembly: NeutralResourcesLanguage("en")] diff --git a/test/DocumentFormat.OpenXml.Framework.Tests/PropertyBuilderTests.cs b/test/DocumentFormat.OpenXml.Framework.Tests/PropertyBuilderTests.cs index 24ea04a24..4e4539704 100644 --- a/test/DocumentFormat.OpenXml.Framework.Tests/PropertyBuilderTests.cs +++ b/test/DocumentFormat.OpenXml.Framework.Tests/PropertyBuilderTests.cs @@ -15,7 +15,7 @@ public class PropertyBuilderTests [Fact] public void Sanity() { - var builder = new ElementMetadata.Builder(); + var builder = new ElementMetadata.Builder(typeof(OpenXmlElement)); builder.AddElement() .AddAttribute(0, "s", a => a.Str, a => { @@ -42,7 +42,7 @@ public void Sanity() [Fact] public void IsRequired() { - var builder = new ElementMetadata.Builder(); + var builder = new ElementMetadata.Builder(typeof(OpenXmlElement)); builder.AddElement() .AddAttribute(0, "s", a => a.Str, a => {