diff --git a/Assets/07_Excel.meta b/Assets/07_Excel.meta new file mode 100644 index 0000000..296cb88 --- /dev/null +++ b/Assets/07_Excel.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e042717589682a54f9ce41ea0e4f0259 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/07_Excel/Datas.xlsx b/Assets/07_Excel/Datas.xlsx new file mode 100644 index 0000000..13e1629 Binary files /dev/null and b/Assets/07_Excel/Datas.xlsx differ diff --git a/Assets/07_Excel/Datas.xlsx.meta b/Assets/07_Excel/Datas.xlsx.meta new file mode 100644 index 0000000..73d5416 --- /dev/null +++ b/Assets/07_Excel/Datas.xlsx.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2ee477d4e8830924dacd274dbee5890a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/1_Script/Player/PlayerAttack.cs b/Assets/1_Script/Player/PlayerAttack.cs index f9b4555..946c6d0 100644 --- a/Assets/1_Script/Player/PlayerAttack.cs +++ b/Assets/1_Script/Player/PlayerAttack.cs @@ -21,7 +21,6 @@ public class PlayerAttack : MonoBehaviour controller = GetComponent(); animator = GetComponentInChildren(); PlayManager.Instance.leftMouve += Attack; - Debug.Log(123); } diff --git a/Assets/1_Script/System/Excel.cs b/Assets/1_Script/System/Excel.cs new file mode 100644 index 0000000..5dad7ad --- /dev/null +++ b/Assets/1_Script/System/Excel.cs @@ -0,0 +1,200 @@ +using System; +using System.Collections.Generic; +using UnityEngine; +using ClosedXML.Excel; + +public class Excel +{ + private List datas; + public List getDatas { get { return datas; } } + + // ȭ ʿ. + //public Sheet findSheet(string sheetName) { + // int index = datas.FindIndex(n => n.name == sheetName); + // if(index == -1) + // { + // Debug.Log("null exception"); + // return null; + // } + // return datas[index]; + //} + + #region Dynamic + //̷ · Ұ + public Dynamic dynamic; + + public class Dynamic + { + List datas; + + public float selectVelue(string name) + { + return datas.Find(n => n.name.Equals(name)).velue; + } + + + public Dynamic(Sheet sheet) + { + datas = new List(); + foreach (var item in sheet.dicViewer) + { + Data data = new Data((string)item.Value["name"], (float)item.Value["velue"]); + datas.Add(data); + } + } + + public class Data + { + public string name; + public float velue; + + public Data(string name, float velue) + { + this.name = name; + this.velue = velue; + } + } + } + #endregion + + public Excel() + { + ExcelManager excel = new ExcelManager(); + + //Dynamic, Unit + excel.Add("Datas.xlsx"); + + datas = excel.Play(); + + dynamic = new Dynamic(datas.Find(n => n.name.Equals("Dynamic"))); + } + + public class Sheet + { + string _name; + public string name { get { return _name; } } + List _variable; + public List variable { get { return _variable; } } + List _dataEnum; + public List dataEnum { get { return _dataEnum; } } + List _type; + public List type { get { return _type; } } + Dictionary> _dicViewer; + public Dictionary> dicViewer { get { return _dicViewer; } } + + public Sheet(string name, List variable, List dataEnum, List type, Dictionary> dicViewer) + { + this._name = name; + this._variable = variable; + this._dataEnum = dataEnum; + this._type = type; + this._dicViewer = dicViewer; + } + + + + public Sheet(Sheet sheet) + { + this._name = new string(sheet.name); + this._variable = new List(sheet.variable); + this._dataEnum = new List(sheet.dataEnum); + this._type = new List(type); + this._dicViewer = new Dictionary>(dicViewer); + } + } + + class ExcelManager + { + readonly string path = Application.dataPath + "/07_Excel/"; + + List _sheets; + + List readList; + + public ExcelManager() + { + _sheets = new List(); + readList = new List(); + } + public void Add(string file) + { + readList.Add(path + file); + } + + public List Play() + { + for (int n = 0; n < readList.Count; n++) + if (!ExcelLoad(readList[n])) + return null; + return _sheets; + } + public bool ExcelLoad(string pathFile) + { + _sheets = new List(); + // ϴ. + using (var workbook = new XLWorkbook(pathFile)) + { + // ũƮ ݺմϴ. + foreach (var worksheet in workbook.Worksheets) + { + // ̸, Ÿ, , ųʸ ʱȭ + var variable = new List(); // + var dataEnum = new List(); // server client + var type = new List(); // Ÿ + var dicViewer = new Dictionary>(); + + // + var vertical = worksheet.RangeUsed().RowCount() - 1; // Ͱ ִ + var horizontal = worksheet.RangeUsed().ColumnCount() - 1; // Ͱ ִ + + // ̸ Ÿ + for (int n = 0; n <= horizontal; n++) + { + variable.Add(worksheet.Cell(1, n + 1).GetValue()); + type.Add(worksheet.Cell(4, n + 1).GetValue().ToLower()); + dataEnum.Add(worksheet.Cell(3, n + 1).GetValue().ToLower()); + } + + bool isIndex = variable[0] == "index"; + + for (int n = 5; n <= vertical + 1; n++) + { + var dataList = new Dictionary(); + for (int m = 0; m <= horizontal; m++) + { + object getData; + switch (type[m]) + { + case "bool": + getData = (worksheet.Cell(n, m + 1).Value.ToString() == "true"); + break; + case "int": + case "enum": + getData = (int)worksheet.Cell(n, m + 1).Value; + break; + case "long": + getData = (long)worksheet.Cell(n, m + 1).Value; + break; + case "float": + getData = (float)worksheet.Cell(n, m + 1).Value; + break; + case "time": + getData = (DateTime)worksheet.Cell(n, m + 1).Value; + break; + default: + getData = worksheet.Cell(n, m + 1).Value.ToString(); + break; + } + dataList.Add(variable[m], getData); + } + dicViewer.Add((isIndex ? (long)dataList["index"] : n - 4), dataList); + } + + var sheet = new Sheet(worksheet.Name, variable, dataEnum, type, dicViewer); + _sheets.Add(sheet); + } + } + return true; + } + } +} \ No newline at end of file diff --git a/Assets/1_Script/System/Excel.cs.meta b/Assets/1_Script/System/Excel.cs.meta new file mode 100644 index 0000000..89c7b98 --- /dev/null +++ b/Assets/1_Script/System/Excel.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: eb4aa7119d8b57f4db1e2afc5e9d38d0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/1_Script/System/GameManager.cs b/Assets/1_Script/System/GameManager.cs index 47653eb..87db28d 100644 --- a/Assets/1_Script/System/GameManager.cs +++ b/Assets/1_Script/System/GameManager.cs @@ -4,10 +4,17 @@ using UnityEngine.SceneManagement; public class GameManager : DontDestroy { eScene nowScene; + + Excel excel; + protected override void OnAwake() { Application.targetFrameRate = 120; nowScene = eScene.Title; + excel = new Excel(); + + //사용법 + //Debug.Log(excel.dynamic.selectVelue("maxSwingCount")); } public enum eScene diff --git a/Assets/NuGet.config b/Assets/NuGet.config new file mode 100644 index 0000000..d267a78 --- /dev/null +++ b/Assets/NuGet.config @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/NuGet.config.meta b/Assets/NuGet.config.meta new file mode 100644 index 0000000..33054a3 --- /dev/null +++ b/Assets/NuGet.config.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 356dafd8e98638044a64b00c1dfedcfe +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages.meta b/Assets/Packages.meta new file mode 100644 index 0000000..42d71c0 --- /dev/null +++ b/Assets/Packages.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25b0fa346755490449d30977235edb0c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.0.105.0.meta b/Assets/Packages/ClosedXML.0.105.0.meta new file mode 100644 index 0000000..2631fd1 --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fef594bf8aaa2ed4facf818ed7a17fc1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.0.105.0/.signature.p7s b/Assets/Packages/ClosedXML.0.105.0/.signature.p7s new file mode 100644 index 0000000..aff393f Binary files /dev/null and b/Assets/Packages/ClosedXML.0.105.0/.signature.p7s differ diff --git a/Assets/Packages/ClosedXML.0.105.0/ClosedXML.nuspec b/Assets/Packages/ClosedXML.0.105.0/ClosedXML.nuspec new file mode 100644 index 0000000..e4367aa --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0/ClosedXML.nuspec @@ -0,0 +1,35 @@ + + + + ClosedXML + 0.105.0 + Jan Havlíček, Francois Botha, Aleksei Pankratev, Manuel de Leon, Amir Ghezelbash + MIT + https://licenses.nuget.org/MIT + nuget-logo.png + https://github.com/ClosedXML/ClosedXML + See release notes https://github.com/ClosedXML/ClosedXML/releases/tag/0.105.0 ClosedXML is a .NET library for reading, manipulating and writing Excel 2007+ (.xlsx, .xlsm) files. It aims to provide an intuitive and user-friendly interface to dealing with the underlying OpenXML API. + See https://github.com/ClosedXML/ClosedXML/releases/tag/0.105.0 + Excel OpenXml xlsx + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/ClosedXML.0.105.0/ClosedXML.nuspec.meta b/Assets/Packages/ClosedXML.0.105.0/ClosedXML.nuspec.meta new file mode 100644 index 0000000..e514e02 --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0/ClosedXML.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cf271e402076be14b84b93a9ae8abd89 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.0.105.0/lib.meta b/Assets/Packages/ClosedXML.0.105.0/lib.meta new file mode 100644 index 0000000..effe1c6 --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b00e5f0234ac7fa439e337eaf57548e5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1.meta b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1.meta new file mode 100644 index 0000000..40082f2 --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 755d2fd9f0ec1bc43a10fcd9002a3e74 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.dll b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.dll new file mode 100644 index 0000000..b50347b Binary files /dev/null and b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.dll differ diff --git a/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.dll.meta b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.dll.meta new file mode 100644 index 0000000..65948c6 --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 42d57c3664c1ca04a9c903160812bfd4 +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.xml b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.xml new file mode 100644 index 0000000..7604777 --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.xml @@ -0,0 +1,13552 @@ + + + + ClosedXML + + + + + Indicates that compiler support for a particular feature is required for the location where this attribute is applied. + + + + + Initialize a new instance of + + + + + The name of the compiler feature. + + + + + If true, the compiler can choose to allow access to the location where this attribute is applied if it does not understand . + + + + + The used for the ref structs C# feature. + + + + + The used for the required members C# feature. + + + + + Disables the built-in runtime managed/unmanaged marshalling subsystem for + P/Invokes, Delegate types, and unmanaged function pointer invocations. + + + The built-in marshalling subsystem has some behaviors that cannot be changed due to + backward-compatibility requirements. This attribute allows disabling the built-in + subsystem and instead uses the following rules for P/Invokes, Delegates, + and unmanaged function pointer invocations: + + - All value types that do not contain reference type fields recursively (unmanaged in C#) are blittable + - Value types that recursively have any fields that have [StructLayout(LayoutKind.Auto)] are disallowed from interop. + - All reference types are disallowed from usage in interop scenarios. + - SetLastError support in P/Invokes is disabled. + - varargs support is disabled. + - LCIDConversionAttribute support is disabled. + + + + + Indicates which arguments to a method involving an interpolated string handler should be passed to that handler. + + + + + Initializes a new instance of the class. + + The name of the argument that should be passed to the handler. + may be used as the name of the receiver in an instance method. + + + + Initializes a new instance of the class. + + The names of the arguments that should be passed to the handler. + may be used as the name of the receiver in an instance method. + + + Gets the names of the arguments that should be passed to the handler. + + may be used as the name of the receiver in an instance method. + + + + Indicates the attributed type is to be used as an interpolated string handler. + + + + Reserved to be used by the compiler for tracking metadata. This class should not be used by developers in source code. + + + + + Used to indicate to the compiler that a method should be called + in its containing module's initializer. + + + When one or more valid methods + with this attribute are found in a compilation, the compiler will + emit a module initializer which calls each of the attributed methods. + + Certain requirements are imposed on any method targeted with this attribute: + - The method must be `static`. + - The method must be an ordinary member method, as opposed to a property accessor, constructor, local function, etc. + - The method must be parameterless. + - The method must return `void`. + - The method must not be generic or be contained in a generic type. + - The method's effective accessibility must be `internal` or `public`. + + The specification for module initializers in the .NET runtime can be found here: + https://github.com/dotnet/runtime/blob/master/docs/design/specs/Ecma-335-Augments.md#module-initializer + + + + + Specifies that a type has required members or that a member is required. + + + + + Used to indicate to the compiler that the .locals init + flag should not be set in method headers. + + + This attribute is unsafe because it may reveal uninitialized memory to + the application in certain instances (e.g., reading from uninitialized + stackalloc'd memory). If applied to a method directly, the attribute + applies to that method and all nested functions (lambdas, local + functions) below it. If applied to a type or module, it applies to all + methods nested inside. This attribute is intentionally not permitted on + assemblies. Use at the module level instead to apply to multiple type + declarations. + + + + + Base type for all platform-specific API attributes. + + + + + Marks APIs that were obsoleted in a given operating system version. + + + Primarily used by OS bindings to indicate APIs that should not be used anymore. + + + + + Records the operating system (and minimum version) that supports an API. Multiple attributes can be + applied to indicate support on multiple operating systems. + + + Callers can apply a + or use guards to prevent calls to APIs on unsupported operating systems. + + A given platform should only be specified once. + + + + + Annotates a custom guard field, property or method with a supported platform name and optional version. + Multiple attributes can be applied to indicate guard for multiple supported platforms. + + + Callers can apply a to a field, property or method + and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs. + + The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. + + + + + Records the platform that the project targeted. + + + + + Marks APIs that were removed in a given operating system version. + + + Primarily used by OS bindings to indicate APIs that are only available in + earlier versions. + + + + + Annotates the custom guard field, property or method with an unsupported platform name and optional version. + Multiple attributes can be applied to indicate guard for multiple unsupported platforms. + + + Callers can apply a to a field, property or method + and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms. + + The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard. + + + + + An attribute used to indicate a GC transition should be skipped when making an unmanaged function call. + + + Example of a valid use case. The Win32 `GetTickCount()` function is a small performance related function + that reads some global memory and returns the value. In this case, the GC transition overhead is significantly + more than the memory read. + + using System; + using System.Runtime.InteropServices; + class Program + { + [DllImport("Kernel32")] + [SuppressGCTransition] + static extern int GetTickCount(); + static void Main() + { + Console.WriteLine($"{GetTickCount()}"); + } + } + + + + This attribute is ignored if applied to a method without the . + + Forgoing this transition can yield benefits when the cost of the transition is more than the execution time + of the unmanaged function. However, avoiding this transition removes some of the guarantees the runtime + provides through a normal P/Invoke. When exiting the managed runtime to enter an unmanaged function the + GC must transition from Cooperative mode into Preemptive mode. Full details on these modes can be found at + https://github.com/dotnet/runtime/blob/master/docs/coding-guidelines/clr-code-guide.md#2.1.8. + Suppressing the GC transition is an advanced scenario and should not be done without fully understanding + potential consequences. + + One of these consequences is an impact to Mixed-mode debugging (https://docs.microsoft.com/visualstudio/debugger/how-to-debug-in-mixed-mode). + During Mixed-mode debugging, it is not possible to step into or set breakpoints in a P/Invoke that + has been marked with this attribute. A workaround is to switch to native debugging and set a breakpoint in the native function. + In general, usage of this attribute is not recommended if debugging the P/Invoke is important, for example + stepping through the native code or diagnosing an exception thrown from the native code. + + The runtime may load the native library for method marked with this attribute in advance before the method is called for the first time. + Usage of this attribute is not recommended for platform neutral libraries with conditional platform specific code. + + The P/Invoke method that this attribute is applied to must have all of the following properties: + * Native function always executes for a trivial amount of time (less than 1 microsecond). + * Native function does not perform a blocking syscall (e.g. any type of I/O). + * Native function does not call back into the runtime (e.g. Reverse P/Invoke). + * Native function does not throw exceptions. + * Native function does not manipulate locks or other concurrency primitives. + + Consequences of invalid uses of this attribute: + * GC starvation. + * Immediate runtime termination. + * Data corruption. + + + + + Any method marked with can be directly called from + native code. The function token can be loaded to a local variable using the address-of operator + in C# and passed as a callback to a native method. + + + Methods marked with this attribute have the following restrictions: + * Method must be marked "static". + * Must not be called from managed code. + * Must only have blittable arguments. + + + + + Optional. If omitted, the runtime will use the default platform calling convention. + + + Supplied types must be from the official "System.Runtime.CompilerServices" namespace and + be of the form "CallConvXXX". + + + + + Optional. If omitted, no named export is emitted during compilation. + + + + + A class that represents nullability info + + + + + The of the member or generic parameter + to which this NullabilityInfo belongs + + + + + The nullability read state of the member + + + + + The nullability write state of the member + + + + + If the member type is an array, gives the of the elements of the array, null otherwise + + + + + If the member type is a generic type, gives the array of for each type parameter + + + + + An enum that represents nullability state + + + + + Nullability context not enabled (oblivious) + + + + + Non nullable value or reference type + + + + + Nullable value or reference type + + + + + Provides APIs for populating nullability information/context from reflection members: + , , and . + + + + + Populates for the given . + If the nullablePublicOnly feature is set for an assembly, like it does in .NET SDK, the private and/or internal member's + nullability attributes are omitted, in this case the API will return NullabilityState.Unknown state. + + The parameter which nullability info gets populated + If the parameterInfo parameter is null + + + + + Populates for the given . + If the nullablePublicOnly feature is set for an assembly, like it does in .NET SDK, the private and/or internal member's + nullability attributes are omitted, in this case the API will return NullabilityState.Unknown state. + + The parameter which nullability info gets populated + If the propertyInfo parameter is null + + + + + Populates for the given . + If the nullablePublicOnly feature is set for an assembly, like it does in .NET SDK, the private and/or internal member's + nullability attributes are omitted, in this case the API will return NullabilityState.Unknown state. + + The parameter which nullability info gets populated + If the eventInfo parameter is null + + + + + Populates for the given + If the nullablePublicOnly feature is set for an assembly, like it does in .NET SDK, the private and/or internal member's + nullability attributes are omitted, in this case the API will return NullabilityState.Unknown state. + + The parameter which nullability info gets populated + If the fieldInfo parameter is null + + + + + Specifies that the method or property will ensure that the listed field and property members have + not- values. + + + + + Gets field or property member names. + + + + + Initializes the attribute with a field or property member. + + + The field or property member that is promised to be not-null. + + + + + Initializes the attribute with the list of field and property members. + + + The list of field and property members that are promised to be not-null. + + + + + Specifies that the method or property will ensure that the listed field and property members have + non- values when returning with the specified return value condition. + + + + + Gets the return value condition. + + + + + Gets field or property member names. + + + + + Initializes the attribute with the specified return value condition and a field or property member. + + + The return value condition. If the method returns this value, + the associated parameter will not be . + + + The field or property member that is promised to be not-. + + + + + Initializes the attribute with the specified return value condition and list + of field and property members. + + + The return value condition. If the method returns this value, + the associated parameter will not be . + + + The list of field and property members that are promised to be not-null. + + + + + Specifies that this constructor sets all required members for the current type, and callers + do not need to set any required members themselves. + + + + + Specifies the syntax used in a string. + + + + Initializes the with the identifier of the syntax used. + The syntax identifier. + + + + Initializes the with the identifier of the syntax used. + The syntax identifier. + Optional arguments associated with the specific syntax employed. + + + Gets the identifier of the syntax used. + + + Optional arguments associated with the specific syntax employed. + + + The syntax identifier for strings containing composite formats for string formatting. + + + The syntax identifier for strings containing date format specifiers. + + + The syntax identifier for strings containing date and time format specifiers. + + + The syntax identifier for strings containing format specifiers. + + + The syntax identifier for strings containing format specifiers. + + + The syntax identifier for strings containing JavaScript Object Notation (JSON). + + + The syntax identifier for strings containing numeric format specifiers. + + + The syntax identifier for strings containing regular expressions. + + + The syntax identifier for strings containing time format specifiers. + + + The syntax identifier for strings containing format specifiers. + + + The syntax identifier for strings containing URIs. + + + The syntax identifier for strings containing XML. + + + + States a dependency that one member has on another. + + + This can be used to inform tooling of a dependency that is otherwise not evident purely from + metadata and IL, for example a member relied on via reflection. + + + + + Initializes a new instance of the class + with the specified signature of a member on the same type as the consumer. + + The signature of the member depended on. + + + + Initializes a new instance of the class + with the specified signature of a member on a . + + The signature of the member depended on. + The containing . + + + + Initializes a new instance of the class + with the specified signature of a member on a type in an assembly. + + The signature of the member depended on. + The full name of the type containing the specified member. + The assembly name of the type containing the specified member. + + + + Initializes a new instance of the class + with the specified types of members on a . + + The types of members depended on. + The containing the specified members. + + + + Initializes a new instance of the class + with the specified types of members on a type in an assembly. + + The types of members depended on. + The full name of the type containing the specified members. + The assembly name of the type containing the specified members. + + + + Gets the signature of the member depended on. + + + Either must be a valid string or + must not equal , but not both. + + + + + Gets the which specifies the type + of members depended on. + + + Either must be a valid string or + must not equal , but not both. + + + + + Gets the containing the specified member. + + + If neither nor are specified, + the type of the consumer is assumed. + + + + + Gets the full name of the type containing the specified member. + + + If neither nor are specified, + the type of the consumer is assumed. + + + + + Gets the assembly name of the specified type. + + + is only valid when is specified. + + + + + Gets or sets the condition in which the dependency is applicable, e.g. "DEBUG". + + + + + Specifies the types of members that are dynamically accessed. + + This enumeration has a attribute that allows a + bitwise combination of its member values. + + + + + Specifies no members. + + + + + Specifies the default, parameterless public constructor. + + + + + Specifies all public constructors. + + + + + Specifies all non-public constructors. + + + + + Specifies all public methods. + + + + + Specifies all non-public methods. + + + + + Specifies all public fields. + + + + + Specifies all non-public fields. + + + + + Specifies all public nested types. + + + + + Specifies all non-public nested types. + + + + + Specifies all public properties. + + + + + Specifies all non-public properties. + + + + + Specifies all public events. + + + + + Specifies all non-public events. + + + + + Specifies all interfaces implemented by the type. + + + + + Specifies all members. + + + + + Indicates that certain members on a specified are accessed dynamically, + for example through . + + + This allows tools to understand which members are being accessed during the execution + of a program. + + This attribute is valid on members whose type is or . + + When this attribute is applied to a location of type , the assumption is + that the string represents a fully qualified type name. + + If the attribute is applied to a method it's treated as a special case and it implies + the attribute should be applied to the "this" parameter of the method. As such the attribute + should only be used on instance methods of types assignable to System.Type (or string, but no methods + will use it there). + + + + + Initializes a new instance of the class + with the specified member types. + + The types of members dynamically accessed. + + + + Gets the which specifies the type + of members dynamically accessed. + + + + + Indicates that the specified method requires the ability to generate new code at runtime, + for example through . + + + This allows tools to understand which methods are unsafe to call when compiling ahead of time. + + + + + Initializes a new instance of the class + with the specified message. + + + A message that contains information about the usage of dynamic code. + + + + + Gets a message that contains information about the usage of dynamic code. + + + + + Gets or sets an optional URL that contains more information about the method, + why it requires dynamic code, and what options a consumer has to deal with it. + + + + + Indicates that the specified method requires dynamic access to code that is not referenced + statically, for example through . + + + This allows tools to understand which methods are unsafe to call when removing unreferenced + code from an application. + + + + + Initializes a new instance of the class + with the specified message. + + + A message that contains information about the usage of unreferenced code. + + + + + Gets a message that contains information about the usage of unreferenced code. + + + + + Gets or sets an optional URL that contains more information about the method, + why it requires unreferenced code, and what options a consumer has to deal with it. + + + + + Suppresses reporting of a specific rule violation, allowing multiple suppressions on a + single code artifact. + + + is different than + in that it doesn't have a + . So it is always preserved in the compiled assembly. + + + + + Initializes a new instance of the + class, specifying the category of the tool and the identifier for an analysis rule. + + The category for the attribute. + The identifier of the analysis rule the attribute applies to. + + + + Gets the category identifying the classification of the attribute. + + + The property describes the tool or tool analysis category + for which a message suppression attribute applies. + + + + + Gets the identifier of the analysis tool rule to be suppressed. + + + Concatenated together, the and + properties form a unique check identifier. + + + + + Gets or sets the scope of the code that is relevant for the attribute. + + + The Scope property is an optional argument that specifies the metadata scope for which + the attribute is relevant. + + + + + Gets or sets a fully qualified path that represents the target of the attribute. + + + The property is an optional argument identifying the analysis target + of the attribute. An example value is "System.IO.Stream.ctor():System.Void". + Because it is fully qualified, it can be long, particularly for targets such as parameters. + The analysis tool user interface should be capable of automatically formatting the parameter. + + + + + Gets or sets an optional argument expanding on exclusion criteria. + + + The property is an optional argument that specifies additional + exclusion where the literal metadata target is not sufficiently precise. For example, + the cannot be applied within a method, + and it may be desirable to suppress a violation against a statement in the method that will + give a rule violation, but not against all statements in the method. + + + + + Gets or sets the justification for suppressing the code analysis message. + + + + + Used to indicate a byref escapes and is not scoped. + + + + There are several cases where the C# compiler treats a as implicitly + - where the compiler does not allow the to escape the method. + + + For example: + + for instance methods. + parameters that refer to types. + parameters. + + + + This attribute is used in those instances where the should be allowed to escape. + + + Applying this attribute, in any form, has impact on consumers of the applicable API. It is necessary for + API authors to understand the lifetime implications of applying this attribute and how it may impact their users. + + + + + + Types and Methods attributed with StackTraceHidden will be omitted from the stack trace text shown in StackTrace.ToString() + and Exception.StackTrace + + + + + Exception thrown when the program executes an instruction that was thought to be unreachable. + + + + + + + Initializes a new instance of the class with the default error message. + + + + + Initializes a new instance of the + class with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the + class with a specified error message and a reference to the inner exception that is the cause of + this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception. + + + + Static and thread safe wrapper around NullabilityInfoContext. + + + + + Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation. + + + This operation will not block. The returned object will complete after the response headers are read. + This method does not read nor buffer the response body. + + The Uri the request is sent to. + The cancellation token to cancel the operation. + The task object representing the asynchronous operation. + + + + Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation. + + + This operation will not block. The returned object will complete after the response headers are read. + This method does not read nor buffer the response body. + + The Uri the request is sent to. + The cancellation token to cancel the operation. + The task object representing the asynchronous operation. + + + + Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation. + + + This operation will not block. The returned Task{Byte[]} object will complete after the response headers are read. + This method does not read nor buffer the response body. + + The Uri the request is sent to. + The cancellation token to cancel the operation. + The task object representing the asynchronous operation. + + + + Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation. + + + This operation will not block. The returned Task{byte[]} object will complete after the response headers are read. + This method does not read nor buffer the response body. + + The Uri the request is sent to. + The cancellation token to cancel the operation. + The task object representing the asynchronous operation. + + + + Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation. + + + This operation will not block. The returned object will complete after the response headers are read. + This method does not read nor buffer the response body. + + The Uri the request is sent to. + The cancellation token to cancel the operation. + The task object representing the asynchronous operation. + + + + Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation. + + + This operation will not block. The returned object will complete after the response headers are read. + This method does not read nor buffer the response body. + + The Uri the request is sent to. + The cancellation token to cancel the operation. + The task object representing the asynchronous operation. + + + + Serializes the HTTP content and returns a stream that represents the content. + + + Note that this method will internally buffer the content unless CreateContentReadStreamAsync() has been + implemented to do otherwise. + + + The token to monitor for cancellation requests. The default value is . + + The task object representing the asynchronous operation. + + + + Serializes the HTTP content to a byte array as an asynchronous operation. + + + Note that this method will internally buffer the content unless CreateContentReadStreamAsync() has been + implemented to do otherwise. + + + The token to monitor for cancellation requests. The default value is . + + The task object representing the asynchronous operation. + + + + Serializes the HTTP content to a string as an asynchronous operation. + + + Note that this method will internally buffer the content unless CreateContentReadStreamAsync() has been + implemented to do otherwise. + + + The token to monitor for cancellation requests. The default value is . + + The task object representing the asynchronous operation. + + + + + + + + Split the elements of a sequence into chunks of size at most . + + + Every chunk except the last will be of size . + The last chunk will contain the remaining elements and may be of a smaller size. + + An whose elements to chunk. + Maximum size of each chunk. + The type of the elements of source. + + An that contains the elements the input sequence split into chunks of size . + + is null. + is below 1. + + + + Returns the maximum value in a generic sequence according to a specified key selector function. + + The type of the elements of . + The type of key to compare elements by. + A sequence of values to determine the maximum value of. + A function to extract the key for each element. + The value with the maximum key in the sequence. + is . + No key extracted from implements the or interface. + + If is a reference type and the source sequence is empty or contains only values that are , this method returns . + + + + Returns the maximum value in a generic sequence according to a specified key selector function. + The type of the elements of . + The type of key to compare elements by. + A sequence of values to determine the maximum value of. + A function to extract the key for each element. + The to compare keys. + The value with the maximum key in the sequence. + is . + No key extracted from implements the or interface. + + If is a reference type and the source sequence is empty or contains only values that are , this method returns . + + + + + Returns the minimum value in a generic sequence according to a specified key selector function. + + The type of the elements of . + The type of key to compare elements by. + A sequence of values to determine the minby value of. + A function to extract the key for each element. + The value with the minimum key in the sequence. + is . + No key extracted from implements the or interface. + + If is a reference type and the source sequence is empty or contains only values that are , this method returns . + + + + Returns the minimum value in a generic sequence according to a specified key selector function. + The type of the elements of . + The type of key to compare elements by. + A sequence of values to determine the minimum value of. + A function to extract the key for each element. + The to compare keys. + The value with the minimum key in the sequence. + is . + No key extracted from implements the or interface. + + If is a reference type and the source sequence is empty or contains only values that are , this method returns . + + + + + Indicates whether a specified value is found in a read-only span. Values are compared using IEquatable{T}.Equals(T). + + The value to search for. + true if found, false otherwise. + + + + Indicates whether a specified value is found in a only span. Values are compared using IEquatable{T}.Equals(T). + + The value to search for. + true if found, false otherwise. + + + + Gets the nanosecond component of the time represented by the current object. + + + + + Gets the nanosecond component of the time represented by the current object. + + + + + Gets the nanosecond component of the time represented by the current object. + + + + + Gets the microsecond component of the time represented by the current object. + + + + + Gets the microsecond component of the time represented by the current object. + + + + + Gets the microsecond component of the time represented by the current object. + + + + + Returns a new object that adds a specified number of microseconds to the value of this instance.. + + + + + Returns a new object that adds a specified number of microseconds to the value of this instance.. + + + + + Copies the contents of this string into the destination span. + + The span into which to copy this string's contents + + + + Copies the contents of this string into the destination span. + + The span into which to copy this string's contents + true if the data was copied; false if the destination was too short to fit the contents of the string. + + + + Reads all characters from the current position to the end of the stream asynchronously and returns them as one string. + + The token to monitor for cancellation requests. + A task that represents the asynchronous read operation. The value of the TResult parameter contains + a string with the characters from the current position to the end of the stream. + The number of characters is larger than . + The stream reader has been disposed. + The reader is currently in use by a previous read operation. + + + + Reads a line of characters asynchronously and returns the data as a string. + + The token to monitor for cancellation requests. + A value task that represents the asynchronous read operation. The value of the TResult + parameter contains the next line from the text reader, or is if all of the characters have been read. + The number of characters in the next line is larger than . + The text reader has been disposed. + The reader is currently in use by a previous read operation. + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Tries to format the value of the current instance into the provided span of characters. + + + + + Gets a value that indicates whether the current Type represents a type parameter in the definition of a generic method. + + + + + Searches for the MemberInfo on the current Type that matches the specified MemberInfo. + + The MemberInfo to find on the current Type. + The MemberInfo to find on the current Type. + An object representing the member on the current Type that matches the specified member. + + + + + Autofilter can sort and filter (hide) values in a non-empty area of a sheet. Each table can + have autofilter and each worksheet can have at most one range with an autofilter. First row + of the area contains headers, remaining rows contain sorted and filtered data. + + + Sorting of rows is done method, using the passed parameters. The sort + properties ( and ) are updated from + properties passed to the method. Sorting can be done only on values of + one column. + + + Autofilter can filter rows through method. The filter evaluates + conditions of the autofilter and leaves visible only rows that satisfy the conditions. + Rows that don't satisfy filter conditions are marked as hidden. + Filter conditions can be specified for each column (accessible through + methods), e.g. sheet.AutoFilter.Column(1).Top(10, XLTopBottomType.Percent) + creates a filter that displays only rows with values in top 10% percentile. + + + + + + Get rows of that were hidden because they didn't satisfy filter + conditions during last filtering. + + + Visibility is automatically updated on filter change. + + + + + Is autofilter enabled? When autofilter is enabled, it shows the arrow buttons and might + contain some filter that hide some rows. Disabled autofilter doesn't show arrow buttons + and all rows are visible. + + + + + Range of the autofilter. It consists of a header in first row, followed by data rows. + It doesn't include totals row for tables. + + + + + What column was used during last . Contains undefined value for not + yet autofilter. + + + + + Are values in the autofilter range sorted? I.e. the values were either already loaded + sorted or has been called at least once. + + + If true, and contain valid values. + + + + + What sorting order was used during last . Contains undefined value + for not yet autofilter. + + + + + Get rows of that are visible because they satisfied filter + conditions during last filtering. + + + Visibility is not updated on filter change. + + + + + Disable autofilter, remove all filters and unhide all rows of the . + + + + + Get filter configuration for a column. + + + Column letter that determines number in the range, from A as the first column + of a . + + Filter configuration for the column. + Invalid column. + + + + Get filter configuration for a column. + + Column number in the range, from 1 as the first column of a . + Filter configuration for the column. + + + + Apply autofilter filters to the range and show every row that satisfies the conditions + and hide the ones that don't satisfy conditions. + + + Filter is generally automatically applied on a filter change. This method could be + called after a cell value change or row deletion. + + + + + Sort rows of the range using data of one column. + + + This method sets , and properties. + + + Column number in the range, from 1 to width of the . + + Should rows be sorted in ascending or descending order? + + Should values on the column be matched case sensitive. + + + true - rows with blank value in the column will always at the end, regardless of + sorting order. false - blank will be treated as empty string and sorted + accordingly. + + + + + Type of a filter that is used to determine number of + visible top/bottom values. + + + + + Filter should display requested number of items. + + + + + Number of displayed items is determined as a percentage data rows of auto filter. + + + + + + AutoFilter filter configuration for one column in an autofilter area. + Filters determine visibility of rows in the autofilter area. Value in the row must satisfy + all filters in all columns in order for row to be visible, otherwise it is . + + + Column can have only one type of filter, so it's not possible to combine several different + filter types on one column. Methods for adding filters clear other types or remove + previously set filters when needed. Some types of filters can have multiple conditions (e.g. + can have many values while + can be only one). + + + Whenever filter configuration changes, the filters are immediately reapplied. + + + + + + Remove all filters from the column. + + Should the autofilter be immediately reapplied? + + + + + Switch to the filter if filter column has a + different type (for current type ) and add + to a set of allowed values. Excel displays regular filter as + a list of possible values in a column with checkbox next to it and user can check which + one should be displayed. + + + From technical perspective, the passed is converted to + a localized string (using current locale) and the column values satisfy the filter + condition, when the formatted string of a cell + matches any filter string. + + + Examples of less intuitive behavior: filter value is 2.5 in locale cs-CZ that + uses "," as a decimal separator. The passed + is number 2.5, converted immediately to a string 2,5. The string is used for + comparison with values of cells in the column: + + Number 2.5 formatted with two decimal places as 2,50 will not match. + Number 2.5 with default formatting will be matched, because its string is + 2,5 in cs-CZ locale (but not in others, e.g. en-US locale). + Text 2,5 will be matched. + + + + + This behavior of course highly depends on locale and working with same file on two + different locales might lead to different results. + + Value of the filter. The type is XLCellValue, but that's for + convenience sake. The value is converted to a string and filter works with string. + Should the autofilter be immediately reapplied? + Fluent API allowing to add additional filter value. + + + + + Enable autofilter (if needed), switch to the filter + if filter column has a different type (for current type ) and + add a filter that is satisfied when cell value is a + and the tested date has same components from + component up to the component with same value + as the . + + + The condition basically defines a date range (based on the ) + and all dates in the range satisfy the filter. If condition is a day, all date-times + in the day satisfy the filter. If condition is a month, all date-times in the month + satisfy the filter. + + + + Example: + + // Filter will be satisfied if the cell value is a XLDataType.DateTime and the month, + // and year are same as the passed date. The day component in the DateTime + // is ignored + AddDateGroupFilter(new DateTime(2023, 7, 15), XLDateTimeGrouping.Month) + + + + + There can be multiple date group filters and they are + filter types, i.e. they don't delete filters from . The cell + value is satisfied, if it matches any of the text values from + or any date group filter. + + + Date which components are compared with date values of the column. + + Starting component of the grouping. Tested date must match all date components of the + from this one to the . + + Should the autofilter be immediately reapplied? + Fluent API allowing to add additional date time group value. + + + If is out of range 1..500. + + + If is out of range 1..500. + + + + Current filter type used by the filter columns. + + + + + Configuration of a filter. It contains how many + items/percent (depends on ) should filter accept. + + + Returns undefined value, if is not . + + + + + Configuration of a filter. It contains the content + interpretation of a property, i.e. does it mean how many + percents or how many items? + + + Returns undefined value, if is not . + + + + + Configuration of a filter. It determines if filter + should accept items from top or bottom. + + + Returns undefined value, if is not . + + + + + Configuration of a filter. It determines the type of + dynamic filter. + + + Returns undefined value, if is not . + + + + + Configuration of a filter. It contains the dynamic + value used by the filter, e.g. average. The interpretation depends on + . + + + Returns undefined value, if is not . + + + + + A fluent API interface for adding another values to a + filter. It is chained by method or + . + + + + + Add another value to a subset of allowed values for a + filter. See for more details. + + Value of the filter. The type is XLCellValue, but that's for + convenience sake. The value is converted to a string and filter works with string. + Should the autofilter be immediately reapplied? + Fluent API allowing to add additional filter value. + + + + Add another grouping to a set of allowed groupings. See + for more details. + + Fluent API allowing to add additional date group filter. + + + + Key is column number. + + + + + A single filter condition for auto filter. + + + + + Value for that is compared using . + + + + + Value for filter. + + + + + Basically average for dynamic filters. Value is refreshed during filter reapply. + + + + + A filter value used by top/bottom filter to compare with cell value. + + + + + Base interface for an abstract repository. + + + + + Clear the repository; + + + + + Put the into the repository under the specified + if there is no such key present. + + Key to identify the value. + Value to put into the repository if key does not exist. + Value stored in the repository under the specified . If key already existed + returned value may differ from the input one. + + + + Check if the specified key is presented in the repository. + + Key to look for. + Value from the repository stored under specified key or null if key does + not exist or the entry under this key has already bee GCed. + True if entry exists and alive, false otherwise. + + + + Put the entity into the repository under the specified key if no other entity with + the same key is presented. + + Key to identify the entity. + Entity to store. + Entity that is stored in the repository under the specified key + (it can be either the or another entity that has been added to + the repository before.) + + + + Enumerate items in repository removing "dead" entries. + + + + + Base repository for elements. + + + + + A discriminated union representing any value that can be passed around in the formula evaluation. + + + + + A value of a blank cell or missing argument. Conversion methods mostly treat blank like 0 or an empty string. + + + + + Is the value a scalar (blank, logical, number, text or error). + + + + + Try to get a reference that is a one area from the value. + + The found area. + Original error, if the value is error, #VALUE! if type is not a reference or #REF! if more than one area in the reference. + True if area could be determined, false otherwise. + + + + Return array from a single area reference or array. If value is scalar, return false. + + + + + + Try to get a value more in line with an array formula semantic. The output is always + either single value or an array. + + + Single cell references are turned into a scalar, multi-area references are turned + into and single-area references are turned + into arrays. + + + + Note the difference in nomenclature: single/multi value vs scalar/collection type. + + + + + Implicit intersection for arguments of functions that don't accept range as a parameter (Excel 2016). + + Unchanged value for anything other than reference. Reference is changed into a single cell/#VALUE! + + + + Create a new reference that has one area that contains both operands or #VALUE! if not possible. + + + + + Create a new reference by combining areas of both arguments. Areas of the new reference can overlap = some overlapping + cells might be counted multiple times (SUM((A1;A1)) = 2 if A1 is 1). + + + + + Compare two scalar values using Excel semantic. Rules for comparison are following: + + Logical is always greater than any text (thus transitively greater than any number) + Text is always greater than any number, even if empty string + Logical are compared by value + Numbers are compared by value + Text is compared by through case insensitive comparison for workbook culture. + + If any argument is error, return error (general rule for all operators). + If all args are errors, pick leftmost error (technically it is left to + implementation, but excel sems to be using left one) + + + + Left hand operand of the comparison. + Right hand operand of the comparison. + Culture to use for comparison. + + Return -1 (negative) if left less than right + Return 1 (positive) if left greater than left + Return 0 if both operands are considered equal. + + + + + Get 2d size of the value. For scalars, it's 1x1, for multi-area references, + it's also 1x1,because it is converted to #VALUE! error. + + + + + Return the array value. + + + + + + A base class for an 2D array. Every array is at least 1x1. + + + + + Width of the array, at least 1. + + + + + Height of the array, at least 1. + + + + + Get a value at specified coordinate. + + Uses 0-based notation. + Uses 0-based notation. + + + + An iterator over all elements of an array, from top to bottom, from left to right. + + + + + Return a new array that was created by applying a function to each element of the array. + + + + + Return a new array that was created by applying a function to each element of the left and right array. + Arrays can have different size and missing values are replaced by #N/A. + + + + + Broadcast array for calculation of array formulas. + + + + + An array of scalar values. + + + + + Array for array literal from a parser. It uses a 1D array of values as a storage. + + + + + Create a new instance of a . + + Number of rows of an array/ + Number of columns of an array. + Row by row data of the array. Has the expected size of an array. + + + + A special case of an array that is actually only numbers. + + + + + An array that retrieves its value directly from the worksheet without allocating extra memory. + + + + + A resize array from another array. Extra items without value have #N/A. + + + + + An array where all elements have same value. + + + + + An array that is a rectangular slice of the original array. + + + + + Create a sliced array from the original array. + + Original array. + The row offset indicating the starting row of the slice in the original array. + The number of rows in the sliced array. + The column offset indicating the starting column of the slice in the original array. + The number of columns in the sliced array. + + + + Base class for all AST nodes. All AST nodes must be immutable. + + + + + Method to accept a visitor (=call a method of visitor with correct type of the node). + + + + + A base class for all AST nodes that can be evaluated to produce a value. + + + + + AST node that contains a blank, logical, number, text or an error value. + + + + + AST node that contains a constant array. Array is at least 1x1. + + + + + Unary expression, e.g. +123 + + + + + Binary expression, e.g. 1+2 + + + + + A function call, e.g. SIN(0.5). + + + + + Name of the function. + + + + + AST nodes for arguments of the function. + + + + + An placeholder node for AST nodes that are not yet supported in ClosedXML. + + + + + AST node for an reference to an external file in a formula. + + + + + If the file is references indirectly, numeric identifier of a file. + + + + + If a file is referenced directly, a path to the file on the disc/UNC/web link, . + + + + + AST node for prefix of a reference in a formula. Prefix is a specification where to look for a reference. + + Prefix specifies a Sheet - used for references in the local workbook. + Prefix specifies a FirstSheet and a LastSheet - 3D reference, references uses all sheets between first and last. + Prefix specifies a File, no sheet is specified - used for named ranges in external file. + Prefix specifies a File and a Sheet - references looks for its address in the sheet of the file. + + + + + + If prefix references data from another file, can be empty. + + + + + Name of the sheet, without ! or escaped quotes. Can be null in some cases e.g. reference to a named range in an another file). + + + + + If the prefix is for 3D reference, name of first sheet. Empty otherwise. + + + + + If the prefix is for 3D reference, name of the last sheet. Empty otherwise. + + + + + AST node for a reference of an area in some sheet. + + + + + An optional prefix for reference item. + + + + + An address of a reference that corresponds to . Always without sheet (that is in the prefix). + + + + + An area from a parser. + + + + + Is the reference in A1 style? If false, then it is R1C1. + + + + + A name node in the formula. Name can refers to a generic formula, in most cases a reference, but it can be any kind of calculation (e.g. A1+7). + + + + + An optional prefix for reference item. + + + + + Can be empty if no prefix available. + + + + + Table of the reference. It can be empty, if formula using the reference is within + the table itself (e.g. total formulas). + + + + + Area of the table that is considered for the range of cell of reference. + + + + + First column of column range. If the reference refers to the whole table, + the value is null. + + + + + Last column of column range. If structured reference refers only to one column, + it is same as . If the reference refers to the whole table, + the value is null. + + + + + Worksheet of the cell the formula is calculating. + + + + + Worksheet of the cell the formula is calculating. + + + + + Address of the calculated formula. + + + + + A culture used for comparisons and conversions (e.g. text to number). + + + + + Excel 2016 and earlier doesn't support dynamic array formulas (it used an array formulas instead). As a consequence, + all arguments for scalar functions where passed through implicit intersection before calling the function. + + + + + Should functions be calculated per item of multi-values argument in the scalar parameters. + + + + + Sheet that is being recalculated. If set, formula can read dirty + values from other sheets, but not from this sheetId. + + + + + What date system should be used in calculation. Either 1900 or 1904. + + + + + An upper limit (exclusive) of used calendar system. + + + + + A helper method to check is user cancelled the calculation in function loops. + + + + + This method goes over slices and returns a value for each non-blank cell. Because it is using + slice iterators, it scales with number of cells, not a size of area in reference (i.e. it works + fine even if reference is A1:XFD1048576). It also works for 3D references. + + + + + Return all points in the that satisfy the . + + + + + This method should be used mostly for range arguments. If a value is scalar, + return a single value enumerable. + + + + + A default visitor that copies a formula. + + + + + Context for , it is used + to collect all objects a formula depends on during calculation. + + + + + An area of a formula, in most cases just one cell, for array formulas area of cells. + + + + + The result. Visitor adds all areas/names formula depends on to this. + + + + + Add areas to a list of areas the formula depends on. Disregards duplicate entries. + + + + + Add name to a list of names the formula depends on. Disregards duplicate entries. + + + + + + Visit each node and determine all ranges that might affect the formula. + It uses concrete values (e.g. actual range for structured references) and + should be refreshed when structured reference or name is changed in a workbook. + + + The areas found by the visitor shouldn't change when data on a worksheet changes, + so the output is a superset of areas, if necessary. + + + Precedents visitor is not completely accurate, in case of uncertainty, it uses + a larger area. At worst the end result is unnecessary recalculation. For simple + cases, it works fine and freaks like A1:IF(Other!B5,B7,Different!G3) + will be marked as dirty more often than strictly necessary. + + + Each node visitor evaluates, if the output is a reference or a value/array. If + the result is an array, it propagates to upper nodes, where can be things like + range operator. + + + + + + + A dependency tree structure to hold all formulas of the workbook and reference + objects they depend on. The key feature of dependency tree is to propagate + dirty flag across formulas. + + + When a data in a cell changes, all formulas that depend on it should be marked + as dirty, but it is hard to find which cells are affected - that is what + dependency tree does. + + + Dependency tree must be updated, when structure of a workbook is updated: + + Sheet is added, renamed or deleted. + Name is added or deleted. + Table is resized, renamed, added or deleted. + + Any such action changes what cells formula depends on and + the formula dependencies must be updated. + + + + + + The source of the truth, a storage of formula dependencies. The dependency tree is + constructed from this collection. + + + + + Visitor to extract precedents of formulas. + + + + + A dependency tree for each sheet (key is sheet name). + + + + + Add a formula to the dependency tree. + + Area of a formula, for normal cells 1x1, for array can be larger. + The cell formula. + Workbook that is used to find precedents (names ect.). + Added cell formula dependencies. + Formula already is in the tree. + + + + Remove formula from the dependency tree. + + Formula to remove. + + + + Mark all formulas that depend (directly or transitively) on the area as dirty. + + + + + An area that is referred by formulas in different cells, i.e. it + contains precedent cells for a formula. If anything in the area + potentially changes, all dependents might also change. + + + + + An area in a sheet that is used by formulas, converted to RBush envelope. + All RBush double coordinates are whole numbers. + + + + + The area in a sheet on which some formulas depend on. + + SIN(A4) depends on A4:A4 area.. + + + + List of formulas that depend on the range, always at least one. + + + + + A dependent on a precedent area. If the precedent area changes, + the dependent might also now be invalid. + + + + + Area that is invalidated, when precedent area is marked as + dirty. Generally, it is an area of formula (1x1 for normal + formulas), larger for array formulas. Cell formula by itself + doesn't contain it's address to make it easier add/delete + rows/cols. + + + + + The formula that is affected by changes in precedent area. + + + + + A dependency tree for a single worksheet. + + + + + The precedent areas are not duplicated, though two areas might overlap. + + + + + All precedent areas in the sheet for all formulas in the workbook. + + + Not sure extra memory (at least 32 bytes per formula) is worth less CPU: O(1) vs O(log N).... + + + + + Remove a dependency of on a + from the sheet dependency tree. + + A precedent area in the sheet. + Formula depending on the . + + + + Exception that happens when formula in a cell depends on other cells, + but the supporting formulas are still dirty. + + + + + Evaluation of the formula needs an information that wasn't available. That can happen if the formula + is evaluated from methods like . Causes vary, e.g. implicit intersection + needs an address of the formula cell. Various methods in ClosedXML are missing different information, e.g. + has worksheet, but no cell address (=ranges will work, other things won't). + + + + + Caches expressions based on their string representation. + This saves parsing time. + + + Uses weak references to avoid accumulating unused expressions. + + + + + The exception that is thrown when the strings to be parsed to an expression is invalid. + + + + + Initializes a new instance of the ExpressionParseException class with a + specified error message. + + The message that describes the error. + + + + A non-state representation of a formula that can be used by many cells. + + + + Text of the formula. + + + + A list of objects a cell formula depends on. If one of them changes, + the formula value might no longer be accurate and needs to be recalculated. + + + + + List of areas the formula depends on. It is likely a superset of accurate + result for unusual formulas, but if a value in an areas changes, the dependent + formula should be marked as dirty. + + + + + A collection of names in the formula. If a name changes (added, deleted), + the formula dependencies should be refreshed, because new name might refer to + different references (e.g. a name previously referred to A5 and is redefined + to B7 or just value 7 => formula no longer depends on A5). + + + + + Parse a formula into an abstract syntax tree. + + + + + Factory to create abstract syntax tree for a formula in A1 notation. + + + + + A prefix for so-called future functions. Excel can add functions, but to avoid name collisions, + it prefixes names of function with this prefix. The prefix is omitted from GUI. + + + If you write CONCAT(A1,B1) in Excel 2021 (not present in Excel 2013), it is saved to the + worksheet file as _xlfn.CONCAT(A1,B1), but the Excel GUI will show only CONCAT(A1,B1), + without the _xlfn. + + + + + Parse a fraction for text-to-number type coercion. + + + + + Function definition class (keeps function name, parameter counts, and delegate). + + + + + Which parameters of the function are marked. The values are indexes of the function parameters, starting from 0. + Used to determine which arguments allow ranges and which don't. + + + + + Evaluate the function with array formula semantic. + + + + + Function flags that indicate what does function do. It is used by CalcEngine for calculation + chain and formula execution. + + + + + Function that takes an input and returns an output. It is designed for a single value arguments. + If scalar function is used for array formula or dynamic array formula, the function is called for each element separately. + + + + + Non-scalar function. At least one of arguments of the function accepts a range. It means that + implicit intersection works differently. + + + + + Function has side effects, e.g. it changes something. + + HYPERLINK + + + + Function returns array. Functions without this flag return a scalar value. + CalcEngine treats such functions differently for array formulas. + + + + + Function is not deterministic. + + RAND(), DATE() + + + + The function is a future function (i.e. functions not present in Excel 2007). Future + functions are displayed to the user with a name (e.g SEC), but are actually + stored in the workbook with a prefix _xlfn (e.g. _xlfn.SEC). + The prefix is there for backwards compatibility, to not clash with user defined + functions and other such reasons. See [MS-XLSX] 2.3.3 for complete list. + + + + Which parameters of a function allow ranges. That is important for implicit intersection. + + + None of parameters allow ranges. + + + All parameters allow ranges. + + + All parameters except marked ones allow ranges. + + + Only marked parameters allow ranges. + + + + Add a function to the registry. + + Name of function in formulas. + Minimum number of parameters. + Maximum number of parameters. + A delegate of a function that will be called when function is supposed to be evaluated. + Flags that indicate some additional info about function. + Which parameters allow ranges to be argument. Useful for array formulas. + Index of parameter that is marked, start from 0 + + + + An extension methods + + + + + Aggregate all values in the arguments of a function into a single value. If any value is error, return the error. + + + A lot of functions take all argument values and aggregate the values to a different value. + These aggregation functions apply aggregation on each argument and if the argument is + a collection (array/reference), the aggregation function is also applied to each element of + the array/reference (e.g. SUM({1, 2}, 3) applies sum on each element of an array + {1,2} and thus result is 1+2+3). + + Type of the value that is being aggregated. + Arguments of a function. Method goes over all elements of the arguments. + Calculation context.> + + Initial value of the accumulator. It is used as an input into the first call of . + + + What should be the result of aggregation, if there are no elements. Common choices are + or the . + + + The aggregation function. First parameter is the accumulator, second parameter is the value of + current element taken from . Make sure the method is static lambda to + avoid useless allocations. + + + A function that converts a scalar value of an element into the or + an error if it can't be converted. Make sure the method is static lambda to avoid useless allocations. + + + Some functions skip elements in a array/reference that would be accepted as an argument, + e.g. SUM("1", {2,"4"}) is 3 - it converts string "3" to a number 3 + in for root arguments, but omits element "4" in the array. This is a function that + determines which elements to include and which to skip. If null, all elements of array are included and + all values are treated same. Make sure the method is static lambda to avoid useless allocations. + + + + + A representation of selection criteria used in IFs functions {SUM,AVERAGE,COUNT}{IF,IFS} + and database functions (D{AVERAGE,COUNT,COUNTA,...}). + + + + + Can a blank value match the criteria? + + + + + There has to be a None comparison, because criteria empty string ("") + matches blank and empty string. That is not same as "=" or actual + blank value. Thus it can't be reduced to equal with some operand + and has to have a special case. + + + + + Serial date of 9999-12-31. Date is generally considered invalid, if above that or below 0. + + + + + Calculate week day. No checks. The default form is form 3 (week starts at Sun, range 1..7). + + + + + A date type unconstrained by DateTime limitations (1900-01-00 or 1900-02-29). + Has some similar methods as DateTime, but without limit checks. + + + + + A date type unconstrained by DateTime limitations (1900-01-00 or 1900-02-29). + Has some similar methods as DateTime, but without limit checks. + + + + + Return day of year, starting from 1 to 365/366. Counts 1900 as 366 leap year. + + + + + Find index of the greatest element smaller or equal to the . + + Value to look for. + Data in ascending order. + A comparator for comparing two values. + Index of found element. If the contains + a sequence of values, it can be index of any of them. + + + + + Find a row with a value of same type as + between values and - 1. + We know that both and + contain value of the same type, so we always get a valid row. + + + + + Find row index of an element with same type as the lookup value. Go from + to the by a step + of . If there isn't any such row, return -1. + + + + + A collection of adapter functions from a more a generic formula function to more specific ones. + + + + + An adapter for {SUM,AVERAGE}IFS functions. + + + + + An adapter for COUNTIFS function. + + + + + Adapt a function that accepts areas as arguments (e.g. SUMPRODUCT). The key benefit is + that all ReferenceArray allocation is done once for a function. The method + shouldn't be used for functions that accept 3D references (e.g. SUMSQ). It is still + necessary to check all errors in the , adapt method doesn't do that + on its own (potential performance problem). The signature uses an array instead of + IReadOnlyList interface for performance reasons (can't JIT access props through interface). + + + + + A tally function for *A functions (e.g. AverageA, MinA, MaxA). The behavior is buggy in Excel, + because they doesn't count logical values in array, but do count them in reference ¯\_(ツ)_/¯. + + + + + + Scalar values are converted to number, conversion might lead to errors. + Array values includes numbers, ignore logical and text. + Reference values include logical, number and text is considered a zero. + + Errors are propagated. + + + + + + Scalar values are converted to number, conversion might lead to errors. + Array values includes numbers, text is considered a zero and logical values are ignored. + Reference values include logical, number and text is considered a zero. + + Errors are propagated. + + + + + + Scalar values are converted to number, conversion might lead to errors. + Array values includes numbers, text is considered a zero and logical values are ignored. + Reference values include logical, number and text is considered a zero. + + Errors are considered zero and are not propagated. + + + + + Tally algorithm for SUBTOTAL functions 1..11. + + + + + Tally algorithm for SUBTOTAL functions 101..111. + + + + + Tally for {SUM,COUNT,AVERAGE}IF/S and database function. The created tally must contain + all selection areas and associated criteria. The main function is then + called with values that will be tallied, based on the areas+criteria in the tally object. + + + + + A collection of areas that are tested and if all satisfy the criteria, corresponding values + in the tally areas are tallied. + + + + + A method to convert a value in the tally area to a number. If scalar value shouldn't be tallied, return null. + + + + + Add criteria to the tally that limit which values should be tallied. + + + + + Tally numbers. + + + + + Ignore blank from scalar values. Basically used for PRODUCT function, so it doesn't end up with 0. + + + + + Tally algorithm for SUBTOTAL functions 1..11. + + + + + Tally algorithm for SUBTOTAL functions 101..111. + + + + + Tally numbers. Any error (including conversion), logical, text is ignored and not tallied. + + + + + The method tries to convert scalar arguments to numbers, but ignores non-numbers in + reference/array. Any error found is propagated to the result. + + + + + Maximum integer number that can be precisely represented in a double. + Calculated as Math.Pow(2, 53) - 1, but use literal to make it + constant (=usable in pattern matching). + + + + + Key: roman form. Value: A collection of subtract symbols and subtract value. + Collection is sorted by subtract value in descending order. + + + + + Calculate SUM((x_i - mean_x)^2) and number of samples. This method uses two-pass algorithm. + There are several one-pass algorithms, but they are not numerically stable. In this case, accuracy + takes precedence (plus VAR/STDEV are not a very frequently used function). Excel might have used + those one-pass formulas in the past (see Statistical flaws in Excel), but doesn't seem to + be using them anymore. + + + + + Characters 0x80 to 0xFF of win-1252 encoding. Core doesn't include win-1252 encoding, + so keep conversion table in this string. + + + + + Reference is a collection of cells in the workbook. It's used in formula evaluation. + Every reference has at least one cell. + + + + + Ctor that reuses parameter to keep allocations low - don't modify the collection after it is passed to ctor. + + + + + List of areas of the range (at least one). All areas are valid and normalized. Some areas have worksheet and some don't. + + + + + Get total number of cells coverted by all areas (double counts overlapping areas). + + + + + An iterator over all nonblank cells of the range. Some cells can be iterated + over multiple times (e.g. a union of two ranges with overlapping cells). + + + + + Do an implicit intersection of an address. + + + An address of the intersection or error if intersection failed. + + + + A representation of a value as a discriminated union. + + + A bare bone copy of OneOf that can be more optimized: + + readonly struct to get rid of defensive copies + struct can be smaller through offsets (based on NoBox) + allows to pass additional arguments to Match function to skip a need to instantiate a new lambda instance on each call and allow easier inlining. + + + + + + A blank value of a scalar. It can behave as a 0 or empty string, depending on context. + + A1+5 is a number 5, blank behaves as 0, A1 & "text" is a "text", blank behaves as empty string. + + + + Convert value to text. Error is not convertible. + + + + + Convert value to number. Error is not convertible. + + + + + Parse text to a scalar value. Generally used in formulas or autofilter. + + Text to parse. + Culture used for parsing numbers or dates. + Parsed scalar value. + + + + Try to pick a number (interpret blank as number 0). + + + + + Does this value have same type as the other one? + + + + + Get the logical value, if it is either blank (false), logical or number (0 = false, otherwise true)a text TRUE or FALSE (case insensitive). + + Used for coercion in functions. + + + + A comparer of a scalar logic. Each comparer with it's logic can be accessed through a static property. + + + + + Compare scalar values according to logic of "Sort" data in Excel, though texts are compared case insensitive. + + + Order is + + Type Number, from low to high + Type Text, from low to high (non-culture specific, ordinal compare) + Type Logical, FALSE, then TRUE. + Type Error, all error values are treated as equal (at least they don't change order). + Type Blank, all values are treated as equal. + + + + + + A parser of timespan format used by excel during coercion from text to number. parsing methods + don't allow for several features required by excel (e.g. seconds/minutes over 60, hours over 24). + Parser can parse following formats from ECMA-376, Part 1, §18.8.30. due to standard text-to-number coercion: + + Format 20 - h:mm. + Format 21 - h:mm:ss. + Format 47 - mm:ss.0 (format is incorrectly described as mmss.0 in the standard, + but fixed in an implementation errata). + + Timespan is never interpreted through format 45 (mm:ss), instead preferring the format 20 (h:mm). + Timespan is never interpreted through format 46 ([h]:mm:ss], such values are covered by format 21 (h:mm:ss). + + + Note that the decimal fraction differs format 20 and 47, thus mere addition of decimal + place means significantly different values. Parser also copies features of Excel, like whitespaces around + a decimal place (10:20 . 5 is allowed). + + 20:30 is detected as format 20 and the first number is interpreted as hours, thus the serial time is 0.854167. + 20:30.0 is detected as format 47 and the first number is interpreted as minutes, thus the serial time is 0.014236111. + + + + + + A collection of all references in the book (not others) found in a formula. + Created by . + + + + + Is there a #REF! anywhere in the formula? + + + + + Areas without a sheet found in the formula. + + + + + Areas with a sheet found in the formula. + + + + + Factory to get all references (cells, tables, names) in local workbook. + + + + + Add necessary prefixes to a user-supplied future functions without a prefix (e.g. + acot(A5)/2 to _xlfn.ACOT(A5)/2). + + + + + All functions must have chars in the .-_ range (trie range). + + + + + Indicates the node represents a full prefix. Leaves are always ends and middle nodes + sometimes (e.g. AB and ABC). + + + + + Something transitions to this tree. + + + + + Index is a character minus . The possible range of characters + is from to . + + + + + A visitor for that maps one name of a function to another. + + + + + Case insensitive dictionary of function names. + + + + + A factory to rename named reference object (sheets, tables ect.). + + + + + A mapping of sheets, from old name (key) to a new name (value). + The null value indicates sheet has been deleted. + + + + + A wildcard is at most 255 chars long text. It can contain * which indicates any number characters (including zero) + and ? which indicates any single character. If you need to find * or ? in a text, prefix them with + an escape character ~. + + + + + Search for the wildcard anywhere in the text. + + Text used to search for a pattern. + zero-based index of a first character in a text that matches to a pattern or -1, if match wasn't found. + + + + Match the pattern against input. + + Pattern matches whole input. + + + + Does the start of an input match the pattern? + + + + + CalcEngine parses strings and returns Expression objects that can + be evaluated. + + + This class has three extensibility points: + Use the RegisterFunction method to define custom functions. + + + + + Parses a string into an . + + String to parse. + An formula that can be evaluated. + + + + Add an array formula to the calc engine to manage dirty tracking and evaluation. + + + + + Add a formula to the calc engine to manage dirty tracking and evaluation. + + + + + Remove formula from dependency tree (=precedents won't mark + it as dirty) and remove from the chain. + Note that even if formula is used by many cells (e.g. array formula), + it is fully removed from dependency tree, but each cells referencing + the formula must be removed individually from calc chain. + + + + + Recalculate a workbook or a sheet. + + + + + Evaluates a normal formula. + + Expression to evaluate. + Workbook where is formula being evaluated. + Worksheet where is formula being evaluated. + Address of formula. + Should the data necessary for this formula (not deeper ones) + be calculated recursively? Used only for non-cell calculations. + + If set, calculation will allow dirty reads from other sheets than the passed one. + + The value of the expression. + + If you are going to evaluate the same expression several times, + it is more efficient to parse it only once using the + method and then using the Expression.Evaluate method to evaluate + the parsed expression. + + + + + Convert any kind of formula value to value returned as a content of a cell. + + bool - represents a logical value. + double - represents a number and also date/time as serial date-time. + string - represents a text value. + - represents a formula calculation error. + + + + + + + A calculation chain of formulas. Contains all formulas in the workbook. + + + Calculation chain is an ordering of all cells that have value calculated + by a formula (note that one formula can determine value of multiple cells, + e.g. array). Formulas are calculated in specified order and if currently + processed formula needs data from a cell whose value is dirty (i.e. it + is determined by a not-yet-calculated formula), the current formula is + stopped and the required formula is placed before the current one and starts + to be processed. Once it is done, the original formula is starts to be processed + again. It might have encounter another not-yet-calculated formula or it + will finish and the calculation chain moves to the next one. + + + Chain can be traversed through , , + and , but only one traversal + can go on at the same time due to shared info about cycle detection. + + + + + + Key to the that is the head of the chain. + Null, when chain is empty. + + + + + Key to the that is the tail of the chain. + Null, when chain is empty. + + + + + + Doubly circular linked list containing all points with value + calculated by a formula. The chain is "looped", so it doesn't + have to deal with nulls for . + + + There is always exactly one loop, no cycles. The formulas might + cause cycles due to dependencies, but that is manifested by + constantly switching the links in a loop. + + + + + 1 based position of , if there is a traversal + in progress (0 otherwise). + + + + + The address of a current of the chain. + + + + + Is there a cycle in the chain? Detected when a link has appeared + as a current more than once and the current hasn't moved in the + meantime. + + + + + Create a new chain filled with all formulas from the workbook. + + + + + Add a new link at the beginning of a chain. + + + + + + + + Add all cells from the area to the end of the chain. + + If chain already contains a cell from the area. + + + + Append formula at the end of the chain. + + + + + Initialize empty chain with a single link chain. + + + + + Insert a link into the between + and . + Don't update head or tail. + + + + + Add a link for after the link for + . + + + The anchor point after which will be the new point added. + + Point to add to the chain. + The last position of the point in the chain. + + + + Remove point from the chain. + + Link to remove. + Last position of the removed link. + Point is not a part of the chain. + + + + Clear whole chain. + + + + + Enumerate all links in the chain. + + + + + Mark current link as complete and move ahead to the next link. + + + true if the enumerator moved ahead, false if + there are no more links and chain has looped completely. + + + + + Move the before the current point + as the new current to be calculated. + + + The point of a chain to moved to the current. Should always be in + the chain after the current. + + + + + + What was the 1-based position of the link in the chain the last + time the link has been current. Only used when link is pushed + to the back, otherwise it's 0. + + + The last position of a link is only updated when + + + Link is moved from current to the back - that means link + will be moved to current again at some point in the future + and if chain hasn't processed even one link in the meantime, + there is a cycle. + + + Link is marked as done and current moves past it. The last + position should be cleared as not to confuse next traversal. + + + Chain traversal is reset - links in front of current may still + have set their last position, because other links have been + moved to the current as a supporting links. + + + + + Used for cycle detection. + + + + Comparer of ranges that ignores whether row/column is fixes or not. + + + + + A blank value. Used as a value of blank cells or as an optional argument for function calls. + + + + + Represents the sole instance of the class. + + + + + A formula error. + + + Keep order of errors in same order as value returned by ERROR.TYPE, + because it is used for comparison in some case (e.g. AutoFilter). + Values are off by 1, so default produces a valid error. + + + + + #NULL! - Intended to indicate when two areas are required to intersect, but do not. + + The space is an intersection operator. + SUM(B1 C1) tries to intersect B1:B1 area and C1:C1 area, but since there are no intersecting cells, the result is #NULL. + + + + #DIV/0! - Intended to indicate when any number (including zero) or any error code is divided by zero. + + + + + #VALUE! - Intended to indicate when an incompatible type argument is passed to a function, or an incompatible type operand is used with an operator. + + Passing a non-number text to a function that requires a number, trying to get an area from non-contiguous reference. Creating an area from different sheets Sheet1!A1:Sheet2!A2 + + + + #REF! - a formula refers to a cell that's not valid. + + When unable to find a sheet or a cell. + + + + #NAME? - Intended to indicate when what looks like a name is used, but no such name has been defined. + + Only for named ranges, not sheets. + TestRange*10 when the named range doesn't exist will result in an error. + + + + #NUM! - Intended to indicate when an argument to a function has a compatible type, but has a value that is outside the domain over which that function is defined. + + This is known as a domain error. + ASIN(10) - the ASIN accepts only argument -1..1 (an output of SIN), so the resulting value is #NUM!. + + + + #N/A - Intended to indicate when a designated value is not available. + + The value is used for extra cells of an array formula that is applied on an array of a smaller size that the array formula. + + + + Set all cells in a to the array formula. + + + This method doesn't check that formula doesn't damage other array formulas. + + + + + Mark all formulas in a range as dirty. + + + + + An interface for components reacting on changes in a worksheet. + + + + + A handler called after the area was put into the sheet and cells shifted down. + + Sheet where change happened. + Area that has been inserted. The original cells were shifted down. + + + + A handler called after the area was put into the sheet and cells shifted right. + + Sheet where change happened. + Area that has been inserted. The original cells were shifted right. + + + + A handler called after the area was deleted from the sheet and cells shifted left. + + Sheet where change happened. + Range that has been deleted and cells to the right were shifted left. + + + + A handler called after the area was deleted from the sheet and cells shifted up. + + Sheet where change happened. + Range that has been deleted and cells below were shifted up. + + + + An interface for methods of without specified type of an element. + + + + + Is at least one cell in the slice used? + + + + + Get maximum used column in the slice or 0, if no column is used. + + + + + Get maximum used row in the slice or 0, if no row is used. + + + + + A set of columns that have at least one used cell. Order of columns is non-deterministic. + + + + + A set of rows that have at least one used cell. Order of rows is non-deterministic. + + + + + Clear all values in the range and mark them as unused. + + + + + Clear all values in the and shift all values right of the deleted area to the deleted place. + + + + + Clear all values in the and shift all values below the deleted area to the deleted place. + + + + + Get all used points in a slice. + + Range to iterate over. + false = left to right, top to bottom. true = right to left, bottom to top. + + + + Shift all values at the and all cells below it + down by of the . + The insert area is cleared. + + + + + Shift all values at the and all cells right of it + to the right by of the . + The insert area is cleared. + + + + + Does slice contains a non-default value at specified point? + + + + + Swap content of two points. + + + + + Listener for components that need to be notified about structural changes of a workbook + (adding/removing sheet, renaming). See for similar listener about + structural changes of a sheet. + + + + + Method is called when sheet has already been renamed. Each component is responsible only + for changing data in itself, not other components. The goal is to separate concerns so + each component is not too dependent on others and can achieve the goal in efficient manner. + + Old sheet name. + New sheet name, different from old one. + + + + A value that is in the cell. + + + + + The value is a blank (either blank cells or the omitted optional argument of a function, e.g. IF(TRUE,,). + + Keep as the first, so the default values are blank. + + + + The value is a logical value. + + + + + The value is a double-precision floating points number, excluding , + or . + + + + + A text or a rich text. Can't be null and can be at most 32767 characters long. + + + + + The value is one of . + + + + + The value is a , represented as a serial date time number. + + + Serial date time 60 is a 1900-02-29, nonexistent day kept for compatibility, + but unrepresentable by DateTime. Don't use. + + + + + The value is a , represented in a serial date time (24 hours is 1, 36 hours is 1.5 ect.). + + + + + Is this cell the active cell of + the worksheet? Setting false deactivates cell only when the + cell is currently active. + + + + Gets this cell's address, relative to the worksheet. + The cell's address. + + + + Get the value of a cell without evaluation of a formula. If the cell contains + a formula, it returns the last calculated value or a blank value. If the cell + doesn't contain a formula, it returns same value as . + May hold invalid value when flag is True. + + Can be useful to decrease a number of formula evaluations. + + + + Returns the current region. The current region is a range bounded by any combination of blank rows and blank columns + + + The current region. + + + + + Gets the type of this cell's data. + + + The type of the cell's data. + + + + + Gets or sets the cell's formula with A1 references. + + + Setter trims the formula and if formula starts with an =, it is removed. If the + formula contains unprefixed future function (e.g. CONCAT), it will be correctly + prefixed (e.g. _xlfn.CONCAT). + + The formula with A1 references. + + + + Gets or sets the cell's formula with R1C1 references. + + + Setter trims the formula and if formula starts with an =, it is removed. If the + formula contains unprefixed future function (e.g. CONCAT), it will be correctly + prefixed (e.g. _xlfn.CONCAT). + + The formula with R1C1 references. + + + + An indication that value of this cell is calculated by a array formula + that calculates values for cells in the referenced address. Null if not part of such formula. + + + + + Flag indicating that previously calculated cell value may be not valid anymore and has to be re-evaluated. + Only cells with formula may return true, value cells always return false. + + + + + Gets or sets a value indicating whether this cell's text should be shared or not. + + + If false the cell's text will not be shared and stored as an inline value. + + + + + Gets or sets the cell's style. + + + + + Gets or sets the cell's value. + + Getter will return value of a cell or value of formula. Getter will evaluate a formula, if the cell + , before returning up-to-date value. + + + Setter will clear a formula, if the cell contains a formula. + If the value is a text that starts with a single quote, setter will prefix the value with a single quote through + in Excel too and the value of cell is set to to non-quoted text. + + + + + + Should the cell show phonetic (i.e. furigana) above the rich text of the cell? + It shows phonetic runs in the rich text, it is not autogenerated. Default + is false. + + + + + Creates a named range out of this cell. + If the named range exists, it will add this range to that named range. + The default scope for the named range is Workbook. + + Name of the range. + + + + Creates a named range out of this cell. + If the named range exists, it will add this range to that named range. + Name of the range. + The scope for the named range. + + + + + Creates a named range out of this cell. + If the named range exists, it will add this range to that named range. + Name of the range. + The scope for the named range. + The comments for the named range. + + + + + Returns this cell as an IXLRange. + + + + + Clears the contents of this cell. + + Specify what you want to clear. + + + + Copy range content to an area of same size starting at the cell. + Original content of cells is overwritten. + + Range whose content to copy. + This cell. + + + + Creates a new comment for the cell, replacing the existing one. + + + + + Creates a new data validation rule for the cell, replacing the existing one. + + + + + Creates a new hyperlink replacing the existing one. + + + + + Replaces a value of the cell with a newly created rich text object. + + + + + Deletes the current cell and shifts the surrounding cells according to the shiftDeleteCells parameter. + + How to shift the surrounding cells. + + + + Returns the comment for the cell or create a new instance if there is no comment on the cell. + + + + + Returns a data validation rule assigned to the cell, if any, or creates a new instance of data validation rule if no rule exists. + + + + + Gets the cell's value as a Boolean. + + Shortcut for Value.GetBoolean() + If the value of the cell is not a logical. + + + + Gets the cell's value as a Double. + + Shortcut for Value.GetNumber() + If the value of the cell is not a number. + + + + Gets the cell's value as a String. + + Shortcut for Value.GetText(). Returned value is never null. + If the value of the cell is not a text. + + + + Gets the cell's value as a XLError. + + Shortcut for Value.GetError() + If the value of the cell is not an error. + + + + Gets the cell's value as a DateTime. + + Shortcut for Value.GetDateTime() + If the value of the cell is not a DateTime. + + + + Gets the cell's value as a TimeSpan. + + Shortcut for Value.GetTimeSpan() + If the value of the cell is not a TimeSpan. + + + + Try to get cell's value converted to the T type. + + Supported types: + + Boolean - uses a logic of + Number (s/byte, u/short, u/int, u/long, float, double, or decimal) + - uses a logic of and succeeds, + if the value fits into the target type. + String - sets the result to a text representation of a cell value (using current culture). + DateTime - uses a logic of + TimeSpan - uses a logic of + XLError - if the value is of type , it will return the value. + Enum - tries to parse a value to a member by comparing the text of a cell value and a member name. + + + + If the is a nullable value type and the value of cell is blank or empty string, return null value. + + + If the cell value can't be determined because formula function is not implemented, the method always returns false. + + + The requested type into which will the value be converted. + Value to store the value. + true if the value was converted and the result is in the , false otherwise. + + + + + + Conversion logic is identical with . + The requested type into which will the value be converted. + If the value can't be converted to the type of T + + + + Return cell's value represented as a string. Doesn't use cell's formatting or style. + + + + + Gets the cell's value formatted depending on the cell's data type and style. + + Culture used to format the string. If null (default value), use current culture. + + + + Returns a hyperlink for the cell, if any, or creates a new instance is there is no hyperlink. + + + + + Returns the value of the cell if it formatted as a rich text. + + + + + Inserts the IEnumerable data elements and returns the range it occupies. + + The IEnumerable data. + + + + Inserts the IEnumerable data elements and returns the range it occupies. + + The IEnumerable data. + if set to true the data will be transposed before inserting. + + + + Inserts the data of a data table. + + The data table. + The range occupied by the inserted data + + + + Inserts the IEnumerable data elements as a table and returns it. + The new table will receive a generic name: Table# + + The table data. + + + + Inserts the IEnumerable data elements as a table and returns it. + The new table will receive a generic name: Table# + + The table data. + + if set to true it will create an Excel table. + if set to false the table will be created in memory. + + + + + Creates an Excel table from the given IEnumerable data elements. + + The table data. + Name of the table. + + + + Inserts the IEnumerable data elements as a table and returns it. + + The table data. + Name of the table. + + if set to true it will create an Excel table. + if set to false the table will be created in memory. + + + + + Inserts the DataTable data elements as a table and returns it. + The new table will receive a generic name: Table# + + The table data. + + + + Inserts the DataTable data elements as a table and returns it. + The new table will receive a generic name: Table# + + The table data. + + if set to true it will create an Excel table. + if set to false the table will be created in memory. + + + + + Creates an Excel table from the given DataTable data elements. + + The table data. + Name of the table. + + + + Inserts the DataTable data elements as a table and returns it. + + The table data. + Name of the table. + + if set to true it will create an Excel table. + if set to false the table will be created in memory. + + + + + Invalidate so the formula will be re-evaluated next time is accessed. + If cell does not contain formula nothing happens. + + + + + Set hyperlink of a cell. When user clicks on a cell with hyperlink, + the Excel opens the target or moves cursor to the target cells in a + worksheet. The text of hyperlink is a cell value, the hyperlink + target and tooltip are defined by the + parameter. + + + If the cell uses worksheet style, the method also sets + hyperlink font color from theme and the underline property. + + The new cell hyperlink. Use null to + remove the hyperlink. + + + + This cell. + + + + Returns a string that represents the current state of the cell according to the format. + + A: address, F: formula, NF: number format, BG: background color, FG: foreground color, V: formatted value + + + + Sets the cells' value. + + Setter will clear a formula, if the cell contains a formula. + If the value is a text that starts with a single quote, setter will prefix the value with a single quote through + in Excel too and the value of cell is set to to non-quoted text. + + + + + + Clears the contents of these cells. + + Specify what you want to clear. + + + + Delete the comments of these cells. + + + + + Delete the sparklines of these cells. + + + + + Sets the cells' formula with A1 references. + + The formula with A1 references. + + + + Sets the cells' formula with R1C1 references. + + The formula with R1C1 references. + + + + A class that holds all texts in a workbook. Each text can be either a simple + string or a . + + + + + Table of Id to text. Some ids are empty (entry.RefCount = 0) and + are tracked in . + + + + + List of indexes in that are unused. + + + + + text -> id + + + + + Number of texts the table holds reference to. + + + + + Get a string for specified id. Doesn't matter if it is a plain text or a rich text. In both cases, return text. + + + + + The principle is that every entry is a text, but only some are rich text. + This tries to get a rich text, if it is one. If it is just plain text, return null. + + + + + Get id for a text and increase a number of references to the text by one. + + Id of a text in the SST. + + + + + + + Decrease reference count of a text and free if necessary. + + + + + Get a map that takes the actual string id and returns an continuous sequence (i.e. no gaps). + If an id if free (no ref count), the id is mapped to -1. + + + + + A struct to hold a text. It also needs a flag for inline/shared, because they have to be different + in the table. If there was no inline/shared flag, there would be no way to easily determine whether + a text should be written to sst or it should be inlined. + + + + + Either a string, XLImmutableRichText or null if == 0. + + + + + Must be as flag for inline string, so the default value is false => ShareString is true by default + + + + + How many objects (cells, pivot cache entries...) reference the text. + + + + + Slice is a sparse array that stores a part of cell information (e.g. only values, + only styles ...). Slice has same size as a worksheet. If some cells are pushed out + of the permitted range, they are gone. + + + This is a ref return, so if the underlaying value + changes, the returned value also changes. To avoid, + just don't use ref and structs will be copied. + + The type of data stored in the slice. + + + + The content of the slice. Note that LUT uses index that starts from 0, + so rows and columns must be adjusted to retrieved the value. + + + + + Key is column number, value is number of cells in the column that are used. + + + + + Get the slice value at the specified point of the sheet. + + + + + Get the slice value at the specified point of the sheet. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get enumerator over used values of the range. + + + + + + + + + + + Enumerator that returns used values from a specified range. + + + + + The movement is columns first, then rows. + + + + + + Memory efficient look up table. The table is 2-level structure, + where elements of the the top level are potentially nullable + references to buckets of up-to 32 items in bottom level. + + + Both level can increase size through doubling, through + only the top one can be indefinite size. + + + + + + The default value lut ref returns for elements not defined in the lut. + + + + + A sparse array of values in the lut. The top level always allocated at least one element. + + + + + Get maximal node that is used. Return -1 if LUT is unused. + + + + + Does LUT contains at least one used element? + + + + + Get a value at specified index. + + Index, starting at 0. + Reference to an element at index, if the element is used, otherwise . + + + + Does the index set a mask of used index (=was value set and not cleared)? + + + + + Set/clar an element at index to a specified value. + The used flag will be if the value is default or not. + + + + + A bucket of bottom layer of LUT. Each bucket has up-to 32 elements. + + + + + + A bitmap array that indicates which nodes have a set/no-default values values + (1 = value has been set and there is an element in the , + 0 = value hasn't been set and might exist or not). + If the element at some index is not is not set and lut is asked for a value, + it should return . + + + The length of the bitmap array is same as the , for each + bottom level bucket, the element of index 0 in the bucket is represented by + lowest bit, element 31 is represented by highest bit. + + + This is useful to make a distinction between a node that is empty + and a node that had it's value se to . + + + + + + Enumerator of LUT used values from low index to high. + + + + + Create a new enumerator from subset of elements. + + Lookup table to traverse. + First desired index, included. + Last desired index, included. + + + + Index of current element in the LUT. Only valid, if enumerator is valid. + + + + + Enumerator of LUT used values from high index to low index. + + + + + A slice of a single worksheet for values of a cell. + + + + + Prepare for worksheet removal, dereference all tests in a slice. + + + + + A cell value in a very compact representation. The value is interpreted depending on a type. + + + + + Type of a cell . + + + + + A flag indicating if a string should be stored in the shared table or inline. + + + + + Overriden , because we can't store the value + in the cell. + + + + + A formula in the cell. Null, if cell doesn't contain formula. + + + + + Set value of a cell and its format (if necessary) from the passed value. + It doesn't clear formulas or checks merged cells or tables. + + + + + Perform an evaluation of cell formula. If cell does not contain formula nothing happens, if cell does not need + recalculation ( is False) nothing happens either, unless flag is specified. + Otherwise recalculation is performed, result value is preserved in and returned. + + Flag indicating whether a recalculation must be performed even is cell does not need it. + Null if cell does not contain a formula. Calculated value otherwise. + + + + Set only value, don't clear formula, don't set format. + Sets the value even for merged cells. + + + + + + + + Flag indicating that previously calculated cell value may be not valid anymore and has to be re-evaluated. + + + + The sparkline assigned to the cell + + + + Get the data validation rule containing current cell. + + The data validation rule applying to the current cell or null if there is no such rule. + + + + + + + Ensure the cell has style set directly on the cell, not inherited from column/row/worksheet styles. + + + + + Get glyph bounding boxes for each grapheme in the text. Box size is determined according to + the font of a grapheme. New lines are represented as default (all dimensions zero) box. + A line without any text (i.e. contains only new line) should be represented by a box + with zero advance width, but with a line height of corresponding font. + + Engine used to determine box size. + DPI used to determine size of glyphs. + List where items are added. + + + + A representation of a cell formula, not the formula itself (i.e. the tree). + + + + + This is only a placeholder, so the data table formula looks like array formula for saving code. + First argument is replaced by value from current row, second is replaced by value from current column. + + + + + Is this formula dirty, i.e. is it potentially out of date due to changes + to precedent cells? + + + + + Formula in A1 notation. Doesn't start with = sign. + + + + + Range for array and data table formulas, otherwise default value. + + Doesn't contain sheet, so it doesn't have to deal with + sheet renames and moving formula around. + + + + True, if 1D data table formula is the row (the displayed formula in Excel is missing the second argument {=TABLE(A1;)}). + False the 1D data table is a column. (the displayed formula in Excel is missing the first argument {=TABLE(;A1)}) + This property is meaningless, if called for non-data-table formula. + + + + If data table is in row (i.e. the value returns true) that means it calculates values in a row, + it takes formula from a cell from a column one less than its range and replaces the input cell with value + at the intersection of current cell column and the top row of the range. When data table is a column, it works + pretty much same, except axis are reversed. + + + Just because data table is 1D doesn't mean its range has to be. It can be rectangular even for 1D + data table. It just means that data table is applied separately to each row/column (depending on whether + the data table is row or column). + + + + + + True, if data table is 2D and uses both inputs. Input1 is replaced by + value from current row, input2 is replaced by a value from current column. + This property is meaningless, if called for non-data-table formula. + + + + + Returns a cell that data table formula uses as a variable to replace with values + for the actual table. Used for 1D data table formula as a single input (row or column) + and as row for 2D data table. Must be present, even if input marked as deleted. + This property is meaningless, if called for non-data-table formula. + + + + + Returns a cell that 2D data table formula uses as a variable to replace with values + for the actual table. The value is taken from the top of range of the current column. + Must be present for 2D, even if input marked as deleted. + This property is meaningless, if called for non-data-table formula. + + + + + Returns true, if data table formula has its input1 deleted. + This property is meaningless, if called for non-data-table formula. + + + + + Returns true, if data table formula has its input1 deleted. + This property is meaningless, if called for non-data-table formula. + + + + + Get stored formula in R1C1 notation. Returned formula doesn't contain equal sign. + + + + + A factory method to create a normal A1 formula. Doesn't affect recalculation version. + + Formula in A1 form. Shouldn't start with =. + + + + A factory method to create an array formula. Doesn't affect recalculation version. + + Isn't wrapped in {} and doesn't start with =. + A range of cells that are calculated through the array formula. + A flag for always calculate array. + + + + A factory method to create a cell formula for 1D data table formula. Doesn't affect recalculation version. + + Range of the data table formula. Even 1D table can have rectangular range. + Address of the input cell that will be replaced in the data table. If input deleted, ignored and value can be anything. + Was the original address deleted? + Is data table in row (true) or columns (false)? + + + + A factory method to create a 2D data table formula. Doesn't affect recalculation version. + + Range of the formula. + Address of the input cell that will be replaced in the data table. If input deleted, ignored and value can be anything. + Was the original address deleted? + Address of the input cell that will be replaced in the data table. If input deleted, ignored and value can be anything. + Was the original address deleted? + + + + An enum to efficiently store various flags for formulas (bool takes up 1-4 bytes due to alignment). + Note that each type of formula uses different flags. + + + + + For Array formula. Not fully clear from documentation, but seems to be some kind of dirty flag. + Current excel just writes ca="1" to each cell of array formula for cases described in the DOC. + + + + + For data table formula. Flag whether the data table is 2D and has two inputs. + + + + + For data table formula. If the set, the data table is in row, not column. It uses input1 in both case, but the position + is interpreted differently. + + + + + For data table formula. When the input 1 cell has been deleted (not content, but the row or a column where cell was), + this flag is set. + + + + + For data table formula. When the input 2 cell has been deleted (not content, but the row or a column where cell was), + this flag is set. + + + + + Get a lazy initialized AST for the formula. + + Engine to parse the formula into AST, if necessary. + + + + Get all used cells in the worksheet. + + + + + Get all used cells in the worksheet that satisfy the predicate. + + + + + Get all used cells in the range that satisfy the predicate. + + + + + Get all used cells in the range that satisfy the predicate. + + + + + Get cell or null, if cell is not used. + + + + + Remap rows of a range. + + A sorted map of rows. The values must be resorted row numbers from . + Sheet that should have its rows rearranged. + + + + Remap columns of a range. + + A sorted map of columns. The values must be resorted columns numbers from . + Sheet that should have its columns rearranged. + + + + Gets used points in the range. + + + + + Enumerator that combines several other slice enumerators and enumerates + in any of them. + + + + + Gets or sets the width of this column in number of characters (NoC). + + + NoC are a non-linear units displayed as a column width in Excel, next to pixels. NoC combined with default font + of the workbook can express width of the column in pixels and other units. + + + + + Deletes this column and shifts the columns at the right of this one accordingly. + + Don't use in a loop due to poor performance. Use instead. + + + + Gets this column's number + + + + + Gets this column's letter + + + + + Inserts X number of columns at the right of this one. + All columns at the right will be shifted accordingly. + + The number of columns to insert. + + + + Inserts X number of columns at the left of this one. + This column and all at the right will be shifted accordingly. + + The number of columns to insert. + + + + Gets the cell in the specified row. + + The cell's row. + + + + Returns the specified group of cells, separated by commas. + e.g. Cells("1"), Cells("1:5"), Cells("1,3:5") + + The column cells to return. + + + + Returns the specified group of cells. + + The first row in the group of cells to return. + The last row in the group of cells to return. + + + + Adjusts the width of the column based on its contents. + + + + + Adjusts the width of the column based on its contents, starting from the startRow. + + The row to start calculating the column width. + + + + Adjusts the width of the column based on its contents, starting from the startRow and ending at endRow. + + The row to start calculating the column width. + The row to end calculating the column width. + + + + Adjust width of the column according to the content of the cells. + + Number of a first row whose content is considered. + Number of a last row whose content is considered. + Minimum width of adjusted column, in NoC. + Maximum width of adjusted column, in NoC. + + + + Hides this column. + + + + Unhides this column. + + + + Gets a value indicating whether this column is hidden or not. + + + true if this column is hidden; otherwise, false. + + + + + Gets or sets the outline level of this column. + + + The outline level of this column. + + + + + Adds this column to the next outline level (Increments the outline level for this column by 1). + + + + + Adds this column to the next outline level (Increments the outline level for this column by 1). + + If set to true the column will be shown collapsed. + + + + Sets outline level for this column. + + The outline level. + + + + Sets outline level for this column. + + The outline level. + If set to true the column will be shown collapsed. + + + + Adds this column to the previous outline level (decrements the outline level for this column by 1). + + + + + Adds this column to the previous outline level (decrements the outline level for this column by 1). + + If set to true it will remove this column from all outline levels. + + + + Show this column as collapsed. + + + + Expands this column (if it's collapsed). + + + + Adds a vertical page break after this column. + + + + + Clears the contents of this column. + + Specify what you want to clear. + + + + Sets the width of all columns. + + + The width of all columns. + + + + + Deletes all columns and shifts the columns at the right of them accordingly. + + + + + Adjusts the width of all columns based on its contents. + + + + + Adjusts the width of all columns based on its contents, starting from the startRow. + + The row to start calculating the column width. + + + + Adjusts the width of all columns based on its contents, starting from the startRow and ending at endRow. + + The row to start calculating the column width. + The row to end calculating the column width. + + + + Hides all columns. + + + + Unhides all columns. + + + + Increments the outline level of all columns by 1. + + + + + Increments the outline level of all columns by 1. + + If set to true the columns will be shown collapsed. + + + + Sets outline level for all columns. + + The outline level. + + + + Sets outline level for all columns. + + The outline level. + If set to true the columns will be shown collapsed. + + + + Decrements the outline level of all columns by 1. + + + + + Decrements the outline level of all columns by 1. + + If set to true it will remove the columns from all outline levels. + + + + Show all columns as collapsed. + + + + Expands all columns (if they're collapsed). + + + + Returns the collection of cells. + + + + + Returns the collection of cells that have a value. + + + + + Returns the collection of cells that have a value. + + if set to true will return all cells with a value or a style different than the default. + + + + Adds a vertical page break after these columns. + + + + + Clears the contents of these columns. + + Specify what you want to clear. + + + + The direct constructor should only be used in . + + + + + Calculate column width in pixels according to the content of cells. + + First row number whose content is used for determination. + Last row number whose content is used for determination. + Engine to determine size of glyphs. + DPI of the worksheet. + + + + Adds a vertical page break after this column. + + + + + Create a new instance of . + + If worksheet is specified it means that the created instance represents + all columns on a worksheet so changing its width will affect all columns. + Default style to use when initializing child entries. + A predefined enumerator of to support lazy initialization. + + + + Adds a vertical page break after this column. + + + + + Gets or sets this comment's author's name + + + + + Sets the name of the comment's author + + Author's name + + + + Adds a bolded line with the author's name + + + + + The first of the . + + + + + Priority of formatting rule. Lower values have higher priority than higher values. + Minimum value is 1. It is basically used for ordering of CF during saving. + + + + + A container for conditional formatting of a . It contains + a collection of . Doesn't contain pivot table formats, + they are in pivot table , + + + + + The method consolidate the same conditional formats, which are located in adjacent ranges. + + + + + Reorders the according to original priority. Done during load process + + + + + Absolute units of physical length. + + + Pixels are relative units to the size of screen. + + + + + 1 pt = 1/72 inch + + + + + 1 pc = 12pt. + + + + + English metric unit. + + + + + English metric unit. + + + + + Length in EMU. + + + + + Return length in specified unit. + + + + + Reference to a single cell in a workbook. Reference can be absolute, relative or mixed. + Reference can be with or without a worksheet. + + + + + Worksheet of the reference. Value is null for address without a worksheet. + + + + + Create address without worksheet. For calculation only! + + + + + + Initializes a new struct using a mixed notation. Attention: without worksheet for calculation only! + + The row number of the cell address. + The column letter of the cell address. + + + + + + Initializes a new struct using a mixed notation. + + + The row number of the cell address. + The column letter of the cell address. + + + + + + Initializes a new struct using R1C1 notation. Attention: without worksheet for calculation only! + + The row number of the cell address. + The column number of the cell address. + + + + + + Initializes a new struct using R1C1 notation. + + + The row number of the cell address. + The column number of the cell address. + + + + + + Gets the row number of this address. + + + + + Gets the column number of this address. + + + + + Gets the column letter(s) of this address. + + + + + A specification of an area (rectangular range) of a sheet. + + + + + Name of the sheet. Sheet may exist or not (e.g. deleted). Never null. + + + + + An area in the sheet. + + + + + Perform an intersection. + + The area that is being intersected with this one. + The intersection (=same sheet and has non-empty intersection) or null if intersection isn't possible. + + + + A single point in a workbook. The book point might point to a deleted + worksheet, so it might be invalid. Make sure it is checked when + determining the properties of the actual data of the point. + + + + TODO: SheetId doesn't work nicely with renames, but will in the future. + + A sheet id of a point. Id of a sheet never changes during workbook + lifecycle (), but the sheet may be + deleted, making the sheetId and thus book point invalid. + + + + + + + + + + + A point in the sheet. + + + + + A name in a worksheet. Unlike , this is basically only a reference. + The actual + + + + + Name of a sheet. If null, the scope is a workbook. The sheet might not exist, e.g. it + is only in a formula. The name of a sheet is not escaped. + + + + + The defined name in the scope. Case insensitive during comparisons. + + + + + A reference without a sheet. Can represent single cell (A1), area + (B$4:$D$10), row span (4:10) and col span (G:H). + + + This is an actual representation of a reference, while the is for + an absolute are of a sheet and is only for a cell reference and + only for area reference. + + + + + An offset of a cell in a sheet. + + The row offset in number of rows from the original point. + The column offset in number of columns from the original point + + + + An offset of a cell in a sheet. + + The row offset in number of rows from the original point. + The column offset in number of columns from the original point + + + The row offset in number of rows from the original point. + + + The column offset in number of columns from the original point + + + + An point (address) in a worksheet, an equivalent of ST_CellRef. + + Unlike the XLAddress, sheet can never be invalid. + + + + 1-based row number in a sheet. + + + + + 1-based column number in a sheet. + + + + + Get offset that must be added to so we can get . + + + + + + + + Parse point per type ST_CellRef from + 2.1.1108 Part 4 Section 3.18.8, ST_CellRef (Cell Reference) + + Input text + If the input doesn't match expected grammar. + + + + Try to parse sheet point. Doesn't accept any extra whitespace anywhere in the input. + Letters must be upper case. + + + + + Write the sheet point as a reference to the span (e.g. A1). + + Must be at least 10 chars long + Number of chars + + + + Create a sheet point from the address. Workbook is ignored. + + + + + Is the point within the range or below the range? + + + + + Is the point within the range or to the left of the range? + + + + + Return a new point that has its row coordinate shifted by . + + How many rows will new point be shifted. Positive - new point + is downwards, negative - new point is upwards relative to the current point. + Shifted point. + + + + Return a new point that has its column coordinate shifted by . + + How many columns will new point be shifted. Positive - new + point is to the right, negative - new point is to the left. + Shifted point. + + + + A representation of a ST_Ref, i.e. an area in a sheet (no reference to the sheet). + + + + + A range that covers whole worksheet. + + + + + Top-left point of the sheet range. + + + + + Bottom-right point of the sheet range. + + + + + The left column number of the range. From 1 to . + + + + + The right column number of the range. From 1 to . + Greater or equal to . + + + + + The top row number of the range. From 1 to . + + + + + The bottom row number of the range. From 1 to . + Greater or equal to . + + + + + + + + Parse point per type ST_Ref from + 2.1.1119 Part 4 Section 3.18.64, ST_Ref (Cell Range Reference) + + Can be one cell reference (A1) or two separated by a colon (A1:B2). First reference is always in top left corner + Input text + If the input doesn't match expected grammar. + + + + Try to parse area. Doesn't accept any extra whitespace anywhere in the input. Letters + must be upper case. Area can specify one corner (A1) or both corners (A1:B3). + + + + + Write the sheet range to the span. If range has only one cell, write only the cell. + + Must be at least 21 chars long. + Number of written characters. + + + + Return a range that contains all cells below the current range. + + The range touches the bottom border of the sheet. + + + + Get a range below the current one rows. + If there isn't enough rows, use as many as possible. + + The range touches the bottom border of the sheet. + + + + Return a range that contains all cells to the right of the range. + + The range touches the right border of the sheet. + + + + Return a range that contains additional number of rows below. + + + + + Return a range that contains additional number of columns to the right. + + + + + Create a new range from this one by taking a number of rows from the bottom row up. + + How many rows to take, must be at least one. + + + + Create a new range from this one by taking a number of rows from the top row down. + + How many rows to take, must be at least one. + + + + Create a new range from this one by taking a number of rows from the left column to the right. + + How many columns to take, must be at least one. + + + + Create a new range from this one by taking a number of rows from the bottom row up. + + How many columns to take, must be at least one. + + + + Create a new sheet range that is a result of range operator (:) + of this sheet range and + + The other range. + A range that contains both this range and . + + + + Does this range intersects with . + + true if intersects, false otherwise. + + + + Do an intersection between this range and other range. + + Other range. + The intersection range if it exists and is non-empty or null, if intersection doesn't exist. + + + + Does this range overlaps the ? + + + + + Does range cover all rows, from top row to bottom row of a sheet. + + + + + Does range cover all columns, from first to last column of a sheet. + + + + + Return a new range that has the same size as the current one, + + New top left coordinate of returned range. + New range. + + + + Return a new range that has been shifted in vertical direction by . + + By how much to shift the range, positive - downwards, negative - upwards. + Newly created area. + + + + Return a new range that has been shifted in horizontal direction by . + + By how much to shift the range, positive - rightward, negative - leftward. + Newly created area. + + + + Calculate size and position of the area when another area is inserted into a sheet. + + Inserted area. + The result, might be null as a valid result if area is pushed out. + true if results wasn't partially shifted. + + + + Calculate size and position of the area when another area is inserted into a sheet. + + Inserted area. + The result, might be null as a valid result if area is pushed out. + true if results wasn't partially shifted. + + + + Take the area and reposition it as if the was removed + from sheet. If cells the left of the area are deleted, the area shifts to the left. + If is within the area, the width of the area decreases. + + + If the method returns false, there is a partial cover and it's up to you to + decide what to do. + + + The has a value null if the range was completely + removed by . + + + + + Take the area and reposition it as if the was removed + from sheet. If cells upward of the area are deleted, the area shifts to the upward. + If is within the area, the height of the area decreases. + + + If the method returns false, there is a partial cover and it's up to you to + decide what to do. + + + The has a value null if the range was completely + removed by . + + + + + that includes a sheet. It can represent cell + ('Sheet one'!A$1), area (Sheet1!A4:$G$5), row span ('Sales Q1'!4:10) + and col span (Sales!G:H). + + + Name of a sheet. Unescaped, so it doesn't include quotes. Note that sheet might not exist. + + + Referenced area in the sheet. Can be in A1 or R1C1. + + + + + that includes a sheet. It can represent cell + ('Sheet one'!A$1), area (Sheet1!A4:$G$5), row span ('Sales Q1'!4:10) + and col span (Sales!G:H). + + + Name of a sheet. Unescaped, so it doesn't include quotes. Note that sheet might not exist. + + + Referenced area in the sheet. Can be in A1 or R1C1. + + + + + Name of a sheet. Unescaped, so it doesn't include quotes. Note that sheet might not exist. + + + + + Referenced area in the sheet. Can be in A1 or R1C1. + + + + + A collection of ranges the data validation rule applies too. + + + + + Add a range to the collection of ranges this rule applies to. + If the specified range does not belong to the worksheet of the data validation + rule it is transferred to the target worksheet. + + A range to add. + + + + Add a collection of ranges to the collection of ranges this rule applies to. + Ranges that do not belong to the worksheet of the data validation + rule are transferred to the target worksheet. + + Ranges to add. + + + + Detach data validation rule of all ranges it applies to. + + + + + Remove the specified range from the collection of range this rule applies to. + + A range to remove. + + + + Add data validation rule to the collection. If the specified rule refers to another + worksheet than the collection, the copy will be created and its ranges will refer + to the worksheet of the collection. Otherwise the original instance will be placed + in the collection. + + A data validation rule to add. + The instance that has actually been added in the collection + (may be a copy of the specified one). + + + + Get all data validation rules applied to ranges that intersect the specified range. + + + + + Get the data validation rule for the range with the specified address if it exists. + + A range address. + Data validation rule which ranges collection includes the specified + address. The specified range should be fully covered with the data validation rule. + For example, if the rule is applied to ranges A1:A3,C1:C3 then this method will + return True for ranges A1:A3, C1:C2, A2:A3, and False for ranges A1:C3, A1:C1, etc. + True is the data validation rule was found, false otherwise. + + + + Add a range to the collection of ranges this rule applies to. + If the specified range does not belong to the worksheet of the data validation + rule it is transferred to the target worksheet. + + A range to add. + + + + Add a collection of ranges to the collection of ranges this rule applies to. + Ranges that do not belong to the worksheet of the data validation + rule are transferred to the target worksheet. + + Ranges to add. + + + + Detach data validation rule of all ranges it applies to. + + + + + Remove the specified range from the collection of range this rule applies to. + + A range to remove. + + + + The flag used to avoid unnecessary check for splitting intersected ranges when we already + are performing the splitting. + + + + + Get all data validation rules applied to ranges that intersect the specified range. + + + + + Get the data validation rule for the range with the specified address if it exists. + + A range address. + Data validation rule which ranges collection includes the specified + address. The specified range should be fully covered with the data validation rule. + For example, if the rule is applied to ranges A1:A3,C1:C3 then this method will + return True for ranges A1:A3, C1:C2, A2:A3, and False for ranges A1:C3, A1:C1, etc. + True is the data validation rule was found, false otherwise. + + + + Class used for indexing data validation rules. + + + + + Gets an object with the boundaries of this range. + + + + + A scope of . It determines where can be defined name resolved. + + + + + Name is defined at the sheet level and is available only at the sheet + it is defined or collection or when referred + with sheet specifier (e.g. Sheet5!Name when name is scoped to Sheet5). + + + + + Name is defined at the workbook and is available everywhere. + + + + + Gets or sets the comment for this named range. + + + The comment for this named range. + + + + + Checks if the named range contains invalid references (#REF!). + + Defined name with a formula SUM(#REF!A1, Sheet7!B4) would return + true, because #REF!A1 is an invalid reference. + + + + + + Gets or sets the name of the range. + + + The name of the range. + + Set value is not a valid name. + The name is colliding with a different name + that is already defined in the collection. + + + + Gets the ranges associated with this named range. + Note: A named range can point to multiple ranges. + + + + + A formula of the named range. In most cases, name is just a range (e.g. + Sheet5!$A$4), but it can be a constant, lambda or other values. + The name formula can contain a bang reference (e.g. reference without + a sheet, but with exclamation mark !$A$5), but can't contain plain + local cell references (i.e. references without a sheet like A5). + + + + + Gets the scope of this named range. + + + + + Gets or sets the visibility of this named range. + + + true if visible; otherwise, false. + + + + + Copy sheet-scoped defined name to a different sheet. The references to the original + sheet are changed to refer to the : + + Cell ranges (Org!A1 will be New!A1). + Tables - if the target sheet contains a table of same size at same place as the original sheet. + Sheet-specified names (Org!Name will be New!Name, but the actual name won't be created). + + + Target sheet where to copy the defined name. + Defined name is workbook-scoped + Trying to copy defined name to the same sheet. + + + + Deletes this named range (not the cells). + + + + + + + + Gets the specified defined name. + + Name identifier. + Name wasn't found. + + + + Adds a new defined name. + + Name identifier to add. + The range address to add. + The name or address is invalid. + + + + Adds a new defined name. + + Name identifier to add. + The range to add. + The name is invalid. + + + + Adds a new defined name. + + Name identifier to add. + The ranges to add. + The name is invalid. + + + + Adds a new defined name. + + Name identifier to add. + The range address to add. + The comment for the new named range. + The range name or address is invalid. + + + + Adds a new defined name. + + Name identifier to add. + The range to add. + The comment for the new named range. + The range name is invalid. + + + + Adds a new defined name. + + Name identifier to add. + The ranges to add. + The comment for the new named range. + The range name is invalid. + + + + Deletes the specified defined name. Deleting defined name doesn't delete referenced + cells. + + Name identifier to delete. + + + + Deletes the specified defined name's index. Deleting defined name doesn't delete + referenced cells. + + Index of the defined name to delete. + The index is outside of named ranges array. + + + + Deletes all defined names of this collection, i.e. a workbook or a sheet. Deleting + defined name doesn't delete referenced cells. + + + + + Returns a subset of defined names that do not have invalid references. + + + + + Returns a subset of defined names that do have invalid references. + + + + + Get sheet references found in the formula in A1. Doesn't return tables or name references, + only what has col/row coordinates. + + + + + A collection of a named ranges, either for workbook or for worksheet. + + + + + Adds the specified range name. + + Name of the range. + The range address. + The comment. + if set to true validates the name. + if set to true range address will be checked for validity. + + + For named ranges in the workbook scope, specify the sheet name in the reference. + + + + + Returns a subset of named ranges that do not have invalid references. + + + + + Returns a subset of named ranges that do have invalid references. + + + + + Type of image. The supported formats are defined by OpenXML's ImagePartType. + Default value is "jpeg" + + + + + Current width of the picture in pixels. + + + + + Current height of the picture in pixels. + + + + + Original height of the picture in pixels. + + + + + Original width of the picture in pixels. + + + + + Create a copy of the picture on a different worksheet. + + The worksheet to which the picture will be copied. + A created copy of the picture. + + + + Deletes this picture. + + + + + Create a copy of the picture on the same worksheet. + + A created copy of the picture. + + + + Create a copy of the picture on a different worksheet. + + The worksheet to which the picture will be copied. + A created copy of the picture. + + + + Create a copy of the picture on the same worksheet. + + A created copy of the picture. + + + + Left margin in inches. + + + + + Right margin in inches. + + + + + Top margin in inches. + + + + + Bottom margin in inches. + + + + + Set , , , margins at once. + + + + + A reference to the data in a worksheet is not valid. E.g. sheet with + specific name doesn't exist, name doesn't exist. + + + + + Remove the hyperlink from a worksheet. Doesn't throw if hyperlinks is + not attached to a worksheet. + + + If hyperlink range uses a hyperlink + theme color, the style is reset to the sheet style font color. + The is also set to sheet style + underline. + + Hyperlink to remove. + true if hyperlink was part of the worksheet and was + removed. false otherwise. + + + + Delete a hyperlink defined for a single cell. It doesn't delete + hyperlinks that cover the cell. + + + If hyperlink range uses a hyperlink + theme color, the style is reset to the sheet style font color. + The is also set to sheet style + underline. + + Address of the cell. + true if there was such hyperlink and was deleted. + false otherwise. + + + + Get a hyperlink for a single cell. + + Address of the cell. + Cell doesn't have a hyperlink. + + + + Get a hyperlink for a single cell. + + Address of the cell. + Found hyperlink. + true if there was a hyperlink for , false otherwise. + + + + + + + + + + + + + + + + Add a hyperlink. Doesn't modify style, unlike public API. + + + + + Remove a hyperlink. Doesn't modify style, unlike public API. + + + + + Gets top left cell of a hyperlink range. Return null, + if the hyperlink isn't in a worksheet. + + + + + Tooltip displayed when user hovers over the hyperlink range. If not specified, + the link target is displayed in the tooltip. + + + + + + + + A universal interface for different data readers used in InsertData logic. + + + + + Get a collection of records, each as a collection of values, extracted from a source. + + + + + Get the number of properties to use as a table with. + Actual number of may vary in different records. + + + + + Get the title of the property with the specified index. + + + + + Conditional formats for pivot tables, loaded from sheets. Key is sheet name, value is the + conditional formats. + + + + + A dictionary of styles from styles.xml. Used in other places that reference number style by id reference. + + + + + Constants used across writers. + + + + + Valid and shorter than normal true. + + + + + Valid and shorter than normal false. + + + + + An exception thrown from parser when there is a problem with data in XML. + The exception messages are rather generic and not very helpful, but they + aren't supposed to be. If this exception is thrown, there is either + a problem with producer of a workbook or ClosedXML. Both should do + investigation based on a the file causing an error. + + + + + Create a new exception with info that some element that should be present in a workbook + is missing. + + optional info about what element is missing. + + + + A field displayed as ∑Values in a pivot table that contains names of all aggregation + function in value fields collection. Also commonly called 'data' field. + + + + + A writer for table definition part. + + + + + Populates the differential formats that are currently in the file to the SaveContext + + + + + Check if two style are equivalent. + + Style in the OpenXML format. + Style in the ClosedXML format. + Flag specifying whether or not compare the alignments of two styles. + Styles in x:cellStyleXfs section do not include alignment so we don't have to compare it in this case. + Styles in x:cellXfs section, on the opposite, do include alignments, and we must compare them. + + True if two formats are equivalent, false otherwise. + + + + Stream detached worksheet DOM to the worksheet part stream. + Replaces the content of the part. + + + + + An array to convert data type for a formula cell. Key is . + It saves some performance through direct indexation instead of switch. + + + + + An array to convert data type for a cell that only contains a value. Key is . + It saves some performance through direct indexation instead of switch. + + + + + Gets or sets the column after which the horizontal split should take place. + + + + + Gets or sets the row after which the vertical split should take place. + + + + + Gets or sets the location of the top left visible cell + + + The scroll position's top left cell. + + + + + Window zoom magnification for current view representing percent values. Horizontal and vertical scale together. + + Representing percent values ranging from 10 to 400. + + + + Zoom magnification to use when in normal view. Horizontal and vertical scale together + + Representing percent values ranging from 10 to 400. + + + + Zoom magnification to use when in page layout view. Horizontal and vertical scale together. + + Representing percent values ranging from 10 to 400. + + + + Zoom magnification to use when in page break preview. Horizontal and vertical scale together. + + Representing percent values ranging from 10 to 400. + + + + Freezes the specified rows and columns. + + The rows to freeze. + The columns to freeze. + + + + Freezes the left X columns. + + The columns to freeze. + + + + Freezes the top X rows. + + The rows to freeze. + + + + Gets or sets the workbook's calculation mode. + + + + + Gets or sets the default column width for the workbook. + All new worksheets will use this column width. + + + + + Gets an object to manipulate this workbook's defined names. + + + + + Gets or sets the default outline options for the workbook. + All new worksheets will use these outline options. + + + + + Gets or sets the default page options for the workbook. + All new worksheets will use these page options. + + + + + Gets all pivot caches in a workbook. A one cache can be + used by multiple tables. Unused caches are not saved. + + + + + Gets or sets the workbook's properties. + + + + + Gets or sets the workbook's reference style. + + + + + Gets or sets the default row height for the workbook. + All new worksheets will use this row height. + + + + + Gets or sets the default style for the workbook. + All new worksheets will use this style. + + + + + Gets an object to manipulate this workbook's theme. + + + + + Gets an object to manipulate the worksheets. + + + + + Add a worksheet with a table at Cell(row:1, column:1). The dataTable's name is used for the + worksheet name. The name of a table will be generated as Table{number suffix}. + + Datatable to insert + Inserted Worksheet + + + + Add a worksheet with a table at Cell(row:1, column:1). The sheetName provided is used for the + worksheet name. The name of a table will be generated as Table{number suffix}. + + dataTable to insert as Excel Table + Worksheet and Excel Table name + Inserted Worksheet + + + + Add a worksheet with a table at Cell(row:1, column:1). + + dataTable to insert as Excel Table + Worksheet name + Excel Table name + Inserted Worksheet + + + + Evaluate a formula expression. + + Formula expression to evaluate. + + If the expression contains a function that requires a context (e.g. current cell or worksheet). + + + + + Try to find a defined name. If specifies a sheet, try to find + name in the sheet first and fall back to the workbook if not found in the sheet. + + + Requested name Sheet1!Name will first try to find Name in a sheet + Sheet1 (if such sheet exists) and if not found there, tries to find Name + in workbook. + + + + + Requested name Name will be searched only in a workbooks . + + + + Name of requested name, either plain name (e.g. Name) or with + sheet specified (e.g. Sheet!Name). + Found name or null. + + + + Force recalculation of all cell formulas. + + + + + Saves the current workbook. + + + + + Saves the current workbook and optionally performs validation + + + + + Saves the current workbook to a file. + + + + + Saves the current workbook to a file and optionally validates it. + + + + + Saves the current workbook to a stream. + + + + + Saves the current workbook to a stream and optionally validates it. + + + + + Searches the cells' contents for a given piece of text + + The search text. + The compare options. + if set to true search formulae instead of cell values. + + + + Gets the Excel table of the given name + + Name of the table to return. + One of the enumeration values that specifies how the strings will be compared. + The table with given name + If no tables with this name could be found in the workbook. + + + + Gets the workbook that contains this worksheet + + + + + Gets or sets the default column width for this worksheet. + + + + + Gets or sets the default row height for this worksheet. + + + + + Gets or sets the name (caption) of this worksheet. The sheet rename also renames sheet + in formulas and defined names. + + + + + Gets or sets the position of the sheet. + When setting the Position all other sheets' positions are shifted accordingly. + + + + + Gets an object to manipulate the sheet's print options. + + + + + Gets an object to manipulate the Outline levels. + + + + + All hyperlinks in the sheet. + + + + + Gets the first row of the worksheet. + + + + + Gets the first non-empty row of the worksheet that contains a cell with a value. + Formatted empty cells do not count. + + + + + Gets the first non-empty row of the worksheet that contains a cell with a value. + + The options to determine whether a cell is used. + + + + Gets the last row of the worksheet. + + + + + Gets the last non-empty row of the worksheet that contains a cell with a value. + + + + + Gets the last non-empty row of the worksheet that contains a cell with a value. + + The options to determine whether a cell is used. + + + + Gets the first column of the worksheet. + + + + + Gets the first non-empty column of the worksheet that contains a cell with a value. + + + + + Gets the first non-empty column of the worksheet that contains a cell with a value. + + The options to determine whether a cell is used. + + + + Gets the last column of the worksheet. + + + + + Gets the last non-empty column of the worksheet that contains a cell with a value. + + + + + Gets the last non-empty column of the worksheet that contains a cell with a value. + + The options to determine whether a cell is used. + + + + Gets a collection of all columns in this worksheet. + + + + + Gets a collection of the specified columns in this worksheet, separated by commas. + e.g. Columns("G:H"), Columns("10:11,13:14"), Columns("P:Q,S:T"), Columns("V") + + The columns to return. + + + + Gets a collection of the specified columns in this worksheet. + + The first column to return. + The last column to return. + + + + Gets a collection of the specified columns in this worksheet. + + The first column to return. + The last column to return. + + + + Gets a collection of all rows in this worksheet. + + + + + Gets a collection of the specified rows in this worksheet, separated by commas. + e.g. Rows("4:5"), Rows("7:8,10:11"), Rows("13") + + The rows to return. + + + + Gets a collection of the specified rows in this worksheet. + + The first row to return. + The last row to return. + + + + Gets the specified row of the worksheet. + + The worksheet's row. + + + + Gets the specified column of the worksheet. + + The worksheet's column. + + + + Gets the specified column of the worksheet. + + The worksheet's column. + + + + Gets the cell at the specified row and column. + + The cell's row. + The cell's column. + + + Gets the cell at the specified address. + The cell address in the worksheet. + Address is not A1 or workbook-scoped named range. + + + + Gets the cell at the specified row and column. + + The cell's row. + The cell's column. + + + Gets the cell at the specified address. + The cell address in the worksheet. + + + + Returns the specified range. + + The range boundaries. + + + Returns the specified range. + e.g. Range("A1"), Range("A1:C2") + The range boundaries. + is not a valid address or named range. + + + Returns the specified range. + The first cell in the range. + The last cell in the range. + + + Returns the specified range. + The first cell address in the worksheet. + The last cell address in the worksheet. + + + Returns the specified range. + The first cell address in the worksheet. + The last cell address in the worksheet. + + + Returns a collection of ranges, separated by commas. + e.g. Ranges("A1"), Ranges("A1:C2"), Ranges("A1:B2,D1:D4") + The ranges to return. + + + Returns the specified range. + The first cell's row of the range to return. + The first cell's column of the range to return. + The last cell's row of the range to return. + The last cell's column of the range to return. + . + + + Gets the number of rows in this worksheet. + + + Gets the number of columns in this worksheet. + + + + Collapses all outlined rows. + + + + + Collapses all outlined columns. + + + + + Expands all outlined rows. + + + + + Expands all outlined columns. + + + + + Collapses the outlined rows of the specified level. + + The outline level. + + + + Collapses the outlined columns of the specified level. + + The outline level. + + + + Expands the outlined rows of the specified level. + + The outline level. + + + + Expands the outlined columns of the specified level. + + The outline level. + + + + Deletes this worksheet. + + + + + Gets an object to manage this worksheet's defined names. + + + + + Gets the specified defined name. + + Name identifier of defined name, without sheet name. + Name wasn't found in sheets defined names. + + + + Gets an object to manage how the worksheet is going to displayed by Excel. + + + + + Gets the Excel table of the given index + + Index of the table to return + + + + Gets the Excel table of the given name + + Name of the table to return + + + + Gets an object to manage this worksheet's Excel tables + + + + + Copies the + + + + + + Copy a worksheet from this workbook to a different workbook as a new sheet. + + Workbook into which copy this sheet. + Name of new sheet in the where will the data be copied. Sheet will be in the last position. + Newly created sheet in the . + + + + The active cell of the worksheet. + + + + + Evaluate an formula and return a result. + + Formula to evaluate. + A cell address that is used to provide context for formula calculation (mostly implicit intersection). + If was needed for some part of calculation. + + + + Force recalculation of all cell formulas in the sheet while leaving other sheets without change, even if their dirty cells. + + + + + A class that defines various aspects of a newly created workbook. + + + + + A graphics engine that will be used for workbooks without explicitly set engine. + + + + + Should all formulas in a workbook be recalculated during load? Default value is false. + + + + + Graphic engine used by the workbook. + + + + + DPI for the workbook. Default is 96. + + Used in various places, e.g. determining a physical size of an image without a DPI or to determine a size of a text in a cell. + + + + Gets the left header/footer item. + + + + + Gets the middle header/footer item. + + + + + Gets the right header/footer item. + + + + + Gets the text of the specified header/footer occurrence. + + The occurrence. + + + + Gets the text of the specified header/footer occurrence. + + The occurrence. + + + + Adds the given predefined text to this header/footer item. + + The predefined text to add to this header/footer item. + + + + Adds the given text to this header/footer item. + + The text to add to this header/footer item. + The occurrence for the text. + + + + Adds the given predefined text to this header/footer item. + + The predefined text to add to this header/footer item. + The occurrence for the predefined text. + + + Clears the text/formats of this header/footer item. + The occurrence to clear. + + + Gets or sets the Left margin. + The Left margin. + + + Gets or sets the Right margin. + The Right margin. + + + Gets or sets the Top margin. + The Top margin. + + + Gets or sets the Bottom margin. + The Bottom margin. + + + Gets or sets the Header margin. + The Header margin. + + + Gets or sets the Footer margin. + The Footer margin. + + + + Gets an object to manage the print areas of the worksheet. + + + + + Gets the first row that will repeat on the top of the printed pages. + Use SetRowsToRepeatAtTop() to set the rows that will be repeated on the top of the printed pages. + + + + + Gets the last row that will repeat on the top of the printed pages. + Use SetRowsToRepeatAtTop() to set the rows that will be repeated on the top of the printed pages. + + + + + Sets the rows to repeat on the top of the printed pages. + + The range of rows to repeat on the top of the printed pages. + + + + Sets the rows to repeat on the top of the printed pages. + + The first row to repeat at top. + The last row to repeat at top. + + + Gets the first column to repeat on the left of the printed pages. + The first column to repeat on the left of the printed pages. + + + Gets the last column to repeat on the left of the printed pages. + The last column to repeat on the left of the printed pages. + + + + Sets the rows to repeat on the left of the printed pages. + + The first column to repeat at left. + The last column to repeat at left. + + + + Sets the rows to repeat on the left of the printed pages. + + The range of rows to repeat on the left of the printed pages. + + + Gets or sets the page orientation for printing. + The page orientation. + + + + Gets or sets the number of pages wide (horizontal) the worksheet will be printed on. + If you don't specify the PagesTall, Excel will adjust that value + based on the contents of the worksheet and the PagesWide number. + Setting this value will override the Scale value. + + + + + Gets or sets the number of pages tall (vertical) the worksheet will be printed on. + If you don't specify the PagesWide, Excel will adjust that value + based on the contents of the worksheet and the PagesTall number. + Setting this value will override the Scale value. + + + + + Gets or sets the scale at which the worksheet will be printed. + The worksheet will be printed on as many pages as necessary to print at the given scale. + Setting this value will override the PagesWide and PagesTall values. + + + + + Gets or sets the horizontal dpi for printing the worksheet. + + + + + Gets or sets the vertical dpi for printing the worksheet. + + + + + Gets or sets the page number that will begin the printout. + For example, the first page of your printout could be numbered page 5. + + First page number can be negative, e.g. -2. + + + + Gets or sets a value indicating whether the worksheet will be centered on the page horizontally. + + + true if the worksheet will be centered on the page horizontally; otherwise, false. + + + + + Gets or sets a value indicating whether the worksheet will be centered on the page vertically. + + + true if the worksheet will be centered on the page vertically; otherwise, false. + + + + + Sets the scale at which the worksheet will be printed. This is equivalent to setting the Scale property. + The worksheet will be printed on as many pages as necessary to print at the given scale. + Setting this value will override the PagesWide and PagesTall values. + + The scale at which the worksheet will be printed. + + + + Gets or sets the number of pages the worksheet will be printed on. + This is equivalent to setting both PagesWide and PagesTall properties. + Setting this value will override the Scale value. + + The pages wide. + The pages tall. + + + + Gets or sets the size of the paper to print the worksheet. + + + + + Gets an object to work with the page margins. + + + + + Gets an object to work with the page headers. + + + + + Gets an object to work with the page footers. + + + + + Gets or sets a value indicating whether Excel will automatically adjust the font size to the scale of the worksheet. + + + true if Excel will automatically adjust the font size to the scale of the worksheet; otherwise, false. + + + + + Gets or sets a value indicating whether the header and footer margins are aligned with the left and right margins of the worksheet. + + + true if the header and footer margins are aligned with the left and right margins of the worksheet; otherwise, false. + + + + + Gets or sets a value indicating whether the gridlines will be printed. + + + true if the gridlines will be printed; otherwise, false. + + + + + Gets or sets a value indicating whether to show row numbers and column letters/numbers. + + + true to show row numbers and column letters/numbers; otherwise, false. + + + + + Gets or sets a value indicating whether the worksheet will be printed in black and white. + + + true if the worksheet will be printed in black and white; otherwise, false. + + + + + Gets or sets a value indicating whether the worksheet will be printed in draft quality. + + + true if the worksheet will be printed in draft quality; otherwise, false. + + + + + Gets or sets the page order for printing. + + + + + Gets or sets how the comments will be printed. + + + + + Gets a list with the row breaks (for printing). + + + + + Gets a list with the column breaks (for printing). + + + + + Adds a horizontal page break after the given row. + + The row to insert the break. + + + + Adds a vertical page break after the given column. + + The column to insert the break. + + + + Gets or sets how error values will be printed. + + + + > + First page number or null for auto/default page numbering. + + + Removes the print areas from the worksheet. + + + Adds a range to the print areas. + The first cell row. + The first cell column. + The last cell row. + The last cell column. + + + Adds a range to the print areas. + The range address to add. + + + Adds a range to the print areas. + The first cell address. + The last cell address. + + + Adds a range to the print areas. + The first cell address. + The last cell address. + + + + Implementation of QuadTree adapted to Excel worksheet specifics. Differences with the classic implementation + are that the topmost level is split to 128 square parts (2 columns of 64 blocks, each 8192*8192 cells) and that splitting + the quadrant onto 4 smaller quadrants does not depend on the number of items in this quadrant. When the range is added to the + QuadTree it is placed on the bottommost level where it fits to a single quadrant. That means, row-wide and column-wide ranges + are always placed at the level 0, and the smaller the range is the deeper it goes down the tree. This approach eliminates + the need of transferring ranges between levels. + + + + + Smaller quadrants which the current one is split to. Is NULL until ranges are added to child quadrants. + + + + + The level of current quadrant. Top most has level 0, child quadrants has levels (Level + 1). + + + + + Minimum column included in this quadrant. + + + + + Minimum row included in this quadrant. + + + + + Maximum column included in this quadrant. + + + + + Maximum row included in this quadrant. + + + + + Collection of ranges belonging to this quadrant (does not include ranges from child quadrants). + + + + + The number of current quadrant by horizontal axis. + + + + + The number of current quadrant by vertical axis. + + + + + Add a range to the quadrant or to one of the child quadrants (recursively). + + True, if range was successfully added, false if it has been added before. + + + + Get all ranges from the quadrant and all child quadrants (recursively). + + + + + Get all ranges from the quadrant and all child quadrants (recursively) that intersect the specified address. + + + + + Get all ranges from the quadrant and all child quadrants (recursively) that cover the specified address. + + + + + Remove the range from the quadrant or from child quadrants (recursively). + + True if the range was removed, false if it does not exist in the QuadTree. + + + + Remove all the ranges matching specified criteria from the quadrant and its child quadrants (recursively). + Don't use it for searching intersections as it would be much less efficient than . + + + + + Maximum depth of the QuadTree. Value 10 corresponds to the smallest quadrants having size 16*16 cells. + + + + + Collection of ranges belonging to the current quadrant (that cannot fit into child quadrants). + + + + + Add a range to the collection of quadrant's own ranges. + + True if the range was successfully added, false if it had been added before. + + + + Check if the current quadrant fully covers the specified address. + + + + + Check if the current quadrant covers the specified address. + + + + + Check if the current quadrant intersects the specified address. + + + + + Create a collection of child quadrants dividing the current one. + + + + + A generic version of + + + + + A type for field index, so there is a better idea what is a semantic content of some + variable/props. Not detrimental to performance, JIT will inline struct to int. + + + + + The index of a 'data' field (). + + + + + Index of a field in . Can be -2 for 'data' field, + otherwise non-negative. + + + + + Is this index for a 'data' field? + + + + + A fluent API representation of a field on an row, + column or + filter axis of a . + + + If the field is a 'data' field, a lot of properties don't make sense and can't be set. In + such case, the setter will throw and getter + will return default value for the field. + + + + + + Name of the field in a pivot table . If the field + is 'data' field, return . + + + Note that field name in pivot cache is generally same as in the source data range, but + not always. Field names are unique in the cache and if the source data range contains + duplicate column names, the cache will rename them to keep all names unique. + + + + + + of the field in the pivot table. Custom name is a unique + across all fields used in the pivot table (e.g. if same field is added to values area + multiple times, it must have custom name, e.g. Sum1 of Field, + Sum2 of Field). + + When setting name to a name that is already used by + another field. + + + + Get subtotals of the field. The content of the collection depends on the type of subtotal: + + None - the collection is empty. + Automatic - the collection contains one element with function . + Custom - the collection contains a set of functions (at least one) except the . + + + + + + Are all items of the field collapsed? + + + If only a subset of items is collapsed, getter returns false. + + + + + + + + Selected values for filter of the pivot + table. Empty for non-filter fields. + + + + + Add a value to selected values of a filter field (). + Doesn't do anything, if this field is not a filter fields. + + + + + Add a values to a selected values of a filter field. Doesn't do anything if this field + is not a filter fields. + + + + + Index of a field in all pivot fields or -2 + for data field. + + + + + + A collection of fields on column labels, + row labels or + report filters of a + . + + + + + + Add a field to the axis labels/report filters. + + Name of the field in . The value can + also be for + ΣValues field. + Display name of added field. Custom name of a filed must be unique + in pivot table. Ignored for 'data' field. + The added field. + Field can't be added (e.g. it is already used or can't + be added to specific collection). + + + + Remove all fields from the axis. It also removes data of removed fields, like custom names and items. + + + + + Does this axis contain a field? + + Name of the field in . Use + for data field. + true if the axis contains the field, false otherwise. + + + + Does this axis contain a field? + + Checked pivot field. + true if the axis contains the field, false otherwise. + + + + Get a field in the axis. + + Name of the field in we are looking + for in the axis. + Found field. + Axis doesn't contain field with specified name. + + + + Get field by index in the collection. + + Index of the field in this collection. + Found field. + + + + + Get index of a field in the collection. Use the index in the method. + + of the field in the pivot cache. + Index of the field or -1 if not found. + + + + Get index of a field in the collection. Use the index in the method. + + Field to find. Uses . + Index of the field or -1 if not a member of this collection. + + + + Remove a field from axis. Doesn't throw, if field is not present. + + of a field to remove. + + + + Describes an axis of a pivot table. Used to determine which areas should be styled through + . + + + [ISO-29500] 18.18.1 ST_Axis(PivotTable Axis). + + + + + A field that describes calculation of value to display in the + area of pivot table. + + + + + Custom name of the data field (e.g. Sum of Sold). Can be left empty to keep same + as source name. Use to get value with fallback. + + + For data fields, the name is duplicated at and here. + This property has a preference. + + + + + Field index to . + + + Unlike axis, this field index can't be -2 for data fields. That field can't be in + the data area. + + + + + An aggregation function that calculates the value to display in the data cells of pivot area. + + + + + A calculation takes value calculated by aggregation and transforms + it into the final value to display to the user. The calculation might need + and/or . + + + + + Index to the base field () when + needs a field for its calculation. + + + + + Index to the base item of when needs + an item for its calculation. + + + + + Formatting to apply to the data field. If disagree, this has precedence. + + + + + A collection of . + + + + + Fields displayed in the data area of the pivot table, in the order fields are displayed. + + + + + A representation of a single row/column axis values in a . + + + Represents 18.10.1.44 i (Row Items) and 18.10.1.96 x (Member Property Index). + + + + + Each item is an index to field items of corresponding field from + . Value 1048832 specifies that no item appears + at the position. + + + + + Type of item. + + + + + If this item (row/column) contains 'data' field, this contains an index into the + that should be used as a value. The value for 'data' field in the is ignored, but Excel fills + same number as this index. + + + + + Representation of item (basically one value of a field). Each value used somewhere in pivot + table (e.g. data area, row/column labels and so on) must have an entry here. By itself, it + doesn't contain values, it only references shared items of the field in the + . + + + [OI29500] 18.10.1.45 item (PivotTable Field Item). + + + + + If present, must be unique within the containing field items. + + + + + + Flag indicating the item is hidden. Used for . When + item field is a page field, the hidden flag mean unselected values in the page filter. + Non-hidden values are selected in the filter. + + + Allowed for non-OLAP pivot tables only. + + + + + + Flag indicating that the item has a character value. + + Allowed for OLAP pivot tables only. + + + + Excel uses the sd attribute to indicate whether the item is expanded. + + Allowed for non-OLAP pivot tables only. Spec for the sd had to be patched.. + + + Allowed for non-OLAP pivot tables only. + + + + Item itself is missing from the source data + + Allowed for non-OLAP pivot tables only. + + + Allowed for OLAP pivot tables only. + + + + Index to an item in the sharedItems of the field. The index must be unique in containing field items. When is , it must be set. + Never negative. + + + + Allowed for OLAP pivot tables only. + + + + Attributes sd (show detail) and d (detail) were swapped in spec, fixed by OI29500. + A flag that indicates whether details are hidden for this item? + + d attribute. Allowed for OLAP pivot tables only. + + + + Get value of an item from cache or null if not data item. + + + + + A description of one axis (/) + of a . It consists of fields in a specific order and values that make up + individual rows/columns of the axis. + + + [ISO-29500] 18.10.1.17 colItems (Column Items), 18.10.1.84 rowItems (Row Items). + + + + + Fields displayed on the axis, in the order of the fields on the axis. + + + + + Values of one row/column in an axis. Items are not kept in sync with . + + + + + A list of fields to displayed on the axis. It determines which fields and in what order + should the fields be displayed. + + + + + Individual row/column parts of the axis. + + + + + Add field to the axis, as an index. + + + + + Add a row/column axis values (i.e. values visible on the axis). + + + + + A fluent API for one field in , either + or . + + + + + Get position of the field on the axis, starting at 0. + + + + + Page/filter fields of a . It determines filter values and layout. + It is accessible through fluent API . + + + + + Filter fields in correct order. The layout is determined by + and + . + + + + + Number of rows/cols occupied by the filter area. Filter area is above the pivot table and it + optional (i.e. size 0 indicates no filter). + + + + + Number of rows/cols occupied by the filter area, including the gap below, if there is at least one filter. + + + + + Fluent API for filter fields of a . This class shouldn't contain any + state, only logic to change state per API. + + + + + A cache of pivot data - essentially a collection of fields and their values that can be + displayed by a . Data for the cache are retrieved from + an area (a table or a range). The pivot cache data are cached, i.e. + the data in the source are not immediately updated once the data in a worksheet change. + + + + + Get names of all fields in the source, in left to right order. Every field name is unique. + + + The field names are case insensitive. The field names of the cached + source might differ from actual names of the columns + in the data cells. + + + + + Gets the number of unused items in shared items to allow before discarding unused items. + + + Shared items are distinct values of a source field values. Updating them can be expensive + and this controls, when should the cache be updated. Application-dependent attribute. + + Default value is . + + + + Will Excel refresh the cache when it opens the workbook. + + Default value is false. + + + + Should the cached values of the pivot source be saved into the workbook file? + If source data are not saved, they will have to be refreshed from the source + reference which might cause a change in the table values. + + Default value is true. + + + + Refresh data in the pivot source from the source reference data. + + The data source for the pivot table can't be found. + + + + + + + Sets the value to true. + + + + + + + Sets the value to true. + + + + + + + A collection of pivot caches. Pivot cache + can be added from a or a . + + + + + Add a new pivot cache for the range. If the range area is same as + an area of a table, the created cache will reference the table + as source of data instead of a range of cells. + + Range for which to create the pivot cache. + The pivot cache for the range. + + + + An abstraction of source data for a . Implementations must correctly + implement equals. + + + + + Try to determine actual area of the source reference in the + workbook. Source reference might not be valid in the workbook, some might + not be supported. + + + + + Labels displayed in columns (i.e. horizontal axis) of the pivot table. + + + + + Labels displayed in rows (i.e. vertical axis) of the pivot table. + + + + + Top left corner cell of a pivot table. If the pivot table contains filters fields, the target cell is top + left cell of the first filter field. + + + + + The cache of data for the pivot table. The pivot table is created + from cached data, not up-to-date data in a worksheet. + + + + + Filter fields layout setting that indicates layout order of filter fields. The layout + uses to determine when to break to a new row or + column. Default value is . + + + + + Specifies the number of page fields to display before starting another row or column. + Value = 0 means unlimited. + + If value < 0. + + + + Should pivot table display a grand total for each row in the last column of a pivot + table (it will enlarge pivot table for extra column). + + + This API has inverse row/column names than the Excel. Excel: On for rows + should use this method ShowGrandTotalsColumns. + + + + + Set the layout of the pivot table. It also changes layout of all pivot fields. + + + + + Add a pivot table that will use the pivot cache. + + Name of new pivot table. + A cell where will the pivot table be have it's left top corner. + Pivot cache to use for the pivot table. + Added pivot table. + There already is a pivot table with the same name. + + + + Add a pivot table from source data of . + If workbook already contains a cache for same range as the + , the matching pivot cache is used. + + Name of new pivot table + A cell where will the pivot table be have it's left top corner. + A range to add/find pivot cache. + There already is a pivot table with the same name. + + + + Add a pivot table from source data of . + If workbook already contains a cache for same range as the + , the matching pivot cache is used. + + Name of new pivot table + A cell where will the pivot table be have it's left top corner. + A table to add/find pivot cache. + There already is a pivot table with the same name. + + + + Get pivot table with the specified name (case insensitive). + + Name of a pivot table to return. + No such pivot table found. + + + + Interface to change the style of a or its parts. + + + + + Pivot table style of the field values displayed in the data area of the pivot table. + + + + + Get the style of the pivot field header. The head usually contains a name of the field. + In some layouts, header is not individually displayed (e.g. compact), while in others + it is (e.g. tabular). + + + + + Get the style of the pivot field label values on horizontal or vertical axis. + + + + + A interface for styling various parts of a pivot table, e.g. the whole table, specific + area or just a field. Use and + to access it. + + + + + To what part of the pivot table part will the style apply to. + + + + + The differential style of the part. + + + The final displayed style is done by composing all differential styles that overlap the element. + + + + + An API for setting style of parts consisting of , e.g. grand + totals. The enumerator enumerates only existing formats, it doesn't add them. + + + + + Get styling object for specified . + + Which part do we want style for? + An API to inspect/modify style of the . + When is + passed as an argument. + + + + An API for modifying the pivot table styles that affect whole . + + + + + Get style formats of a grand total column in a pivot table (i.e. the right column a pivot table). + + + + + Get style formats of a grand total row in a pivot table (i.e. the bottom row of a pivot table). + + + + + A fluent API for styling a field of a . + + + + + Adds a limitation so the is only applied to cells in a pivot table + that also belong to the (label or data). + + Only cells in a pivot table under this field will be styled. + + + + Adds a limitation so the is only applied to cells in a pivot table + that also belong to the data cells. The cell values also must satisfy the . + + + The pivot style is bound by the field index in a pivot table, not field value. E.g. if field values + are Jan, Feb and the predicate marks Feb (offset 1) = second field (Feb) will be highlighted. + If user later reverses order in Excel to Feb, Jan, the style would still apply to the second value - Jan. + + Only cells in a pivot table under this field will be styled. + A predicate to determine which index of the field should be styled. + + + + Adds a limitation so the is only applied to cells in a pivot table + that display values for cells (i.e. data cells and grand total). + + One of value fields of the pivot table. + + + + A base class for pivot styling API. It has takes a selected + and applies the style using .Style* API. The derived classes are responsible for + exposing API so user can define an area and then create the desired area (from what user + specified) through method. + + + + + An API for grand totals from . + + + + + A list of references that specify which data cells will be styled. + A data cell will be styled, if it lies on all referenced fields. + The term "lie on" means that either column or a row of data cell + intersects a label cell of referenced field. + + + + + Enum describing how is a pivot field values (i.e. in data area) displayed. + + + [ISO-29500] 18.18.70 ST_ShowDataAs + + + + + Field values are displayed normally. + + + + + Basically a relative importance of a value. Closer the value to 1.0 is, the less + important it is. Calculated as (value-in-cell * grand-total-of-grand-totals) / + (grand-total-row * grand-total-column). + + + + + Some calculation from need a value as another an argument + of a calculation (e.g. difference from). This enum specifies how to find the reference value. + + + + + An enum that specifies how are grouped pivot field values summed up in a single cell of a + pivot table. + + + [ISO-29500] 18.18.17 ST_DataConsolidateFunction + + + + + Values are summed up. + + + + + A pivot value field, it is basically a specification of how to determine and + format values from source to display in the pivot table. + + + + + Specifies the index to the base field when the ShowDataAs calculation is in use. + Instead of base item, previous or next value can be used through + + Used only if the value should be showed Show Values As in the value field settings. + + The name of the column of the relevant base field. + + + Show values as a percent of a specific value of a different field, e.g. as a % of units sold from Q1 (quarts is a base field and Q1 is a base item). + + + + + The value of a base item to calculate a value to show in the pivot table. The base item is selected from values of a base field. + Returns blank, when value can't be determined. + + Used only if the value should be showed Show Values As in the value field settings. + + The value of the referenced base field item. + + + Show values as a percent of a specific value of a different field, e.g. as a % of units sold from Q1 (quarts is a base field and Q1 is a base item). + + + + + Get custom name of pivot value. If custom name is not specified, return source name as + a fallback. + + + + + An interface for fluent configuration of how to show , + when the value should be displayed not as a value itself, but in relation to another + value (e.g. percentage difference in relation to different value). + + + + + The base item value for calculation will be the value of the previous row of base + field, depending on the order of base field values in a row/column. If there isn't + a previous value, the same value will be used. + + This only affects display how are values displayed, not the values themselves. + + + Example: + We have a table of sales and a pivot table, where sales are summed per month. + The months are sorted from Jan to Dec. To display a percentage increase of + sales per month (the base value is previous month): + + IXLPivotValue sales; + sales.SetSummaryFormula(XLPivotSummary.Sum).ShowAsPercentageDifferenceFrom("Month").AndPrevious(); + + + + + + + An API for manipulating a format of one + data field. + + + + + Set number formatting using one of predefined codes. Predefined codes are described in + the . + + A numeric value describing how should the number be formatted. + + + + Add a new value field to the pivot table. If addition would cause, the + field is added to the + . The added field will use passed + as the . + + The that is used as a + data. Multiple data fields can use same source (e.g. sum and count). + Newly added field. + + + + Add a new value field to the pivot table. If addition would cause, the + field is added to the + . + + The that is used as a + data. Multiple data fields can use same source (e.g. sum and count). + The added data field . + Newly added field. + + + + A rule describing a subset of pivot table. Used mostly for styling through . + + + [ISO-29500] 18.3.1.68 PivotArea + + + + + A subset of field values that are part of the pivot area. + + + + + Index of the field that this selection rule refers to. + + + + + An area of aspect of pivot table that is part of the pivot area. + + + + + Flag indicating whether only the data values (in the data area of the view) for an item + selection are selected and does not include the item labels. Can't be set with together + with . + + + + + Flag indicating whether only the item labels for an item selection are selected and does + not include the data values(in the data area of the view). Can't be set with together + with . + + + + + Flag indicating whether the row grand total is included. + + + + + Flag indicating whether the column grand total is included. + + + + + Flag indicating whether indexes refer to fields or items in the pivot cache and not the + view. + + + + + Flag indicating whether the rule refers to an area that is in outline mode. + + + + + A reference that specifies a subset of the selection area. Points are relative to the top + left of the selection area. + + + + + Flag indicating if collapsed levels/dimensions are considered subtotals. + + + + + The region of the pivot table to which this rule applies. + + + + + Position of the field within the axis to which this rule applies. + + + + + An area of aspect of pivot table that is part of the . + + + [ISO-29500] 18.18.58 ST_PivotAreaType + + + + + Length is a number of fields, in same order as . + + + + + Number of fields in the cache. + + + + + Pivot cache definition id from the file. + + + + + A source of the in the cache. Can be used to refresh the cache. May not always be + available (e.g. external source) + + + + + Try to get a field index for a field name. + + Name of the field. + The found index, start at 0. + True if source contains the field. + + + + Try to find an existing pivot cache for the passed area. The area + is checked against both types of source references (tables and + ranges) and if area matches, the cache is returned. + + + + + + A list of in the pivot table cache + definition. Generally, it contains all strings of the field records + (record just indexes them through ) + and also values used directly in pivot table (e.g. filter field reference + the table definition, not record). + + + Shared items can't contain . + + + + + + Storage of strings to save 8 bytes per XLPivotCacheValue + (reference can't be aliased with a number). + + + + + Strings in a pivot table are case-insensitive. + + + + + Get index of value or -1 if not among shared items. + + + + + A page filter for pivot table that uses as the source + of data. It is basically a container of strings that are displayed in a page filter above + the pivot table. + + + + + Page items (=names) displayed in the filter. The value is referenced + through index by . + + + + + One of ranges that form a source for a . + + + + + Indexes into the . If the value is null + and page filter exists, it is displayed as a blank. There can be at most 4 indexes, because + there can be at most 4 page filters. + + + + + If range set is from another workbook, a relationship id to the workbook from cache definition. + + + + + Represents a single value in a pivot cache record. + + + + + A memory used to hold value of a . Its + interpretation depends on the type. It doesn't hold value + for strings directly, because GC doesn't allow aliasing + same 8 bytes for number or references. For strings, it contains + an index to a string storage array that is stored separately. + + + + + All values of a cache field for a pivot table. + + + + + + + + + + + + + + + + + Get or add a value to the shared items. Throw, if value is not in items. + + Index in shared items. + + + + Is among the value among values of the record. + + + + + Statistics about a pivot cache field + values. These statistics are available, even if cache field + doesn't have any record values. + + + + + Are all numbers in the field integers? Doesn't + have to fit into int32/64, just no fractions. + + + + + Does field contain any string, boolean or error? + + + + + Is any text longer than 255 chars? + + + + + Is any value DateTime or TimeSpan? TimeSpan is + converted to 1899-12-31TXX:XX:XX date. + + + + + An enum that represents types of values in pivot cache records. It represents + values under CT_Record type. + + + + + A blank value. Keep at 0 so newly allocated arrays of values have a value of missing. + + + + + Double precision number, not NaN or infinity. + + + + + Bool value. + + + + + value. + + + + + Cache value is a string. Because references can't be converted to number (GC would not accept it), + the value is an index into a table of strings in the cache. + + + + + Value is a date time. Although the value can be in theory csd:dateTime (i.e. with offsets and zulu), + the time offsets are not permitted (Excel refused to load cache data) and zulu is ignored. + + + + + Value is a reference to the shared item. The index value is an + index into the shared items array of the field. + + + + + Specifies how to apply conditional formatting rule + on a pivot table . Avoid if possible, doesn't seem to + work and row/column causes Excel to repair file. + + 18.18.84 ST_Type. + + + + Defines a scope of conditional formatting applied to . The scope is + more of a "user preference", it doesn't determine actual scope. The actual scope is determined + by . The scope determines what is in GUI and when + reapplied, it updates the according to selected + values. + + 18.18.67 ST_Scope + + + + Conditional formatting is applied to selected cells. When scope is applied, CF areas are be + updated to contain currently selected cells in GUI. + + + + + Conditional formatting is applied to selected data fields. When scope is applied, CF areas + are be updated to contain data fields of selected cells in GUI. + + + + + Conditional formatting is applied to selected pivot fields intersections. When scope is + applied, CF areas are be updated to contain row/column intersection of currently selected + cell in GUI. + + + + + Specification of conditional formatting of a pivot table. + + + + + An option to display in GUI on how to update . + + + + + A rule that determines how should CF be applied to . + + Doesn't seem to work, Excel has no dialogue, nothing found on web and Excel tries + to repair on row/column values. Avoid if possible. + + + + Areas of pivot table the rule should be applied. The areas are projected to the sheet + that Excel actually uses to display CF. + + + + + Conditional format applied to the . + + + The of the format is used as a identifier used + to connect pivot CF element and sheet CF element. Pivot CF is ultimately part of sheet CFs + and the priority determines order of CF application (note that CF has + flag). + + + + + A description of formatting that should be applied to a . + + + + + Pivot area that should be formatted. + + + + + Should the formatting (determined by ) be applied or not? + + + + + Differential formatting to apply to the . It can be empty, e.g. if + is blank. Empty dxf is represented by , + until we get better dxf representation. + + + + + An enum describing if applies formatting to the cells of pivot + table or not. + + + + [ISO-29500] 18.18.34 ST_FormatAction + + + [MS-OI29500] 2.1.761 Excel does not support the Drill and Formula values for the + action attribute. Therefore, neither do we, although Drill and Formula values + are present in the ISO ST_FormatAction enum. + + + + + + No format is applied to the pivot table. This is used when formatting is cleared from + already formatted cells of pivot table. + + + + + Pivot table has formatting. This is the default value. + + + + + A categorization of or . + + + 18.18.43 ST_ItemType (PivotItem Type). + > + + + + The pivot item represents an "average" aggregate function. + + + + + The pivot item represents a blank line. + + + + + The pivot item represents custom the "count numbers" aggregate. + + + + + The pivot item represents the "count" aggregate function (i.e. number, text and everything + else, except blanks). + + + + + The pivot item represents data. + + + + + The pivot item represents the default type for this pivot table, i.e. the "total" aggregate function. + + + + + The pivot items represents the grand total line. + + + + + The pivot item represents the "maximum" aggregate function. + + + + + The pivot item represents the "minimum" aggregate function. + + + + + The pivot item represents the "product" function. + + + + + The pivot item represents the "standard deviation" aggregate function. + + + + + The pivot item represents the "standard deviation population" aggregate function. + + + + + The pivot item represents the "sum" aggregate value. + + + + + The pivot item represents the "variance" aggregate value. + + + + + The pivot item represents the "variance population" aggregate value. + + + + + A field displayed in the filters part of a pivot table. + + + + + Field index to . Can't contain + 'data' + field -2. + + + + + If a single item is selected, item index. Null, if nothing selected or multiple selected. + Multiple selected values are indicated directly in + through flags. Items that are not selected are hidden, + rest isn't. + + + + + Represents a set of selected fields and selected items within those fields. It's used to select + an area for . + + + + + + If is false, then it is index into pivot fields + items of pivot field (unless is true). + + + If is true, then it is index into shared items + of a cached field with index (unless is + true). + + + + + + Specifies the index of the field to which this filter refers. A value of -2/4294967294 + indicates the 'data' field. It can represent pivot field or cache field, depending on + . + + + + + Flag indicating whether this field has selection. This attribute is used when the + pivot table is in outline view. It is also used when both header and data + cells have selection. + + + + + Flag indicating whether the item in is referred to by position rather + than item index. + + + + + Flag indicating whether the item is referred to by a relative reference rather than an + absolute reference. This attribute is used if posRef is set to true. + + + + + Source of data for a that takes data from a connection + to external source of data (e.g. database or a workbook). + + + + + Source of data for a that takes uses a union of multiple scenarios in the workbook to + create data. + + + + + Will application automatically create additional page filter in addition to the . + + + + + + Custom page filters that toggle whether to display data from a particular + range set. + There can be 0..4 page filters. Each can have a different combination + of range sets. + + + Example: + + The range sets are months and one page is Q1,Q2,Q3,Q4 + and second page filter is Last month of quarter and Other months. These + page items are referenced by . + + + + + + + Range sets that consists the cache source. + + + + + Source of data for a that takes data from external workbook. + + + + + External workbook relId. If relationships of cache definition changes, make sure to either keep same or update it. + + + + + Are source data in external workbook defined by a or by cell area. + + + + + A table or defined name in an external workbook that contains source data. + + + + + An area in an external workbook that contains source data. + + + + + A reference to the source data of . The source might exist + or not, that is evaluated during pivot cache record refresh. + + + + + Are source data in external workbook defined by a or by cell area. + + + + + Book area with the source data. Either this or is set. + + + + + Name of a table or a book-scoped named range that contain the source data. + Either this or is set. + + + + + Try to determine actual area of the source reference in the + workbook. Source reference might not be valid in the workbook. + + + + + Source of data for a that takes uses scenarios in the workbook to + create data. + + + + + List of all fields in the pivot table, roughly represents pivotTableDefinition. + pivotFields. Contains info about each field, mostly page/axis info (data field can + reference same field multiple times, so it mostly stores data in data fields). + + + + + Table theme this pivot table will use. + + + + + All fields reflected in the pivot cache. + Order of fields is same as for in the . + + + + + Part of the pivot table style. + + + + + Area of a pivot table. Area doesn't include page fields, they are above the area with + one empty row between area and filters. + + + + + First row of pivot table header, relative to the . + + + + + First row of pivot table data area, relative to the . + + + + + First column of pivot table data area, relative to the . + + + + + Determines the whether 'data' field is on (true) or + (false). + + + + + Determines the default 'data' field position, when it is automatically added to row/column fields. + 0 = first (e.g. before all column/row fields), 1 = second (i.e. after first row/column field) and so on. + > number of fields or null indicates the last position. + + + + + + An identification of legacy table auto-format to apply to the pivot table. The + Apply*Formats properties specifies which parts of auto-format to apply. If + null or is not true, legacy auto-format is + not applied. + + + The value must be less than 21 or greater than 4096 and less than or equal to 4117. See + ISO-29500 Annex G.3 for how auto formats look like. + + + + + + If auto-format should be applied ( and + are set), apply legacy auto-format number format properties. + + + + + If auto-format should be applied ( and + are set), apply legacy auto-format border properties. + + + + + If auto-format should be applied ( and + are set), apply legacy auto-format font properties. + + + + + If auto-format should be applied ( and + are set), apply legacy auto-format pattern properties. + + + + + If auto-format should be applied ( and + are set), apply legacy auto-format alignment properties. + + + + + If auto-format should be applied ( and + are set), apply legacy auto-format width/height properties. + + + + + Initial text of 'data' field. This is doesn't do anything, Excel always displays + dynamically a text 'Values', translated to current culture. + + + + + Text to display when in cells that contain error. + + + + + Flag indicating if should be shown when cell contain an error. + + + + + Test to display for missing items, when is true. + + + + + Flag indicating if should be shown when cell has no value. + + Doesn't seem to work in Excel. + + + + Name of style to apply to items headers in . + + + + Doesn't seem to work in Excel. + + + + Name of a style to apply to the cells left blank when a pivot table shrinks during a refresh operation. + + + + + Version of the application that last updated the pivot table. Application-dependent. + + + + + Minimum version of the application required to update the pivot table. Application-dependent. + + + + OLAP related. + + + + + Should field items be displayed on the axis despite pivot table not having any value + field? true will display items even without data field, false won't. + + + Example: There is an empty pivot table with no value fields. Add field 'Name' + to row fields. Should names be displayed on row despite not having any value field? + + + Also called ShowItems + + + + Flag indicating if user is allowed to edit cells in data area. + + + + + Flag indicating if UI to modify the fields of pivot table is disabled. In Excel, the + whole field area is hidden. + + + + OLAP only. + + + OLAP only. + + + + A flag indicating whether a page field that has selected multiple items (but not + necessarily all) display "(multiple items)" instead of "All"? If value is false. + page fields will display "All" regardless of whether only item subset is selected or + all items are selected. + + + + + Doesn't seem to do anything. Should hide drop down filters. + + + + + A flag indicating whether UI should display collapse/expand (drill) buttons in pivot + table axes. + + Also called ShowDrill. + + + + A flag indicating whether collapse/expand (drill) buttons in pivot table axes should + be printed. + + Also called PrintDrill. + + + OLAP only. Also called ShowMemberPropertyTips. + + + + A flag indicating whether UI should display a tooltip on data items of pivot table. The + tooltip contain info about value field name, row/col items used to aggregate the value + ect. Note that this tooltip generally hides cell notes, because mouseover displays data + tool tip, rather than the note. + + Also called ShowDataTips. + + + + A flag indicating whether UI should provide a mechanism to edit the pivot table. If the + value is false, Excel provides ability to refresh data through context menu, but + ribbon or other options to manipulate field or pivot table settings are not present. + + Also called enableWizard. + + + Likely OLAP only. Do not confuse with collapse/expand buttons. + + + + A flag indicating whether the user is prevented from displaying PivotField properties. + Not very consistent in Excel, e.g. can't display field properties through context menu + of a pivot table, but can display properties menu through context menu in editing wizard. + + + + + A flag that indicates whether the formatting applied by the user to the pivot table + cells is preserved on refresh. + + Once again, ISO-29500 is buggy and says the opposite. Also called + PreserveFormatting + + + + A flag that indicates whether legacy auto formatting has been applied to the PivotTable + view. + + Also called UseAutoFormatting. + + + + Also called PageWrap. + + + + Also called PageOverThenDown. + + + + A flag that indicates whether hidden pivot items should be included in subtotal + calculated values. If true, data for hidden items are included in subtotals + calculated values. If false, hidden values are not included in subtotal + calculations. + + Also called SubtotalHiddenItems. OLAP only. Option in Excel is grayed + out and does nothing. The option is un-grayed out when pivot cache is part of data + model. + + + + A flag indicating whether grand totals should be displayed for the PivotTable rows. + + Also called RowGrandTotals. + + + + A flag indicating whether grand totals should be displayed for the PivotTable columns. + + Also called ColumnGrandTotals. + + + + A flag indicating whether when a field name should be printed on all pages. + + Also called FieldPrintTitles. + + + + A flag indicating whether whether PivotItem names should be repeated at the top of each + printed page (e.g. if axis item spans multiple pages, it will be repeated an all pages). + + Also called ItemPrintTitles. + + + + A flag indicating whether row or column titles that span multiple cells should be + merged into a single cell. Useful only in in tabular layout, titles in other layouts + don't span across multiple cells. + + Also called MergeItem. + + + + A flag indicating whether UI for the pivot table should display large text in field + drop zones when there are no fields in the data region (e.g. Drop Value Fields + Here). Only works in legacy layout mode (i.e. + is true). + + + + + Specifies the version of the application that created the pivot cache. Application-dependent. + + Also called CreatedVersion. + + + + A row indentation increment for row axis when pivot table is in compact layout. Units + are characters. + + Also called Indent. + + + + A flag indicating whether to include empty rows in the pivot table (i.e. row axis items + are blank and data items are blank). + + Also called ShowEmptyRow. + + + + A flag indicating whether to include empty columns in the table (i.e. column axis items + are blank and data items are blank). + + Also called ShowEmptyColumn. + + + + A flag indicating whether to show field names on axis. The axis items are still + displayed, only field names are not. The dropdowns next to the axis field names + are also displayed/hidden based on the flag. + + Also called ShowHeaders. + + + + A flag indicating whether new fields should have their + flag set to true. By new, it means field + added to page, axes or data fields, not a new field from cache. + + + + + A flag indicating whether new fields should have their + flag set to true. By new, it means field + added to page, axes or data fields, not a new field from cache. + + + + + + A flag that indicates whether 'data'/-2 fields in the PivotTable should be displayed in + outline next column of the sheet. This is basically an equivalent of + property for the 'data' fields, because 'data' + field is implicit. + + + When true, the labels from the next field (as ordered by + for row or column) are displayed in the next + column. Has no effect if 'data' field is last field. + + + Doesn't seem to do much in column axis, only in row axis. Also, Excel + sometimes seems to favor flag instead (likely some less used + paths in the Excel code). + + + + + A flag that indicates whether 'data'/-2 fields in the PivotTable should be displayed in + compact mode (=same column of the sheet). This is basically an equivalent of + property for the 'data' fields, because 'data' + field is implicit. + + + When true, the labels from the next field (as ordered by + for row or column) are displayed in the same + column (one row below). Has no effect if 'data' field is last field. + + + Doesn't seem to do much in column axis, only in row axis. Also, Excel + sometimes seems to favor flag instead (likely some less used + paths in the Excel code). + + + + A flag that indicates whether data fields in the pivot table are published and + available for viewing in a server rendering environment. + + No idea what this does. Likely flag for other components that display table + on a web page. + + + + A flag that indicates whether to apply the classic layout. Classic layout displays the + grid zones in UI where user can drop fields (unless disabled through + ). + + Also called GridDropZones. + + + + Likely a flag whether immersive reader should be turned off. Not sure if immersive + reader was ever used outside Word, though Excel for Web added some support in 2023. + + + + + + A flag indicating whether field can have at most most one filter type used. This flag + doesn't allow multiple filters of same type, only multiple different filter types. + + + If false, field can have at most one filter, if user tries to set multiple, previous + one is cleared. + + + Also called multipleFieldFilters. + + + + Specifies the next pivot chart formatting identifier to use on the pivot table. First + actually used identifier should be 1. The format is used in /chartSpace/pivotSource/ + fmtId/@val. + + + + + The text that will be displayed in row header in compact mode. It is next to drop down + (if enabled) of a label/values filter for fields (if + is set to true). Use localized text + Row labels if property is not specified. + + + + + The text that will be displayed in column header in compact mode. It is next to drop down + (if enabled) of a label/values filter for fields (if + is set to true). Use localized text + Column labels if property is not specified. + + + + + A flag that controls how are fields sorted in the field list UI. true will + display fields sorted alphabetically, false will display fields in the order + fields appear in . OLAP data sources always use alphabetical + sorting. + + Also called fieldListSortAscending. + + + + A flag indicating whether MDX sub-queries are supported by OLAP data provider of this + pivot table. + + + + + A flag that indicates whether custom lists are used for sorting items of fields, both + initially when the PivotField is initialized and the PivotItems are ordered by their + captions, and later when the user applies a sort. + + Also called customSortList. + + + + Add field to a specific axis (page/row/col). Only modified , doesn't modify + additional info in , or . + + + + + Refresh cache fields after cache has changed. + + + + + Is field used by any axis (row, column, filter), but not data. + + + + + Specifies the number of unused items to allow in a + before discarding unused items. + + + + + The threshold is set automatically based on the number of items. + + Default behavior. + + + + When even one item is unused. + + + + + When all shared items of a filed are unused. + + + + + An enum describing how are values of a pivot field are sorted. + + + [ISO-29500] 18.18.28 ST_FieldSortType. + + + + + Field values are sorted manually. + + + + + Field values are sorted in ascending order. + + + + + Field values are sorted in descending order. + + + + + One field in a . Pivot table must contain field for each entry of + pivot cache and both are accessed through same index. Pivot field contains items, which are + cache field values referenced anywhere in the pivot table (e.g. caption, axis value ect.). + + + See [OI-29500] 18.10.1.69 pivotField(PivotTable Field) for details. + + + + + Pivot field item, doesn't contain value, only indexes to shared items. + + + + + Custom name of the field. + + + [MS-OI29500] Office requires @name to be unique for non-OLAP PivotTables. Ignored by data + fields that use . + + + + + If the value is set, the field must also be in rowFields/colFields/ + pageFields/dataFields collection in the pivot table part (otherwise Excel + will consider it a corrupt file). + + + [MS-OI29500] In Office, axisValues shall not be used for the axis attribute. + + + + + Is this field a data field (i.e. it is referenced the pivotTableDefinition. + dataFields)? Excel will crash, unless these two things both set correctly. + + + + + + Should the headers be displayed in a same column. This field has meaning only when + is set to true. Excel displays the flag in Field settings + - Layout & Print - Display labels from next field in the same column. + + + The value doesn't affect anything individually per field. When ALL fields of the pivot table + are false, the headers are displayed individually. If ANY field is true, headers + are grouped to single column. + + + + + + Are all items expanded? + + + + + + A flag that determines if field is in tabular form (false) or outline form + (true). If it is in outline form, the can also switch + to form. + + + Excel displays it on Field Settings - Layout & Print as a radio box. + + + + + + A flag that indicates whether to show all items for this field. + + + + + Insert empty row below every item if the field is row/column axis. The last field in axis + doesn't add extra item at the end. If multiple fields in axis have extra item, only once + blank row is inserted. + + + + + Subtotal functions represented in XML. It's kind of convoluted mess, because + it represents three possible results: + + None - Collection is empty. + Automatic - Collection contains only . + Custom - Collection contains subtotal functions other than . + The is ignored in that case, even if it is present. + . + + + Excel requires that pivot field contains a item if and only if there is a declared subtotal function. + The subtotal items must be kept at the end of the , otherwise Excel will try to repair + workbook. + + + + + Are item labels on row/column axis repeated for each nested item? + + + Also called FillDownLabels. Attribute is ignored if both the + and the are true. Attribute is ignored if the field is not on + the or the . + + + + + Add an item when it is used anywhere in the pivot table. + + Item to add. + Index of added item. + + + + + Filter all shared items of the field through a and return + all items that represent a value that satisfies the . + + + The don't necessarily contain all indexes to shared items + and if the value is missing in but is present in shared items, + add it (that's why method has prefix All). + + + Condition to satisfy. + + + + + + Gets or sets the elements that are allowed to be edited by the user, i.e. those that are not protected. + The allowed elements. + + + + Adds the specified element to the list of allowed elements. + Beware that if you pass through "None", this will have no effect. + + The element to add + Set to true to allow the element or false to disallow the element + The current protection instance + + + Allows all elements to be edited. + + + Allows no elements to be edited. Protects all elements. + + + Copies all the protection settings from a different instance. + The protectable. + + + + Removes the element to the list of allowed elements. + Beware that if you pass through "None", this will have no effect. + + The element to remove + The current protection instance + + + Protects this instance without a password. + The algorithm. + + + Protects this instance using the specified password and password hash algorithm. + The password. + The algorithm. + + + Unprotects this instance without a password. + + + Unprotects this instance using the specified password. + The password. + + + Gets the algorithm used to hash the password. + The algorithm. + + + Gets a value indicating whether this instance is protected with a password. + + true if this instance is password protected; otherwise, false. + + + + Gets a value indicating whether this instance is protected, either with or without a password. + + true if this instance is protected; otherwise, false. + + + + Protects this instance without a password. + + + Protects this instance without a password. + + + Protects this instance with the specified password, password hash algorithm and set elements that the user is allowed to change. + The algorithm. + The allowed elements. + + + Protects this instance using the specified password and password hash algorithm. + The password. + The algorithm. + + + Protects this instance with the specified password, password hash algorithm and set elements that the user is allowed to change. + The password. + The algorithm. + The allowed elements. + + + Unprotects this instance without a password. + + + Unprotects this instance using the specified password. + The password. + + + Gets a value indicating whether this instance is protected with a password. + + true if this instance is password protected; otherwise, false. + + + + Gets a value indicating whether this instance is protected, either with or without a password. + + true if this instance is protected; otherwise, false. + + + + Protects this instance without a password. + + + Protects this instance using the specified password and password hash algorithm. + The password. + The algorithm. + + + Unprotects this instance without a password. + + + Unprotects this instance using the specified password. + The password. + + + + The Windows option is available only in Excel 2007, Excel 2010, Excel for Mac 2011, and Excel 2016 for Mac. Select the Windows option if you want to prevent users from moving, resizing, or closing the workbook window, or hide/unhide windows. + + + + + Interface for the engine aimed to speed-up the search for the range intersections. + + + + + Implementation of internally using QuadTree. + + + + + The minimum number of ranges to be included into a QuadTree. Until it is reached the ranges + are added into a simple list to minimize the overhead of searching intersections on small collections. + + + + + A collection of ranges used before the QuadTree is initialized (until + is reached. + + + + + Generic version of . + + + + + A very lightweight interface for entities that have an address as + a rectangular range. + + + + + Gets an object with the boundaries of this range. + + + + + Creates a named range out of these ranges. + If the named range exists, it will add these ranges to that named range. + The default scope for the named range is Workbook. + + Name of the range. + + + + Creates a named range out of these ranges. + If the named range exists, it will add these ranges to that named range. + Name of the range. + The scope for the named range. + + + + + Creates a named range out of these ranges. + If the named range exists, it will add these ranges to that named range. + Name of the range. + The scope for the named range. + The comments for the named range. + + + + + Sets the cells' value. + If the object is an IEnumerable ClosedXML will copy the collection's data into a table starting from each cell. + If the object is a range ClosedXML will copy the range starting from each cell. + Setting the value to an object (not IEnumerable/range) will call the object's ToString() method. + ClosedXML will try to translate it to the corresponding type, if it can't then the value will be left as a string. + + + The object containing the value(s) to set. + + + + + Returns the collection of cells. + + + + + Returns the collection of cells that have a value. + + + + + Returns the collection of cells that have a value. + + if set to true will return all cells with a value or a style different than the default. + + + + Clears the contents of these ranges. + + Specify what you want to clear. + + + + A behavior of extra outside cells for transpose operation. The option + is meaningful only for transposition of non-squared ranges, because + squared ranges can always be transposed without effecting outside cells. + + + + + Shift cells of the smaller side to its direction so + there is a space to transpose other side (e.g. if A1:C5 + range is transposed, move D1:XFD5 are moved 2 columns + to the right). + + + + + Data of the cells are replaced by the transposed cells. + + + + + Gets the cell at the specified row and column. + The cell address is relative to the parent range. + + The cell's row. + The cell's column. + + + Gets the cell at the specified address. + The cell address is relative to the parent range. + The cell address in the parent range. + + + + Gets the cell at the specified row and column. + The cell address is relative to the parent range. + + The cell's row. + The cell's column. + + + Gets the cell at the specified address. + The cell address is relative to the parent range. + The cell address in the parent range. + + + + Gets the specified column of the range. + + 1-based column number relative to the first column of this range. + The relevant column + + + + Gets the specified column of the range. + + Column letter. + + + + Gets the first column of the range. + + + + + Gets the first non-empty column of the range that contains a cell with a value. + + The options to determine whether a cell is used. + The predicate to choose cells. + + + + Gets the last column of the range. + + + + + Gets the last non-empty column of the range that contains a cell with a value. + + The options to determine whether a cell is used. + The predicate to choose cells. + + + + Gets a collection of all columns in this range. + + + + + Gets a collection of the specified columns in this range. + + The first column to return. 1-based column number relative to the first column of this range. + The last column to return. 1-based column number relative to the first column of this range. + + + + Gets a collection of the specified columns in this range. + + The first column to return. + The last column to return. + The relevant columns + + + + Gets a collection of the specified columns in this range, separated by commas. + e.g. Columns("G:H"), Columns("10:11,13:14"), Columns("P:Q,S:T"), Columns("V") + + The columns to return. + + + + Returns the first row that matches the given predicate + + + + + Returns the first row that matches the given predicate + + + + + Gets the first row of the range. + + + + + Gets the first non-empty row of the range that contains a cell with a value. + + The options to determine whether a cell is used. + The predicate to choose cells. + + + + Gets the last row of the range. + + + + + Gets the last non-empty row of the range that contains a cell with a value. + + The options to determine whether a cell is used. + The predicate to choose cells. + + + + Gets the specified row of the range. + + 1-based row number relative to the first row of this range. + The relevant row + + + + Gets a collection of the specified rows in this range. + + The first row to return. 1-based row number relative to the first row of this range. + The last row to return. 1-based row number relative to the first row of this range. + + + + Gets a collection of the specified rows in this range, separated by commas. + e.g. Rows("4:5"), Rows("7:8,10:11"), Rows("13") + + The rows to return. + + + + Returns the specified range. + + The range boundaries. + + + Returns the specified range. + e.g. Range("A1"), Range("A1:C2") + The range boundaries. + + + Returns the specified range. + The first cell in the range. + The last cell in the range. + + + Returns the specified range. + The first cell address in the range. + The last cell address in the range. + + + Returns the specified range. + The first cell address in the range. + The last cell address in the range. + + + Returns a collection of ranges, separated by commas. + e.g. Ranges("A1"), Ranges("A1:C2"), Ranges("A1:B2,D1:D4") + The ranges to return. + + + Returns the specified range. + The first cell's row of the range to return. + The first cell's column of the range to return. + The last cell's row of the range to return. + The last cell's column of the range to return. + . + + + Gets the number of rows in this range. + + + Gets the number of columns in this range. + + + + Inserts X number of columns to the right of this range. + All cells to the right of this range will be shifted X number of columns. + + Number of columns to insert. + + + + Inserts X number of columns to the left of this range. + This range and all cells to the right of this range will be shifted X number of columns. + + Number of columns to insert. + + + + Inserts X number of rows on top of this range. + This range and all cells below this range will be shifted X number of rows. + + Number of rows to insert. + + + + Inserts X number of rows below this range. + All cells below this range will be shifted X number of rows. + + Number of rows to insert. + + + + Deletes this range and shifts the surrounding cells accordingly. + + How to shift the surrounding cells. + + + + Transposes the contents and styles of all cells in this range. + + How to handle the surrounding cells when transposing the range. + + + + Use this range as a table, but do not add it to the Tables list + + + NOTES:
+ The AsTable method will use the first row of the range as a header row.
+ If this range contains only one row, then an empty data row will be inserted into the returned table. +
+
+ + + Use this range as a table with the passed name, but do not add it to the Tables list + + Table name to be used. + + NOTES:
+ The AsTable method will use the first row of the range as a header row.
+ If this range contains only one row, then an empty data row will be inserted into the returned table. +
+
+ + + Rows used for sorting columns. Automatically updated each time a + is called. + + + + + Columns used for sorting rows. Automatically updated each time a + or . + + + User can set desired sorting order here and then call method. + + + + + Sort rows of the range using the (if non-empty) or by using + all columns of the range in ascending order. + + + This method can be used fort sorting, after user specified desired sorting order + in . + + This range. + + + + Sort rows of the range according to values in columns specified by . + + + Columns which should be used to sort the range and their order. Columns are separated + by a comma (,). The column can be specified either by column number or + by column letter. Sort order is parsed case insensitive and can be ASC or + DESC. The specified column is relative to the origin of the range. + + 2 DESC, 1, C asc means sort by second column of a range in descending + order, then by first column of a range in and then by + column C in ascending order.. + + + + What should be the default sorting order or columns in + without specified sorting order. + + + When cell value is a , should sorting be case insensitive + (false, Excel default behavior) or case sensitive (true). Doesn't affect + other cell value types. + + + When true (recommended, matches Excel behavior), blank cell values are always + sorted at the end regardless of sorting order. When false, blank values are + considered empty strings and are sorted among other cell values with a type + . + + This range. + + + + Sort rows of the range according to values in column. + + Column number that will be used to sort the range rows. + Sorting order used by . + + + This range. + + + + Sort columns in a range. The sorting is done using the values in each column of the range. + + In what order should columns be sorted + + + This range. + + + + Clears the contents of this range. + + Specify what you want to clear. + + + + Gets the number of columns in the area covered by the range address. + + + + + Gets or sets the first address in the range. + + + The first address. + + + + + Gets or sets a value indicating whether this range is valid. + + + true if this instance is valid; otherwise, false. + + + + + Gets or sets the last address in the range. + + + The last address. + + + + + Gets the number of cells in the area covered by the range address. + + + + + Gets the number of rows in the area covered by the range address. + + + + Allocates the current range address in the internal range repository and returns it + Range of the address or null, if the range is not a valid address. + + + + Returns the intersection of this range address with another range address on the same worksheet. + + The other range address. + The intersection's range address + + + + Determines whether range address spans the entire column. + + + true if is entire column; otherwise, false. + + + + + Determines whether range address spans the entire row. + + + true if is entire row; otherwise, false. + + + + + Determines whether the range address spans the entire worksheet. + + + true if is entire sheet; otherwise, false. + + + + + Returns a range address so that its offset from the target base address is equal to the offset of the current range address to the source base address. + For example, if the current range address is D4:E4, the source base address is A1:C3, then the relative address to the target base address B10:D13 is E14:F14 + + The source base range address. + The target base range address. + The relative range + + + + Sets a value to every cell in this range. + + Setter will clear a formula, if the cell contains a formula. + If the value is a text that starts with a single quote, setter will prefix the value with a single quote through + in Excel too and the value of cell is set to to non-quoted text. + + + + + + Sets the cells' formula with A1 references. + + + Setter trims the formula and if formula starts with an =, it is removed. If the + formula contains unprefixed future function (e.g. CONCAT), it will be correctly + prefixed (e.g. _xlfn.CONCAT). + + The formula with A1 references. + + + + Create an array formula for all cells in the range. + + + Setter trims the formula and if formula starts with an =, it is removed. If the + formula contains unprefixed future function (e.g. CONCAT), it will be correctly + prefixed (e.g. _xlfn.CONCAT). + + When the range overlaps with a table, pivot table, merged cells or partially overlaps another array formula. + + + + Sets the cells' formula with R1C1 references. + + + Setter trims the formula and if formula starts with an =, it is removed. If the + formula contains unprefixed future function (e.g. CONCAT), it will be correctly + prefixed (e.g. _xlfn.CONCAT). + + The formula with R1C1 references. + + + + Gets or sets a value indicating whether this cell's text should be shared or not. + + + If false the cell's text will not be shared and stored as an inline value. + + + + + Returns the collection of cells. + + + + + Returns the collection of cells that have a value. Formats are ignored. + + + + + Returns the collection of cells that have a value. + + The options to determine whether a cell is used. + + + + Searches the cells' contents for a given piece of text + + The search text. + The compare options. + if set to true search formulae instead of cell values. + + + + Returns the first cell of this range. + + + + + Returns the first non-empty cell with a value of this range. Formats are ignored. + The cell's address is going to be ([First Row with a value], [First Column with a value]) + + + + + Returns the first non-empty cell with a value of this range. + + The options to determine whether a cell is used. + + + + Returns the first non-empty cell with a value of this range. + + The options to determine whether a cell is used. + The predicate used to choose cells + + + + Returns the last cell of this range. + + + + + Returns the last non-empty cell with a value of this range. Formats are ignored. + The cell's address is going to be ([Last Row with a value], [Last Column with a value]) + + + + + Returns the last non-empty cell with a value of this range. + + The options to determine whether a cell is used. + + + + Determines whether this range contains the specified range (completely). + For partial matches use the range.Intersects method. + + The range address. + + true if this range contains the specified range; otherwise, false. + + + + + Determines whether this range contains the specified range (completely). + For partial matches use the range.Intersects method. + + The range to match. + + true if this range contains the specified range; otherwise, false. + + + + + Determines whether this range intersects the specified range. + For whole matches use the range.Contains method. + + The range address. + + true if this range intersects the specified range; otherwise, false. + + + + + Determines whether this range contains the specified range. + For whole matches use the range.Contains method. + + The range to match. + + true if this range intersects the specified range; otherwise, false. + + + + + Unmerges this range. + + + + + Merges this range. Only the top-left cell will have a value, other values will be blank. + + + + + Creates/adds this range to workbook scoped . + If the named range exists, it will add this range to that named range. + + Name of the defined name, without sheet. + + + + Creates/adds this range to . + If the named range exists, it will add this range to that named range. + Name of the defined name, without sheet. + The scope for the named range. + + + + + Creates/adds this range to . + If the named range exists, it will add this range to that named range. + Name of the defined name, without sheet. + The scope for the named range. + The comments for the named range. + + + + + Clears the contents of this range. + + Specify what you want to clear. + + + + Deletes the cell comments from this range. + + + + + Set value to all cells in the range. + + + + + Converts this object to a range. + + + + + Determines whether range address spans the entire column. + + + true if is entire column; otherwise, false. + + + + + Determines whether range address spans the entire row. + + + true if is entire row; otherwise, false. + + + + + Determines whether the range address spans the entire worksheet. + + + true if is entire sheet; otherwise, false. + + + + + Returns a data validation rule assigned to the range, if any, or creates a new instance of data validation rule if no rule exists. + + + + + Creates a new data validation rule for the range, replacing the existing one. + + + + + Grows this the current range by one cell to each side + + + + + Grows this the current range by the specified number of cells to each side. + + The grow count. + + + + Shrinks this current range by one cell. + + + + + Shrinks the current range by the specified number of cells from each side. + + The shrink count. + + + + Returns the intersection of this range with another range on the same worksheet. + + The other range. + Predicate applied to this range's cells. + Predicate applied to the other range's cells. + The range address of the intersection + + + + Returns the set of cells surrounding the current range. + + The predicate to apply on the resulting set of cells. + + + + Calculates the union of two ranges on the same worksheet. + + The other range. + Predicate applied to this range's cells. + Predicate applied to the other range's cells. + + The union + + + + + Returns all cells in the current range that are not in the other range. + + The other range. + Predicate applied to this range's cells. + Predicate applied to the other range's cells. + + + + Returns a range so that its offset from the target base range is equal to the offset of the current range to the source base range. + For example, if the current range is D4:E4, the source base range is A1:C3, then the relative range to the target base range B10:D13 is E14:F14 + + The source base range. + The target base range. + The relative range + + + + Gets the cell in the specified row. + + The cell's row. + + + + Returns the specified group of cells, separated by commas. + e.g. Cells("1"), Cells("1:5"), Cells("1:2,4:5") + + The column cells to return. + + + + Returns the specified group of cells. + + The first row in the group of cells to return. + The last row in the group of cells to return. + + + + Inserts X number of columns to the right of this range. + All cells to the right of this range will be shifted X number of columns. + + Number of columns to insert. + + + + Inserts X number of columns to the left of this range. + This range and all cells to the right of this range will be shifted X number of columns. + + Number of columns to insert. + + + + Inserts X number of cells on top of this column. + This column and all cells below it will be shifted X number of rows. + + Number of cells to insert. + + + + Inserts X number of cells below this range. + All cells below this column will be shifted X number of rows. + + Number of cells to insert. + + + + Deletes this range and shifts the cells at the right. + + + + + Deletes this range and shifts the surrounding cells accordingly. + + How to shift the surrounding cells. + + + + Gets this column's number in the range + + + + + Gets this column's letter in the range + + + + + Clears the contents of this column. + + Specify what you want to clear. + + + + Adds a column range to this group. + + The column range to add. + + + + Returns the collection of cells. + + + + + Returns the collection of cells that have a value. + + + + + Returns the collection of cells that have a value. + + The options to determine whether a cell is used. + + + + Deletes all columns and shifts the columns at the right of them accordingly. + + + + + Clears the contents of these columns. + + Specify what you want to clear. + + + + Gets the cell in the specified column. + + The cell's column. + + + + Gets the cell in the specified column. + + The cell's column. + + + + Returns the specified group of cells, separated by commas. + e.g. Cells("1"), Cells("1:5"), Cells("1:2,4:5") + + The row's cells to return. + + + + Returns the specified group of cells. + + The first column in the group of cells to return. + The last column in the group of cells to return. + + + + Returns the specified group of cells. + + The first column in the group of cells to return. + The last column in the group of cells to return. + + + + Inserts X number of cells to the right of this row. + All cells to the right of this row will be shifted X number of columns. + + Number of cells to insert. + + + + Inserts X number of cells to the left of this row. + This row and all cells to the right of it will be shifted X number of columns. + + Number of cells to insert. + + + + Inserts X number of rows on top of this row. + This row and all cells below it will be shifted X number of rows. + + Number of rows to insert. + + + + Inserts X number of rows below this row. + All cells below this row will be shifted X number of rows. + + Number of rows to insert. + + + + Deletes this range and shifts the cells below. + + + + + Deletes this range and shifts the surrounding cells accordingly. + + How to shift the surrounding cells. + + + + Gets this row's number in the range + + + + + Clears the contents of this row. + + Specify what you want to clear. + + + + Adds a row range to this group. + + The row range to add. + + + + Returns the collection of cells. + + + + + Returns the collection of cells that have a value. + + + + + Returns the collection of cells that have a value. + + The options to determine whether a cell is used. + + + + Deletes all rows and shifts the rows below them accordingly. + + + + + Clears the contents of these rows. + + Specify what you want to clear. + + + + Adds the specified range to this group. + + The range to add to this group. + + + + Removes the specified range from this group. + + The range to remove from this group. + + + + Removes ranges matching the criteria from the collection, optionally releasing their event handlers. + + Criteria to filter ranges. Only those ranges that satisfy the criteria will be removed. + Null means the entire collection should be cleared. + Specify whether or not should removed ranges be unsubscribed from + row/column shifting events. Until ranges are unsubscribed they cannot be collected by GC. + + + + Filter ranges from a collection that intersect the specified address. Is much more efficient + that using Linq expression .Where(). + + + + + Filter ranges from a collection that intersect the specified address. Is much more efficient + that using Linq expression .Where(). + + + + + Filter ranges from a collection that intersect the specified cell. Is much more efficient + that using Linq expression .Where(). + + + + + Creates a new data validation rule for the ranges collection, replacing the existing ones. + + + + + Creates a named range out of these ranges. + If the named range exists, it will add these ranges to that named range. + The default scope for the named range is Workbook. + + Name of the range. + + + + Creates a named range out of these ranges. + If the named range exists, it will add these ranges to that named range. + Name of the range. + The scope for the named range. + + + + + Creates a named range out of these ranges. + If the named range exists, it will add these ranges to that named range. + Name of the range. + The scope for the named range. + The comments for the named range. + + + + + Sets the cells' value. + + Setter will clear a formula, if the cell contains a formula. + If the value is a text that starts with a single quote, setter will prefix the value with a single quote through + in Excel too and the value of cell is set to to non-quoted text. + + + + + + Returns the collection of cells. + + + + + Returns the collection of cells that have a value. + + + + + Returns the collection of cells that have a value. + + The options to determine whether a cell is used. + + + + Clears the contents of these ranges. + + Specify what you want to clear. + + + + Create a new collection of ranges which are consolidated version of source ranges. + + + + + Column or row number whose values will be used for sorting. + + + + + Sorting order. + + + + + When true (recommended, matches Excel behavior), blank cell values are always + sorted at the end regardless of sorting order. When false, blank values are + considered empty strings and are sorted among other cell values with a type + . + + + + + When cell value is a , should sorting be case insensitive + (false, Excel default behavior) or case sensitive (true). Doesn't affect + other cell value types. + + + + + A comparator of two cell value. It uses semantic of a sort feature in Excel: + + Order by type is number, text, logical, error, blank. + Errors are not sorted. + Blanks are always last, both in ascending and descending order. + Stable sort. + + + + + + A comparer of rows in a range. It uses semantic of a sort feature in Excel. + + + The comparer should work separate from data, but it would necessitate to sort over + . That would require to not only instantiate a new object for each + sorted row, but since , it would also be be tracked in range + repository, slowing each subsequent operation. To improve performance, comparer has + reference to underlaying data and compares row numbers that can be stores in a single + allocated array of indexes. + + + + + Lead a range address to a normal form - when points to the top-left address and + points to the bottom-right address. + + + + + Does this range contains whole another range? + + + + + The direct constructor should only be used in . + + + + + Engine for ranges consolidation. Supports IXLRanges including ranges from either one or multiple worksheets. + + + + + Class representing the area covering ranges to be consolidated as a set of bit matrices. Does all the dirty job + of ranges consolidation. + + + + + Constructor. + + Current worksheet. + Ranges to be consolidated. They are expected to belong to the current worksheet, no check is performed. + + + + Get consolidated ranges equivalent to the input ones. + + + + Indicates whether the current object is equal to another object of the same type. + true if the current object is equal to the parameter; otherwise, false. + An object to compare with this object. + + + Indicates whether this instance and a specified object are equal. + true if and this instance are the same type and represent the same value; otherwise, false. + Another object to compare to. + + + Returns the hash code for this instance. + A 32-bit signed integer that is the hash code for this instance. + + + + The direct constructor should only be used in . + + + + + Normally, XLRanges collection includes ranges from a single worksheet, but not necessarily. + + + + + Removes ranges matching the criteria from the collection, optionally releasing their event handlers. + + Criteria to filter ranges. Only those ranges that satisfy the criteria will be removed. + Null means the entire collection should be cleared. + Specify whether or not should removed ranges be unsubscribed from + row/column shifting events. Until ranges are unsubscribed they cannot be collected by GC. + + + + Filter ranges from a collection that intersect the specified address. Is much more efficient + that using Linq expression .Where(). + + + + + Filter ranges from a collection that intersect the specified address. Is much more efficient + that using Linq expression .Where(). + + + + + Replace the text and formatting of this text by texts and formatting from the text. + + Original to copy from. + This text. + + + + How many rich strings is the formatted text composed of. + + + + + Length of the whole formatted text. + + + + + Get text of the whole formatted text. + + + + + Does this text has phonetics? Unlike accessing the property, this method + doesn't create a new instance on access. + + + + + Get or create phonetics for the text. Use to check for existence to avoid unnecessary creation. + + + + + Add a phonetic run above a base text. Phonetic runs can't overlap. + + Text to display above a section of a base text. Can't be empty. + Index of a first character of a base text above which should be displayed. Valid values are 0..length-1. + The excluded ending index in a base text (the hint is not displayed above the end). Must be > . Valid values are 1..length. + + + + Remove all phonetic runs. Keeps font properties. + + + + + Reset font properties to the default font of a container (likely IXLCell). Keeps phonetic runs, and . + + + + + Number of phonetic runs above the base text. + + + + + + + + Font used for a new rich text run, never modified. It is generally provided by a container of the formatted text. + + + + + + + + This method is called every time the formatted text is changed (new runs, font props, phonetics...). + + + + + A class for holding in a . + It's immutable (keys in reverse dictionary can't change) and more memory efficient + than mutable rich text. + + + + + A text of a whole rich text, without styling. + + + + + Individual rich text runs that make up the , in ascending order, non-overlapping. + + + + + All phonetics runs of rich text. Empty array, if no phonetic run. In ascending order, non-overlapping. + + + + + Properties used to display phonetic runs. + + + + + Create an immutable rich text with same content as the original . + + + + + Phonetic runs can't overlap and must be in order (i.e. start index must be ascending). + + + + + Text that is displayed above a segment indicating how should segment be read. + + + + + Starting index of displayed phonetic (first character is 0). + + + + + End index, excluding (the last index is a length of the rich text). + + + + + Properties of phonetic runs. All phonetic runs of a rich text have same font and other properties. + + + + + Font used for text of phonetic runs. All phonetic runs use same font. There can be no phonetic runs, + but with specified font (e.g. the mutable API has only specified font, but no text yet). + + + + + Type of phonetics. Default is + + + + + Alignment of phonetics. Default is + + + + + Copy ctor to return user modifiable rich text from immutable rich text stored + in the shared string table. + + + + + Gets or sets the height of this row. + + + The width of this row in points. + + + + + Clears the height for the row and defaults it to the spreadsheet row height. + + + + + Deletes this row and shifts the rows below this one accordingly. + + Don't use in a loop due to poor performance. Use instead. + + + + Gets this row's number + + + + + Inserts X number of rows below this one. + All rows below will be shifted accordingly. + + The number of rows to insert. + + + + Inserts X number of rows above this one. + This row and all below will be shifted accordingly. + + The number of rows to insert. + + + + Adjusts the height of the row based on its contents, starting from the startColumn. + + The column to start calculating the row height. + + + + Adjusts the height of the row based on its contents, starting from the startColumn and ending at endColumn. + + The column to start calculating the row height. + The column to end calculating the row height. + + + + Adjust height of the column according to the content of the cells. + + Number of a first column whose content is considered. + Number of a last column whose content is considered. + Minimum height of adjusted column, in points. + Maximum height of adjusted column, in points. + + + Hides this row. + + + Unhides this row. + + + + Gets a value indicating whether this row is hidden or not. + + + true if this row is hidden; otherwise, false. + + + + + Gets or sets the outline level of this row. + + + The outline level of this row. + + + + + Adds this row to the next outline level (Increments the outline level for this row by 1). + + + + + Adds this row to the next outline level (Increments the outline level for this row by 1). + + If set to true the row will be shown collapsed. + + + + Sets outline level for this row. + + The outline level. + + + + Sets outline level for this row. + + The outline level. + If set to true the row will be shown collapsed. + + + + Adds this row to the previous outline level (decrements the outline level for this row by 1). + + + + + Adds this row to the previous outline level (decrements the outline level for this row by 1). + + If set to true it will remove this row from all outline levels. + + + + Show this row as collapsed. + + + + + Gets the cell in the specified column. + + The cell's column. + + + + Gets the cell in the specified column. + + The cell's column. + + + + Returns the specified group of cells, separated by commas. + e.g. Cells("1"), Cells("1:5"), Cells("1,3:5") + + The row's cells to return. + + + + Returns the specified group of cells. + + The first column in the group of cells to return. + The last column in the group of cells to return. + + + + Returns the specified group of cells. + + The first column in the group of cells to return. + The last column in the group of cells to return. + + + Expands this row (if it's collapsed). + + + + Adds a horizontal page break after this row. + + + + + Clears the contents of this row. + + Specify what you want to clear. + + + + Sets the height of all rows. + + + The height of all rows. + + + + + Deletes all rows and shifts the rows below them accordingly. + + + + + Adjusts the height of all rows based on its contents. + + + + + Adjusts the height of all rows based on its contents, starting from the startColumn. + + The column to start calculating the row height. + + + + Adjusts the height of all rows based on its contents, starting from the startColumn and ending at endColumn. + + The column to start calculating the row height. + The column to end calculating the row height. + + + + Hides all rows. + + + + Unhides all rows. + + + + Increments the outline level of all rows by 1. + + + + + Increments the outline level of all rows by 1. + + If set to true the rows will be shown collapsed. + + + + Sets outline level for all rows. + + The outline level. + + + + Sets outline level for all rows. + + The outline level. + If set to true the rows will be shown collapsed. + + + + Decrements the outline level of all rows by 1. + + + + + Decrements the outline level of all rows by 1. + + If set to true it will remove the rows from all outline levels. + + + + Show all rows as collapsed. + + + + Expands all rows (if they're collapsed). + + + + Returns the collection of cells. + + + + + Returns the collection of cells that have a value. + + + + + Returns the collection of cells that have a value. + + The options to determine whether a cell is used. + + + + Adds a horizontal page break after these rows. + + + + + Clears the contents of these rows. + + Specify what you want to clear. + + + + Don't use directly, use properties. + + + + + The direct constructor should only be used in . + + + + + Distance in pixels from the bottom of the cells in the current row to the typographical + baseline of the cell content if, hypothetically, the zoom level for the sheet containing + this row is 100 percent and the cell has bottom-alignment formatting. + + + If the attribute is set, it sets customHeight to true even if the customHeight is explicitly + set to false. Custom height means no auto-sizing by Excel on load, so if row has this + attribute, it stops Excel from auto-sizing the height of a row to fit the content on load. + + + + + Should cells in the row display phonetic? This doesn't actually affect whether the phonetic are + shown in the row, that depends entirely on the property + of a cell. This property determines whether a new cell in the row will have it's phonetic turned on + (and also the state of the "Show or hide phonetic" in Excel when whole row is selected). + Default is false. + + + + + Does row have an individual height or is it derived from the worksheet ? + + + + + Flag enum to save space, instead of wasting byte for each flag. + + + + + Create a new instance of . + + If worksheet is specified it means that the created instance represents + all rows on a worksheet so changing its height will affect all rows. + Default style to use when initializing child entries. + A predefined enumerator of to support lazy initialization. + + + + Evaluate a cells with a formula and save the calculated value along with the formula. + + + True - formulas are evaluated and the calculated values are saved to the file. + If evaluation of a formula throws an exception, value is not saved but file is still saved. + + + False (default) - formulas are not evaluated and the formula cells don't have their values saved to the file. + + + + + + + Gets or sets the filter privacy flag. Set to null to leave the current property in saved workbook unchanged + + + + + Copy this sparkline group to the specified worksheet + + The worksheet to copy this sparkline group to + + + + Create a new sparkline + + The sparkline group to add the sparkline to + The cell to place the sparkline in + The range the sparkline gets data from + + + + The worksheet this sparkline group is associated with + + + + + Add a new sparkline group copied from an existing sparkline group to the specified worksheet + + The worksheet the sparkline group is being added to + The sparkline group to copy from + The new sparkline group added + + + + Add a new sparkline group copied from an existing sparkline group to the specified worksheet + + The new sparkline group added + + + + Add a new sparkline group copied from an existing sparkline group to the specified worksheet + + The new sparkline group added + + + + Add a new sparkline group copied from an existing sparkline group to the specified worksheet + + The new sparkline group added + + + + Add a sparkline to the group. + + The cell to add sparklines to. If it already contains a sparkline + it will be replaced. + The range the sparkline gets data from + A newly created sparkline. + + + + Copy the details from a specified sparkline group + + The sparkline group to copy from + + + + + + + + + + Remove all sparklines in the specified cell from this group + + The cell to remove sparklines from + + + + Remove the sparkline from this group + + + + + + Remove all sparklines from this group + + + + + Add a new sparkline group to the specified worksheet + + The worksheet the sparkline group is being added to + The new sparkline group added + + + + Add empty sparkline group. + + + + + Add the sparkline group to the collection. + + The sparkline group to add to the collection + The same sparkline group + + + + Add a copy of an existing sparkline group to the specified worksheet + + The sparkline group to copy + The worksheet the sparkline group is being added to + The new sparkline group added + + + + Copy this sparkline group to a different worksheet + + The worksheet to copy the sparkline group to + + + + Search for the first sparkline that is in the specified cell + + The cell to find the sparkline for + The sparkline in the cell or null if no sparklines are found + + + + Find all sparklines located in a given range + + The range to search + The sparkline in the cell or null if no sparklines are found + + + + Remove all sparklines in the specified cell + + The cell to remove sparklines from + + + + Remove the sparkline group from the worksheet + + The sparkline group to remove + + + + Remove the sparkline from the worksheet + + The sparkline to remove + + + + Remove all sparkline groups and their contents from the worksheet. + + + + + Shift address of all sparklines to reflect inserted columns before a range. + + Range before which will the columns be inserted. Has same worksheet. + How many columns, can be positive or negative number. + + + + Shift address of all sparklines to reflect inserted rows before a range. + + Range before which will the rows be inserted. Has same worksheet. + How many rows, can be positive or negative number. + + + Returns a value that indicates whether two objects have different values. + The first value to compare. + The second value to compare. + true if and are not equal; otherwise, false. + + + Returns a value that indicates whether the values of two objects are equal. + The first value to compare. + The second value to compare. + true if the and parameters have the same value; otherwise, false. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the other parameter; otherwise, false. + + + Determines whether the specified object is equal to the current object. + The object to compare with the current object. + true if the specified object is equal to the current object; otherwise, false. + + + Serves as the default hash function. + A hash code for the current object. + + + + VML palette entries from MS-OI29500. Excel uses Windows system color scheme to determine the actual colors of a palette + entry, but we have no way to get them. Win10 doesn't even have a tool, use Classic Color Panel. We will use the default + values that are default on Windows. + + + + + Create a color from RBG hexa number. Alpha will be always set to full opacity. + + + + + Parse a color in a RRGGBB hexadecimal format. It is used + to parse colors of ST_HexColorRGB type from the XML. + + A 6 character long hexadecimal number. + Parsed color with full opacity. + + + + Parse VML ST_ColorType type from ECMA-376, Part 4 §20.1.2.3. + + + + + Gets or sets the cell's horizontal alignment. + + + + + Gets or sets the cell's vertical alignment. + + + + + Gets or sets the cell's text indentation. + + + + + Gets or sets whether the cell's last line is justified or not. + + + + + Gets or sets the cell's reading order. + + + + + Gets or sets the cell's relative indent. + + + + + Gets or sets whether the cell's font size should decrease to fit the contents. + + + + + Gets or sets the cell's text rotation in degrees. Allowed values are -90 + (text is rotated clockwise) to 90 (text is rotated counterclockwise) and + 255 for vertical layout of a text. + + + + + Gets or sets whether the cell's text should wrap if it doesn't fit. + + + + + Gets or sets whether the cell's text should be displayed from to to bottom + (as opposed to the normal left to right). + + + + + ASCII character set. + + + + + System default character set. + + + + + Symbol character set. + + + + + Characters used by Macintosh. + + + + + Japanese character set. + + + + + Korean character set. + + + + + Another common spelling of the Korean character set. + + + + + Korean character set. + + + + + Chinese character set used in mainland China. + + + + + Chinese character set used mostly in Hong Kong SAR and Taiwan. + + + + + Greek character set. + + + + + Turkish character set. + + + + + Vietnamese character set. + + + + + Hebrew character set. + + + + + Arabic character set. + + + + + Baltic character set. + + + + + Russian character set. + + + + + Thai character set. + + + + + Eastern European character set. + + + + + Extended ASCII character set used with disk operating system (DOS) and some Microsoft Windows fonts. + + + + + A font theme scheme. Theme has categories of fonts and when the theme changes, texts that are associated with + the particular theme scheme are switched to a font of a new theme. + + + + + Not a part of theme scheme. + + + + + A major font of a theme, generally used for headings. + + + + + A minor font of a theme, generally used to body and paragraphs. + + + + + + + + + + + + Defines an expected character set used by the text of this font. It helps Excel to choose + a font face, either because requested one isn't present or is unsuitable. Each font file contains + a list of charsets it is capable of rendering and this property is used to detect whether the charset + of a text matches the rendering capabilities of a font face and is thus suitable. + + + Example: + The FontCharSet is XLFontCharSet.Default, but the selected font name is B Mitra + that contains only arabic alphabet and declares so in its file. Excel will detect this discrepancy and + choose a different font to display the text. The outcome is that text is not displayed with the B Mitra + font, but with a different one and user doesn't see persian numbers. To use the B Mitra font, + this property must be set to XLFontCharSet.Arabic that would match the font declared capabilities. + + + Due to prevalence of unicode fonts, this property is rarely used. + + + + Determines a theme font scheme a text belongs to. If the text belongs to a scheme and user changes theme + in Excel, the font of the text will switch to the new theme font. Scheme font has precedence and will be + used instead of a set font. + + + + + Should the text values of a cell saved to the file be prefixed by a quote (') character? + Has no effect if cell values is not a . Doesn't affect values during runtime, + text values are returned without quote. + + + + + An interface implemented by workbook elements that have a defined . + + + + + Editable style of the workbook element. Modification of this property DOES affect styles of child objects as well - they will + be changed accordingly. Accessing this property causes a new instance generated so use this property + with caution. If you need only _read_ the style consider using property instead. + + + + + Editable style of the workbook element. Modification of this property DOES NOT affect styles of child objects. + Accessing this property causes a new instance generated so use this property with caution. If you need + only _read_ the style consider using property instead. + + + + + + Return a collection of ranges that determine outside borders (used by + ). + + + Return ranges represented by elements. For one element (e.g. workbook, cell, + column), it should return only the element itself. For element that represent a + collection of other elements, e.g. , , + , it should return range for each element in the collection. + + + + + + Style value representing the current style of the stylized element. + The value is updated when style is modified ( + is immutable). + + + + + A callback method called when is changed. It should update + style of the stylized descendants of the stylized element. + + A method that changes the style from original to modified. + + + + Create an instance of XLAlignment initializing it with the specified value. + + Style to attach the new instance to. + Style value to use. + + + + Create an instance of XLBorder initializing it with the specified value. + + Container the border is applied to. + Style to attach the new instance to. + Style value to use. + + + + Helper class that remembers outside border state before editing (in constructor) and restore afterwards (on disposing). + It presumes that size of the range does not change during the editing, else it will fail. + + + + + Create an instance of XLFill initializing it with the specified value. + + Style to attach the new instance to. + Style value to use. + + + + Create an instance of XLFont initializing it with the specified value. + + Style to attach the new instance to. + Style value to use. + + + + Create a new font that is attached to a style and the changes to the font object are propagated to the style. + + The container style that will be modified by changes of created XLFont. + + + + Create a new font. The changes to the object are not propagated to a style. + + + + + Create an instance of XLNumberFormat initializing it with the specified value. + + Style to attach the new instance to. + Style value to use. + + + + The value -1 that is set to , if is + set to user-defined format (non-empty string). + + + + + Number format identifier of predefined format, see . + If -1, the format is custom and stored in the . + + + + + General number format. + + + + + Id of the number format. Every workbook has + built-int formats that start at 0 (General format). The built-int formats are + not explicitly written and might differ depending on culture. Custom number formats + have a valid and the id is -1. + + + + + Reference point of date/number formats available. + See more at: https://msdn.microsoft.com/en-us/library/documentformat.openxml.spreadsheet.numberingformat.aspx + + + + + General + + + + + General + + + + + 0 + + + + + 0.00 + + + + + #,##0 + + + + + #,##0.00 + + + + + 0% + + + + + 0.00% + + + + + 0.00E+00 + + + + + # ?/? + + + + + # ??/?? + + + + + #,##0 ,(#,##0) + + + + + #,##0 ,[Red](#,##0) + + + + + #,##0.00,(#,##0.00) + + + + + #,##0.00,[Red](#,##0.00) + + + + + ##0.0E+0 + + + + + @ + + + + + General + + + + + d/m/yyyy + + + + + d-mmm-yy + + + + + d-mmm + + + + + mmm-yy + + + + + h:mm tt + + + + + h:mm:ss tt + + + + + H:mm + + + + + H:mm:ss + + + + + m/d/yyyy H:mm + + + + + mm:ss + + + + + [h]:mm:ss + + + + + mm:ss.0 + + + OOXML specification is missing colon. + + + + + @ + + + + + Create an instance of XLProtection initializing it with the specified value. + + Style to attach the new instance to. + Style value to use. + + + + To initialize XLStyle.Default only + + + + + An immutable style value. + + + + + Combine row and column styles into a combined style. This style is used by non-pinged + cells of a worksheet. + + + + + Base class for any workbook element that has or may have a style. + + + + + Read-only style property. + + + + + + + + + + + + + + Get a collection of stylized entities which current entity's style changes should be propagated to. + + + + + Apply specified style to the container. + + Style to apply. + Whether or not propagate the style to inner ranges. + + + + Change the name of a table. Structural references to the table are not updated. + + If the new table name is already used by other table in the sheet. + + + + Clears the contents of this table. + + Specify what you want to clear. + + + + Get field of the table. + + Name of the field. Field names are case-insensitive. + Requested field. + Table doesn't contain field. + + + + Appends the IEnumerable data elements and returns the range of the new rows. + + The IEnumerable data. + if set to true propagate extra columns' values and formulas. + + The range of the new rows. + + + + + Appends the IEnumerable data elements and returns the range of the new rows. + + The IEnumerable data. + if set to true the data will be transposed before inserting. + if set to true propagate extra columns' values and formulas. + + The range of the new rows. + + + + + Appends the data of a data table and returns the range of the new rows. + + The data table. + if set to true propagate extra columns' values and formulas. + + The range of the new rows. + + + + + Appends the IEnumerable data elements and returns the range of the new rows. + + + The table data. + if set to true propagate extra columns' values and formulas. + + The range of the new rows. + + + + + Replaces the IEnumerable data elements and returns the table's data range. + + The IEnumerable data. + if set to true propagate extra columns' values and formulas. + + The table's data range. + + + + + Replaces the IEnumerable data elements and returns the table's data range. + + The IEnumerable data. + if set to true the data will be transposed before inserting. + if set to true propagate extra columns' values and formulas. + + The table's data range. + + + + + Replaces the data from the records of a data table and returns the table's data range. + + The data table. + if set to true propagate extra columns' values and formulas. + + The table's data range. + + + + + Replaces the IEnumerable data elements as a table and the table's data range. + + + The table data. + if set to true propagate extra columns' values and formulas. + + The table's data range. + + + + + Resizes the table to the specified range address. + + The new table range. + + + + Resizes the table to the specified range address. + + The range boundaries. + + + + Resizes the table to the specified range address. + + The range boundaries. + + + + Resizes the table to the specified range. + + The first cell in the range. + The last cell in the range. + + + + Resizes the table to the specified range. + + The first cell address in the worksheet. + The last cell address in the worksheet. + + + + Resizes the table to the specified range. + + The first cell address in the worksheet. + The last cell address in the worksheet. + + + + Resizes the table to the specified range. + + The first cell's row of the range to return. + The first cell's column of the range to return. + The last cell's row of the range to return. + The last cell's column of the range to return. + + + + Converts the table to an enumerable of dynamic objects + + + + + Converts the table to a standard .NET System.Data.DataTable + + + + + Gets the corresponding column for this table field. + Includes the header and footer cells + + + The column. + + + + + Gets the collection of data cells for this field + Excludes the header and footer cells + + + The data cells + + + + + Gets the footer cell for the table field. + + + The footer cell. null, if the table + doesn't have set . + + + + + Gets the header cell for the table field. + + + The header cell.null, if the table + doesn't have set . + + + + + Gets the index of the column (0-based). + + + The index. + + + + + Gets or sets the name/header of this table field. + The corresponding header cell's value will change if you set this. + + + The name. + + + + + Gets the underlying table for this table field. + + + + + Gets or sets the totals row formula in A1 format. + + + The totals row formula a1. + + + + + Gets or sets the totals row formula in R1C1 format. + + + The totals row formula r1 c1. + + + + + Gets or sets the totals row function. + + + The totals row function. + + + + + Gets or sets the totals row label (the leftmost cell in the totals row). + + + The totals row label. + + If the totals row is not displayed for the table. + + + + Deletes this table field from the table. + + + + + Determines whether all cells this table field have a consistent data type. + + + + + Determines whether all cells this table field have a consistent formula. + + + + + Determines whether all cells this table field have a consistent style. + + + + + Rows the specified row. + + 1-based row number relative to the first row of this range. + + + + Returns a subset of the rows + + The first row to return. 1-based row number relative to the first row of this range. + The last row to return. 1-based row number relative to the first row of this range. + + + + Clears the contents of this row. + + Specify what you want to clear. + + + + Adds a table row to this group. + + The row table to add. + + + + Returns the collection of cells. + + + + + Returns the collection of cells that have a value. + + + + + Returns the collection of cells that have a value. + + The options to determine whether a cell is used. + + + + Clears the contents of these rows. + + Specify what you want to clear. + + + + Clears the contents of these tables. + + Specify what you want to clear. + + + + Generate a non conflicting table name for the workbook + + Workbook to generate name for + "Base Table Name + Name for the table + + + + The direct constructor should only be used in . + + + + + Area of the range, including headings and totals, if table has them. + + + + + Update headers fields and totals fields by data from the cells. Do not add a new fields or names. + + Area that contains cells with changed values that might affect header and totals fields. + + + + A value of a single cell. It contains a value a specific . + Structure provides following group of methods: + + Is* properties to check type (, ...) + Get* methods that return the stored value or throw for incorrect type. + Explicit operators to convert XLCellValue to a concrete type. It is an equivalent of Get* methods. + TryConvert methods to try to get value of a specific type, even if the value is of a different type. + + + + + + Type of the value. + + + + + Is the type of value Blank? + + + + + Is the type of value ? + + + + + Is the type of value ? + + + + + Is the type of value ? + + + + + Is the type of value ? + + + + + Is the type of value ? + + + + + Is the type of value ? + + + + + Is the value or or . + + + + + Creates an from an . If the type of the object has an implicit conversion operator then it is used. + Otherwise, the method is used to convert the provided object to a string. + + The following types and their nullable counterparts are supported without requiring to be converted to a string: + + + + + + + + + + + + + + + + + + + + + The object to convert. + An object that supplies culture-specific formatting information. + An representation of the object. + + + + A function used during data insertion to convert an object to XLCellValue. + + + + + Try to convert a string into a string value, doing your best. If no other type can be + extracted, consider it a text. + + Text to parse into a value. + Culture used to parse numbers. + Parsed value. + + + + + + + + + + + + + + + + + + + + + + + + + If the value is of type , + return , otherwise throw . + + + + + If the value is of type , + return logical, otherwise throw . + + + + + If the value is of type , + return number, otherwise throw . + + + + + If the value is of type , + return text, otherwise throw . + + + + + If the value is of type , + return error, otherwise throw . + + + + + If the value is of type , + return date time, otherwise throw . + + + + + If the value is of type , + return time span, otherwise throw . + + + + + Get a number, either directly from type number or from serialized time span + or serialized date time. + + If type is not or + or . + + + + Return text representation of a value in current culture. + + + + + Return text representation of a value in the specified culture. + + + + + Is the cell value text and is equal to the ? + Text comparison is case sensitive. + + + + + Get a value, if it is a . + + True if value was retrieved, false otherwise. + + + + Try to convert the value to a and return it. + Method succeeds, when value is + + Type . + Type and the text is empty. + + + + + + Try to convert the value to a and return it. + Method succeeds, when value is + + Type . + Type , then the value of 0 means false and any other value is true. + Type and the value is TRUE or FALSE (case insensitive). Note that calc engine + generally doesn't coerce text to logical (e.g. arithmetic operations), though it happens in most function arguments (e.g. + IF or AND). + + + + + + Try to convert the value to a and return it. + + Double value - return the value. + Boolean value - return the 0 for TRUE and 1 for FALSE. + Text value - use the VALUE semantic to convert a text to a number. + DateTime value - return the serial date time number. + TimeSpan value - return the serial time span value. + + + Note that the coercion is current culture specific (e.g. decimal separators can differ). + The converted value. Result is never infinity or NaN. + The culture used to convert the value for texts. + + + + Try to convert the value to a and return it. + Method succeeds, when value is + + Type . + Type and when the number is interpreted is a serial date time, it falls within the DateTime range. + Type and when the number is interpreted is a serial date time, it falls within the DateTime range. + + + + + + Try to convert the value to a and return it. + Method succeeds, when value is + + Type . + Type , the number is interpreted is a time span date time. + Type and it can be parsed as a time span (accepts even hours over 24 hours). + + + The converted value. + The culture used to get time and decimal separators. + + + + Functions that are marked with a prefix _xlfn in formulas, but not GUI. Officially, + they are called future functions. + + + Up to date for MS-XLSX 26.1 from 2024-12-11. + + + + + Functions that are marked with a prefix _xlfn._xlws in formulas, but not GUI. They + are part of the future functions. Unlike other future functions, they can only be used in + a worksheet, but not a macro sheet. In the grammar, they are marked as + worksheet-only-function-list. + + + Up to date for MS-XLSX 26.1 from 2024-12-11. + + + + + Key: GUI name of future function, Value: prefixed name of future function. This doesn't + include all future functions, only ones that need a hidden prefix (e.g. ECMA.CEILING + is a future function without a prefix). + + + + + Analyze input string and convert value. For avoid analyzing use escape symbol ' + + + + + Direct set value. If value has unsupported type - value will be stored as string returned by + + + + + Behavior for + + + + + Gets an object to manipulate the worksheets. + + + + + Gets an object to manipulate this workbook's named ranges. + + + + + Gets an object to manipulate this workbook's theme. + + + + + All pivot caches in the workbook, whether they have a pivot table or not. + + + + + Gets or sets the default style for the workbook. + All new worksheets will use this style. + + + + + Gets or sets the default row height for the workbook. + All new worksheets will use this row height. + + + + + Gets or sets the default column width for the workbook. + All new worksheets will use this column width. + + + + + Gets or sets the default page options for the workbook. + All new worksheets will use these page options. + + + + + Gets or sets the default outline options for the workbook. + All new worksheets will use these outline options. + + + + + Gets or sets the workbook's properties. + + + + + Gets or sets the workbook's calculation mode. + + + + + Gets or sets the workbook's reference style. + + + + + + + + Saves the current workbook. + + + + + Saves the current workbook and optionally performs validation + + + + + Saves the current workbook to a file. + + + + + Saves the current workbook to a file and optionally validates it. + + + + + Saves the current workbook to a stream. + + + + + Saves the current workbook to a stream and optionally validates it. + + + + + Try to find a table with in a workbook. + + + + + Try to find a table that covers same area as the in a workbook. + + + + + Searches the cells' contents for a given piece of text + + The search text. + The compare options. + if set to true search formulae instead of cell values. + + + + Creates a new Excel workbook. + + + + + Opens an existing workbook from a file. + + The file to open. + + + + Opens an existing workbook from a stream. + + The stream to open. + + + + Force recalculation of all cell formulas. + + + + + Evaluate a formula and return a value. Formulas with references don't work and culture used for conversion is invariant. + + + + + Evaluate a formula and return a value. Use current culture. + + + + + Notify various component of a workbook that sheet has been added. + + + + + Notify various component of a workbook that sheet is about to be removed. + + + + + Calculate expected column width as a number displayed in the column in Excel from + number of characters that should fit into the width and a font. + + + + + List of all VML length units and their conversion. Key is a name, value is a conversion + function to EMU. See documentation. + + + OI-29500 says Office also uses EMUs throughout VML as a valid unit system. + Relative units conversions are guesstimated by how Excel 2022 behaves for inset + attribute of TextBox element of a note/comment. Generally speaking, Excel + converts relative values to physical length (e.g. px to pt) and saves + them as such. The ex/em units are not interpreted as described in the + doc, but as 1/90th or an inch. The % seems to be always 0. + + + + + Parses the cell value for normal or rich text + Input element should either be a shared string or inline string + + The cell. + The element (either a shared string or inline string) + + + + Loads the conditional formatting. + + + + + A free id that can be used by the workbook to reference to a pivot cache. + The PivotCaches element in a workbook connects the parts with pivot + cache parts. + + + + + A dictionary of extra info for pivot during saving. The key is . + + + + + A map of shared string ids. The index is the actual index from sharedStringId and + value is an mapped stringId to write to a file. The mapped stringId has no gaps + between ids. + + + + + Add all existing rel ids present on the parts or workbook to the generator, so they are not duplicated again. + + + + + Fake address to be used everywhere the invalid address is needed. + + + + + Reference to a VML that contains notes, forms controls and so on. All such things are generally unified into + a single legacy VML file, set during load/save. + + + + + + The id of a sheet that is unique across the workbook, kept across load/save. + The ids of sheets are not reused. That is important for referencing the sheet + range/point through sheetId. If sheetIds were reused, references would refer + to the wrong sheet after the original sheetId was reused. Excel also doesn't + reuse sheetIds. + + + Referencing sheet through non-reused sheetIds means that reference can survive + sheet renaming without any changes. Always > 0 (Excel will crash on 0). + + + + + + A cached r:id of the sheet from the file. If the sheet is a new one (not + yet saved), the value is null until workbook is saved. Use + instead is possible. Mostly for removing deleted sheet parts during save. + + + + + Address of active cell/cursor in the worksheet. + + + + + Get cell or null, if cell doesn't exist. + + + + + Get a range row from the shared repository or create a new one. + + Address of range row. + Style to apply. If null the worksheet's style is applied. + Range row with the specified address. + + + + Get a range column from the shared repository or create a new one. + + Address of range column. + Style to apply. If null the worksheet's style is applied. + Range column with the specified address. + + + + Get the actual style for a point in the sheet. + + + + + Get a style that should be used for a , + if the value is set to the . + + + + + SheetId that will be assigned to next created sheet. + + + + + Round the number to the integer. + + A helper method to avoid need to specify the midpoint rounding and casting each time. + + + + Round the number to specified number of digits. + + A helper method to avoid need to specify the midpoint rounding each time. + + + + Skip last element of a sequence. + + + + + Select all that are not null. + + + + + Get index of highest set bit <= to or -1 if no such bit. + + + + + Get index of lowest set bit >= to or -1 if no such bit. + + + + + Get highest set bit index or -1 if no bit is set. + + + + + Convert a string (containing code units) into code points. + Surrogate pairs of code units are joined to code points. + + UTF-16 code units to convert. + Output containing code points. Must always be able to fit whole . + Number of code points in the . + + + + Is the string a new line of any kind (widnows/unix/mac)? + + Input text to check for EOL at the beginning. + Length of EOL chars. + True, if text has EOL at the beginning. + + + + Convert a magic text to a number, where the first letter is in the highest byte of the number. + + + + + Return a string representation of a TimeSpan that can be parsed by an Excel through text-to-number coercion. + + + Excel can convert time span string back to a number, but only if it doesn't has days in the string, only hours. + It's an opposite of . + + + + + Common methods + + + + + Maximum number of code units that can be stored in a cell. + + + + + 1900 calendar serial date upper limit (exclusive). + + + + + 1904 calendar serial date upper limit (exclusive). + + + + + Comparer used to compare sheet names. + + + + + Comparer used to compare defined names. + + + + + Comparer of function names. + + + + + Gets the column number of a given column letter. + + The column letter to translate into a column number. + + + + Gets the column letter of a given column number. + + The column number to translate into a column letter. + if set to true the column letter will be restricted to the allowed range. + + + + + An alternative to . In NetFx, it returned a value + rounded to milliseconds. In .Net Core 3.0 the behavior has changed and conversion doesn't + round at all (=precision down to ticks). To avoid problems with a different behavior on + NetFx and Core (saving value 1:12:30 on NetFx machine could become 1:12:29.999999 on Core + one machine), we use instead this method for both runtimes (behaves as on Core). + + + TimeSpan has a resolution of 0.1 us (1.15e-12 as a serial date). ~12 digits of precision + are needed to accurately represent one day as a serial date time in that resolution. Double + has ~15 digits of precision, so it should be able to represent up to ~100 days in a ticks + precision. + + + + + + Convert size in pixels to a size in NoC (number of characters). + + Size in pixels. + Size of maximum digit width in pixels. + Size in NoC. + + + + Convert size in NoC to size in pixels. + + Size in number of characters. + Maximum digit width in pixels. + Size in pixels (not rounded). + + + + Convert size in number of characters to pixels. + + Width + Font used to determine mdw. + Workbook for dpi and graphic engine. + Width in pixels. + + + + Convert width to pixels. + + Width from the source file, not NoC that is displayed in Excel as a width. + + Number of pixels. + + + + Convert width (as a multiple of MDWs) into a NoCs (number displayed in Excel). + + Width in MDWs to convert. + Font used to determine MDW. + Workbook + Width as a number of NoC. + + + + Convert degrees to radians. + + + + + Creates a valid sheet name, which conforms to the following rules. + A sheet name: + is never null, + has minimum length of 1 and + maximum length of 31, + doesn't contain special chars: (: 0x0000 0x0003 / \ ? * ] [). + Sheet names must not begin or end with ' (apostrophe) + + can be any string, will be truncated if necessary, allowed to be null + the char to replace invalid characters. + a valid string, "empty" if too short, "null" if null + + + + Validates the name of the sheet. + The character count MUST be greater than or equal to 1 and less than or equal to 31. + The string MUST NOT contain the any of the following characters: + - 0x0000 + - 0x0003 + - colon (:) + - backslash(\) + - asterisk(*) + - question mark(?) + - forward slash(/) + - opening square bracket([) + - closing square bracket(]) + The string MUST NOT begin or end with the single quote(') character. + + Name of the sheet. + + + + + + + Get value of attribute with type ST_CellRef. + + + + + Get value of attribute with type ST_Ref. + + + + + Extensions method for . + + + + + Convert area to an absolute sheet range (regardless if the area is A1 or R1C1). + + Area to convert + An anchor address that is the center of R1C1 relative address. + Converted absolute range. + + + + Write date in a format 2015-01-01T00:00:00 (ignore kind). + + + + + A reader for BMP for Windows and OS/2. + Specification: + https://www.fileformat.info/format/bmp/corion.htm + https://www.fileformat.info/format/bmp/egff.htm + https://www.fileformat.info/format/os2bmp/egff.htm + + + + + Carlito is a Calibri metric compatible font. This is a version stripped of everything but metric information + to keep the embedded file small. It is reasonably accurate for many alphabets (contains 2531 glyphs). It has + no glyph outlines, no TTF instructions, no substitutions, glyph positioning ect. It is created from Carlito + font through strip-fonts.sh script. + + + + + A font loaded font in the size . There is no benefit in having multiple allocated instances, everything is just scaled at the moment. + + + + + Max digit width as a fraction of Em square. Multiply by font size to get pt size. + + + + + Get a singleton instance of the engine that uses Microsoft Sans Serif as a fallback font. + + + + + Initialize a new instance of the engine. + + A name of a font that is used when a font in a workbook is not available. + + + + Initialize a new instance of the engine. The engine will be able to use system fonts and fonts loaded from external sources. + + Useful/necessary for environments without an access to filesystem. + A stream that contains a fallback font. + Should engine try to use system fonts? If false, system fonts won't be loaded which can significantly speed up library startup. + Extra fonts that should be loaded to the engine. + + + + Create a default graphic engine that uses only fallback font and additional fonts passed as streams. + It ignores all system fonts and that can lead to decrease of initialization time. + + + + Font is determined by a name and style in the worksheet, but the font name must be mapped to a font file/stream. + System fonts on Windows contain hundreds of font files that have to be checked to find the correct font + file for the font name and style. That means to read hundreds of files and parse data inside them. + Even though SixLabors.Fonts does this only once (lazily too) and stores data in a static variable, it is + an overhead that can be avoided. + + + This factory method is useful in several scenarios: + + Client side Blazor doesn't have access to any system fonts. + Worksheet contains only limited number of fonts. It might be sufficient to just load few fonts we are + + + + A stream that contains a fallback font. + Fonts that should be loaded to the engine. + + + + Create a default graphic engine that uses only fallback font and additional fonts passed as streams. + It also uses system fonts. + + A stream that contains a fallback font. + Fonts that should be loaded to the engine. + + + + + + + A DPI resolution. + + + + + Horizontal DPI resolution. + + + + + Vertical DPI resolution. + + + + + Metadata read of a vector EMF file. Specification: https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-emf/ + + + + + Read info about a GIF file. Gif file has no DPI, only pixel ratio. + Specification: https://www.w3.org/Graphics/GIF/spec-gif89a.txt + + + + + A bounding box for a glyph, in pixels. + + + In most cases, a glyph represents a single unicode code point. In some cases, + multiple code points are represented by a single glyph (emojis in most cases). + Although data type is float, the actual values should be whole numbers. + That best fits to Excel behavior, but there might be some cases in the future, + where values can be a floats (e.g. advance could be non-pixels aligned). + + + + + A special glyph box that indicates a line break. Dimensions are kept at 0, so it doesn't affect any calculations. + + + + + Advance width in px of a box for code point. Value should be whole number. + + + + + Size of Em square in pixels. If em is not a square, vertical dimension of + em square. Value should be whole number. + + + + + Distance in px from baseline to the bottom of the box. + + + Descent/height is determined by font, not by codepoints + of the glyph. Value should be whole number. + + + + + Get line width of the glyph box. It is calculated as central band with a text and + a lower and an upper bands. Central band (text) has height is em-square - descent + and the bands are descent. + + + + + An interface to abstract away graphical functionality, like reading images, fonts or to determine a width of a text. + + + + + Get the info about a picture (mostly dimensions). + + Stream is at the beginning of the image. + The expected format of the image. Use for auto detection. + Unable to determine picture dimensions or format doesn't match the stream. + + + + Get the height of a text with the font in pixels. Should be EMHeight+descent. + + + + + Get the width of a text in pixels. Do not add any padding, there can be + multiple spans of a texts with different fonts in a line. + + + + + The width of the widest 0-9 digit in pixels. + + OOXML measures width of a column in multiples of widest 0-9 digit character in a normal style font. + + + + Get font descent in pixels (positive value). + + Excel is using OS/2 WinAscent/WinDescent for TrueType fonts (e.g. Calibri), not a correct font ascent/descent. + + + + Get a glyph bounding box for a grapheme cluster. + + + In 99+%, grapheme cluster will be just a codepoint. Method uses grapheme instead, so it can be + future-proof signature and have less braking changes. Implementing method by adding widths of + individual code points is acceptable. + + + A part of a string in code points (or runes in C# terminology, not UTF-16 code units) that together + form a grapheme. Multiple unicode codepoints can form a single glyph, e.g. family grapheme is a single + glyph created from 6 codepoints (man, zero-width-join, woman, zero-width-join and a girl). A string + can be split into a grapheme clusters through . + + Font used to determine size of a glyph for the grapheme cluster. + + A resolution used to determine pixel size of a glyph. Font might be rendered differently at different resolutions. + + Bounding box containing the glyph. + + + + Read JFIF or EXIF. + + + + + Read info about PCX picture. + https://moddingwiki.shikadi.net/wiki/PCX_Format + + + + + A reader for baseline TIFF. + Specification: https://www.itu.int/itudoc/itu-t/com16/tiff-fx/docs/tiff6.pdf + + + + + II like Intel in ASCII. + + + + + MM like Motorola in ASCII. + + + + + Reader of dimensions for WebP image format. + + + + + Reader of Windows Meta File. + https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-wmf/4813e7fd-52d0-4f42-965f-228c8b7488d2 + http://formats.kaitai.io/wmf/index.html + + + + + Metadata info about a picture. At least one of the sizes (pixels/physical) must be set. + + + + + Detected format of the image. + + + + + Size of the picture in pixels. + + + + + A physical size in 0.01mm. Used by vector images. + + + + + 0 = use workbook DPI. + + + + + 0 = use workbook DPI. + + + + + Parse ARGB color stored in ST_UnsignedIntHex the same way as Excel does. + + + + + Parse RRGGBB color. + + + + + Convert color in ClosedXML representation to specified OpenXML type. + + The descendant of . + The existing instance of ColorType. + Color in ClosedXML format. + Flag specifying that the color should be saved in + differential format (affects the transparent color processing). + The original color in OpenXML format. + + + + Convert color in ClosedXML representation to specified OpenXML type. + + The descendant of . + The existing instance of ColorType. + Color in ClosedXML format. + Flag specifying that the color should be saved in + differential format (affects the transparent color processing). + The original color in OpenXML format. + + + + Convert color in OpenXML representation to ClosedXML type. + + Color in OpenXML format. + The color in ClosedXML format. + + + + Convert color in OpenXML representation to ClosedXML type. + + Color in OpenXML format. + The color in ClosedXML format. + + + + Here we perform the actual conversion from OpenXML color to ClosedXML color. + + OpenXML color. Must be either or . + Since these types do not implement a common interface we use dynamic. + The color in ClosedXML format. + + + + Initialize properties of the existing instance of the color in OpenXML format basing on properties of the color + in ClosedXML format. + + OpenXML color. Must be either or . + Since these types do not implement a common interface we use dynamic. + Color in ClosedXML format. + Flag specifying that the color should be saved in + differential format (affects the transparent color processing). + +
+
diff --git a/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.xml.meta b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.xml.meta new file mode 100644 index 0000000..1985a01 --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0/lib/netstandard2.1/ClosedXML.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f086d878f0d30a743ab11ae3250131a2 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.0.105.0/nuget-logo.png b/Assets/Packages/ClosedXML.0.105.0/nuget-logo.png new file mode 100644 index 0000000..3159920 Binary files /dev/null and b/Assets/Packages/ClosedXML.0.105.0/nuget-logo.png differ diff --git a/Assets/Packages/ClosedXML.0.105.0/nuget-logo.png.meta b/Assets/Packages/ClosedXML.0.105.0/nuget-logo.png.meta new file mode 100644 index 0000000..bff649f --- /dev/null +++ b/Assets/Packages/ClosedXML.0.105.0/nuget-logo.png.meta @@ -0,0 +1,136 @@ +fileFormatVersion: 2 +guid: bf51a5f6ee470a8419eaf4c1f06f3809 +TextureImporter: + internalIDToNameTable: + - first: + 213: -2711032071728996648 + second: nuget-logo_0 + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: nuget-logo_0 + rect: + serializedVersion: 2 + x: 47 + y: 48 + width: 1115 + height: 1114 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ded6e5c1ba706ad0800000000000000 + internalID: -2711032071728996648 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0.meta b/Assets/Packages/ClosedXML.Parser.2.0.0.meta new file mode 100644 index 0000000..3347a44 --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f413557a3535e9245a5a79a44827ded8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/.signature.p7s b/Assets/Packages/ClosedXML.Parser.2.0.0/.signature.p7s new file mode 100644 index 0000000..7ac32a4 Binary files /dev/null and b/Assets/Packages/ClosedXML.Parser.2.0.0/.signature.p7s differ diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/ClosedXML.Parser.nuspec b/Assets/Packages/ClosedXML.Parser.2.0.0/ClosedXML.Parser.nuspec new file mode 100644 index 0000000..6764327 --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/ClosedXML.Parser.nuspec @@ -0,0 +1,22 @@ + + + + ClosedXML.Parser + 2.0.0 + Jan Havlíček + MIT + https://licenses.nuget.org/MIT + README.md + https://github.com/ClosedXML/ClosedXML.Parser + A lexer and parser of Excel formulas with focus on performance. Its goal is to create + an abstract syntax tree from a formula text to enable formula evaluation. + ClosedXML parser formula xlsx + + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/ClosedXML.Parser.nuspec.meta b/Assets/Packages/ClosedXML.Parser.2.0.0/ClosedXML.Parser.nuspec.meta new file mode 100644 index 0000000..181c51b --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/ClosedXML.Parser.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e069c8f7dbef6244bb827161e98c4fab +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/README.md b/Assets/Packages/ClosedXML.Parser.2.0.0/README.md new file mode 100644 index 0000000..92cb1a5 --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/README.md @@ -0,0 +1,110 @@ +# ClosedParser + +ClosedParser is a project to parse OOXML grammar to create an abstract syntax tree that can be later evaluated. + +Official source for the grammar is [MS-XML](https://learn.microsoft.com/en-us/openspecs/office_standards/ms-xlsx/2c5dee00-eff2-4b22-92b6-0738acd4475e), chapter 2.2.2 Formulas. The provided grammar is not usable for parser generators, it's full of ambiguities and the rules don't take into account operator precedence. + +# How to use + +* Implement `IAstFactory` interface. +* Call parsing methods + * `FormulaParser.CellFormulaA1("Sum(A1, 2)", astFactory)` + * `FormulaParser.CellFormulaR1C1("Sum(R1C1, 2)", astFactory)` + +## Visualizer +There is a visualizer to display AST in a browser at **[https://parser.closedxml.io](https://parser.closedxml.io)** + +![image](https://github.com/ClosedXML/ClosedXML.Parser/assets/7634052/4beaab23-4599-44d4-be7b-705178b69f99) + +# Goals + +* __Performance__ - ClosedXML needs to parse formula really fast. Limit allocation and so on. +* __Evaluation oriented__ - Parser should concentrates on creation of abstract syntax trees, not concrete syntax tree. Goal is evaluation of formulas, not transformation. +* __Multi-use__ - Formulas are mostly used in cells, but there are other places with different grammar rules (e.g. sparklines, data validation) +* __Multi notation (A1 or R1C1)__ - Parser should be able to parse both A1 and R1C1 formulas. I.e. `SUM(R5)` can mean return sum of cell `R5` in _A1_ notation, but return sum of all cells on row 5 in _R1C1_ notation. + +Project uses ANTLR4 grammar file as the source of truth and a lexer. There is also ANTLR parser is not used, but is used as a basis of recursive descent parser (ANTLR takes up 8 seconds vs RDS 700ms for parsing of enron dataset). + +ANTLR4 one of few maintained parser generators with C# target. + +The project has a low priority, XLParser mostly works, but in the long term, replacement is likely. + +## Current performance + +ENRON dataset parsed using recursive descent parser and DFA lexer in Release mode: + +* Total: *946320* +* Elapsed: *1838 ms* +* Per formula: *1.942 μs* + +2μs per formula should be something like 6000 instructions (under unrealistic assumption 1 instruction per 1 Hz), so basically fast enough. + +## Limitations + +The primary goal is to parse formulas stored in file, not user supplied formulas. The formulas displayed in the GUI is not the same as formula stored in the file. Several examples: +* The IFS function is a part of future functions. In the file, it is stored as `_xlfn.IFS`, but user sees `IFS` +* In the structured references, user sees @ as an indication that structured references this row, but in reality it is a specifier `[#This Row]` + +Therefore: +* External references are accepted only in form of an index to an external file (e.g. `[5]`) +* There are several formula implementations out there with slighly different grammar incompatible with OOXML formulas (`[1]!'Some name in external wb'`). They are out of scope of the project. + +# Why not use XLParser + +ClosedXML is currently using [XLParser](https://github.com/spreadsheetlab/XLParser) and transforming the concrete syntax tree to abstract syntax tree. + +* Speed: + * Grammar extensively uses regexps extensively. Regexs are slow, especially for NET4x target, allocates extra memory. XLParser takes up _47_ seconds for Enron dataset on .NET Framework. .NET teams had made massive improvements on regexs, so it takes only _16_ seconds on NET7. + * IronParser needs to determine all possible tokens after every token, that is problematic, even with the help of `prefix` hints. +* AST: XLParser creates concentrates on creation of concrete syntax tree, but for ClosedXML, we need abstract syntax tree for evaluation. IronParser is not very friendly in that regard +* ~~XLParser uses `IronParser`, an unmaintained project~~ (IronParser recently released version 1.2). +* Doesn't have support for lambdas and R1C1 style. + +ANTLR lexer takes up about 3.2 seconds for Enron dataset. With ANTLR parsing, it takes up 11 seconds. I want that 7+ seconds in performance and no allocation, so RDS that takes up 700 ms. + +## Debugging + +Use [vscode-antlr4](https://github.com/mike-lischke/vscode-antlr4/blob/master/doc/grammar-debugging.md) plugin for debugging the grammar. + +## Testing strategy + +* Each token that contains some data that are extracted for a node (e.g. `A1_REFERENCE` `C5` to `row 5`, `column 3`) has a separate test class in `Lexers` directory with a `{TokenPascalName}TokenTests.cs` +* Each parser rule has a test class in `Rules` directory. It should contain all possible combinatins of a rule and comparing it with the AST nodes. +* Data set tests are in `DataSetTests.cs`. Each test tries to parse formula and ensures that **ANTLR** can parse it RDS can and can't parse a formula when **ANTLR** can't. There is no check of the output, just that formulas can be parsed. Data are contained in a `data` directory in CSV format with a one column. + +## Rolex + +Rolex is a DFA based lexer released under MIT license (see [Rolex: Unicode Enabled Lexer Generator in C# +](https://www.codeproject.com/Articles/5257489/Rolex-Unicode-Enabled-Lexer-Generator-in-Csharp)). ANTLR is still the source of truth, but it is used to generate Rolex grammar and then DFA for a lexer. + +It is rather complicated, but two times faster than ANTLR lexer (1.9 us vs 3.676 us per formula). + +## Generate lexer + +Prepare rolex grammars +* Run Antlr2Rolex over FormulaLexer.g4 with A1 version to *ClosedXML.Parser\Rolex\LexerA1.rl* +* Add `/*` at the beginning of *Local A1 References* section. It comments out A1_REFERENCE and all its fragments +* Remove `/*` at the beinning of *Local R1C1 References* section. It contains a different tokens for A1_REFERENCE and its fragments +* Run Antlr2Rolex over FormulaLexer.g4 with R1C1 version to *ClosedXML.Parser\Rolex\LexerR1C1.rl* + +Fix Rolex generator +* Fix bug in Rolex generator that doesn't recognize property \u1234 (just add `pc.Advance()` to FFA.cs `_ParseEscapePart` and `_ParseRangeEscapePart`] + +Generate a DFA through Rolex +* `Rolex.exe ClosedXML.Parser\Rolex\LexerA1.rl /noshared /output ClosedXML.Parser\Rolex\RolexA1Dfa.cs /namespace ClosedXML.Parser.Rolex` +* `Rolex.exe ClosedXML.Parser\Rolex\LexerR1C1.rl /noshared /output ClosedXML.Parser\Rolex\RolexR1C1Dfa.cs /namespace ClosedXML.Parser.Rolex` + +# TODO + +* Lexer generation during build +* Proper CI pipeline. + * Azure Function + * Web +* Fuzzer +* PR to Rolex to fix unicode bug. + +# Resources + +* [MS-XML](https://learn.microsoft.com/en-us/openspecs/office_standards/ms-xlsx/2c5dee00-eff2-4b22-92b6-0738acd4475e) +* [Simplified XLParser grammar](https://github.com/spreadsheetlab/XLParser/blob/master/doc/ebnf.pdf) and [tokens](https://github.com/spreadsheetlab/XLParser/blob/master/doc/tokens.pdf). +* [Getting Started With ANTLR in C#](https://tomassetti.me/getting-started-with-antlr-in-csharp/) diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/README.md.meta b/Assets/Packages/ClosedXML.Parser.2.0.0/README.md.meta new file mode 100644 index 0000000..03fef68 --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c3a6215bf7dfdc44996df1eabc043aee +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/lib.meta b/Assets/Packages/ClosedXML.Parser.2.0.0/lib.meta new file mode 100644 index 0000000..662db58 --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b803e21223f01904ab6232bb13f395ec +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1.meta b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1.meta new file mode 100644 index 0000000..0438e2a --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 37bd988331a96c145a1278f4000f8b0e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.dll b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.dll new file mode 100644 index 0000000..52ce71a Binary files /dev/null and b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.dll differ diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.dll.meta b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.dll.meta new file mode 100644 index 0000000..602e612 --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: f6bc54dd6d18bab4ba6809be20178303 +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.xml b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.xml new file mode 100644 index 0000000..4fa47f6 --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.xml @@ -0,0 +1,1522 @@ + + + + ClosedXML.Parser + + + + + Binary operations that can occur in the formula. + + + + & + + + + + + + - + + + * + + + / + + + ^ + + + >= + + + <= + + + < + + + > + + + != + + + = + + + , + + + SPACE + + + : + + + + A visitor that generates the identical formula for the parsed formula based on passed arguments. + CopyVisitor doesn't make any judgements if passed arguments have been modified. It just makes + a newly allocated copy based on passed values. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Convert between A1 and R1C1 style formulas. + + + + + Convert a formula in A1 form to the R1C1 form. + + Formula text. + The row origin of R1C1, from 1 to 1048576. + The column origin of R1C1, from 1 to 16384. + Formula converted to R1C1. + The formula is not parseable. + + + + Convert a formula in R1C1 form to the A1 form. + + Formula text in R1C1. + The row origin of R1C1, from 1 to 1048576. + The column origin of R1C1, from 1 to 16384. + Formula converted to A1. + The formula is not parseable. + + + + Modify the formula using the passed . + + Original formula in A1 style. + Row number of formula. + Column number of formula. + Visitor to transform the formula. + + + + Modify the formula using the passed . + + Original formula in A1 style. + Name of the sheet where is the formula. + Row number of formula. + Column number of formula. + Visitor to transform the formula. + + + + A parser of Excel formulas, with main purpose of creating an abstract syntax tree. + + + An implementation is a recursive descent parser, based on the ANTLR grammar. + + Type of a scalar value used across expressions. + Type of a node used in the AST. + A context of the parsing. It's passed to every factory method and can contain global info that doesn't belong individual nodes. + + + + Is parser in A1 mode (true) or R1C1 mode (false)? + + + + + Parse a formula using A1 semantic for references. + + Formula text that will be parsed. + Context that is going to be passed to every method of the . + Factory to create nodes of AST tree. + If the formula doesn't satisfy the grammar. + + + + Parse a formula using R1C1 semantic for references. + + Formula text that will be parsed. + Context that is going to be passed to every method of the . + Factory to create nodes of AST tree. + If the formula doesn't satisfy the grammar. + + + + Parser for two rules unified into a single method. + + + prefix_atom_expression + : (PLUS | MINUS) prefix_atom_expression + | atom_expression + ; + + + + arg_prefix_atom_expression + : (PLUS | MINUS) arg_prefix_atom_expression + | arg_atom_expression + ; + + + + Does the method represent prefix_atom_expression (false) or arg_prefix_atom_expression (true) + Is the expression of the node a reference expression? + + + + + + ref_implicit_expression + : INTERSECT ref_implicit_expression + | ref_intersection_expression + ; + + + + + + Parser of the following node. + + ref_spill_expression + : ref_atom_expression SPILL? + ; + + + + + + + a1_reference + : A1_CELL + | A1_CELL COLON A1_CELL + | A1_SPAN_REFERENCE + ; + + + + + + A factory used to create an AST through . + + + Sheet names are in most cases strings, while most other texts are ReadOnlySpan<char>. + The reason is that sheet name is always used as-is and in some methods is null, while + other parameters might be processed. E.g. errors are likely to be transformed to enum, function name + might need conversion from text IFS to _xlfn.IFS and so on. + + Type of a scalar value used across expressions. + Type of a node used in the AST. + A context of the parsing. It's passed to every factory method and can contain global info that doesn't belong individual nodes. + + + + Create a logical value for an array item. + + User supplied context for parsing a tree that is an argument of a parsing method. + Symbol range of the logical token in the formula. + The logical value of an array. + + + + Create a numerical value for an array item. + + User supplied context for parsing a tree that is an argument of a parsing method. + Symbol range of the number token in the formula. + The numeric value of an array. Never NaN or Infinity. + + + + Create a text value for an array item. + + User supplied context for parsing a tree that is an argument of a parsing method. + Symbol range of the text token in the formula. + The text. The characters of text are already unescaped. + + + + Create an error for an array item. + + User supplied context for parsing a tree that is an argument of a parsing method. + Symbol range of the error token in the formula. + The error text, string with # until the end of an error. No whitespace, converted to upper case, no matter the input. + + + + Create an array for scalar values. + + User supplied context for parsing a tree that is an argument of a parsing method. + Symbol range of the array symbol in the formula. + Number of rows of an array. At least 1. + Number of column of an array. At least 1. + Elements of an array, row by row. The number of elements is *. + + + + Create a blank node. In most cases, a blank argument of a function, e.g. IF(TRUE,,). + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the blank. + + + + Create a node with a logical value. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the logical. + The logical value that will be represented by the node. + + + + Create a node with an error value. + + + Sheet related ref errors (e.g. Sheet!REF! or #REF!$A$4) are also use this node. In that case, + the contains whole section used to create the error, but + contains normalized #REF! error. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the error. + The error text, string with # until the end of an error. No whitespace. In upper case format. + + + + Create a node with an error value. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the number. + The numeric value of an array. Never NaN or Infinity. + + + + Create a node with a text value. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the text. + The text. The characters of text are already unescaped. + + + + Create a node for a reference to cells without a worksheet. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the reference. + The referenced area. + + + + Create a node for a reference in a specific sheet. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the sheet reference. + Name of a sheet (unescaped) of the . + Area in the sheet. + + + + Create a node that processes a bang reference in a formula (e.g "Branch:" & !$C$5). Bang reference should + + Be used only in defined names. + Always be absolute (name doesn't have an anchor). + + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the bang reference. + Area in the sheet. + + + + Create a node for a 3D reference. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the 3D reference. + First sheet of 3D reference. + Last sheet of 3D reference. + Area in all sheets of 3D reference. + + + + Create a node for a reference to cells of a specific sheet in a different worksheet. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the external sheet reference. + Id of an external workbook. The actual path to the file is in workbook part, externalReferences tag. + Name of a sheet (unescaped) of the . + Area the external sheet. + + + + Create a node for a 3D reference in a different workbook. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the external 3D reference. + Id of an external workbook. The actual path to the file is in workbook part, externalReferences tag. + First sheet of 3D reference. + Last sheet of 3D reference. + Area in all sheets of 3D reference. + + + + Create a node for a function. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the function including arguments. + Name of a function. + Nodes of argument values. + + + + Create a node for a function on a sheet. Might happen for VBA. + + User supplied context for parsing a tree that is an argument of a parsing method. + + Name of a sheet. + Name of a function. + Nodes of argument values. + + + + Create a node for a sheet-scoped function from an external workbook. + + User supplied context for parsing a tree that is an argument of a parsing method. + + Id of an external workbook. The actual path to the file is in workbook part, externalReferences tag. + Name of a sheet in external workbook. + Name of the function. + Nodes of argument values. + + + + Create a node for a function from an external workbook. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the function including arguments. + Id of an external workbook. The actual path to the file is in workbook part, externalReferences tag. + Name of the function. + Nodes of argument values. + + + + Create a cell function. It references another function that should likely contain a LAMBDA value. + + Cell functions are not yet supported by Excel, but are part of a grammar. + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the cell function. + A reference to a cell with a LAMBDA. Is a single cell. + Arguments to pass to a LAMBDA. + + + + Create a node to represent a structure reference without a table to a range of columns. + Such reference is only allowed in the table (e.g. total formulas). + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the structure reference. + A portion of a table that should be considered. + The first column of a range. Null, if whole table. If only one column, same as . + The last column of a range. Null, if whole table.If only one column, same as . + + + + Create a node to represent a structure reference to a table. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the structure reference. + A name of a table. + A portion of a table that should be considered. + The first column of a range. Null, if whole table. If only one column, same as . + The last column of a range. Null, if whole table.If only one column, same as . + + + + Create a node to represent a structure reference to a table in some other workbook. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the structure reference. + Id of external workbook. + A name of a table. + A portion of a table that should be considered. + The first column of a range. Null, if whole table. If only one column, same as . + The last column of a range. Null, if whole table.If only one column, same as . + + + + Create a node that should evaluate to a value of a name defined in a workbook. + + + Name can be any formula, though in most cases, it is a cell reference. Also note that + names can be global (usable in a whole workbook) or local (only for one worksheet). + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the name. + The defined name. + + + + Create a node that should evaluate to a value of a name defined in a worksheet. + + + Name can be any formula, though in most cases, it is a cell reference. Also note that + names can be global (usable in a whole workbook) or local (only for one worksheet). + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the name. + Name of a sheet, unescaped. + The defined name. + + + + Create a node that processes a bang name in a formula (e.g "Branch:" & !Data). Bang reference should + be used only in defined names. + + + TODO: This method is not yet implemented, just added so I don't have to deal with API breakage. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the bang reference. + The defined name. + + + + Create a node that should evaluate to a value of a defined name in a different workbook. + + User supplied context for parsing a tree that is an argument of a parsing method. + + Id of an external workbook. The actual path to the file is in workbook part, externalReferences tag. + Name from a workbook. It can be defined name or a name of a table. + + + + Create a node that should evaluate to a value of a defined name in a worksheet of a different workbook. + + + Name can be any formula, though in most cases, it is a cell reference. Also note that + names can be global (usable in a whole workbook) or local (only for one worksheet). + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the name. + Id of an external workbook. The actual path to the file is in workbook part, externalReferences tag. + Name of a sheet in the external workbook, unescaped. + The defined name. + + + + Create a node that performs a binary operation on values from another nodes. + + User supplied context for parsing a tree that is an argument of a parsing method. + Range in a formula that contains the binary operation. + Binary operation. + Node that should be evaluated for left argument of a binary operation. + Node that should be evaluated for right argument of a binary operation. + + + + Create a node that performs an unary operation on a value from another node. + + User supplied context for parsing a tree that is an argument of a parsing method. + + Unary operation. + Node that should be evaluated for a value. + + + + This factory method is called for nested expression in braces ((1+2)/4). The problem isn't that + it would be evaluated incorrectly, but it is to preserve braces during A1 to R1C1 transformation. + + User supplied context for parsing a tree that is an argument of a parsing method. + + The node representing expression in braces. + Simplest implementation returns the same node and avoids extra nodes. + + + + A context for modifications of a formula through . + + + + + Create a context for modifying formulas. + + + + + Create a context for modifying formulas. + + + + + The original formula without any modifications. + + + + + Name of the current sheet. + + + + + Absolute row number in a sheet. + + + + + Absolute column number in a sheet. + + + + + Should references in formula be A1? + + + + + A class for checking whether an identifier in a formula requires quotes or + can can be used without quotes. This is an Excel custom behavior, unrelated + to the unicode standard. The grammar defines a behavior, but that is not + how Excel behaves. Microsoft likely made a selection based on each + individual language without any connection to Unicode codepoint categories + (e.g. it likely marked quote-like symbols from each language as requiring + quotes). Data used in the methods were collected directly from Excel using + AutoHotKey script. + + + + + A bitmask indicating if the sheet name with first codepoint should be quoted. + Generated by `Generate_sheet_quotation_data`. BitArray is fast and takes up only + few KiB. + + + + + A bitmask indicating if the sheet name with next such codepoint should be quoted. + Generated by `Generate_sheet_quotation_data`. BitArray is fast and takes up only + few KiB. + + + + + Character not allowed in a sheet name, even quoted one. + + + + + Should the name be quoted? + + + Sheet names can't contain *,/,:,?,[,\, + ], but method doesn't check for that. Also, it can't start with ', + though it can be non-first character. + + The name. Must be at least 1 char long. + True, if the sheet name should be quoted in formula. + If name is empty. + + + + Is the name of a sheet valid? + + Name of the sheet. + + + + Indicates an error during parsing. In most cases, unexpected token. + + + + + Due to frequency of an area in formulas, the grammar has a token that represents + an area in a sheet. This is the DTO from parser to engine. Two corners make an area + for A1 notation, but not for R1C1 (has several edge cases). + + + + + First reference. First in terms of position in formula, not position + in sheet. + + + + + Second reference. Second in terms of position in formula, not position + in sheet. If area was specified using only one cell, the value is + same as . + + + + + Semantic style of reference. + + + + + Is area a row span (e.g. $5:7 in A1 or R[7], R7:R[9])? + + + + + Is area a col span (e.g. $C:Z in A1 or C[7], C7:C[9])? + + + + + Create a reference symbol using the two (e.g. + A1:B2) or two columns (e.g. A:D) or two rows (e.g. + 7:8). + + + + + Create an area for a single reference. + + + + + Create a new area from a single . + + Row axis type of a reference. + Row position. + Column axis type of a reference. + Column position. + Semantic of the reference. + + + + Create a new area from a single row/column intersection. + + row. + column. + Semantic of the reference. + + + + Render area in A1 notation. The content must be a valid content + from A1 token. If both references are same, only one is converted + to display string. + + + + + Render area in R1C1 notation. The content must be a valid content + from R1C1 token. If both references are same, only one is converted + to display string. + + + + + Convert A1 reference to R1C1. + + Assumes reference is in A1. + + + + Convert R1C1 reference to A1. + + Assumes reference is in R1C1. + + + + Get reference in A1 notation. + + Assumes reference is in A1. + + + + Get reference in R1C1 notation. + + Assumes reference is in R1C1. + + + + The type of content stored in a row or column number of a reference. + + + + + Axis is relative. E.g. A5 for A1, R[-3] for R1C1. + + Keep 0, so default RowCol is A1. + + + + Units are absolute. E.g. $A$5 for A1, R8C5 for R1C1. + + + + + + The reference axis (row or column) is not specified for reference. + Generally, it means whole axis is used. If the type is , + the value is ignored, but should be 0. + + + Examples: + + A:B in A1 doesn't specify row. + R2 in R1C1 doesn't specify column. + + + + + + + A utility class that parses various types of references. + + + + + + Try to parse as a sheet reference (Sheet!A5) or a local + reference (A1). If the is a local reference, the output + value of the is null. + + + Unlike the or , + this method can parse both sheet reference or local reference. + + + Text to parse. + The unescaped name of a sheet for sheet reference, null for local reference. + The parsed reference area. + true if parsing was a success, false otherwise. + + + + Parses area reference in A1 form. The possibilities are + + Cell (e.g. F8). + Area (e.g. B2:$D7). + Colspan (e.g. $D:$G). + Rowspan (e.g. 14:$15). + + Doesn't allow any whitespaces or extra values inside. + + Text to parse. + Parsed area. + true if parsing was a success, false otherwise. + + + + Parses area reference in A1 form. The possibilities are + + Cell (e.g. F8). + Area (e.g. B2:$D7). + Colspan (e.g. $D:$G). + Rowspan (e.g. 14:$15). + + Doesn't allow any whitespaces or extra values inside. + + Invalid input. + + + + Try to parse a A1 reference that has a sheet (e.g. 'Data values'!A$1:F10). + If contains only reference without a sheet or anything + else (e.g. A1), return false. + + + The method doesn't accept + + Sheet names, e.g. Sheet!name. + External sheet references, e.g. [1]Sheet!A1. + Sheet errors, e.g. Sheet5!$REF!. + + + Text to parse. + Name of the sheet, unescaped (e.g. the sheetName will contain Jane's for 'Jane''s'!A1). + Parsed reference. + true if parsing was a success, false otherwise. + + + + + Try to parse as a name (e.g. Name) or a sheet name + (Sheet!Name). If the is only a name, the output value of the + is null. + + + Text to parse. + The unescaped name of a sheet for sheet name, null for a name. + The parsed name. + true if parsing was a success, false otherwise. + + + + Try to parse a text as a sheet name (e.g. Sheet!Name). Doesn't accept pure name + without sheet (e.g. name). + + Text to parse. + Parsed sheet name, unescaped. + Parsed defined name. + true if parsing was a success, false otherwise. + + + + Style of referencing areas in a worksheet. + + + + + The reference ( or ) + uses A1 semantic. Even relative references start from + [1,1], but relative references move when cells move. + + + + + The reference ( or ) + uses R1C1 semantic. Relative references are relative to + the cell that contains the reference, not [1,1]. + + + + + It's designed to allow modifications of references, e.g. renaming, moving references + and so on. Just inherit it and override one of virtual Modify* methods. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An extension to modify sheet name, e.g. rename. + + The transformation context. + Original sheet name. + New sheet name. If null, it indicates sheet has been deleted and should be replaced with #REF! + + + + Modify reference to a cell. + + The origin of formula. + Original name of a table. + Modified name of a table or null if #REF!. + + + + An extension to modify name of a function. Doesn't modify the sheet/external functions. + + The transformation context. + Original name of function. + New name of a function. + + + + Modify reference to a cell. This method is called for every place where is a ref and is + mostly intended to change reference style. + + The origin of formula. + Area reference. + Modified reference or null if #REF!. + + + + Modify reference to a cell function. + + The transformation context. + Original cell containing function. + Modified reference or null if #REF!. + + + + Get all tokens for a formula. Use A1 semantic. If there is an error, add token with an error symbol at the end or EOF token at the end. + + Formula to parse. + + + + Get all tokens for a formula. Use R1C1 semantic. If there is an error, add token with an error symbol at the end or EOF token at the end. + + Formula to parse. + + + + A class required by a Rolex tool. Never used. + + + + + + One endpoint of a reference defined by row and column axis. It can be + + + A single cell that is an intersection of row and a column + + + An entire row, e.g. A:B or R5:R10. + + + An entire column, e.g. 7:14 or C7:C10. + + + The content of values and thus their interpretation depends on the + reference style, e.g. column 14 with + can indicate R[14] or X14 for A1 + style. + + + Not all combinations are valid and the content of the reference corresponds + to a valid token in expected reference style (e.g. in R1C1, R is + a valid standalone reference, but there is no such possibility for A1). + + + + + + How to interpret the value. + + + + + Position of a column. + + + + + How to interpret the value. + + + + + Position of a row. + + + + + Does RowCol use A1 semantic? + + + + + Does RowCol use R1C1 semantic? + + + + + Reference style of the RowCol. + + + + + Is RowCol a part (start or end) of row span? + + + + + Is RowCol a part (start or end) of column span? + + + + + Create a new with both row and columns specified. + + The type used to interpret the row position. + The value for the row position. + The type used to interpret the column position. + The value for the column position. + Semantic of the reference. + + + + Create a new with both row and columns specified. + + Is the row reference absolute? If false, then relative. + The value for the row position. + Is the column reference absolute? If false, then relative. + The value for the column position. + Semantic of the reference. + + + + Create a new with both row and columns specified + with relative values. Used mostly for A1 style. + + The relative position of the row. + The relative position of the column. + Semantic of the reference. + + + + Compares two objects by value. The result specifies whether + all properties of the two objects are equal. + + + + + Compares two objects by value. The result specifies whether + any property of the two objects is not equal. + + + + + Get a reference in A1 notation. + + When RowCol doesn't use A1 semantic. + + + + Get a reference in R1C1 notation. + + When RowCol doesn't use R1C1 semantic. + + + + Convert RowCol to R1C1. + + If RowCol already is in R1C1, return it directly. + A row coordinate that should be used as an anchor for relative R1C1 reference. + A column coordinate that should be used as an anchor for relative R1C1 reference. + RowCol with R1C1 semantic. + Row or col is out of valid row or column number. + + + + Convert RowCol to A1. + + + If RowCol already is in A1, return it directly. If converted RowCol + is out of sheet bounds, loop it. + + A row coordinate that should be used as an anchor for relative R1C1 reference. + A column coordinate that should be used as an anchor for relative R1C1 reference. + RowCol with R1C1 semantic. + Row or col is out of valid row or column number. + + + + String buffer where to write the output. + When RowCol is not in A1 notation. + + + + String buffer where to write the output. + When RowCol is not in A1 notation. + + + + Check whether the is of type + and all values are same as this one. + + + + + Check whether the all values of are same as + this one. + + + + + Returns a hash code for this . + + + + + Extension methods for building formulas. + + + + + Structure reference is basically a set of cells in an area of an intersection between a range of columns + in a table and a vertical range. This enum represents possible values. Thanks to the pattern of a structure + reference token, the vertical range of a formula is always continuous (i.e. no Headers and Totals + together). + + + The documentation calls it *Item specifier* and grammar *keywords*. Both rather unintuitive names, so *area* + is used instead. + + + + + Nothing was specified in the structure reference. Should have same impact as . + + + + + [#Data] - only data cells of a table, without headers or totals. + + + + + [#Headers] - only header rows of a table, if it exists. If there isn't header row, #REF!. + + + + + [#Totals] - only totals rows of a table, if it exists. If there isn't totals row, #REF!. + + + + + [#All] - all cells of a table. + + + + + [#This Row] - only the same data row as the referencing cell. #VALUE! if not on a data row + (e.g. headers or totals) or out of a table. + + + + + A range of a symbol in formula text. + + + + + Create a substring of a symbol. + + + + + Start index of symbol in formula text. + + + + + End index of symbol in formula text. Can be outside of text bounds, if symbol ends at the + last char of formula. + + + + + Length of a symbol. + + + + + Get range indexes. + + + + + A token for a formula input. + + + + + An error symbol id. + + + + + An symbol id for end of file. Mostly for compatibility with ANTLR. + + + + + A token ID or TokenType. Non-negative integer. The values are from Antlr grammar, starting with 1. + See FormulaLexer.tokens. The value -1 indicates an error and unrecognized token and is always + last token. + + + + + The starting index of a token, in code units (=chars). + + + + + Length of a token in code units (=chars). For non-error tokens, must be at least 1. Ignore for error token. + + + + + Parse token. + + + + + Parse token + + + + + Parse A1_REFERENCE token in R1C1 mode. + + The span of a token. + + + + Read the axis value. Can work for row or column. + + The span of a token. + Index where is C/R. + + + + Extract info about cell reference from a A1_REFERENCE token. + + + + + Read a structured name until the end bracket or column + + Input span. + First index of expected name. It will either contain a bracket or first letter of column name. + Parsed name. + + + + A symbol that represents a transformed symbol value. Should be used during AST transformation. + + + + + The text that replaced symbol or null, if there was no change. + + + + + Range of the symbol in original formula. + + + + + Length of the transformed symbol. + + + + + Create a symbol that is different from what was in the original formula. + + Text of whole formula. + Range of the symbol in the formula. + The string of a transformed symbol. + + + + Create a new symbol represented by a substring of an original formula. Generally used when + there is no modification of the symbol (i.e. just pass it as it is). + + Text of whole formula. + Range of the symbol in the formula. + + + + Get content of the symbol as a span. Doesn't allocate memory. + + + + + Get symbol as a text with extra text at the end. + + Text to append at the end of the symbol text. + + + + Get symbol text representation. + + + + + Unary operations of a formula. + + Range operations are always after number operations. + + + Prefix plus operation. + + + Prefix minus operation. + + + Suffix percent operation. + + + Prefix range intersection operation. + + + Suffix range spill operation. + + + diff --git a/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.xml.meta b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.xml.meta new file mode 100644 index 0000000..2a9eeb5 --- /dev/null +++ b/Assets/Packages/ClosedXML.Parser.2.0.0/lib/netstandard2.1/ClosedXML.Parser.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ec479c8a0ea6653498cc0a2b3c3c6da6 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1.meta b/Assets/Packages/DocumentFormat.OpenXml.3.1.1.meta new file mode 100644 index 0000000..f845168 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c368605d6f5d22a4189290c37e0a5379 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/.signature.p7s b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/.signature.p7s new file mode 100644 index 0000000..bd2d048 Binary files /dev/null and b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/.signature.p7s differ diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/DocumentFormat.OpenXml.nuspec b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/DocumentFormat.OpenXml.nuspec new file mode 100644 index 0000000..4ca785b --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/DocumentFormat.OpenXml.nuspec @@ -0,0 +1,556 @@ + + + + DocumentFormat.OpenXml + 3.1.1 + Microsoft + MIT + https://licenses.nuget.org/MIT + icon.png + README.md + https://github.com/dotnet/Open-XML-SDK + https://raw.githubusercontent.com/dotnet/Open-XML-SDK/master/icon.png + The Open XML SDK provides tools for working with Office Word, Excel, and PowerPoint documents. It supports scenarios such as: + +- High-performance generation of word-processing documents, spreadsheets, and presentations. +- Populating content in Word files from an XML data source. +- Splitting up (shredding) a Word or PowerPoint file into multiple files, and combining multiple Word/PowerPoint files into a single file. +- Extraction of data from Excel documents. +- Searching and replacing content in Word/PowerPoint using regular expressions. +- Updating cached data and embedded spreadsheets for charts in Word/PowerPoint. +- Document modification, such as removing tracked revisions or removing unacceptable content from documents. + # Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [3.1.1] - 2024-10-15 + +### Fixed + +- Updated System.IO.Packaging and other dependencies (#1794, #1795, #1796, #1782, #1808) +- Fixed add c16:uniqueId to several chart complex types (#1762) +- Fixed <remarks> rather than <remark> in the documentation comments (#1775) + +## [3.1.0] - 2024-07-30 + +### Added +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2024.PivotAutoRefresh` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2024.PivotDynamicArrays` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2023.DataSourceVersioning` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2023.ExternalCodeService` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2023.MsForms` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2023.Pivot2023Calculation` namespace + +### Fixed + +- Fixed issue where `OpenXmlUnknownElement` is returned instead of `CommentPropertiesExtension` (#1751) +- Fixed issue where `OpenXmlWriter` is unable to write `SharedStringTablePart` (#1755) + +## [3.0.2] - 2024-03-14 + +### Fixed + +- Fixed issue where temp files were shareable and not deleted on close (#1658) + +## [3.0.1] - 2024-01-09 + +### Fixed + +- Fixed issue where document type would not be correct unless content type was checked first (#1625) +- Added check to only seek on packages where it is supported (#1644) +- If a malformed URI is encountered, the exception is now the same as v2.x (`OpenXmlPackageException` with an inner `UriFormatException`) (#1644) + +## [3.0.0] - 2023-11-15 + +### Added + +- Packages can now be saved on .NET Core and .NET 5+ if constructed with a path or stream (#1307). +- Packages can now support malformed URIs (such as relationships with a URI such as `mailto:person@`) +- Introduce equality comparers for `OpenXmlElement` (#1476) +- `IFeatureCollection` can now be enumerated and has a helpful debug view to see what features are registered (#1452) +- Add mime types to part creation (#1488) +- `DocumentFormat.OpenXml.Office.PowerPoint.Y2023.M02.Main` namespace +- `DocumentFormat.OpenXml.Office.PowerPoint.Y2022.M03.Main` namespace +- `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2021.ExtLinks2021` namespace + +### Changed + +- When validation finds incorrect part, it will now include the relationship type rather than a class name +- `IDisposableFeature` is now a part of the framework package and is available by default on a package or part. + +### Breaking Changes + +- .NET Standard 1.3 is no longer a supported platform. .NET Standard 2.0 is the lowest .NET Standard supported. +- Core infrastructure is now contained in a new package DocumentFormat.OpenXml.Framework. Typed classes are still in DocumentFormat.OpenXml. This means that you may reference DocumentFormat.OpenXml and still compile the same types, but if you want a smaller package, you may rely on just the framework package. +- Changed type of `OpenXmlPackage.Package` to `DocumentFormat.OpenXml.Packaging.IPackage` instead of `System.IO.Packaging.Package` with a similar API surface +- `EnumValue<T>` now is used to box a struct rather than a `System.Enum`. This allows us to enable behavior on it without resorting to reflection +- Methods on parts to add child parts (i.e. `AddImagePart`) are now implemented as extension methods off of a new marker interface `ISupportedRelationship<T>` +- Part type info enums (i.e. `ImagePartType`) is no longer an enum, but a static class to expose well-known part types as structs. Now any method to define a new content-type/extension pair can be called with the new `PartTypeInfo` struct that will contain the necessary information. +- `OpenXmlPackage.CanSave` is now an instance property (#1307) +- Removed `OpenXmlSettings.RelationshipErrorHandlerFactory` and associated types and replaced with a built-in mechanism to enable this +- `IdPartPair` is now a readonly struct rather than a class +- Renamed `PartExtensionProvider` to `IPartExtensionFeature` and reduced its surface area to only two methods (instead of a full `Dictionary<,>`). The property to access this off of `OpenXmlPackage` has been removed, but may be accessed via `Features.Get<IPartExtensionFeature>()` if needed. +- `OpenXmlPart`/`OpenXmlContainer`/`OpenXmlPackage` and derived types now have internal constructors (these had internal abstract methods so most likely weren't subclassed externally) +- `OpenXmlElementList` is now a struct that implements `IEnumerable<OpenXmlElement>` and `IReadOnlyList<OpenXmlElement>` where available (#1429) +- Individual implementations of `OpenXmlPartReader` are available now for each package type (i.e. `WordprocessingDocumentPartReader`, `SpreadsheetDocumentPartReader`, `PresentationDocumentPartReader`), and the previous `TypedOpenXmlPartReader` has been removed. (#1403) +- Reduced unnecessary target frameworks for packages besides DocumentFormat.OpenXml.Framework (#1471) +- Changed some spelling issues for property names (#1463, #1444) +- `Model3D` now represents the modified xml element tag name `am3d.model3d` (Previously `am3d.model3D`) +- Removed `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.PivotCacheHasRichValuePivotCacheRichInfo` +- Removed `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.RichDataPivotCacheGuid` +- Removed unused `SchemaAttrAttribute` (#1316) +- Removed unused `ChildElementInfoAttribute` (#1316) +- Removed `OpenXmlSimpleType.TextValue`. This property was never meant to be used externally (#1316) +- Removed obsolete validation logic from v1 of the SDK (#1316) +- Removed obsoleted methods from 2.x (#1316) +- Removed mutable properties on OpenXmlAttribute and marked as `readonly` (#1282) +- Removed `OpenXmlPackage.Close` in favor of `Dispose` (#1373) +- Removed `OpenXmlPackage.SaveAs` in favor of `Clone` (#1376) + +## [2.20.0] + +### Added + +- Added DocumentFormat.OpenXml.Office.Drawing.Y2022.ImageFormula namespace +- Added DocumentFormat.OpenXml.Office.Word.Y2023.WordML.Word16DU namespace + +### Changed + +- Marked `OpenXmlSimpleType.TextValue` as obsolete. This property was never meant to be used externally (#1284) +- Marked `OpenXmlPackage.Package` as obsolete. This will be an implementation detail in future versions and won't be accessible (#1306) +- Marked `OpenXmlPackage.Close` as obsolete. This will be removed in a later release, use Dispose instead (#1371) +- Marked `OpenXmlPackage.SaveAs` as obsolete as it will be removed in a future version (#1378) + +### Fixed + +- Fixed incorrect file extensions for vbaProject files (#1292) +- Fixed incorrect file extensions for ImagePart (#1305) +- Fixed incorrect casing for customXml (#1351) +- Fixed AddEmbeddedPackagePart to allow correct extensions for various content types (#1388) + +## [2.19.0] - 2022-12-14 + +### Added + +- .NET 6 target with support for trimming (#1243, #1240) +- Added DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData namespace +- Added DocumentFormat.OpenXml.Office.PowerPoint.Y2019.Main.Command namespace +- Added DocumentFormat.OpenXml.Office.PowerPoint.Y2022.Main.Command namespace +- Added Child RichDataPivotCacheGuid to DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition + +### Fixed + +- Removed reflection usage where possible (#1240) +- Fixed issue where some URIs might be changed when cloning or creating copy (#1234) +- Fixed issue in FlatOpc generation that would not read the full stream on .NET 6+ (#1232) +- Fixed issue where restored relationships wouldn't load correctly (#1207) + +## [2.18.0] 2022-09-06 + +### Added + +- Added DocumentFormat.OpenXml.Office.SpreadSheetML.Y2021.ExtLinks2021 namespace (#1196) +- Added durableId attribute to DocumentFormat.OpenXml.Wordprocessing.NumberingPictureBullet (#1196) +- Added few base classes for typed elements, parts, and packages (#1185) + +### Changed + +- Adjusted LICENSE.md to conform to .NET Foundation requirements (#1194) +- Miscellaneous changes for better perf for internal services + +## [2.17.1] - 2022-06-28 + +### Removed + +- Removed the preview namespace DocumentFormat.OpenXml.Office.Comments.Y2020.Reactions because this namespace will currently create invalid documents. + +### Fixed + +- Restored the PowerPointCommentPart relationship to PresentationPart. + +### Deprecated + +- The relationship between the PowerPointCommentPart and the PresentationPart is deprecated and will be removed in a future version. + +## [2.17.0] - Unreleased + +### Added + +- Added DocumentFormat.OpenXml.Office.Comments.Y2020.Reactions namespace (#1151) +- Added DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotVersionInfo namespace (#1151) + +### Fixed + +- Moved PowerPointCommentPart relationship to SlidePart (#1137) + +### Updated + +- Removed public API analyzers in favor of EnablePackageValidation (#1154) + +## [2.16.0] - 2022-03-14 + +### Added + +- Added method `OpenXmlPart.UnloadRootElement` that will unload the root element if it is loaded (#1126) + +### Updated + +- Schema code generation was moved to the SDK project using C# code generators + +Thanks to the following for their contribution: + +@f1nzer + +## [2.15.0] - 2021-12-16 + +### Added + +- Added samples for strongly typed classes and Linq-to-XML in the `./samples` directory (#1101, #1087) +- Shipping additional libraries for some additional functionality in `DocumentFormat.OpenXml.Features` and `DocumentFormat.OpenXml.Linq`. See documentation in repo for additional details. +- Added extension method to support getting image part type (#1082) +- Added generated classes and `FileFormatVersions.Microsoft365` for new subscription model types and constraints (#1097). + +### Fixed + +- Fixed issue for changed mime type `model/gltf.binary` (#1069) +- DocumentFormat.OpenXml.Office.Drawing.ShapeTree is now available only in Office 2010 and above, not 2007. +- Correctly serialize `new CellValue(bool)` values (#1070) +- Updated known namespaces to be generated via an in-repo source generator (#1092) +- Some documentation issues around `FileFormatVersions` enum + +Thanks to the following for their contributions: + +@ThomasBarnekow +@stevenhansen +@JaimeStill +@jnyrup + +## [2.14.0] - 2021-10-28 + +### Added + +- Added generated classes for Office 2021 types and constraints (#1030) +- Added `Features` property to `OpenXmlPartContainer` and `OpenXmlElement` to enable a per-part or per-document state storage +- Added public constructors for `XmlPath` (#1013) +- Added parts for Rich Data types (#1002) +- Added methods to generate unique paragraph ids (#1000) + +Thanks to the following for their contributions: + +@rmboggs +@ThomasBarnekow + +## [2.13.1] - 2021-08-17 + +### Fixed + +- Fixed some nullability annotations that were incorrectly defined (#953, #955) +- Fixed issue that would dispose a `TextReader` when creating an `XmlReader` under certain circumstances (#940) +- Fixed a documentation type (#937) +- Fixed an issue with adding additional children to data parts (#934) +- Replaced some documentation entries that were generic values with helpful comments (#992) +- Fixed a regression in AddDataPartRelationship (#954) + +Thanks to the following for their contributions: + +@ThomasBarnekow +@sorensenmatias +@lklein53 +@lindexi + +## [2.13.0] - 2021-05-13 + +### Added + +- Additional O19 types to match Open Specifications (#916) +- Added generated classes for Office 2019 types and constraints (#882) +- Added nullability attributes (#840, #849) +- Added overload for `OpenXmlPartReader` and `OpenXmlReader.Create(...)` to ignore whitespace (#857) +- Added `HexBinaryValue.TryGetBytes(...)` and `HexBinaryValue.Create(byte[])` to manage the encoding and decoding of bytes (#867) +- Implemented `IEquatable<IdPartPair>` on `IdPartPair` to fix equality implementation there and obsoleted setters (#871) + +### Fixed + +- Fixed serialization of `CellValue` constructors to use invariant cultures (#903) +- Fixed parsing to allow exponents for numeric cell values (#901) +- Fixed massive performance bottleneck when `UniqueAttributeValueConstraint` is involved (#924) + +### Deprecated + +- Deprecated Office2013.Word.Person.Contact property. It no longer persists and will be removed in a future version (#912) + +Thanks to the following for their contributions: + +@lklein53 +@igitur + +## [2.12.3] - 2021-02-24 + +### Fixed + +- Fixed issue where `CellValue` may validate incorrectly for boolean values (#890) + +## [2.12.2] - 2021-02-16 + +### Fixed + +- Fixed issue where `OpenSettings.RelationshipErrorHandlerFactory` creates invalid XML if the resulting URI is smaller than the input (#883) + +## [2.12.1] - 2021-01-11 + +### Fixed + +- Fixed bug where properties on `OpenXmlCompositeElement` instances could not be set to null to remove element (#850) +- Fixed `OpenXmlElement.RawOuterXml` to properly set null values without throwing (#818) +- Allow rewriting of all malformed URIs regardless of target value (#835) + +## [2.12.0] - 2020-12-09 + +### Added + +- Added `OpenSettings.RelationshipErrorHandlerFactory` to provide a way to handle URIs that break parsing documents with malformed links (#793) +- Added `OpenXmlCompositeElement.AddChild(OpenXmlElement)` to add children in the correct order per schema (#774) +- Added `SmartTagClean` and `SmartTagId` in place of `SmtClean` and `SmtId` (#747) +- Added `OpenXmlValidator.Validate(..., CancellationToken)` overrides to allow easier cancellation of long running validation on .NET 4.0+ (#773) +- Added overloads for `CellValue` to take `decimal`, `double`, and `int`, as well as convenience methods to parse them (#782) +- Added validation for `CellType` for numbers and date formats (#782) +- Added `OpenXmlReader.GetLineInfo()` to retrieve `IXmlLineInfo` of the underlying reader if available (#804) + +### Fixed + +- Fixed exception that would be thrown if attempting to save a document as FlatOPC if it contains SVG files (#822) +- Added `SchemaAttrAttribute` attributes back for backwards compatibility (#825) + +### Removed + +- Removed explicit reference to `System.IO.Packaging` on .NET 4.6 builds (#774) + +## [2.11.3] - 2020-07-17 + +### Fixed + +- Fixed massive performance bottleneck when `IndexReferenceConstraint` and `ReferenceExistConstraint` are involved (#763) +- Fixed `CellValue` to only include three most signficant digits on second fractions to correct issue loading dates (#741) +- Fixed a couple of validation indexing errors that might cause erroneous validation errors (#767) +- Updated internal validation system to not use recursion, allowing for better short-circuiting (#766) + +## [2.11.2] - 2020-07-10 + +### Fixed + +- Fixed broken source link (#749) +- Ensured compilation is deterministic (#749) +- Removed extra file in NuGet package (#749) + +## [2.11.1] - 2020-07-10 + +### Fixed + +- Ensure .NET Framework builds pass PEVerify (#744) +- `OpenXmlPartContainer.DeletePart` no longer throws an exception if there isn't a match for the identifier given (#740) +- Mark obsolete members to not show up with Intellisense (#745) +- Fixed issue with `AttributeRequiredConditionToValue` semantic constraint where validation could fail on correct input (#746) + +## [2.11.0] - 2020-05-21 + +### Added + +- Added `FileFormatVersions.2019` enum (#695) +- Added `ChartSpace` and chart elements for the new 2016 namespaces. This allows the connecting pieces for building a chart part with chart styles like "Sunburst" (#687). +- Added `OpenXmlElementFunctionalExtensions.With(...)` extension methods, which offer flexible means for constructing `OpenXmlElement` instances in the context of pure functional transformations (#679) +- Added minimum Office versions for enum types and values (#707) +- Added additional `CompatSettingNameValues` values: `UseWord2013TrackBottomHyphenation`, `AllowHyphenationAtTrackBottom`, and `AllowTextAfterFloatingTableBreak` (#706) +- Added gfxdata attribue to Arc, Curve, Line, PolyLine, Group, Image, Oval, Rect, and RoundRect shape complex types per MS-OI29500 2.1.1783-1799 (#709) +- Added `OpenXmlPartContainer.TryGetPartById` to enable child part retrieval without exception if it does not exist (#714) +- Added `OpenXmlPackage.StrictRelationshipFound` property that indicates whether this package contains Transitional relationships converted from Strict (#716) + +### Fixed + +- Custom derived parts did not inherit known parts from its parent, causing failure when adding parts (#722) + +### Changed + +- Marked the property setters in `OpenXmlAttribute` as obsolete as structs should not have mutable state (#698) + +## [2.10.1] - 2020-02-28 + +### Fixed + +- Ensured attributes are available when `OpenXmlElement` is initialized with outer XML (#684, #692) +- Some documentation errors (#681) +- Removed state that made it non-thread safe to validate elements under certain conditions (#686) +- Correctly inserts strongly-typed elements before known elements that are not strongly-typed (#690) + +## [2.10.0] - 2020-01-10 + +### Added + +- Added initial Office 2016 support, including `FileFormatVersion.Office2016`, `ExtendedChartPart` and other new schema elements (#586) +- Added .NET Standard 2.0 target (#587) +- Included symbols support for debugging (#650) +- Exposed `IXmlNamespaceResolver` from `XmlPath` instead of formatted list of strings to expose namespace/prefix mapping (#536) +- Implemented `IComparable<T>` and `IEquatable<T>` on `OpenXmlComparableSimpleValue` to allow comparisons without boxing (#550) +- Added `OpenXmlPackage.RootPart` to easily access the root part on any package (#661) + +### Changed + +- Updated to v4.7.0 of System.IO.Packaging which brings in a number of perf fixes (#660) +- Consolidated data for element children/properties to reduce duplication (#540, #547, #548) +- Replaced opaque binary data for element children constraints with declarative model (#603) +- A number of performance fixes to minimize allocations where possible +- 20% size reduction from 5.5mb to 4.3mb +- The validation subsystem went through a drastic redesign. This may cause changes in what errors are reported. + +### Fixed + +- Fixed some documentation inconsistencies (#582) +- Fixed `ToFlatOpcDocument`, `ToFlatOpcString`, `FromFlatOpcDocument`, and `FromFlatOpcString` to correctly process Alternative Format Import Parts, or "altChunk parts" (#659) + +## [2.9.1] - 2019-03-13 + +### Changed + +- Added a workaround for a .NET Native compiler issue that doesn't support calling `Marshal.SizeOf<T>` with a struct that contains auto-implemented properties (#569) +- Fixed a documentation error (#528) + +## [2.9.0] - 2018-06-08 + +### Added + +- `ListValue` now implements `IEnumerable<T>` (#385) +- Added a `WebExtension.Frozen` and obsoleted misspelled `Fronzen` property (#460) +- Added an `OpenXmlPackage.CanSave` property that indicates whether a platform supports saving without closing the package (#468) +- Simple types (except `EnumValue` and `ListValue`) now implement `IComparable<T>` and `IEquatable<T>` (#487) + +### Changed + +- Removed state that was carried in validators that would hold onto packages when not in use (#390) +- `EnumSimpleType` parsing was improved and uses less allocations and caches for future use (#408) +- Fixed a number of spelling mistakes in documentation (#462) +- When calling `OpenXmlPackage.Save` on .NET Framework, the package is now flushed to the stream (#468) +- Fixed race condition while performing strict translation of attributes (#480) +- Schema data for validation uses a more compact format leading to a reduction in dll size and performance improvements for loading (#482, #483) +- A number of APIs are marked as obsolete as they have simple workarounds and will be removed in the next major change +- Fixed some constraint values for validation that contained Office 2007, even when it was only supported in later versions +- Updated `System.IO.Packaging` to 4.5.0 which fixes some issues on Xamarin platforms as well as minimizes dependencies on .NET Framework + +## [2.8.1] - 2018-01-03 + +### Changed + +- Corrected package license file reference to show updated MIT License + +## [2.8.0] - 2017-12-28 + +### Added + +- Default runtime directive for better .NET Native support. + +### Changed + +- Fixed part saving to be encoded with UTF8 but no byte order mark. This caused some renderers to not be able to open the generated document. +- Fixed exceptions thrown when errors are encountered while opening packages to be consistent across platforms. +- Fixed issue on Mono platforms using System.IO.Packaging NuGet package (Xamarin, etc) when creating a document. +- Fixed manual saving of a package when autosave is false. +- Fixed schema constraint data and standardized serialization across platforms. +- Upgraded to `System.IO.Packaging` version 4.4.0 which fixes some consistency with .NET Framework in opening packages. + +## [2.7.2] - 2017-06-06 + +### Added + +- Package now supports .NET 3.5 and .NET 4.0 in addition to .NET Standard 1.3 and .NET Framework 4.6 + +### Changed + +- Fixed issue where assembly version wasn't set in assembly. + +## [2.7.1] - 2017-01-31 + +### Changed + +- Fixed crash when validation is invoked on .NET Framework with strong-naming enforced. + +## [2.7.0] - 2017-01-24 + +### Added + +- SDK now supports .NET Standard 1.3 + +### Changed + +- Moved to using System.IO.Packaging from dotnet/corefx for .NET Standard 1.3 and WindowsBase for .NET 4.5. +- Cleaned up project build system to use .NET CLI. + +## [2.6.1] - 2016-01-15 + +### Added + +- Added hundreds of XUnit tests. There are now a total of 1333 tests. They take about 20 minutes to run, so be patient. + +## [2.6.0] - 2015-06-29 + +### Added + +- Incorporated a replacement `System.IO.Packaging` that fixes some serious (but exceptional) bugs found in the WindowsBase implementation + +[3.0.1]: https://github.com/dotnet/Open-XML-SDK/compare/v3.0.0...v3.0.1 +[3.0.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.20.0...v3.0.0 +[2.20.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.19.0...v2.20.0 +[2.19.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.18.0...v2.19.0 +[2.18.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.17.1...v2.18.0 +[2.17.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.17.0...v2.17.1 +[2.17.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.16.0...v2.17.0 +[2.16.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.15.0...v2.16.0 +[2.15.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.14.0...v2.15.0 +[2.14.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.14.0-beta1...v2.14.0 +[2.13.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.13.0...v2.13.1 +[2.13.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.13.0...v2.13.0 +[2.12.3]: https://github.com/dotnet/Open-XML-SDK/compare/v2.12.3...v2.12.1 +[2.12.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.12.1...v2.12.0 +[2.12.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.12.0...v2.11.3 +[2.11.3]: https://github.com/dotnet/Open-XML-SDK/compare/v2.11.3...v2.11.2 +[2.11.2]: https://github.com/dotnet/Open-XML-SDK/compare/v2.11.2...v2.11.1 +[2.11.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.11.1...v2.11.0 +[2.11.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.11.0...v2.10.1 +[2.10.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.10.1...v2.10.0 +[2.10.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.10.0...v2.9.1 +[2.9.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.9.1...v2.9.0 +[2.9.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.9.0...v2.8.1 +[2.8.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.8.1...v2.8.0 +[2.8.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.8.0...v2.7.2 +[2.7.2]: https://github.com/dotnet/Open-XML-SDK/compare/v2.7.1...v2.7.2 +[2.7.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.7.0...v2.7.1 +[2.7.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.6.1...v2.7.0 +[2.6.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.6.0...v2.6.1 +[2.6.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.5.0...v2.6.0 + © Microsoft Corporation. All rights reserved. + openxml office + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/DocumentFormat.OpenXml.nuspec.meta b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/DocumentFormat.OpenXml.nuspec.meta new file mode 100644 index 0000000..8152d43 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/DocumentFormat.OpenXml.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4529957b90bd38c4f853c9e85940a305 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/README.md b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/README.md new file mode 100644 index 0000000..3f02268 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/README.md @@ -0,0 +1,122 @@ + +Open XML SDK +============ + +> [!NOTE] +> +> [v3.0.0](https://www.nuget.org/packages/DocumentFormat.OpenXml/3.0.0) refactors and addresses some technical debt while retaining source compatibility as much as possible. You should be able to update your package and recompile with limited changes. However, binary compatibility was not a goal and will break that for some changes which are documented. PRs that introduced such changes are marked with a `breaking-change` label and were added to a list to help migrating to v3.0.0. +> +> Please see the [v3.0.0 milestone](https://github.com/OfficeDev/Open-XML-SDK/milestone/1) for issues and PRs that are included. For discussions, please join us at [this issue](https://github.com/OfficeDev/Open-XML-SDK/issues/1270). + + +> [!IMPORTANT] +> The CI feed URL has changed as of 2 April, 2024. Please update to the new URL if using CI builds. + +[![Downloads](https://img.shields.io/nuget/dt/DocumentFormat.OpenXml.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml) +[![Build Status](https://office.visualstudio.com/OC/_apis/build/status/OpenXmlSdk/OfficeDev.Open-XML-SDK?branchName=main)](https://office.visualstudio.com/OC/_build/latest?definitionId=7420&branchName=main) +[![Backend Status](https://ointprotocol.visualstudio.com/OInteropTools/_apis/build/status/OpenXML-Schemas?branchName=main)](https://ointprotocol.visualstudio.com/OInteropTools/_build/latest?definitionId=21&branchName=main) + +The Open XML SDK provides tools for working with Office Word, Excel, and PowerPoint documents. It supports scenarios such as: + +- High-performance generation of word-processing documents, spreadsheets, and presentations. +- Document modification, such as adding, updating, and removing content and metadata. +- Search and replace content using regular expressions. +- Splitting up (shredding) a file into multiple files, and combining multiple files into a single file. +- Updating cached data and embedded spreadsheets for charts in Word/PowerPoint. + + +# Table of Contents + +- [Packages](#packages) + - [Daily Builds](#daily-builds) + - [Framework Support](#framework-support) +- [Known Issues](#known-issues) +- [Documentation](#documentation) +- [If You Have How-To Questions](#if-you-have-how-to-questions) +- [Related tools](#related-tools) + +# Packages + +The official release NuGet packages for Open XML SDK are on NuGet.org: + +| Package | Download | Prerelease | +|---------|----------|------------| +| DocumentFormat.OpenXml.Framework | [![NuGet](https://img.shields.io/nuget/v/DocumentFormat.OpenXml.Framework.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Framework) | [![NuGet](https://img.shields.io/nuget/vpre/DocumentFormat.OpenXml.Framework.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Framework) | +| DocumentFormat.OpenXml | [![NuGet](https://img.shields.io/nuget/v/DocumentFormat.OpenXml.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml) | [![NuGet](https://img.shields.io/nuget/vpre/DocumentFormat.OpenXml.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml) | +| DocumentFormat.OpenXml.Linq | [![NuGet](https://img.shields.io/nuget/v/DocumentFormat.OpenXml.Linq.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Linq) | [![NuGet](https://img.shields.io/nuget/vpre/DocumentFormat.OpenXml.Linq.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Linq) | +| DocumentFormat.OpenXml.Features | [![NuGet](https://img.shields.io/nuget/v/DocumentFormat.OpenXml.Features.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Features) | [![NuGet](https://img.shields.io/nuget/vpre/DocumentFormat.OpenXml.Features.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Features) | + +## Daily Builds + +The NuGet package for the latest builds of the Open XML SDK is available as a custom feed on an Azure blob. Stable releases here will be mirrored onto NuGet and will be identical. You must set up a [NuGet.config](https://docs.microsoft.com/en-us/nuget/reference/nuget-config-file) file that looks similar to this: + +```xml + + + + + + +``` + +For latests changes, please see the [changelog](CHANGELOG.md) + +## Framework Support + +The package currently supports the following targets: + +- .NET Framework 3.5, 4.0, 4.6 +- .NET Standard 2.0 +- .NET 6.0 + +For details on platform support, including other runtimes such as Mono and Unity, please see the docs at https://docs.microsoft.com/en-us/dotnet/standard/net-standard. + +# Known Issues + +- On .NET Core and .NET 5 and following, ZIP packages do not have a way to stream data. Thus, the working set can explode in certain situations. This is a [known issue](https://github.com/dotnet/runtime/issues/1544). +- On .NET Framework, an `IsolatedStorageException` may be thrown under certain circumstances. This generally occurs when manipulating a large document in an environment with an AppDomain that does not have enough evidence. A sample with a workaround is available [here](/samples/IsolatedStorageExceptionWorkaround). + +# Documentation + +Please see [Open XML SDK](https://learn.microsoft.com/en-us/office/open-xml/open-xml-sdk) for the official documentation. + +# If you have how-to questions + +- [Stack Overflow](http://stackoverflow.com) (tags: **openxml** or **openxml-sdk**) +- How-to samples: + - [Spreadsheet Samples](https://learn.microsoft.com/en-us/office/open-xml/spreadsheet/overview) + - [Presentation Samples](https://learn.microsoft.com/en-us/office/open-xml/presentation/overview) + - [Wordprocessing Samples](https://learn.microsoft.com/en-us/office/open-xml/word/overview) + +# Related tools + +- **[Open XML SDK 2.5 Productivity Tool](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)**: The Productivity Tool provides viewing and code generation compatible with the Open XML SDK 2.5. +- **[Open XML Powertools](https://github.com/EricWhiteDev/Open-Xml-PowerTools)**: This provides example code and guidance for implementing a wide range of Open XML scenarios. +- **[ClosedXml](https://github.com/closedxml/closedxml)**: This library provides a simplified object model on top of the OpenXml SDK for manipulating and creating Excel documents. +- **[OfficeIMO](https://github.com/EvotecIT/OfficeIMO)**: This library provides a simplified object model on top of the OpenXml SDK manipulating and creating Word documents. +- **[OpenXML-Office](https://github.com/DraviaVemal/OpenXML-Office)**: This nuget library provides a simplified object model on top of the OpenXml SDK manipulating and creating PPT and Excel documents. +- **[Serialize.OpenXml.CodeGen](https://github.com/rmboggs/Serialize.OpenXml.CodeGen)**: This is a tool that converts an OpenXml document into the .NET code required to create it. +- **[Html2OpenXml](https://github.com/onizet/html2openxml)**: This is a tool that takes HTML and converts it to an OpenXml document. +- **[DocxToSource](https://github.com/rmboggs/DocxToSource)**: This is a tool designed to be a replacement for the old OpenXML SDK Productivity Tool. +- **[OOXML Viewer](https://github.com/yuenm18/ooxml-viewer-vscode)**: This is an extension for Visual Studio Code to View and Edit the xml parts of an Office Open XML file and to view a diff with the previous version of an OOXML part when saved from an outside program. Search "OOXML" in the VS Code extensions tab or download it from the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=yuenm18.ooxml-viewer) +- **[ShapeCrawler](https://github.com/ShapeCrawler/ShapeCrawler)**: This library provides a simplified object model on top of the OpenXml SDK to manipulate PowerPoint documents. +- **[OOXML Validator](https://github.com/mikeebowen/ooxml-validator-vscode)**: VS Code extension to validate Office Open XML files. Search "OOXML" in the VS Code extensions tab or download it from the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=mikeebowen.ooxml-validator-vscode) + +# How can I contribute? + +We welcome contributions! Many people all over the world have helped make this project better. + +- [Contributing](./CONTRIBUTING.md) explains what kinds of contributions we welcome + +# Reporting security issues and security bugs + +Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the [Security TechCenter](https://www.microsoft.com/en-us/msrc/faqs-report-an-issue?rtc=1). + +# .NET Foundation +The Open XML SDK is a [.NET Foundation](https://dotnetfoundation.org/projects) project. + +This project has adopted the code of conduct defined by the [Contributor Covenant](https://www.contributor-covenant.org/) to clarify expected behavior in our community. For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/about/code-of-conduct). + +# License + +The Open XML SDK is licensed under the [MIT](./LICENSE) license. diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/README.md.meta b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/README.md.meta new file mode 100644 index 0000000..ee73fc7 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 23953c9eb7b646042b223fb0fb1712f1 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/icon.png b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/icon.png new file mode 100644 index 0000000..33c4b56 Binary files /dev/null and b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/icon.png differ diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/icon.png.meta b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/icon.png.meta new file mode 100644 index 0000000..f93c222 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/icon.png.meta @@ -0,0 +1,136 @@ +fileFormatVersion: 2 +guid: 4d221a477921cae4fa8d8dbde57845d8 +TextureImporter: + internalIDToNameTable: + - first: + 213: 6934086728263231946 + second: icon_0 + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: icon_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac961e71423da3060800000000000000 + internalID: 6934086728263231946 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib.meta b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib.meta new file mode 100644 index 0000000..7af7cd3 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5978743eab8953044ba814fdb5e530c4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0.meta b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0.meta new file mode 100644 index 0000000..59645df --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6cabdc881115dec4082a20753de6d60a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.dll b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..681d5e9 Binary files /dev/null and b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.dll differ diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.dll.meta b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.dll.meta new file mode 100644 index 0000000..d086422 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 5de96c0ab65e86a4788f1b15caee2db3 +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.xml b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.xml new file mode 100644 index 0000000..8e4dc1f --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.xml @@ -0,0 +1,257565 @@ + + + + DocumentFormat.OpenXml + + + + + Defines AlternativeFormatImportPartType - types of AlternativeFormatImportPart. + + + + + + Defines type information for Xhtml alternative format import part. + + + + + Defines type information for Mht alternative format import part. + + + + + Defines type information for Xml alternative format import part. + + + + + Defines type information for TextPlain alternative format import part. + + + + + Defines type information for WordprocessingML alternative format import part. + + + + + Defines type information for OfficeWordMacroEnabled alternative format import part. + + + + + Defines type information for OfficeWordTemplate alternative format import part. + + + + + Defines type information for OfficeWordMacroEnabledTemplate alternative format import part. + + + + + Defines type information for Rtf alternative format import part. + + + + + Defines type information for Html alternative format import part. + + + + + Defines CustomPropertyPartType - types of CustomPropertyPart. + + + + + Defines type information for spreadsheet custom property part. + + + + + Defines type information for xml custom property part. + + + + + Defines CustomUiPart. The CustomUiPart served as the base class of RibbonExtensibilityPart and QuickAccessToolbarCustomizationsPart. + + + + + + + + + + + Gets or sets the root element of this part. + + + + + Defines CustomXmlPartType - types of CustomXmlPart. + + + + + Defines type information for AdditionalCharacteristicsInfo part. + + + + + Defines type information for Bibliography part. + + + + + Defines type information for CustomXml part. + + + + + Defines type information for InkContent part. + + + + + Defines EmbeddedControlPersistenceBinaryDataPartType - types of EmbeddedControlPart. + + + + + Defines type information for ActiveXBin embedded control persistence binary data part. + + + + + Defines EmbeddedControlPersistencePartType - types of EmbeddedControlPart. + + + + + Defines type information for ActiveX embedded control persistence part. + + + + + Defines type information for ActiveXBin embedded control persistence part. + + + + + Defines EmbeddedPackagePartType - types of EmbeddedPackagePart. + + + + + Defines type information for Binary embedded object part. + + + + + Defines EmbeddedPackagePartType - types of EmbeddedPackagePart. + + + + + Defines type information for Docm embedded package part. + + + + + Defines type information for Docx embedded package part. + + + + + Defines type information for Dotm embedded package part. + + + + + Defines type information for Dotx embedded package part. + + + + + Defines type information for Potm embedded package part. + + + + + Defines type information for Potx embedded package part. + + + + + Defines type information for Ppam embedded package part. + + + + + Defines type information for Ppsm embedded package part. + + + + + Defines type information for Ppsx embedded package part. + + + + + Defines type information for Pptm embedded package part. + + + + + Defines type information for Pptx embedded package part. + + + + + Defines type information for Sldm embedded package part. + + + + + Defines type information for Sldx embedded package part. + + + + + Defines type information for Thmx embedded package part. + + + + + Defines type information for Xlam embedded package part. + + + + + Defines type information for Xlsb embedded package part. + + + + + Defines type information for Xlsm embedded package part. + + + + + Defines type information for Xlsx embedded package part. + + + + + Defines type information for Xltm embedded package part. + + + + + Defines type information for Xltx embedded package part. + + + + + Defines FontPartType - types of FontPart. + + + + + Defines type information for FontData font part. + + + + + Defines type information for FontTtf font part. + + + + + Defines type information for FontOdttf font part. + + + + + Defines ImagePartType - types of ImagePart. + + + + + + + Defines type information for Bmp image part. + + + + + Defines type information for Gif image part. + + + + + Defines type information for Png image part. + + + + + Defines type information for Tif image part. + + + + + Defines type information for Tiff image part. + + + + + Defines type information for Icon image part. + + + + + Defines type information for Pcx image part. + + + + + Defines type information for Jpeg image part. + + + + + Defines type information for Jpeg image part. + + + + + Defines type information for Emf image part. + + + + + Defines type information for Wmf image part. + + + + + Defines type information for Svg image part. + + + + + Defines MailMergeRecipientDataPart. + + + Defines the MailMergeRecipientDataPart + + + + + + + + + + + Gets or sets the part's root element when the part's content type is MailMergeRecipientDataPartType.OpenXmlMailMergeRecipientData. + Setting this property will throw InvalidOperationException if the MailMergeRecipients property is not null. + + + + + Gets or sets the part's root element when the part's content type is MailMergeRecipientDataPartType.MsWordMailMergeRecipientData. + Setting this property will throw InvalidOperationException if the Recipients property is not null. + + + + + Creates an instance of the MailMergeRecipientDataPart OpenXmlType + + + + + + + + + + + Defines MailMergeRecipientDataPartType - types of MailMergeRecipientDataPart. + + + + + Defines type information for OpenXmlMailMergeRecipientData mail merge recipient data part. + + + + + Defines type information for MsWordMailMergeRecipientData mail merge recipient data part. + + + + + Defines the Model3DReferenceRelationshipPart + + + Defines the Model3DReferenceRelationshipPart + + + + + + + + Creates an instance of the Model3DReferenceRelationshipPart OpenXmlType + + + + + + + + + + + + + + Defines extensions for part relationships + + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds an ImagePart"/> as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part. + + The parent part requesting to add. + The part type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Adds a as a relationship to the parent part + + The parent part requesting to add. + The content type information for the added extensible part. + The relationship id. Optional, default to null. + The newly added part + + + + Defines PresentationDocument - an OpenXmlPackage represents a Presentation document + + + Defines PresentationDocument - an OpenXmlPackage represents a Presentation document + + + Defines the PresentationDocument + + + + + Creates a default builder for + + The default builder. + + + + Creates a builder that has minimal initialization for . + + A minimal builder. + + + + Gets the default factory for . + + + + + Gets the type of the PresentationDocument. + + + + + Creates a new instance of the PresentationDocument class from the specified file. + + The path and file name of the target PresentationDocument. + The type of the PresentationDocument. + A new instance of PresentationDocument. + Thrown when "path" is null reference. + + + + Created a new instance of the PresentationDocument class from the IO stream. + + The IO stream on which to create the PresentationDocument. + The type of the PresentationDocument. + A new instance of PresentationDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Write access. + + + + Created a new instance of the PresentationDocument class from the specified package. + + The specified OpenXml package. + The type of the PresentationDocument. + A new instance of PresentationDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Write access. + + + + Created a new instance of the PresentationDocument class from the specified file. + + The path and file name of the target PresentationDocument. + The type of the PresentationDocument. + Whether to auto save the created document. + A new instance of PresentationDocument. + Thrown when "path" is null reference. + + + + Creates a new instance of the PresentationDocument class from the IO stream. + + The IO stream on which to create the PresentationDocument. + The type of the PresentationDocument. + Whether to auto save the created document. + A new instance of PresentationDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Write access. + + + + Creates a new instance of the PresentationDocument class from the specified package. + + The specified OpenXml package. + The type of the PresentationDocument. + Whether to auto save the created document. + A new instance of PresentationDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Write access. + + + + Creates an editable PresentationDocument from a template, opened on + a MemoryStream with expandable capacity. + + The path and file name of the template. + The new PresentationDocument based on the template. + + + + Creates a new instance of the PresentationDocument class from the specified file. + + The path and file name of the target PresentationDocument. + In ReadWrite mode. False for Read only mode. + A new instance of PresentationDocument. + Thrown when "path" is null reference. + Thrown when the package is not valid Open XML PresentationDocument. + + + + Creates a new instance of the PresentationDocument class from the IO stream. + + The IO stream on which to open the PresentationDocument. + In ReadWrite mode. False for Read only mode. + A new instance of PresentationDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML PresentationDocument. + + + + Creates a new instance of the PresentationDocument class from the specified package. + + The specified OpenXml package. + A new instance of PresentationDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML PresentationDocument. + + + + Creates a new instance of the PresentationDocument class from the specified file. + + The path and file name of the target PresentationDocument. + In ReadWrite mode. False for Read only mode. + The advanced settings for opening a document. + A new instance of PresentationDocument. + Thrown when "path" is null reference. + Thrown when the package is not valid Open XML PresentationDocument. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Creates a new instance of the PresentationDocument class from the IO stream. + + The IO stream on which to open the PresentationDocument. + In ReadWrite mode. False for Read only mode. + The advanced settings for opening a document. + A new instance of PresentationDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML PresentationDocument. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Creates a new instance of the PresentationDocument class from the specified package. + + The specified OpenXml package. + The advanced settings for opening a document. + A new instance of PresentationDocument. + Thrown when package is a null reference. + Thrown when package is not opened with read access. + Thrown when the package is not a valid Open XML document. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Changes the document type. + + The new type of the document. + The PresentationPart will be changed. + + + + Creates the PresentationPart and add it to this document. + + The newly added PresentationPart. + + + + Adds a CoreFilePropertiesPart to the PresentationDocument. + + The newly added CoreFilePropertiesPart. + + + + Adds a ExtendedFilePropertiesPart to the PresentationDocument. + + The newly added ExtendedFilePropertiesPart. + + + + Adds a CustomFilePropertiesPart to the PresentationDocument. + + The newly added CustomFilePropertiesPart. + + + + Adds a DigitalSignatureOriginPart to the PresentationDocuments. + + The newly added DigitalSignatureOriginPart. + + + + Adds a new part of type . + + The class of the part. + The content type of the part. Must match the defined content type if the part is fixed content type. + The relationship id. The id will be automatically generated if this param is null. + The added part. + When the part is not allowed to be referenced by this part. + When the part is fixed content type and the passed in contentType does not match the defined content type. + Thrown when "contentType" is null reference. + Mainly used for adding not-fixed content type part - ImagePart, etc. + + + + Add a QuickAccessToolbarCustomizationsPart to the PresentationDocument. + + The newly added QuickAccessToolbarCustomizationsPart. + + + + Add a RibbonExtensibilityPart to the PresentationDocument. + + The newly added RibbonExtensibilityPart. + + + + Add a RibbonAndBackstageCustomizationsPart to the PresentationDocument, this part is only available in Office2010. + + The newly added RibbonExtensibilityPart. + + + + Adds a WebExTaskpanesPart to the PresentationDocument, this part is only available in Office2013. + + The newly added WebExTaskpanesPart. + + + + Adds a LabelInfoPart to the PresentationDocument, this part is only available in Office2021. + + The newly added WebExTaskpanesPart. + + + + Gets the PresentationPart of the PresentationDocument. + + + + + Gets the CoreFilePropertiesPart of the PresentationDocument. + + + + + Gets the ExtendedFilePropertiesPart of the PresentationDocument. + + + + + Gets the CustomFilePropertiesPart of the PresentationDocument. + + + + + Gets the ThumbnailPart of the PresentationDocument. + + + + + Gets the DigitalSignatureOriginPart of the PresentationDocument. + + + + + Gets the RibbonExtensibilityPart of the PresentationDocument. + + + + + Gets the QuickAccessToolbarCustomizationsPart of the PresentationDocument. + + + + + Gets the RibbonAndBackstageCustomizationsPart of the PresentationDocument, only available in Office2010. + + + + + Gets the WebExTaskpanesPart of the PresentationDocument, only available in Office2013. + + + + + Gets the LabelInfoPart of the PresentationDocument, only available in Office2021. + + + + + + + + Creates a new editable instance of PresentationDocument from an + in Flat OPC format, opened on a . + + The document in Flat OPC format. + A new instance of PresentationDocument. + + + + Creates a new instance of PresentationDocument from a presentation + in Flat OPC format. + + The presentation in Flat OPC format. + The stream on which the PresentationDocument will be created. + In ReadWrite mode. False for Read only mode. + A new instance of PresentationDocument. + + + + Creates a new instance of PresentationDocument from a presentation + in Flat OPC format. + + The presentation in Flat OPC format. + The path and file name of the target PresentationDocument. + In ReadWrite mode. False for Read only mode. + A new instance of PresentationDocument. + + + + Creates a new instance of PresentationDocument from a presentation + in Flat OPC format on the specified instance of Package. + + The presentation in Flat OPC format. + The specified instance of Package. + A new instance of PresentationDocument. + + + + Creates a new instance of PresentationDocument from a string + in Flat OPC format on a with expandable + capacity. + + The string in Flat OPC format. + A new instance of PresentationDocument. + + + + Creates a new instance of PresentationDocument from a string + in Flat OPC format on a + + The string in Flat OPC format. + The on which the PresentationDocument will be created. + In ReadWrite mode. False for Read only mode. + A new instance of PresentationDocument. + + + + Creates a new instance of PresentationDocument from a string + in Flat OPC format. + + The string in Flat OPC format. + The path and file name of the target PresentationDocument. + In ReadWrite mode. False for Read only mode. + A new instance of PresentationDocument. + + + + Creates a new instance of PresentationDocument from a string + in Flat OPC format. + + The string in Flat OPC format. + The of the target PresentationDocument. + A new instance of PresentationDocument. + + + + Defines SpreadsheetDocument - an OpenXmlPackage represents a Spreadsheet document. + + + Defines the SpreadsheetDocument + + + + + Creates a default builder for + + The default builder. + + + + Creates a builder that has minimal initialization for . + + A minimal builder. + + + + Gets the default factory for . + + + + + Gets the type of the SpreadsheetDocument. + + + + + Creates a new instance of the SpreadsheetDocument class from the specified file. + + The path and file name of the target SpreadsheetDocument. + The type of the SpreadsheetDocument. + A new instance of SpreadsheetDocument. + Thrown when "path" is null reference. + + + + Creates a new instance of the SpreadsheetDocument class from the IO stream. + + The IO stream on which to create the SpreadsheetDocument. + The type of the SpreadsheetDocument. + A new instance of SpreadsheetDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Write access. + + + + Creates a new instance of the SpreadsheetDocument class from the specified package. + + The specified OpenXml package. + The type of the SpreadsheetDocument. + A new instance of SpreadsheetDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Write access. + + + + Creates a new instance of the SpreadsheetDocument class from the specified file. + + The path and file name of the target SpreadsheetDocument. + The type of the SpreadsheetDocument. + Whether to auto save the created document. + A new instance of SpreadsheetDocument. + Thrown when "path" is null reference. + + + + Creates a new instance of the SpreadsheetDocument class from the IO stream. + + The IO stream on which to create the SpreadsheetDocument. + The type of the SpreadsheetDocument. + Whether to auto save the created document. + A new instance of SpreadsheetDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Write access. + + + + Creates a new instance of the SpreadsheetDocument class from the specified package. + + The specified OpenXml package. + The type of the SpreadsheetDocument. + Whether to auto save the created document. + A new instance of SpreadsheetDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Write access. + + + + Creates an editable SpreadsheetDocument from a template, opened on + a MemoryStream with expandable capacity. + + The path and file name of the template. + The new SpreadsheetDocument based on and linked to the template. + + + + Creates a new instance of the SpreadsheetDocument class from the specified file. + + The path and file name of the target SpreadsheetDocument. + In ReadWrite mode. False for Read only mode. + The advanced settings for opening a document. + A new instance of SpreadsheetDocument. + Thrown when "path" is null reference. + Thrown when the package is not valid Open XML SpreadsheetDocument. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Creates a new instance of the SpreadsheetDocument class from the IO stream. + + The IO stream on which to open the SpreadsheetDocument. + In ReadWrite mode. False for Read only mode. + The advanced settings for opening a document. + A new instance of SpreadsheetDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML SpreadsheetDocument. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Creates a new instance of the SpreadsheetDocument class from the specified package. + + The specified OpenXml package. + The advanced settings for opening a document. + A new instance of SpreadsheetDocument. + Thrown when package is a null reference. + Thrown when package is not opened with read access. + Thrown when the package is not a valid Open XML document. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Creates a new instance of the SpreadsheetDocument class from the specified file. + + The path and file name of the target SpreadsheetDocument. + In ReadWrite mode. False for Read only mode. + A new instance of SpreadsheetDocument. + Thrown when "path" is null reference. + Thrown when the package is not valid Open XML SpreadsheetDocument. + + + + Creates a new instance of the SpreadsheetDocument class from the IO stream. + + The IO stream on which to open the SpreadsheetDocument. + In ReadWrite mode. False for Read only mode. + A new instance of SpreadsheetDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML SpreadsheetDocument. + + + + Creates a new instance of the SpreadsheetDocument class from the specified package. + + The specified OpenXml package. + A new instance of SpreadsheetDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML SpreadsheetDocument. + + + + Changes the document type. + + The new type of the document. + The WorkbookPart will be changed. + + + + Adds a new part of type . + + The class of the part. + The content type of the part. Must match the defined content type if the part is fixed content type. + The relationship id. The id will be automatically generated if this param is null. + The added part. + When the part is not allowed to be referenced by this part. + When the part is fixed content type and the passed in contentType does not match the defined content type. + Thrown when "contentType" is null reference. + Mainly used for adding not-fixed content type part - ImagePart, etc. + + + + Created the WorkbookPart and add it to this document. + + The newly added WorkbookPart. + + + + Add a CoreFilePropertiesPart to the SpreadsheetDocument. + + The newly added CoreFilePropertiesPart. + + + + Add a ExtendedFilePropertiesPart to the SpreadsheetDocument. + + The newly added ExtendedFilePropertiesPart. + + + + Add a CustomFilePropertiesPart to the SpreadsheetDocument. + + The newly added CustomFilePropertiesPart. + + + + Add a DigitalSignatureOriginPart to the SpreadsheetDocument. + + The newly added DigitalSignatureOriginPart. + + + + Adds a QuickAccessToolbarCustomizationsPart to the SpreadsheetDocument. + + The newly added QuickAccessToolbarCustomizationsPart. + + + + Adds a RibbonExtensibilityPart to the SpreadsheetDocument. + + The newly added RibbonExtensibilityPart. + + + + Adds a RibbonAndBackstageCustomizationsPart to the SpreadsheetDocument, this part is only available in Office2010. + + The newly added RibbonExtensibilityPart. + + + + Adds a WebExTaskpanesPart to the SpreadsheetDocument, this part is only available in Office2013. + + The newly added WebExTaskpanesPart. + + + + Adds a LabelInfoPart to the SpreadsheetDocument, this part is only available in Office2021. + + The newly added LabelInfoPart. + + + + Gets the WorkbookPart of the SpreadsheetDocument. + + + + + Gets the CoreFilePropertiesPart of the SpreadsheetDocument. + + + + + Gets the ExtendedFilePropertiesPart of the SpreadsheetDocument. + + + + + Gets the CustomFilePropertiesPart of the SpreadsheetDocument. + + + + + Gets the ThumbnailPart of the SpreadsheetDocument. + + + + + Gets the RibbonExtensibilityPart of the SpreadsheetDocument. + + + + + Gets the QuickAccessToolbarCustomizationsPart of the SpreadsheetDocument. + + + + + Gets the DigitalSignatureOriginPart of the SpreadsheetDocument. + + + + + Gets the RibbonAndBackstageCustomizationsPart of the SpreadsheetDocument, only available in Office2010. + + + + + Gets the WebExTaskpanesPart of the SpreadsheetDocument, only available in Office2013. + + + + + Gets the LabelInfoPart of the SpreadsheetDocument, only available in Office2021. + + + + + + + + Creates a new editable instance of SpreadsheetDocument from an + in Flat OPC format, opened on a . + + The document in Flat OPC format. + A new instance of SpreadsheetDocument. + + + + Creates a new instance of SpreadsheetDocument from a workbook + in Flat OPC format. + + The workbook in Flat OPC format. + The stream on which the SpreadsheetDocument will be created. + In ReadWrite mode. False for Read only mode. + A new instance of SpreadsheetDocument. + + + + Creates a new instance of SpreadsheetDocument from a workbook + in Flat OPC format. + + The workbook in Flat OPC format. + The path and file name of the target SpreadsheetDocument. + In ReadWrite mode. False for Read only mode. + A new instance of SpreadsheetDocument. + + + + Creates a new instance of SpreadsheetDocument from a workbook + in Flat OPC format on the specified instance of Package. + + The workbook in Flat OPC format. + The specified instance of Package. + A new instance of SpreadsheetDocument. + + + + Creates a new instance of SpreadsheetDocument from a string + in Flat OPC format on a with expandable + capacity. + + The string in Flat OPC format. + A new instance of SpreadsheetDocument. + + + + Creates a new instance of SpreadsheetDocument from a string + in Flat OPC format on a + + The string in Flat OPC format. + The on which the SpreadsheetDocument will be created. + In ReadWrite mode. False for Read only mode. + A new instance of SpreadsheetDocument. + + + + Creates a new instance of SpreadsheetDocument from a string + in Flat OPC format. + + The string in Flat OPC format. + The path and file name of the target SpreadsheetDocument. + In ReadWrite mode. False for Read only mode. + A new instance of SpreadsheetDocument. + + + + Creates a new instance of SpreadsheetDocument from a string + in Flat OPC format. + + The string in Flat OPC format. + The of the target SpreadsheetDocument. + A new instance of SpreadsheetDocument. + + + + A collection of extensions for + + + + + Sets up the to ignore any relationships if the part is not there. + + + + + Defines StylesPart. The StylesPart served as the base class of StylesWithEffectsPart and StyleDefinitionsPart. + + + + + + + + Gets the root element of this part. The DOM tree will be loaded on demand. + + + + + Gets or sets the root element of this part. + + + + + Defines ThumbnailPartType - types of ThumbnailPart. + + + + + Defines type information for JPEG/JIFF Image (.jpeg) thumbnail part. + + + + + Defines type information for Extended (Enhanced) Windows Metafile Format (.emf) thumbnail part. + + + + + Defines type information for Windows Metafile (.wmf) thumbnail part. + + + + + An implementation of that provides strongly-typed services. + + + + + An implementation that is used to provide information for strongly typed . + + + + + Defines WordprocessingDocument - an OpenXmlPackage represents a Word document. + + + Defines WordprocessingDocument - an OpenXmlPackage represents a Word document. + + + Defines the WordprocessingDocument + + + + + Creates a default builder for + + The default builder. + + + + Creates a builder that has minimal initialization for . + + A minimal builder. + + + + Gets the default factory for . + + + + + Gets the type of the WordprocessingDocument. + + + + + Creates a new instance of the WordprocessingDocument class from the specified file. + + The path and file name of the target WordprocessingDocument. + The type of the WordprocessingDocument. + A new instance of WordprocessingDocument. + Thrown when "path" is null reference. + + + + Creates a new instance of the WordprocessingDocument class from the IO stream. + + The IO stream on which to create the WordprocessingDocument. + The type of the WordprocessingDocument. + A new instance of WordprocessingDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Write access. + + + + Creates a new instance of the WordprocessingDocument class from the specified package. + + The specified OpenXml package. + The type of the WordprocessingDocument. + A new instance of WordprocessingDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Write access. + + + + Creates a new instance of the WordprocessingDocument class from the specified file. + + The path and file name of the target WordprocessingDocument. + The type of the WordprocessingDocument. + Whether to auto save the created document. + A new instance of WordprocessingDocument. + Thrown when "path" is null reference. + + + + Creates a new instance of the WordprocessingDocument class from the IO stream. + + The IO stream on which to create the WordprocessingDocument. + The type of the WordprocessingDocument. + Whether to auto save the created document. + A new instance of WordprocessingDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Write access. + + + + Creates a new instance of the WordprocessingDocument class from the specified package. + + The specified OpenXml package + The type of the WordprocessingDocument. + Whether to auto save the created document. + A new instance of WordprocessingDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Write access. + + + + Creates an editable WordprocessingDocument from a template, opened on + a MemoryStream with expandable capacity. The template will be attached + to the WordprocessingDocument. + + + Attaching the template has been chosen as the default behavior because + this is also what happens when a document is created from a template + (other than Normal.dotm) using Microsoft Word. + + The path and file name of the template. + The new WordprocessingDocument based on and linked to the template. + + + + Creates an editable WordprocessingDocument from a template, opened on + a MemoryStream with expandable capacity. + + + This method is provided to offer the choice to not attach the template. + When templates are attached in Microsoft Word, for example, the absolute + path will be used in the relationship. These absolute paths are most + often user-specific, however, so once documents are shared with other + users, the relationship gets "broken" anyhow. + + The path and file name of the template. + True, if the template should be attached to the document. + The new WordprocessingDocument based on and linked to the template. + + + + Creates a new instance of the WordprocessingDocument class from the specified file. + + The path and file name of the target WordprocessingDocument. + In ReadWrite mode. False for Read only mode. + A new instance of WordprocessingDocument. + Thrown when "path" is null reference. + Thrown when the package is not valid Open XML WordprocessingDocument. + + + + Creates a new instance of the WordprocessingDocument class from the IO stream. + + The IO stream on which to open the WordprocessingDocument. + In ReadWrite mode. False for Read only mode. + A new instance of WordprocessingDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML WordprocessingDocument. + + + + Creates a new instance of the WordprocessingDocument class from the specified file. + + The path and file name of the target WordprocessingDocument. + In ReadWrite mode. False for Read only mode. + The advanced settings for opening a document. + A new instance of WordprocessingDocument. + Thrown when "path" is null reference. + Thrown when the package is not valid Open XML WordprocessingDocument. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Creates a new instance of the WordprocessingDocument class from the IO stream. + + The IO stream on which to open the WordprocessingDocument. + In ReadWrite mode. False for Read only mode. + The advanced settings for opening a document. + A new instance of WordprocessingDocument. + Thrown when "stream" is null reference. + Thrown when "stream" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML WordprocessingDocument. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Creates a new instance of the WordprocessingDocument class from the specified package. + + The specified OpenXml package + The advanced settings for opening a document. + A new instance of WordprocessingDocument. + Thrown when package is a null reference. + Thrown when package is not opened with read access. + Thrown when the package is not a valid Open XML document. + Thrown when specified to process the markup compatibility but the given target FileFormatVersion is incorrect. + + + + Creates a new instance of the WordprocessingDocument class from the specified package. + + The specified OpenXml package. + A new instance of WordprocessingDocument. + Thrown when "package" is null reference. + Thrown when "package" is not opened with Read (ReadWrite) access. + Thrown when the package is not valid Open XML WordprocessingDocument. + + + + Changes the document type. + + The new type of the document. + The MainDocumentPart will be changed. + + + + Adds a new part of type . + + The class of the part. + The content type of the part. Must match the defined content type if the part is fixed content type. + The relationship id. The id will be automatically generated if this param is null. + The added part. + When the part is not allowed to be referenced by this part. + When the part is fixed content type and the passed in contentType does not match the defined content type. + Thrown when "contentType" is null reference. + Mainly used for adding not-fixed content type part - ImagePart, etc + + + + Creates the MainDocumentPart and add it to this document. + + The newly added MainDocumentPart. + + + + Adds a CoreFilePropertiesPart to the WordprocessingDocument. + + The newly added CoreFilePropertiesPart. + + + + Adds a ExtendedFilePropertiesPart to the WordprocessingDocument. + + The newly added ExtendedFilePropertiesPart. + + + + Adds a CustomFilePropertiesPart to the WordprocessingDocument. + + The newly added CustomFilePropertiesPart. + + + + Adds a DigitalSignatureOriginPart to the WordprocessingDocument. + + The newly added DigitalSignatureOriginPart. + + + + Adds a QuickAccessToolbarCustomizationsPart to the WordprocessingDocument. + + The newly added QuickAccessToolbarCustomizationsPart. + + + + Adds a RibbonExtensibilityPart to the WordprocessingDocument. + + The newly added RibbonExtensibilityPart. + + + + Adds a RibbonAndBackstageCustomizationsPart to the WordprocessingDocument, this part is only available in Office2010. + + The newly added RibbonExtensibilityPart. + + + + Adds a WebExTaskpanesPart to the WordprocessingDocument, this part is only available in Office2013. + + The newly added WebExTaskpanesPart. + + + + Adds a LabelInfoPart to the WordprocessingDocument, this part is only available in Office2021. + + The newly added LabelInfoPart. + + + + Gets the MainDocumentPart of the WordprocessingDocument. + + + + + Gets the CoreFilePropertiesPart of the WordprocessingDocument. + + + + + Gets the ExtendedFilePropertiesPart of the WordprocessingDocument. + + + + + Gets the CustomFilePropertiesPart of the WordprocessingDocument. + + + + + Gets the ThumbnailPart of the WordprocessingDocument. + + + + + Gets the DigitalSignatureOriginPart of the WordprocessingDocument. + + + + + Gets the RibbonExtensibilityPart of the WordprocessingDocument. + + + + + Gets the QuickAccessToolbarCustomizationsPart of the WordprocessingDocument. + + + + + Gets the RibbonAndBackstageCustomizationsPart of the WordprocessingDocument, only available in Office2010. + + + + + Gets the WebExTaskpanesPart of the WordprocessingDocument, only available in Office2013. + + + + + Gets the LabelInfoPart of the WordprocessingDocument, only available in Office2021. + + + + + + + + Creates a new editable instance of WordprocessingDocument from an + in Flat OPC format, opened on a . + + The document in Flat OPC format. + A new instance of WordprocessingDocument. + + + + Creates a new instance of WordprocessingDocument from an + in Flat OPC format. + + The document in Flat OPC format. + The on which the WordprocessingDocument will be created. + In ReadWrite mode. False for Read only mode. + A new instance of WordprocessingDocument. + + + + Creates a new instance of WordprocessingDocument from an + in Flat OPC format. + + The document in Flat OPC format. + The path and file name of the target WordprocessingDocument. + In ReadWrite mode. False for Read only mode. + A new instance of WordprocessingDocument. + + + + Creates a new instance of WordprocessingDocument from an + in Flat OPC format. + + The document in Flat OPC format. + The of the target WordprocessingDocument. + A new instance of WordprocessingDocument. + + + + Creates a new instance of WordprocessingDocument from a string + in Flat OPC format on a with expandable + capacity. + + The string in Flat OPC format. + A new instance of WordprocessingDocument. + + + + Creates a new instance of WordprocessingDocument from a string + in Flat OPC format on a + + The string in Flat OPC format. + The on which the WordprocessingDocument will be created. + In ReadWrite mode. False for Read only mode. + A new instance of WordprocessingDocument. + + + + Creates a new instance of WordprocessingDocument from a string + in Flat OPC format. + + The string in Flat OPC format. + The path and file name of the target WordprocessingDocument. + In ReadWrite mode. False for Read only mode. + A new instance of WordprocessingDocument. + + + + Creates a new instance of WordprocessingDocument from a string + in Flat OPC format. + + The string in Flat OPC format. + The of the target WordprocessingDocument. + A new instance of WordprocessingDocument. + + + + Defines the AlternativeFormatImportPart + + + + + Creates an instance of the AlternativeFormatImportPart OpenXmlType + + + + + + + + + + + Defines the CalculationChainPart + + + + + Creates an instance of the CalculationChainPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the CellMetadataPart + + + + + Creates an instance of the CellMetadataPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the ChartColorStylePart + + + + + Creates an instance of the ChartColorStylePart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the ChartDrawingPart + + + + + Creates an instance of the ChartDrawingPart OpenXmlType + + + + + Gets the ChartPart of the ChartDrawingPart + + + + + + + + Gets the ExtendedChartPart of the ChartDrawingPart + + + + + Gets the ImageParts of the ChartDrawingPart + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the ChartPart + + + + + Creates an instance of the ChartPart OpenXmlType + + + + + Gets the ChartColorStyleParts of the ChartPart + + + + + Gets the ChartDrawingPart of the ChartPart + + + + + Gets or sets the root element of this part. + + + + + Gets the ChartStyleParts of the ChartPart + + + + + + + + Gets the EmbeddedPackagePart of the ChartPart + + + + + Gets the ImageParts of the ChartPart + + + + + + + + Gets the ThemeOverridePart of the ChartPart + + + + + + + + Defines the ChartsheetPart + + + + + Creates an instance of the ChartsheetPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + Gets the DrawingsPart of the ChartsheetPart + + + + + Gets the ImageParts of the ChartsheetPart + + + + + + + + Gets the SpreadsheetPrinterSettingsParts of the ChartsheetPart + + + + + Gets the VmlDrawingParts of the ChartsheetPart + + + + + + + + Defines the ChartStylePart + + + + + Creates an instance of the ChartStylePart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the CommentAuthorsPart + + + + + Creates an instance of the CommentAuthorsPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the ConnectionsPart + + + + + Creates an instance of the ConnectionsPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the ControlPropertiesPart + + + + + Creates an instance of the ControlPropertiesPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the CoreFilePropertiesPart + + + + + Creates an instance of the CoreFilePropertiesPart OpenXmlType + + + + + + + + + + + + + + Defines the CustomDataPart + + + + + Creates an instance of the CustomDataPart OpenXmlType + + + + + + + + + + + + + + Defines the CustomDataPropertiesPart + + + + + Creates an instance of the CustomDataPropertiesPart OpenXmlType + + + + + + + + Gets the CustomDataPart of the CustomDataPropertiesPart + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the CustomFilePropertiesPart + + + + + Creates an instance of the CustomFilePropertiesPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the CustomizationPart + + + + + Creates an instance of the CustomizationPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the WordAttachedToolbarsPart of the CustomizationPart + + + + + + + + Defines the CustomPropertyPart + + + + + Creates an instance of the CustomPropertyPart OpenXmlType + + + + + + + + + + + Defines the CustomXmlMappingsPart + + + + + Creates an instance of the CustomXmlMappingsPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the CustomXmlPart + + + + + Creates an instance of the CustomXmlPart OpenXmlType + + + + + Gets the CustomXmlPropertiesPart of the CustomXmlPart + + + + + + + + + + + Defines the CustomXmlPropertiesPart + + + + + Creates an instance of the CustomXmlPropertiesPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the DiagramColorsPart + + + + + Creates an instance of the DiagramColorsPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the DiagramDataPart + + + + + Creates an instance of the DiagramDataPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the ImageParts of the DiagramDataPart + + + + + + + + Gets the SlideParts of the DiagramDataPart + + + + + Gets the WorksheetParts of the DiagramDataPart + + + + + + + + Defines the DiagramLayoutDefinitionPart + + + + + Creates an instance of the DiagramLayoutDefinitionPart OpenXmlType + + + + + + + + Gets the ImageParts of the DiagramLayoutDefinitionPart + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the DiagramPersistLayoutPart + + + + + Creates an instance of the DiagramPersistLayoutPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the ImageParts of the DiagramPersistLayoutPart + + + + + + + + + + + Defines the DiagramStylePart + + + + + Creates an instance of the DiagramStylePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the DialogsheetPart + + + + + Creates an instance of the DialogsheetPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the DrawingsPart of the DialogsheetPart + + + + + Gets the EmbeddedObjectParts of the DialogsheetPart + + + + + + + + Gets the SpreadsheetPrinterSettingsParts of the DialogsheetPart + + + + + Gets the VmlDrawingParts of the DialogsheetPart + + + + + + + + Defines the DigitalSignatureOriginPart + + + + + Creates an instance of the DigitalSignatureOriginPart OpenXmlType + + + + + + + + + + + Gets the XmlSignatureParts of the DigitalSignatureOriginPart + + + + + + + + Defines the DocumentSettingsPart + + + + + Creates an instance of the DocumentSettingsPart OpenXmlType + + + + + + + + Gets the ImageParts of the DocumentSettingsPart + + + + + Gets the MailMergeRecipientDataPart of the DocumentSettingsPart + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the DocumentTasksPart + + + + + Creates an instance of the DocumentTasksPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the DrawingsPart + + + + + Creates an instance of the DrawingsPart OpenXmlType + + + + + Gets the ChartParts of the DrawingsPart + + + + + + + + Gets the CustomXmlParts of the DrawingsPart + + + + + Gets the DiagramColorsParts of the DrawingsPart + + + + + Gets the DiagramDataParts of the DrawingsPart + + + + + Gets the DiagramLayoutDefinitionParts of the DrawingsPart + + + + + Gets the DiagramPersistLayoutParts of the DrawingsPart + + + + + Gets the DiagramStyleParts of the DrawingsPart + + + + + Gets the ExtendedChartParts of the DrawingsPart + + + + + Gets the ImageParts of the DrawingsPart + + + + + + + + Gets the WebExtensionParts of the DrawingsPart + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the EmbeddedControlPersistenceBinaryDataPart + + + + + Creates an instance of the EmbeddedControlPersistenceBinaryDataPart OpenXmlType + + + + + + + + + + + Defines the EmbeddedControlPersistencePart + + + + + Creates an instance of the EmbeddedControlPersistencePart OpenXmlType + + + + + Gets the EmbeddedControlPersistenceBinaryDataParts of the EmbeddedControlPersistencePart + + + + + + + + + + + Defines the EmbeddedObjectPart + + + + + Creates an instance of the EmbeddedObjectPart OpenXmlType + + + + + + + + + + + Defines the EmbeddedPackagePart + + + + + Creates an instance of the EmbeddedPackagePart OpenXmlType + + + + + + + + + + + Defines the EndnotesPart + + + + + Creates an instance of the EndnotesPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the EndnotesPart + + + + + Gets the ChartParts of the EndnotesPart + + + + + + + + Gets the DiagramColorsParts of the EndnotesPart + + + + + Gets the DiagramDataParts of the EndnotesPart + + + + + Gets the DiagramLayoutDefinitionParts of the EndnotesPart + + + + + Gets the DiagramPersistLayoutParts of the EndnotesPart + + + + + Gets the DiagramStyleParts of the EndnotesPart + + + + + Gets the EmbeddedControlPersistenceParts of the EndnotesPart + + + + + Gets the EmbeddedObjectParts of the EndnotesPart + + + + + Gets the EmbeddedPackageParts of the EndnotesPart + + + + + Gets or sets the root element of this part. + + + + + Gets the ExtendedChartParts of the EndnotesPart + + + + + Gets the ImageParts of the EndnotesPart + + + + + Gets the Model3DReferenceRelationshipParts of the EndnotesPart + + + + + + + + Adds a VideoReferenceRelationship to the EndnotesPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the EndnotesPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the ExcelAttachedToolbarsPart + + + + + Creates an instance of the ExcelAttachedToolbarsPart OpenXmlType + + + + + + + + + + + + + + Defines the ExtendedChartPart + + + + + Creates an instance of the ExtendedChartPart OpenXmlType + + + + + Gets the ChartColorStyleParts of the ExtendedChartPart + + + + + Gets the ChartDrawingPart of the ExtendedChartPart + + + + + Gets or sets the root element of this part. + + + + + Gets the ChartStyleParts of the ExtendedChartPart + + + + + + + + Gets the EmbeddedPackagePart of the ExtendedChartPart + + + + + Gets the ImageParts of the ExtendedChartPart + + + + + + + + Gets the ThemeOverridePart of the ExtendedChartPart + + + + + + + + Defines the ExtendedFilePropertiesPart + + + + + Creates an instance of the ExtendedFilePropertiesPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the ExternalWorkbookPart + + + + + Creates an instance of the ExternalWorkbookPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the FeaturePropertyBagsPart + + + + + Creates an instance of the FeaturePropertyBagsPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the FontPart + + + + + Creates an instance of the FontPart OpenXmlType + + + + + + + + + + + Defines the FontTablePart + + + + + Creates an instance of the FontTablePart OpenXmlType + + + + + + + + Gets the FontParts of the FontTablePart + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the FooterPart + + + + + Creates an instance of the FooterPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the FooterPart + + + + + Gets the ChartParts of the FooterPart + + + + + + + + Gets the DiagramColorsParts of the FooterPart + + + + + Gets the DiagramDataParts of the FooterPart + + + + + Gets the DiagramLayoutDefinitionParts of the FooterPart + + + + + Gets the DiagramPersistLayoutParts of the FooterPart + + + + + Gets the DiagramStyleParts of the FooterPart + + + + + Gets the EmbeddedControlPersistenceParts of the FooterPart + + + + + Gets the EmbeddedObjectParts of the FooterPart + + + + + Gets the EmbeddedPackageParts of the FooterPart + + + + + Gets the ExtendedChartParts of the FooterPart + + + + + Gets or sets the root element of this part. + + + + + Gets the ImageParts of the FooterPart + + + + + Gets the Model3DReferenceRelationshipParts of the FooterPart + + + + + + + + Adds a VideoReferenceRelationship to the FooterPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the FooterPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the FootnotesPart + + + + + Creates an instance of the FootnotesPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the FootnotesPart + + + + + Gets the ChartParts of the FootnotesPart + + + + + + + + Gets the DiagramColorsParts of the FootnotesPart + + + + + Gets the DiagramDataParts of the FootnotesPart + + + + + Gets the DiagramLayoutDefinitionParts of the FootnotesPart + + + + + Gets the DiagramPersistLayoutParts of the FootnotesPart + + + + + Gets the DiagramStyleParts of the FootnotesPart + + + + + Gets the EmbeddedControlPersistenceParts of the FootnotesPart + + + + + Gets the EmbeddedObjectParts of the FootnotesPart + + + + + Gets the EmbeddedPackageParts of the FootnotesPart + + + + + Gets the ExtendedChartParts of the FootnotesPart + + + + + Gets or sets the root element of this part. + + + + + Gets the ImageParts of the FootnotesPart + + + + + Gets the Model3DReferenceRelationshipParts of the FootnotesPart + + + + + + + + Adds a VideoReferenceRelationship to the FootnotesPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the FootnotesPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the GlossaryDocumentPart + + + + + Creates an instance of the GlossaryDocumentPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the GlossaryDocumentPart + + + + + Gets the ChartParts of the GlossaryDocumentPart + + + + + + + + Gets the CustomizationPart of the GlossaryDocumentPart + + + + + Gets the DiagramColorsParts of the GlossaryDocumentPart + + + + + Gets the DiagramDataParts of the GlossaryDocumentPart + + + + + Gets the DiagramLayoutDefinitionParts of the GlossaryDocumentPart + + + + + Gets the DiagramPersistLayoutParts of the GlossaryDocumentPart + + + + + Gets the DiagramStyleParts of the GlossaryDocumentPart + + + + + Gets the DocumentSettingsPart of the GlossaryDocumentPart + + + + + Gets the DocumentTasksPart of the GlossaryDocumentPart + + + + + Gets the EmbeddedControlPersistenceParts of the GlossaryDocumentPart + + + + + Gets the EmbeddedObjectParts of the GlossaryDocumentPart + + + + + Gets the EmbeddedPackageParts of the GlossaryDocumentPart + + + + + Gets the EndnotesPart of the GlossaryDocumentPart + + + + + Gets the ExtendedChartParts of the GlossaryDocumentPart + + + + + Gets the FontTablePart of the GlossaryDocumentPart + + + + + Gets the FooterParts of the GlossaryDocumentPart + + + + + Gets the FootnotesPart of the GlossaryDocumentPart + + + + + Gets or sets the root element of this part. + + + + + Gets the HeaderParts of the GlossaryDocumentPart + + + + + Gets the ImageParts of the GlossaryDocumentPart + + + + + Gets the Model3DReferenceRelationshipParts of the GlossaryDocumentPart + + + + + Gets the NumberingDefinitionsPart of the GlossaryDocumentPart + + + + + + + + Gets the StyleDefinitionsPart of the GlossaryDocumentPart + + + + + Gets the StylesWithEffectsPart of the GlossaryDocumentPart + + + + + Gets the VbaProjectPart of the GlossaryDocumentPart + + + + + Gets the WebSettingsPart of the GlossaryDocumentPart + + + + + Gets the WordCommentsExtensiblePart of the GlossaryDocumentPart + + + + + Gets the WordprocessingCommentsExPart of the GlossaryDocumentPart + + + + + Gets the WordprocessingCommentsIdsPart of the GlossaryDocumentPart + + + + + Gets the WordprocessingCommentsPart of the GlossaryDocumentPart + + + + + Gets the WordprocessingPeoplePart of the GlossaryDocumentPart + + + + + Gets the WordprocessingPrinterSettingsParts of the GlossaryDocumentPart + + + + + Adds a VideoReferenceRelationship to the GlossaryDocumentPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the GlossaryDocumentPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the HandoutMasterPart + + + + + Creates an instance of the HandoutMasterPart OpenXmlType + + + + + Gets the ChartParts of the HandoutMasterPart + + + + + + + + Gets the CustomXmlParts of the HandoutMasterPart + + + + + Gets the DiagramColorsParts of the HandoutMasterPart + + + + + Gets the DiagramDataParts of the HandoutMasterPart + + + + + Gets the DiagramLayoutDefinitionParts of the HandoutMasterPart + + + + + Gets the DiagramPersistLayoutParts of the HandoutMasterPart + + + + + Gets the DiagramStyleParts of the HandoutMasterPart + + + + + Gets the EmbeddedControlPersistenceBinaryDataParts of the HandoutMasterPart + + + + + Gets the EmbeddedObjectParts of the HandoutMasterPart + + + + + Gets the EmbeddedPackageParts of the HandoutMasterPart + + + + + Gets the ExtendedChartParts of the HandoutMasterPart + + + + + Gets or sets the root element of this part. + + + + + Gets the ImageParts of the HandoutMasterPart + + + + + Gets the Model3DReferenceRelationshipParts of the HandoutMasterPart + + + + + + + + Gets the SlidePart of the HandoutMasterPart + + + + + Gets the ThemePart of the HandoutMasterPart + + + + + Gets the UserDefinedTagsParts of the HandoutMasterPart + + + + + Gets the VmlDrawingParts of the HandoutMasterPart + + + + + Adds a AudioReferenceRelationship to the HandoutMasterPart + + The part type of the AudioReferenceRelationship + The newly added part + + + + Adds a AudioReferenceRelationship to the HandoutMasterPart + + The part type of the AudioReferenceRelationship + The relationship id + The newly added part + + + + Adds a VideoReferenceRelationship to the HandoutMasterPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the HandoutMasterPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the HeaderPart + + + + + Creates an instance of the HeaderPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the HeaderPart + + + + + Gets the ChartParts of the HeaderPart + + + + + + + + Gets the DiagramColorsParts of the HeaderPart + + + + + Gets the DiagramDataParts of the HeaderPart + + + + + Gets the DiagramLayoutDefinitionParts of the HeaderPart + + + + + Gets the DiagramPersistLayoutParts of the HeaderPart + + + + + Gets the DiagramStyleParts of the HeaderPart + + + + + Gets the EmbeddedControlPersistenceParts of the HeaderPart + + + + + Gets the EmbeddedObjectParts of the HeaderPart + + + + + Gets the EmbeddedPackageParts of the HeaderPart + + + + + Gets the ExtendedChartParts of the HeaderPart + + + + + Gets or sets the root element of this part. + + + + + Gets the ImageParts of the HeaderPart + + + + + Gets the Model3DReferenceRelationshipParts of the HeaderPart + + + + + + + + Adds a VideoReferenceRelationship to the HeaderPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the HeaderPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the ImagePart + + + + + Creates an instance of the ImagePart OpenXmlType + + + + + + + + + + + Defines the InternationalMacroSheetPart + + + + + Creates an instance of the InternationalMacroSheetPart OpenXmlType + + + + + + + + Gets the CustomPropertyParts of the InternationalMacroSheetPart + + + + + Gets the DrawingsPart of the InternationalMacroSheetPart + + + + + Gets the EmbeddedObjectParts of the InternationalMacroSheetPart + + + + + Gets the EmbeddedPackageParts of the InternationalMacroSheetPart + + + + + Gets the ImageParts of the InternationalMacroSheetPart + + + + + + + + Gets the SpreadsheetPrinterSettingsParts of the InternationalMacroSheetPart + + + + + Gets the VmlDrawingParts of the InternationalMacroSheetPart + + + + + Gets the WorksheetCommentsPart of the InternationalMacroSheetPart + + + + + + + + Defines the LabelInfoPart + + + + + Creates an instance of the LabelInfoPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the LegacyDiagramTextInfoPart + + + + + Creates an instance of the LegacyDiagramTextInfoPart OpenXmlType + + + + + + + + + + + + + + Defines the LegacyDiagramTextPart + + + + + Creates an instance of the LegacyDiagramTextPart OpenXmlType + + + + + + + + + + + + + + Defines the MacroSheetPart + + + + + Creates an instance of the MacroSheetPart OpenXmlType + + + + + + + + Gets the CustomPropertyParts of the MacroSheetPart + + + + + Gets the DrawingsPart of the MacroSheetPart + + + + + Gets the EmbeddedObjectParts of the MacroSheetPart + + + + + Gets the EmbeddedPackageParts of the MacroSheetPart + + + + + Gets the ImageParts of the MacroSheetPart + + + + + Gets or sets the root element of this part. + + + + + + + + Gets the SpreadsheetPrinterSettingsParts of the MacroSheetPart + + + + + Gets the VmlDrawingParts of the MacroSheetPart + + + + + Gets the WorksheetCommentsPart of the MacroSheetPart + + + + + + + + Defines the MainDocumentPart + + + + + Creates an instance of the MainDocumentPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the MainDocumentPart + + + + + Gets the ChartParts of the MainDocumentPart + + + + + Gets the CustomizationPart of the MainDocumentPart + + + + + Gets the CustomXmlParts of the MainDocumentPart + + + + + Gets the DiagramColorsParts of the MainDocumentPart + + + + + Gets the DiagramDataParts of the MainDocumentPart + + + + + Gets the DiagramLayoutDefinitionParts of the MainDocumentPart + + + + + Gets the DiagramPersistLayoutParts of the MainDocumentPart + + + + + Gets the DiagramStyleParts of the MainDocumentPart + + + + + Gets or sets the root element of this part. + + + + + Gets the DocumentSettingsPart of the MainDocumentPart + + + + + Gets the DocumentTasksPart of the MainDocumentPart + + + + + Gets the EmbeddedControlPersistenceParts of the MainDocumentPart + + + + + Gets the EmbeddedObjectParts of the MainDocumentPart + + + + + Gets the EmbeddedPackageParts of the MainDocumentPart + + + + + Gets the EndnotesPart of the MainDocumentPart + + + + + Gets the ExtendedChartParts of the MainDocumentPart + + + + + Gets the FontTablePart of the MainDocumentPart + + + + + Gets the FooterParts of the MainDocumentPart + + + + + Gets the FootnotesPart of the MainDocumentPart + + + + + Gets the GlossaryDocumentPart of the MainDocumentPart + + + + + Gets the HeaderParts of the MainDocumentPart + + + + + Gets the ImageParts of the MainDocumentPart + + + + + Gets the Model3DReferenceRelationshipParts of the MainDocumentPart + + + + + Gets the NumberingDefinitionsPart of the MainDocumentPart + + + + + + + + Gets the StyleDefinitionsPart of the MainDocumentPart + + + + + Gets the StylesWithEffectsPart of the MainDocumentPart + + + + + Gets the ThemePart of the MainDocumentPart + + + + + Gets the ThumbnailPart of the MainDocumentPart + + + + + Gets the VbaProjectPart of the MainDocumentPart + + + + + Gets the WebSettingsPart of the MainDocumentPart + + + + + Gets the WordCommentsExtensiblePart of the MainDocumentPart + + + + + Gets the WordprocessingCommentsExPart of the MainDocumentPart + + + + + Gets the WordprocessingCommentsIdsPart of the MainDocumentPart + + + + + Gets the WordprocessingCommentsPart of the MainDocumentPart + + + + + Gets the WordprocessingPeoplePart of the MainDocumentPart + + + + + Gets the WordprocessingPrinterSettingsParts of the MainDocumentPart + + + + + Adds a VideoReferenceRelationship to the MainDocumentPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the MainDocumentPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the NamedSheetViewsPart + + + + + Creates an instance of the NamedSheetViewsPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the NotesMasterPart + + + + + Creates an instance of the NotesMasterPart OpenXmlType + + + + + Gets the ChartParts of the NotesMasterPart + + + + + + + + Gets the CustomXmlParts of the NotesMasterPart + + + + + Gets the DiagramColorsParts of the NotesMasterPart + + + + + Gets the DiagramDataParts of the NotesMasterPart + + + + + Gets the DiagramLayoutDefinitionParts of the NotesMasterPart + + + + + Gets the DiagramPersistLayoutParts of the NotesMasterPart + + + + + Gets the DiagramStyleParts of the NotesMasterPart + + + + + Gets the EmbeddedControlPersistenceBinaryDataParts of the NotesMasterPart + + + + + Gets the EmbeddedObjectParts of the NotesMasterPart + + + + + Gets the EmbeddedPackageParts of the NotesMasterPart + + + + + Gets the ExtendedChartParts of the NotesMasterPart + + + + + Gets the ImageParts of the NotesMasterPart + + + + + Gets the Model3DReferenceRelationshipParts of the NotesMasterPart + + + + + Gets or sets the root element of this part. + + + + + + + + Gets the SlidePart of the NotesMasterPart + + + + + Gets the ThemePart of the NotesMasterPart + + + + + Gets the UserDefinedTagsParts of the NotesMasterPart + + + + + Gets the VmlDrawingParts of the NotesMasterPart + + + + + Adds a AudioReferenceRelationship to the NotesMasterPart + + The part type of the AudioReferenceRelationship + The newly added part + + + + Adds a AudioReferenceRelationship to the NotesMasterPart + + The part type of the AudioReferenceRelationship + The relationship id + The newly added part + + + + Adds a VideoReferenceRelationship to the NotesMasterPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the NotesMasterPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the NotesSlidePart + + + + + Creates an instance of the NotesSlidePart OpenXmlType + + + + + Gets the ChartParts of the NotesSlidePart + + + + + + + + Gets the CustomXmlParts of the NotesSlidePart + + + + + Gets the DiagramColorsParts of the NotesSlidePart + + + + + Gets the DiagramDataParts of the NotesSlidePart + + + + + Gets the DiagramLayoutDefinitionParts of the NotesSlidePart + + + + + Gets the DiagramPersistLayoutParts of the NotesSlidePart + + + + + Gets the DiagramStyleParts of the NotesSlidePart + + + + + Gets the EmbeddedControlPersistenceBinaryDataParts of the NotesSlidePart + + + + + Gets the EmbeddedObjectParts of the NotesSlidePart + + + + + Gets the EmbeddedPackageParts of the NotesSlidePart + + + + + Gets the ExtendedChartParts of the NotesSlidePart + + + + + Gets the ImageParts of the NotesSlidePart + + + + + Gets the Model3DReferenceRelationshipParts of the NotesSlidePart + + + + + Gets the NotesMasterPart of the NotesSlidePart + + + + + Gets or sets the root element of this part. + + + + + + + + Gets the SlidePart of the NotesSlidePart + + + + + Gets the ThemeOverridePart of the NotesSlidePart + + + + + Gets the UserDefinedTagsParts of the NotesSlidePart + + + + + Gets the VmlDrawingParts of the NotesSlidePart + + + + + Adds a AudioReferenceRelationship to the NotesSlidePart + + The part type of the AudioReferenceRelationship + The newly added part + + + + Adds a AudioReferenceRelationship to the NotesSlidePart + + The part type of the AudioReferenceRelationship + The relationship id + The newly added part + + + + Adds a VideoReferenceRelationship to the NotesSlidePart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the NotesSlidePart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the NumberingDefinitionsPart + + + + + Creates an instance of the NumberingDefinitionsPart OpenXmlType + + + + + + + + Gets the ImageParts of the NumberingDefinitionsPart + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the PivotTableCacheDefinitionPart + + + + + Creates an instance of the PivotTableCacheDefinitionPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the PivotTableCacheRecordsPart of the PivotTableCacheDefinitionPart + + + + + + + + + + + Defines the PivotTableCacheRecordsPart + + + + + Creates an instance of the PivotTableCacheRecordsPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the PivotTablePart + + + + + Creates an instance of the PivotTablePart OpenXmlType + + + + + + + + Gets the PivotTableCacheDefinitionPart of the PivotTablePart + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the PowerPointAuthorsPart + + + + + Creates an instance of the PowerPointAuthorsPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the PowerPointCommentPart + + + + + Creates an instance of the PowerPointCommentPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the PresentationPart + + + + + Creates an instance of the PresentationPart OpenXmlType + + + + + Gets the authorsPart of the PresentationPart + + + + + Gets the CommentAuthorsPart of the PresentationPart + + + + + Gets the commentParts of the PresentationPart + + + + + Gets the CustomXmlParts of the PresentationPart + + + + + Gets the FontParts of the PresentationPart + + + + + Gets the HandoutMasterPart of the PresentationPart + + + + + Gets the LegacyDiagramTextInfoPart of the PresentationPart + + + + + Gets the NotesMasterPart of the PresentationPart + + + + + Gets or sets the root element of this part. + + + + + Gets the PresentationPropertiesPart of the PresentationPart + + + + + + + + Gets the SlideMasterParts of the PresentationPart + + + + + Gets the SlideParts of the PresentationPart + + + + + Gets the TableStylesPart of the PresentationPart + + + + + Gets the ThemePart of the PresentationPart + + + + + Gets the UserDefinedTagsPart of the PresentationPart + + + + + Gets the VbaProjectPart of the PresentationPart + + + + + Gets the ViewPropertiesPart of the PresentationPart + + + + + + + + Defines the PresentationPropertiesPart + + + + + Creates an instance of the PresentationPropertiesPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the QueryTablePart + + + + + Creates an instance of the QueryTablePart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the QuickAccessToolbarCustomizationsPart + + + + + Creates an instance of the QuickAccessToolbarCustomizationsPart OpenXmlType + + + + + + + + + + + + + + Defines the RdArrayPart + + + + + Creates an instance of the RdArrayPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the RdRichValuePart + + + + + Creates an instance of the RdRichValuePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the RdRichValueStructurePart + + + + + Creates an instance of the RdRichValueStructurePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the RdRichValueTypesPart + + + + + Creates an instance of the RdRichValueTypesPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the RdRichValueWebImagePart + + + + + Creates an instance of the RdRichValueWebImagePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the RdSupportingPropertyBagPart + + + + + Creates an instance of the RdSupportingPropertyBagPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the RdSupportingPropertyBagStructurePart + + + + + Creates an instance of the RdSupportingPropertyBagStructurePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the RibbonAndBackstageCustomizationsPart + + + + + Creates an instance of the RibbonAndBackstageCustomizationsPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the ImageParts of the RibbonAndBackstageCustomizationsPart + + + + + + + + + + + Defines the RibbonExtensibilityPart + + + + + Creates an instance of the RibbonExtensibilityPart OpenXmlType + + + + + + + + Gets the ImageParts of the RibbonExtensibilityPart + + + + + + + + + + + Defines the RichStylesPart + + + + + Creates an instance of the RichStylesPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the SharedStringTablePart + + + + + Creates an instance of the SharedStringTablePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the SingleCellTablePart + + + + + Creates an instance of the SingleCellTablePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the SlicerCachePart + + + + + Creates an instance of the SlicerCachePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the SlicersPart + + + + + Creates an instance of the SlicersPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the SlideCommentsPart + + + + + Creates an instance of the SlideCommentsPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the SlideLayoutPart + + + + + Creates an instance of the SlideLayoutPart OpenXmlType + + + + + Gets the ChartParts of the SlideLayoutPart + + + + + + + + Gets the CustomXmlParts of the SlideLayoutPart + + + + + Gets the DiagramColorsParts of the SlideLayoutPart + + + + + Gets the DiagramDataParts of the SlideLayoutPart + + + + + Gets the DiagramLayoutDefinitionParts of the SlideLayoutPart + + + + + Gets the DiagramPersistLayoutParts of the SlideLayoutPart + + + + + Gets the DiagramStyleParts of the SlideLayoutPart + + + + + Gets the EmbeddedControlPersistenceBinaryDataParts of the SlideLayoutPart + + + + + Gets the EmbeddedControlPersistenceParts of the SlideLayoutPart + + + + + Gets the EmbeddedObjectParts of the SlideLayoutPart + + + + + Gets the EmbeddedPackageParts of the SlideLayoutPart + + + + + Gets the ExtendedChartParts of the SlideLayoutPart + + + + + Gets the ImageParts of the SlideLayoutPart + + + + + Gets the Model3DReferenceRelationshipParts of the SlideLayoutPart + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the SlideMasterPart of the SlideLayoutPart + + + + + Gets the SlideParts of the SlideLayoutPart + + + + + Gets the ThemeOverridePart of the SlideLayoutPart + + + + + Gets the UserDefinedTagsParts of the SlideLayoutPart + + + + + Gets the VmlDrawingParts of the SlideLayoutPart + + + + + Adds a AudioReferenceRelationship to the SlideLayoutPart + + The part type of the AudioReferenceRelationship + The newly added part + + + + Adds a AudioReferenceRelationship to the SlideLayoutPart + + The part type of the AudioReferenceRelationship + The relationship id + The newly added part + + + + Adds a MediaReferenceRelationship to the SlideLayoutPart + + The part type of the MediaReferenceRelationship + The newly added part + + + + Adds a MediaReferenceRelationship to the SlideLayoutPart + + The part type of the MediaReferenceRelationship + The relationship id + The newly added part + + + + Adds a VideoReferenceRelationship to the SlideLayoutPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the SlideLayoutPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the SlideMasterPart + + + + + Creates an instance of the SlideMasterPart OpenXmlType + + + + + Gets the ChartParts of the SlideMasterPart + + + + + + + + Gets the CustomXmlParts of the SlideMasterPart + + + + + Gets the DiagramColorsParts of the SlideMasterPart + + + + + Gets the DiagramDataParts of the SlideMasterPart + + + + + Gets the DiagramLayoutDefinitionParts of the SlideMasterPart + + + + + Gets the DiagramPersistLayoutParts of the SlideMasterPart + + + + + Gets the DiagramStyleParts of the SlideMasterPart + + + + + Gets the EmbeddedControlPersistenceBinaryDataParts of the SlideMasterPart + + + + + Gets the EmbeddedControlPersistenceParts of the SlideMasterPart + + + + + Gets the EmbeddedObjectParts of the SlideMasterPart + + + + + Gets the EmbeddedPackageParts of the SlideMasterPart + + + + + Gets the ExtendedChartParts of the SlideMasterPart + + + + + Gets the ImageParts of the SlideMasterPart + + + + + Gets the Model3DReferenceRelationshipParts of the SlideMasterPart + + + + + + + + Gets the SlideLayoutParts of the SlideMasterPart + + + + + Gets or sets the root element of this part. + + + + + Gets the SlideParts of the SlideMasterPart + + + + + Gets the ThemePart of the SlideMasterPart + + + + + Gets the UserDefinedTagsParts of the SlideMasterPart + + + + + Gets the VmlDrawingParts of the SlideMasterPart + + + + + Adds a AudioReferenceRelationship to the SlideMasterPart + + The part type of the AudioReferenceRelationship + The newly added part + + + + Adds a AudioReferenceRelationship to the SlideMasterPart + + The part type of the AudioReferenceRelationship + The relationship id + The newly added part + + + + Adds a MediaReferenceRelationship to the SlideMasterPart + + The part type of the MediaReferenceRelationship + The newly added part + + + + Adds a MediaReferenceRelationship to the SlideMasterPart + + The part type of the MediaReferenceRelationship + The relationship id + The newly added part + + + + Adds a VideoReferenceRelationship to the SlideMasterPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the SlideMasterPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the SlidePart + + + + + Creates an instance of the SlidePart OpenXmlType + + + + + Gets the ChartParts of the SlidePart + + + + + Gets the commentParts of the SlidePart + + + + + + + + Gets the CustomXmlParts of the SlidePart + + + + + Gets the DiagramColorsParts of the SlidePart + + + + + Gets the DiagramDataParts of the SlidePart + + + + + Gets the DiagramLayoutDefinitionParts of the SlidePart + + + + + Gets the DiagramPersistLayoutParts of the SlidePart + + + + + Gets the DiagramStyleParts of the SlidePart + + + + + Gets the EmbeddedControlPersistenceBinaryDataParts of the SlidePart + + + + + Gets the EmbeddedControlPersistenceParts of the SlidePart + + + + + Gets the EmbeddedObjectParts of the SlidePart + + + + + Gets the EmbeddedPackageParts of the SlidePart + + + + + Gets the ExtendedChartParts of the SlidePart + + + + + Gets the ImageParts of the SlidePart + + + + + Gets the Model3DReferenceRelationshipParts of the SlidePart + + + + + Gets the NotesSlidePart of the SlidePart + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the SlideCommentsPart of the SlidePart + + + + + Gets the SlideLayoutPart of the SlidePart + + + + + Gets the SlideParts of the SlidePart + + + + + Gets the SlideSyncDataPart of the SlidePart + + + + + Gets the ThemeOverridePart of the SlidePart + + + + + Gets the UserDefinedTagsParts of the SlidePart + + + + + Gets the VmlDrawingParts of the SlidePart + + + + + Gets the WebExtensionParts of the SlidePart + + + + + Adds a AudioReferenceRelationship to the SlidePart + + The part type of the AudioReferenceRelationship + The newly added part + + + + Adds a AudioReferenceRelationship to the SlidePart + + The part type of the AudioReferenceRelationship + The relationship id + The newly added part + + + + Adds a MediaReferenceRelationship to the SlidePart + + The part type of the MediaReferenceRelationship + The newly added part + + + + Adds a MediaReferenceRelationship to the SlidePart + + The part type of the MediaReferenceRelationship + The relationship id + The newly added part + + + + Adds a VideoReferenceRelationship to the SlidePart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the SlidePart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the SlideSyncDataPart + + + + + Creates an instance of the SlideSyncDataPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the SpreadsheetPrinterSettingsPart + + + + + Creates an instance of the SpreadsheetPrinterSettingsPart OpenXmlType + + + + + + + + + + + + + + Defines the StyleDefinitionsPart + + + + + Creates an instance of the StyleDefinitionsPart OpenXmlType + + + + + + + + + + + + + + Defines the StylesWithEffectsPart + + + + + Creates an instance of the StylesWithEffectsPart OpenXmlType + + + + + + + + + + + + + + Defines the TableDefinitionPart + + + + + Creates an instance of the TableDefinitionPart OpenXmlType + + + + + + + + Gets the QueryTableParts of the TableDefinitionPart + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the TableStylesPart + + + + + Creates an instance of the TableStylesPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the ThemeOverridePart + + + + + Creates an instance of the ThemeOverridePart OpenXmlType + + + + + + + + Gets the ImageParts of the ThemeOverridePart + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the ThemePart + + + + + Creates an instance of the ThemePart OpenXmlType + + + + + + + + Gets the ImageParts of the ThemePart + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the ThumbnailPart + + + + + Creates an instance of the ThumbnailPart OpenXmlType + + + + + + + + + + + Defines the TimeLineCachePart + + + + + Creates an instance of the TimeLineCachePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the TimeLinePart + + + + + Creates an instance of the TimeLinePart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the UserDefinedTagsPart + + + + + Creates an instance of the UserDefinedTagsPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the VbaDataPart + + + + + Creates an instance of the VbaDataPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the VbaProjectPart + + + + + Creates an instance of the VbaProjectPart OpenXmlType + + + + + + + + + + + Gets the VbaDataPart of the VbaProjectPart + + + + + + + + Defines the ViewPropertiesPart + + + + + Creates an instance of the ViewPropertiesPart OpenXmlType + + + + + + + + + + + Gets the SlideParts of the ViewPropertiesPart + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the VmlDrawingPart + + + + + Creates an instance of the VmlDrawingPart OpenXmlType + + + + + + + + Gets the ImageParts of the VmlDrawingPart + + + + + Gets the LegacyDiagramTextParts of the VmlDrawingPart + + + + + + + + + + + Defines the VolatileDependenciesPart + + + + + Creates an instance of the VolatileDependenciesPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the WebExTaskpanesPart + + + + + Creates an instance of the WebExTaskpanesPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + Gets the WebExtensionParts of the WebExTaskpanesPart + + + + + + + + Defines the WebExtensionPart + + + + + Creates an instance of the WebExtensionPart OpenXmlType + + + + + + + + Gets the ImageParts of the WebExtensionPart + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the WebSettingsPart + + + + + Creates an instance of the WebSettingsPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the WordAttachedToolbarsPart + + + + + Creates an instance of the WordAttachedToolbarsPart OpenXmlType + + + + + + + + + + + + + + Defines the WordCommentsExtensiblePart + + + + + Creates an instance of the WordCommentsExtensiblePart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the WordprocessingCommentsExPart + + + + + Creates an instance of the WordprocessingCommentsExPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the WordprocessingCommentsExPart + + + + + Gets the ChartParts of the WordprocessingCommentsExPart + + + + + Gets or sets the root element of this part. + + + + + + + + Gets the DiagramColorsParts of the WordprocessingCommentsExPart + + + + + Gets the DiagramDataParts of the WordprocessingCommentsExPart + + + + + Gets the DiagramLayoutDefinitionParts of the WordprocessingCommentsExPart + + + + + Gets the DiagramPersistLayoutParts of the WordprocessingCommentsExPart + + + + + Gets the DiagramStyleParts of the WordprocessingCommentsExPart + + + + + Gets the EmbeddedControlPersistenceParts of the WordprocessingCommentsExPart + + + + + Gets the EmbeddedObjectParts of the WordprocessingCommentsExPart + + + + + Gets the EmbeddedPackageParts of the WordprocessingCommentsExPart + + + + + Gets the ExtendedChartParts of the WordprocessingCommentsExPart + + + + + Gets the ImageParts of the WordprocessingCommentsExPart + + + + + Gets the Model3DReferenceRelationshipParts of the WordprocessingCommentsExPart + + + + + + + + Adds a VideoReferenceRelationship to the WordprocessingCommentsExPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the WordprocessingCommentsExPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the WordprocessingCommentsIdsPart + + + + + Creates an instance of the WordprocessingCommentsIdsPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the WordprocessingCommentsIdsPart + + + + + Gets the ChartParts of the WordprocessingCommentsIdsPart + + + + + Gets or sets the root element of this part. + + + + + + + + Gets the DiagramColorsParts of the WordprocessingCommentsIdsPart + + + + + Gets the DiagramDataParts of the WordprocessingCommentsIdsPart + + + + + Gets the DiagramLayoutDefinitionParts of the WordprocessingCommentsIdsPart + + + + + Gets the DiagramPersistLayoutParts of the WordprocessingCommentsIdsPart + + + + + Gets the DiagramStyleParts of the WordprocessingCommentsIdsPart + + + + + Gets the EmbeddedControlPersistenceParts of the WordprocessingCommentsIdsPart + + + + + Gets the EmbeddedObjectParts of the WordprocessingCommentsIdsPart + + + + + Gets the EmbeddedPackageParts of the WordprocessingCommentsIdsPart + + + + + Gets the ExtendedChartParts of the WordprocessingCommentsIdsPart + + + + + Gets the ImageParts of the WordprocessingCommentsIdsPart + + + + + Gets the Model3DReferenceRelationshipParts of the WordprocessingCommentsIdsPart + + + + + + + + Adds a VideoReferenceRelationship to the WordprocessingCommentsIdsPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the WordprocessingCommentsIdsPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the WordprocessingCommentsPart + + + + + Creates an instance of the WordprocessingCommentsPart OpenXmlType + + + + + Gets the AlternativeFormatImportParts of the WordprocessingCommentsPart + + + + + Gets the ChartParts of the WordprocessingCommentsPart + + + + + Gets or sets the root element of this part. + + + + + + + + Gets the DiagramColorsParts of the WordprocessingCommentsPart + + + + + Gets the DiagramDataParts of the WordprocessingCommentsPart + + + + + Gets the DiagramLayoutDefinitionParts of the WordprocessingCommentsPart + + + + + Gets the DiagramPersistLayoutParts of the WordprocessingCommentsPart + + + + + Gets the DiagramStyleParts of the WordprocessingCommentsPart + + + + + Gets the EmbeddedControlPersistenceParts of the WordprocessingCommentsPart + + + + + Gets the EmbeddedObjectParts of the WordprocessingCommentsPart + + + + + Gets the EmbeddedPackageParts of the WordprocessingCommentsPart + + + + + Gets the ExtendedChartParts of the WordprocessingCommentsPart + + + + + Gets the ImageParts of the WordprocessingCommentsPart + + + + + Gets the Model3DReferenceRelationshipParts of the WordprocessingCommentsPart + + + + + + + + Adds a VideoReferenceRelationship to the WordprocessingCommentsPart + + The part type of the VideoReferenceRelationship + The newly added part + + + + Adds a VideoReferenceRelationship to the WordprocessingCommentsPart + + The part type of the VideoReferenceRelationship + The relationship id + The newly added part + + + + + + + Defines the WordprocessingPeoplePart + + + + + Creates an instance of the WordprocessingPeoplePart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the WordprocessingPrinterSettingsPart + + + + + Creates an instance of the WordprocessingPrinterSettingsPart OpenXmlType + + + + + + + + + + + + + + Defines the WorkbookPart + + + + + Creates an instance of the WorkbookPart OpenXmlType + + + + + Gets the CalculationChainPart of the WorkbookPart + + + + + Gets the CellMetadataPart of the WorkbookPart + + + + + Gets the ChartsheetParts of the WorkbookPart + + + + + Gets the ConnectionsPart of the WorkbookPart + + + + + Gets the CT_RdRichValueStructureParts of the WorkbookPart + + + + + Gets the CustomDataPropertiesParts of the WorkbookPart + + + + + Gets the CustomXmlMappingsPart of the WorkbookPart + + + + + Gets the CustomXmlParts of the WorkbookPart + + + + + Gets the DialogsheetParts of the WorkbookPart + + + + + Gets the ExcelAttachedToolbarsPart of the WorkbookPart + + + + + Gets the ExternalWorkbookParts of the WorkbookPart + + + + + Gets the FeaturePropertyBagsPart of the WorkbookPart + + + + + Gets the InternationalMacroSheetParts of the WorkbookPart + + + + + Gets the MacroSheetParts of the WorkbookPart + + + + + Gets the PivotTableCacheDefinitionParts of the WorkbookPart + + + + + Gets the RdArrayParts of the WorkbookPart + + + + + Gets the RdRichValueParts of the WorkbookPart + + + + + Gets the RdRichValueTypesParts of the WorkbookPart + + + + + Gets the RdRichValueWebImagePart of the WorkbookPart + + + + + Gets the RdSupportingPropertyBagParts of the WorkbookPart + + + + + Gets the RdSupportingPropertyBagStructureParts of the WorkbookPart + + + + + + + + Gets the RichStylesParts of the WorkbookPart + + + + + Gets the SharedStringTablePart of the WorkbookPart + + + + + Gets the SlicerCacheParts of the WorkbookPart + + + + + Gets the ThemePart of the WorkbookPart + + + + + Gets the ThumbnailPart of the WorkbookPart + + + + + Gets the TimeLineCacheParts of the WorkbookPart + + + + + Gets the VbaProjectPart of the WorkbookPart + + + + + Gets the VolatileDependenciesPart of the WorkbookPart + + + + + Gets or sets the root element of this part. + + + + + Gets the WorkbookPersonParts of the WorkbookPart + + + + + Gets the WorkbookRevisionHeaderPart of the WorkbookPart + + + + + Gets the WorkbookStylesPart of the WorkbookPart + + + + + Gets the WorkbookUserDataPart of the WorkbookPart + + + + + Gets the WorksheetParts of the WorkbookPart + + + + + + + + Defines the WorkbookPersonPart + + + + + Creates an instance of the WorkbookPersonPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + + + + Defines the WorkbookRevisionHeaderPart + + + + + Creates an instance of the WorkbookRevisionHeaderPart OpenXmlType + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Gets the WorkbookRevisionLogParts of the WorkbookRevisionHeaderPart + + + + + + + + Defines the WorkbookRevisionLogPart + + + + + Creates an instance of the WorkbookRevisionLogPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the WorkbookStylesPart + + + + + Creates an instance of the WorkbookStylesPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the WorkbookUserDataPart + + + + + Creates an instance of the WorkbookUserDataPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the WorksheetCommentsPart + + + + + Creates an instance of the WorksheetCommentsPart OpenXmlType + + + + + Gets or sets the root element of this part. + + + + + + + + + + + + + + Defines the WorksheetPart + + + + + Creates an instance of the WorksheetPart OpenXmlType + + + + + + + + Gets the ControlPropertiesParts of the WorksheetPart + + + + + Gets the CustomPropertyParts of the WorksheetPart + + + + + Gets the DrawingsPart of the WorksheetPart + + + + + Gets the EmbeddedControlPersistenceBinaryDataParts of the WorksheetPart + + + + + Gets the EmbeddedControlPersistenceParts of the WorksheetPart + + + + + Gets the EmbeddedObjectParts of the WorksheetPart + + + + + Gets the EmbeddedPackageParts of the WorksheetPart + + + + + Gets the ImageParts of the WorksheetPart + + + + + Gets the Model3DReferenceRelationshipParts of the WorksheetPart + + + + + Gets the NamedSheetViewsParts of the WorksheetPart + + + + + Gets the PivotTableParts of the WorksheetPart + + + + + Gets the QueryTableParts of the WorksheetPart + + + + + + + + Gets the SingleCellTablePart of the WorksheetPart + + + + + Gets the SlicersParts of the WorksheetPart + + + + + Gets the SpreadsheetPrinterSettingsParts of the WorksheetPart + + + + + Gets the TableDefinitionParts of the WorksheetPart + + + + + Gets the TimeLineParts of the WorksheetPart + + + + + Gets the VmlDrawingParts of the WorksheetPart + + + + + Gets or sets the root element of this part. + + + + + Gets the WorksheetCommentsPart of the WorksheetPart + + + + + Gets the WorksheetSortMapPart of the WorksheetPart + + + + + Gets the WorksheetThreadedCommentsParts of the WorksheetPart + + + + + + + + Defines the WorksheetSortMapPart + + + + + Creates an instance of the WorksheetSortMapPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the WorksheetThreadedCommentsPart + + + + + Creates an instance of the WorksheetThreadedCommentsPart OpenXmlType + + + + + + + + + + + Gets or sets the root element of this part. + + + + + + + + Defines the XmlSignaturePart + + + + + Creates an instance of the XmlSignaturePart OpenXmlType + + + + + + + + + + + + + + Represents an implementation of that is aware of the strongly typed classes for a . + + + + + Initializes a new instance of the class. + + The stream of the part contents. + Options for how to read the part stream. + + + + Defines PresentationDocumentType - type of PresentationDocument. + + + + + PowerPoint Presentation (*.pptx). + + + + + PowerPoint Template (*.potx). + + + + + PowerPoint Show (*.ppsx). + + + + + PowerPoint Macro-Enabled Presentation (*.pptm). + + + + + PowerPoint Macro-Enabled Template (*.potm). + + + + + PowerPoint Macro-Enabled Show (*.ppsm). + + + + + PowerPoint Add-In (*.ppam). + + + + + Defines AdditionalCharacteristics. + + + Set of Additional Characteristics. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ac:additionalCharacteristics. + + + The following table lists the possible child types: + + <ac:characteristic> + + + + + + AdditionalCharacteristics constructor. + + The owner part of the AdditionalCharacteristics. + + + + Loads the DOM from an OpenXML part. + + The part to be loaded. + + + + Saves the DOM into the OpenXML part. + + The part to be saved to. + + + + Initializes a new instance of the AdditionalCharacteristicsInfo class. + + + + + Initializes a new instance of the AdditionalCharacteristicsInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdditionalCharacteristicsInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdditionalCharacteristicsInfo class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Single Characteristic. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ac:characteristic. + + + + + Initializes a new instance of the Characteristic class. + + + + + Name of Characteristic + Represents the following attribute in the schema: name + + + + + Relationship of Value to Name + Represents the following attribute in the schema: relation + + + + + Characteristic Value + Represents the following attribute in the schema: val + + + + + Characteristic Grammar + Represents the following attribute in the schema: vocabulary + + + + + + + + Characteristic Relationship Types + + + + + Creates a new RelationValues enum instance + + + + + Greater Than or Equal to. + When the item is serialized out as xml, its value is "ge". + + + + + Less Than or Equal To. + When the item is serialized out as xml, its value is "le". + + + + + Greater Than. + When the item is serialized out as xml, its value is "gt". + + + + + Less Than. + When the item is serialized out as xml, its value is "lt". + + + + + Equal To. + When the item is serialized out as xml, its value is "eq". + + + + + Defines Sources. + + + Sources. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Sources. + + + The following table lists the possible child types: + + <b:Source> + + + + + + Sources constructor. + + The owner part of the Sources. + + + + Loads the DOM from an OpenXML part. + + The part to be loaded. + + + + Saves the DOM into the OpenXML part. + + The part to be saved to. + + + + Initializes a new instance of the Sources class. + + + + + Initializes a new instance of the Sources class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sources class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sources class from outer XML. + + Specifies the outer XML of the element. + + + + Selected Style + Represents the following attribute in the schema: SelectedStyle + + + + + Documentation Style Name + Represents the following attribute in the schema: StyleName + + + + + Uniform Resource Identifier + Represents the following attribute in the schema: URI + + + + + + + + Person. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Person. + + + The following table lists the possible child types: + + <b:Last> + <b:First> + <b:Middle> + + + + + + Initializes a new instance of the Person class. + + + + + Initializes a new instance of the Person class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Person class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Person class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Person's Last, or Family, Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Last. + + + + + Initializes a new instance of the Last class. + + + + + Initializes a new instance of the Last class with the specified text content. + + Specifies the text content of the element. + + + + + + + Person's First, or Given, Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:First. + + + + + Initializes a new instance of the First class. + + + + + Initializes a new instance of the First class with the specified text content. + + Specifies the text content of the element. + + + + + + + Person's Middle, or Other, Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Middle. + + + + + Initializes a new instance of the Middle class. + + + + + Initializes a new instance of the Middle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Corporate Author. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Corporate. + + + + + Initializes a new instance of the Corporate class. + + + + + Initializes a new instance of the Corporate class with the specified text content. + + Specifies the text content of the element. + + + + + + + Abbreviated Case Number. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:AbbreviatedCaseNumber. + + + + + Initializes a new instance of the AbbreviatedCaseNumber class. + + + + + Initializes a new instance of the AbbreviatedCaseNumber class with the specified text content. + + Specifies the text content of the element. + + + + + + + Album Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:AlbumTitle. + + + + + Initializes a new instance of the AlbumTitle class. + + + + + Initializes a new instance of the AlbumTitle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Book Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:BookTitle. + + + + + Initializes a new instance of the BookTitle class. + + + + + Initializes a new instance of the BookTitle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Broadcaster. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Broadcaster. + + + + + Initializes a new instance of the Broadcaster class. + + + + + Initializes a new instance of the Broadcaster class with the specified text content. + + Specifies the text content of the element. + + + + + + + Broadcast Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:BroadcastTitle. + + + + + Initializes a new instance of the BroadcastTitle class. + + + + + Initializes a new instance of the BroadcastTitle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Case Number. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:CaseNumber. + + + + + Initializes a new instance of the CaseNumber class. + + + + + Initializes a new instance of the CaseNumber class with the specified text content. + + Specifies the text content of the element. + + + + + + + Chapter Number. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:ChapterNumber. + + + + + Initializes a new instance of the ChapterNumber class. + + + + + Initializes a new instance of the ChapterNumber class with the specified text content. + + Specifies the text content of the element. + + + + + + + City. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:City. + + + + + Initializes a new instance of the City class. + + + + + Initializes a new instance of the City class with the specified text content. + + Specifies the text content of the element. + + + + + + + Comments. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Comments. + + + + + Initializes a new instance of the Comments class. + + + + + Initializes a new instance of the Comments class with the specified text content. + + Specifies the text content of the element. + + + + + + + Conference or Proceedings Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:ConferenceName. + + + + + Initializes a new instance of the ConferenceName class. + + + + + Initializes a new instance of the ConferenceName class with the specified text content. + + Specifies the text content of the element. + + + + + + + Country or Region. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:CountryRegion. + + + + + Initializes a new instance of the CountryRegion class. + + + + + Initializes a new instance of the CountryRegion class with the specified text content. + + Specifies the text content of the element. + + + + + + + Court. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Court. + + + + + Initializes a new instance of the Court class. + + + + + Initializes a new instance of the Court class with the specified text content. + + Specifies the text content of the element. + + + + + + + Day. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Day. + + + + + Initializes a new instance of the Day class. + + + + + Initializes a new instance of the Day class with the specified text content. + + Specifies the text content of the element. + + + + + + + Day Accessed. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:DayAccessed. + + + + + Initializes a new instance of the DayAccessed class. + + + + + Initializes a new instance of the DayAccessed class with the specified text content. + + Specifies the text content of the element. + + + + + + + Department. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Department. + + + + + Initializes a new instance of the Department class. + + + + + Initializes a new instance of the Department class with the specified text content. + + Specifies the text content of the element. + + + + + + + Distributor. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Distributor. + + + + + Initializes a new instance of the Distributor class. + + + + + Initializes a new instance of the Distributor class with the specified text content. + + Specifies the text content of the element. + + + + + + + Editor. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Edition. + + + + + Initializes a new instance of the Edition class. + + + + + Initializes a new instance of the Edition class with the specified text content. + + Specifies the text content of the element. + + + + + + + GUID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Guid. + + + + + Initializes a new instance of the GuidString class. + + + + + Initializes a new instance of the GuidString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Institution. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Institution. + + + + + Initializes a new instance of the Institution class. + + + + + Initializes a new instance of the Institution class with the specified text content. + + Specifies the text content of the element. + + + + + + + Internet Site Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:InternetSiteTitle. + + + + + Initializes a new instance of the InternetSiteTitle class. + + + + + Initializes a new instance of the InternetSiteTitle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Issue. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Issue. + + + + + Initializes a new instance of the Issue class. + + + + + Initializes a new instance of the Issue class with the specified text content. + + Specifies the text content of the element. + + + + + + + Journal Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:JournalName. + + + + + Initializes a new instance of the JournalName class. + + + + + Initializes a new instance of the JournalName class with the specified text content. + + Specifies the text content of the element. + + + + + + + Locale ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:LCID. + + + + + Initializes a new instance of the LcId class. + + + + + Initializes a new instance of the LcId class with the specified text content. + + Specifies the text content of the element. + + + + + + + Medium. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Medium. + + + + + Initializes a new instance of the Medium class. + + + + + Initializes a new instance of the Medium class with the specified text content. + + Specifies the text content of the element. + + + + + + + Month. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Month. + + + + + Initializes a new instance of the Month class. + + + + + Initializes a new instance of the Month class with the specified text content. + + Specifies the text content of the element. + + + + + + + Month Accessed. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:MonthAccessed. + + + + + Initializes a new instance of the MonthAccessed class. + + + + + Initializes a new instance of the MonthAccessed class with the specified text content. + + Specifies the text content of the element. + + + + + + + Number of Volumes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:NumberVolumes. + + + + + Initializes a new instance of the NumberVolumes class. + + + + + Initializes a new instance of the NumberVolumes class with the specified text content. + + Specifies the text content of the element. + + + + + + + Pages. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Pages. + + + + + Initializes a new instance of the Pages class. + + + + + Initializes a new instance of the Pages class with the specified text content. + + Specifies the text content of the element. + + + + + + + Patent Number. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:PatentNumber. + + + + + Initializes a new instance of the PatentNumber class. + + + + + Initializes a new instance of the PatentNumber class with the specified text content. + + Specifies the text content of the element. + + + + + + + Periodical Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:PeriodicalTitle. + + + + + Initializes a new instance of the PeriodicalTitle class. + + + + + Initializes a new instance of the PeriodicalTitle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Production Company. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:ProductionCompany. + + + + + Initializes a new instance of the ProductionCompany class. + + + + + Initializes a new instance of the ProductionCompany class with the specified text content. + + Specifies the text content of the element. + + + + + + + Publication Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:PublicationTitle. + + + + + Initializes a new instance of the PublicationTitle class. + + + + + Initializes a new instance of the PublicationTitle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Publisher. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Publisher. + + + + + Initializes a new instance of the Publisher class. + + + + + Initializes a new instance of the Publisher class with the specified text content. + + Specifies the text content of the element. + + + + + + + Recording Number. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:RecordingNumber. + + + + + Initializes a new instance of the RecordingNumber class. + + + + + Initializes a new instance of the RecordingNumber class with the specified text content. + + Specifies the text content of the element. + + + + + + + Reference Order. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:RefOrder. + + + + + Initializes a new instance of the ReferenceOrder class. + + + + + Initializes a new instance of the ReferenceOrder class with the specified text content. + + Specifies the text content of the element. + + + + + + + Reporter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Reporter. + + + + + Initializes a new instance of the Reporter class. + + + + + Initializes a new instance of the Reporter class with the specified text content. + + Specifies the text content of the element. + + + + + + + Short Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:ShortTitle. + + + + + Initializes a new instance of the ShortTitle class. + + + + + Initializes a new instance of the ShortTitle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Standard Number. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:StandardNumber. + + + + + Initializes a new instance of the StandardNumber class. + + + + + Initializes a new instance of the StandardNumber class with the specified text content. + + Specifies the text content of the element. + + + + + + + State or Province. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:StateProvince. + + + + + Initializes a new instance of the StateProvince class. + + + + + Initializes a new instance of the StateProvince class with the specified text content. + + Specifies the text content of the element. + + + + + + + Station. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Station. + + + + + Initializes a new instance of the Station class. + + + + + Initializes a new instance of the Station class with the specified text content. + + Specifies the text content of the element. + + + + + + + Tag. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Tag. + + + + + Initializes a new instance of the Tag class. + + + + + Initializes a new instance of the Tag class with the specified text content. + + Specifies the text content of the element. + + + + + + + Theater. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Theater. + + + + + Initializes a new instance of the Theater class. + + + + + Initializes a new instance of the Theater class with the specified text content. + + Specifies the text content of the element. + + + + + + + Thesis Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:ThesisType. + + + + + Initializes a new instance of the ThesisType class. + + + + + Initializes a new instance of the ThesisType class with the specified text content. + + Specifies the text content of the element. + + + + + + + Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Title. + + + + + Initializes a new instance of the Title class. + + + + + Initializes a new instance of the Title class with the specified text content. + + Specifies the text content of the element. + + + + + + + Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Type. + + + + + Initializes a new instance of the PatentType class. + + + + + Initializes a new instance of the PatentType class with the specified text content. + + Specifies the text content of the element. + + + + + + + URL. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:URL. + + + + + Initializes a new instance of the UrlString class. + + + + + Initializes a new instance of the UrlString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Version. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Version. + + + + + Initializes a new instance of the Version class. + + + + + Initializes a new instance of the Version class with the specified text content. + + Specifies the text content of the element. + + + + + + + Volume. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Volume. + + + + + Initializes a new instance of the Volume class. + + + + + Initializes a new instance of the Volume class with the specified text content. + + Specifies the text content of the element. + + + + + + + Year. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Year. + + + + + Initializes a new instance of the Year class. + + + + + Initializes a new instance of the Year class with the specified text content. + + Specifies the text content of the element. + + + + + + + Year Accessed. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:YearAccessed. + + + + + Initializes a new instance of the YearAccessed class. + + + + + Initializes a new instance of the YearAccessed class with the specified text content. + + Specifies the text content of the element. + + + + + + + Name List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:NameList. + + + The following table lists the possible child types: + + <b:Person> + + + + + + Initializes a new instance of the NameList class. + + + + + Initializes a new instance of the NameList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NameList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NameList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Artist. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Artist. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Artist class. + + + + + Initializes a new instance of the Artist class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Artist class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Artist class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Book Author. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:BookAuthor. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the BookAuthor class. + + + + + Initializes a new instance of the BookAuthor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BookAuthor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BookAuthor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Compiler. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Compiler. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Compiler class. + + + + + Initializes a new instance of the Compiler class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Compiler class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Compiler class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Composer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Composer. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Composer class. + + + + + Initializes a new instance of the Composer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Composer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Composer class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Conductor. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Conductor. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Conductor class. + + + + + Initializes a new instance of the Conductor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Conductor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Conductor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Counsel. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Counsel. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Counsel class. + + + + + Initializes a new instance of the Counsel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Counsel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Counsel class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Director. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Director. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Director class. + + + + + Initializes a new instance of the Director class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Director class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Director class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Editor. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Editor. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Editor class. + + + + + Initializes a new instance of the Editor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Editor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Editor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Interviewee. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Interviewee. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Interviewee class. + + + + + Initializes a new instance of the Interviewee class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Interviewee class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Interviewee class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Interviewer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Interviewer. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Interviewer class. + + + + + Initializes a new instance of the Interviewer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Interviewer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Interviewer class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Inventor. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Inventor. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Inventor class. + + + + + Initializes a new instance of the Inventor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Inventor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Inventor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Producer Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:ProducerName. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the ProducerName class. + + + + + Initializes a new instance of the ProducerName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ProducerName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ProducerName class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Translator. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Translator. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Translator class. + + + + + Initializes a new instance of the Translator class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Translator class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Translator class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Writer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Writer. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the Writer class. + + + + + Initializes a new instance of the Writer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Writer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Writer class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NameType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <b:NameList> + + + + + + Initializes a new instance of the NameType class. + + + + + Initializes a new instance of the NameType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NameType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NameType class from outer XML. + + Specifies the outer XML of the element. + + + + Name List. + Represents the following element tag in the schema: b:NameList. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Author. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Author. + + + The following table lists the possible child types: + + <b:NameList> + <b:Corporate> + + + + + + Initializes a new instance of the Author class. + + + + + Initializes a new instance of the Author class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Author class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Author class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Performer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Performer. + + + The following table lists the possible child types: + + <b:NameList> + <b:Corporate> + + + + + + Initializes a new instance of the Performer class. + + + + + Initializes a new instance of the Performer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Performer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Performer class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NameOrCorporateType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <b:NameList> + <b:Corporate> + + + + + + Initializes a new instance of the NameOrCorporateType class. + + + + + Initializes a new instance of the NameOrCorporateType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NameOrCorporateType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NameOrCorporateType class from outer XML. + + Specifies the outer XML of the element. + + + + NameList. + Represents the following element tag in the schema: b:NameList. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Corporate Author. + Represents the following element tag in the schema: b:Corporate. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Contributors List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Author. + + + The following table lists the possible child types: + + <b:Author> + <b:Performer> + <b:Artist> + <b:BookAuthor> + <b:Compiler> + <b:Composer> + <b:Conductor> + <b:Counsel> + <b:Director> + <b:Editor> + <b:Interviewee> + <b:Interviewer> + <b:Inventor> + <b:ProducerName> + <b:Translator> + <b:Writer> + + + + + + Initializes a new instance of the AuthorList class. + + + + + Initializes a new instance of the AuthorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AuthorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AuthorList class from outer XML. + + Specifies the outer XML of the element. + + + + Artist. + Represents the following element tag in the schema: b:Artist. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Author. + Represents the following element tag in the schema: b:Author. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Book Author. + Represents the following element tag in the schema: b:BookAuthor. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Compiler. + Represents the following element tag in the schema: b:Compiler. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Composer. + Represents the following element tag in the schema: b:Composer. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Conductor. + Represents the following element tag in the schema: b:Conductor. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Counsel. + Represents the following element tag in the schema: b:Counsel. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Director. + Represents the following element tag in the schema: b:Director. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Editor. + Represents the following element tag in the schema: b:Editor. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Interviewee. + Represents the following element tag in the schema: b:Interviewee. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Interviewer. + Represents the following element tag in the schema: b:Interviewer. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Inventor. + Represents the following element tag in the schema: b:Inventor. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Performer. + Represents the following element tag in the schema: b:Performer. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Producer Name. + Represents the following element tag in the schema: b:ProducerName. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Translator. + Represents the following element tag in the schema: b:Translator. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Writer. + Represents the following element tag in the schema: b:Writer. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + + + + Source Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:SourceType. + + + + + Initializes a new instance of the SourceType class. + + + + + Initializes a new instance of the SourceType class with the specified text content. + + Specifies the text content of the element. + + + + + + + Source. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is b:Source. + + + The following table lists the possible child types: + + <b:Author> + <b:SourceType> + <b:AbbreviatedCaseNumber> + <b:AlbumTitle> + <b:BookTitle> + <b:Broadcaster> + <b:BroadcastTitle> + <b:CaseNumber> + <b:ChapterNumber> + <b:City> + <b:Comments> + <b:ConferenceName> + <b:CountryRegion> + <b:Court> + <b:Day> + <b:DayAccessed> + <b:Department> + <b:Distributor> + <b:Edition> + <b:Guid> + <b:Institution> + <b:InternetSiteTitle> + <b:Issue> + <b:JournalName> + <b:LCID> + <b:Medium> + <b:Month> + <b:MonthAccessed> + <b:NumberVolumes> + <b:Pages> + <b:PatentNumber> + <b:PeriodicalTitle> + <b:ProductionCompany> + <b:PublicationTitle> + <b:Publisher> + <b:RecordingNumber> + <b:RefOrder> + <b:Reporter> + <b:ShortTitle> + <b:StandardNumber> + <b:StateProvince> + <b:Station> + <b:Tag> + <b:Theater> + <b:ThesisType> + <b:Title> + <b:Type> + <b:URL> + <b:Version> + <b:Volume> + <b:Year> + <b:YearAccessed> + + + + + + Initializes a new instance of the Source class. + + + + + Initializes a new instance of the Source class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Source class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Source class from outer XML. + + Specifies the outer XML of the element. + + + + Abbreviated Case Number. + Represents the following element tag in the schema: b:AbbreviatedCaseNumber. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Album Title. + Represents the following element tag in the schema: b:AlbumTitle. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Contributors List. + Represents the following element tag in the schema: b:Author. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Book Title. + Represents the following element tag in the schema: b:BookTitle. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Broadcaster. + Represents the following element tag in the schema: b:Broadcaster. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Broadcast Title. + Represents the following element tag in the schema: b:BroadcastTitle. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Case Number. + Represents the following element tag in the schema: b:CaseNumber. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Chapter Number. + Represents the following element tag in the schema: b:ChapterNumber. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + City. + Represents the following element tag in the schema: b:City. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Comments. + Represents the following element tag in the schema: b:Comments. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Conference or Proceedings Name. + Represents the following element tag in the schema: b:ConferenceName. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Country or Region. + Represents the following element tag in the schema: b:CountryRegion. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Court. + Represents the following element tag in the schema: b:Court. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Day. + Represents the following element tag in the schema: b:Day. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Day Accessed. + Represents the following element tag in the schema: b:DayAccessed. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Department. + Represents the following element tag in the schema: b:Department. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Distributor. + Represents the following element tag in the schema: b:Distributor. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Editor. + Represents the following element tag in the schema: b:Edition. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + GUID. + Represents the following element tag in the schema: b:Guid. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Institution. + Represents the following element tag in the schema: b:Institution. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Internet Site Title. + Represents the following element tag in the schema: b:InternetSiteTitle. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Issue. + Represents the following element tag in the schema: b:Issue. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Journal Name. + Represents the following element tag in the schema: b:JournalName. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Locale ID. + Represents the following element tag in the schema: b:LCID. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Medium. + Represents the following element tag in the schema: b:Medium. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Month. + Represents the following element tag in the schema: b:Month. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Month Accessed. + Represents the following element tag in the schema: b:MonthAccessed. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Number of Volumes. + Represents the following element tag in the schema: b:NumberVolumes. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Pages. + Represents the following element tag in the schema: b:Pages. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Patent Number. + Represents the following element tag in the schema: b:PatentNumber. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Periodical Title. + Represents the following element tag in the schema: b:PeriodicalTitle. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Production Company. + Represents the following element tag in the schema: b:ProductionCompany. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Publication Title. + Represents the following element tag in the schema: b:PublicationTitle. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Publisher. + Represents the following element tag in the schema: b:Publisher. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Recording Number. + Represents the following element tag in the schema: b:RecordingNumber. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Reference Order. + Represents the following element tag in the schema: b:RefOrder. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Reporter. + Represents the following element tag in the schema: b:Reporter. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Source Type. + Represents the following element tag in the schema: b:SourceType. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Short Title. + Represents the following element tag in the schema: b:ShortTitle. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Standard Number. + Represents the following element tag in the schema: b:StandardNumber. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + State or Province. + Represents the following element tag in the schema: b:StateProvince. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Station. + Represents the following element tag in the schema: b:Station. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Tag. + Represents the following element tag in the schema: b:Tag. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Theater. + Represents the following element tag in the schema: b:Theater. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Thesis Type. + Represents the following element tag in the schema: b:ThesisType. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Title. + Represents the following element tag in the schema: b:Title. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Type. + Represents the following element tag in the schema: b:Type. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + URL. + Represents the following element tag in the schema: b:URL. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Version. + Represents the following element tag in the schema: b:Version. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Volume. + Represents the following element tag in the schema: b:Volume. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Year. + Represents the following element tag in the schema: b:Year. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + Year Accessed. + Represents the following element tag in the schema: b:YearAccessed. + + + xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography + + + + + + + + Bibliographic Data Source Types + + + + + Creates a new DataSourceValues enum instance + + + + + Article in a Periodical. + When the item is serialized out as xml, its value is "ArticleInAPeriodical". + + + + + Book. + When the item is serialized out as xml, its value is "Book". + + + + + Book Section. + When the item is serialized out as xml, its value is "BookSection". + + + + + Journal Article. + When the item is serialized out as xml, its value is "JournalArticle". + + + + + Conference Proceedings. + When the item is serialized out as xml, its value is "ConferenceProceedings". + + + + + Reporter. + When the item is serialized out as xml, its value is "Report". + + + + + Sound Recording. + When the item is serialized out as xml, its value is "SoundRecording". + + + + + Performance. + When the item is serialized out as xml, its value is "Performance". + + + + + Art. + When the item is serialized out as xml, its value is "Art". + + + + + Document from Internet Site. + When the item is serialized out as xml, its value is "DocumentFromInternetSite". + + + + + Internet Site. + When the item is serialized out as xml, its value is "InternetSite". + + + + + Film. + When the item is serialized out as xml, its value is "Film". + + + + + Interview. + When the item is serialized out as xml, its value is "Interview". + + + + + Patent. + When the item is serialized out as xml, its value is "Patent". + + + + + Electronic Source. + When the item is serialized out as xml, its value is "ElectronicSource". + + + + + Case. + When the item is serialized out as xml, its value is "Case". + + + + + Miscellaneous. + When the item is serialized out as xml, its value is "Misc". + + + + + Defines Ink. + + + Defines the Ink Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:ink. + + + The following table lists the possible child types: + + <inkml:annotation> + <inkml:annotationXML> + <inkml:context> + <inkml:definitions> + <inkml:trace> + <inkml:traceGroup> + <inkml:traceView> + + + + + + Ink constructor. + + The owner part of the Ink. + + + + Loads the DOM from an OpenXML part. + + The part to be loaded. + + + + Saves the DOM into the OpenXML part. + + The part to be saved to. + + + + Initializes a new instance of the Ink class. + + + + + Initializes a new instance of the Ink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Ink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Ink class from outer XML. + + Specifies the outer XML of the element. + + + + documentID + Represents the following attribute in the schema: documentID + + + + + + + + Defines the Bind Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:bind. + + + + + Initializes a new instance of the Bind class. + + + + + source + Represents the following attribute in the schema: source + + + + + target + Represents the following attribute in the schema: target + + + + + column + Represents the following attribute in the schema: column + + + + + variable + Represents the following attribute in the schema: variable + + + + + + + + Defines the Table Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:table. + + + + + Initializes a new instance of the Table class. + + + + + Initializes a new instance of the Table class with the specified text content. + + Specifies the text content of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + apply + Represents the following attribute in the schema: apply + + + + + interpolation + Represents the following attribute in the schema: interpolation + + + + + + + + Defines the Matrix Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:matrix. + + + + + Initializes a new instance of the Matrix class. + + + + + Initializes a new instance of the Matrix class with the specified text content. + + Specifies the text content of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + + + + Defines the Mapping Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:mapping. + + + The following table lists the possible child types: + + <inkml:bind> + <inkml:mapping> + <inkml:matrix> + <inkml:table> + + + + + + Initializes a new instance of the Mapping class. + + + + + Initializes a new instance of the Mapping class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Mapping class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Mapping class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + type + Represents the following attribute in the schema: type + + + + + mappingRef + Represents the following attribute in the schema: mappingRef + + + + + + + + Defines the Channel Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:channel. + + + The following table lists the possible child types: + + <inkml:mapping> + + + + + + Initializes a new instance of the Channel class. + + + + + Initializes a new instance of the Channel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Channel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Channel class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + name + Represents the following attribute in the schema: name + + + + + type + Represents the following attribute in the schema: type + + + + + default + Represents the following attribute in the schema: default + + + + + min + Represents the following attribute in the schema: min + + + + + max + Represents the following attribute in the schema: max + + + + + orientation + Represents the following attribute in the schema: orientation + + + + + respectTo + Represents the following attribute in the schema: respectTo + + + + + units + Represents the following attribute in the schema: units + + + + + + + + Defines the IntermittentChannels Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:intermittentChannels. + + + The following table lists the possible child types: + + <inkml:channel> + + + + + + Initializes a new instance of the IntermittentChannels class. + + + + + Initializes a new instance of the IntermittentChannels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IntermittentChannels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IntermittentChannels class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ChannelProperty Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:channelProperty. + + + + + Initializes a new instance of the ChannelProperty class. + + + + + channel + Represents the following attribute in the schema: channel + + + + + name + Represents the following attribute in the schema: name + + + + + value + Represents the following attribute in the schema: value + + + + + units + Represents the following attribute in the schema: units + + + + + + + + Defines the TraceFormat Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:traceFormat. + + + The following table lists the possible child types: + + <inkml:channel> + <inkml:intermittentChannels> + + + + + + Initializes a new instance of the TraceFormat class. + + + + + Initializes a new instance of the TraceFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TraceFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TraceFormat class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + + + + Defines the SampleRate Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:sampleRate. + + + + + Initializes a new instance of the SampleRate class. + + + + + uniform + Represents the following attribute in the schema: uniform + + + + + value + Represents the following attribute in the schema: value + + + + + + + + Defines the Latency Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:latency. + + + + + Initializes a new instance of the Latency class. + + + + + value + Represents the following attribute in the schema: value + + + + + + + + Defines the ActiveArea Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:activeArea. + + + + + Initializes a new instance of the ActiveArea class. + + + + + size + Represents the following attribute in the schema: size + + + + + height + Represents the following attribute in the schema: height + + + + + width + Represents the following attribute in the schema: width + + + + + units + Represents the following attribute in the schema: units + + + + + + + + Defines the SourceProperty Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:srcProperty. + + + + + Initializes a new instance of the SourceProperty class. + + + + + name + Represents the following attribute in the schema: name + + + + + value + Represents the following attribute in the schema: value + + + + + units + Represents the following attribute in the schema: units + + + + + + + + Defines the ChannelProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:channelProperties. + + + The following table lists the possible child types: + + <inkml:channelProperty> + + + + + + Initializes a new instance of the ChannelProperties class. + + + + + Initializes a new instance of the ChannelProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChannelProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChannelProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Annotation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:annotation. + + + + + Initializes a new instance of the Annotation class. + + + + + Initializes a new instance of the Annotation class with the specified text content. + + Specifies the text content of the element. + + + + type + Represents the following attribute in the schema: type + + + + + encoding + Represents the following attribute in the schema: encoding + + + + + + + + Defines the AnnotationXml Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:annotationXML. + + + The following table lists the possible child types: + + <emma:emma> + + + + + + Initializes a new instance of the AnnotationXml class. + + + + + Initializes a new instance of the AnnotationXml class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnnotationXml class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnnotationXml class from outer XML. + + Specifies the outer XML of the element. + + + + type + Represents the following attribute in the schema: type + + + + + encoding + Represents the following attribute in the schema: encoding + + + + + href + Represents the following attribute in the schema: href + + + + + Emma. + Represents the following element tag in the schema: emma:emma. + + + xmlns:emma = http://www.w3.org/2003/04/emma + + + + + + + + Defines the BrushProperty Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:brushProperty. + + + The following table lists the possible child types: + + <inkml:annotation> + <inkml:annotationXML> + + + + + + Initializes a new instance of the BrushProperty class. + + + + + Initializes a new instance of the BrushProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BrushProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BrushProperty class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: name + + + + + value + Represents the following attribute in the schema: value + + + + + units + Represents the following attribute in the schema: units + + + + + + + + Defines the Canvas Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:canvas. + + + The following table lists the possible child types: + + <inkml:traceFormat> + + + + + + Initializes a new instance of the Canvas class. + + + + + Initializes a new instance of the Canvas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Canvas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Canvas class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + traceFormatRef + Represents the following attribute in the schema: traceFormatRef + + + + + TraceFormat. + Represents the following element tag in the schema: inkml:traceFormat. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + + + + Defines the CanvasTransform Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:canvasTransform. + + + The following table lists the possible child types: + + <inkml:mapping> + + + + + + Initializes a new instance of the CanvasTransform class. + + + + + Initializes a new instance of the CanvasTransform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CanvasTransform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CanvasTransform class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + invertible + Represents the following attribute in the schema: invertible + + + + + + + + Defines the InkSource Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:inkSource. + + + The following table lists the possible child types: + + <inkml:activeArea> + <inkml:channelProperties> + <inkml:latency> + <inkml:sampleRate> + <inkml:srcProperty> + <inkml:traceFormat> + + + + + + Initializes a new instance of the InkSource class. + + + + + Initializes a new instance of the InkSource class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InkSource class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InkSource class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + manufacturer + Represents the following attribute in the schema: manufacturer + + + + + model + Represents the following attribute in the schema: model + + + + + serialNo + Represents the following attribute in the schema: serialNo + + + + + specificationRef + Represents the following attribute in the schema: specificationRef + + + + + description + Represents the following attribute in the schema: description + + + + + TraceFormat. + Represents the following element tag in the schema: inkml:traceFormat. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + SampleRate. + Represents the following element tag in the schema: inkml:sampleRate. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + Latency. + Represents the following element tag in the schema: inkml:latency. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + ActiveArea. + Represents the following element tag in the schema: inkml:activeArea. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + + + + Defines the Brush Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:brush. + + + The following table lists the possible child types: + + <inkml:annotation> + <inkml:annotationXML> + <inkml:brushProperty> + + + + + + Initializes a new instance of the Brush class. + + + + + Initializes a new instance of the Brush class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Brush class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Brush class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + brushRef + Represents the following attribute in the schema: brushRef + + + + + + + + Defines the Timestamp Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:timestamp. + + + + + Initializes a new instance of the Timestamp class. + + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + time + Represents the following attribute in the schema: time + + + + + timestampRef + Represents the following attribute in the schema: timestampRef + + + + + timeString + Represents the following attribute in the schema: timeString + + + + + timeOffset + Represents the following attribute in the schema: timeOffset + + + + + + + + Defines the Trace Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:trace. + + + + + Initializes a new instance of the Trace class. + + + + + Initializes a new instance of the Trace class with the specified text content. + + Specifies the text content of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + type + Represents the following attribute in the schema: type + + + + + continuation + Represents the following attribute in the schema: continuation + + + + + priorRef + Represents the following attribute in the schema: priorRef + + + + + contextRef + Represents the following attribute in the schema: contextRef + + + + + brushRef + Represents the following attribute in the schema: brushRef + + + + + duration + Represents the following attribute in the schema: duration + + + + + timeOffset + Represents the following attribute in the schema: timeOffset + + + + + + + + Defines the TraceGroup Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:traceGroup. + + + The following table lists the possible child types: + + <inkml:annotation> + <inkml:annotationXML> + <inkml:trace> + <inkml:traceGroup> + + + + + + Initializes a new instance of the TraceGroup class. + + + + + Initializes a new instance of the TraceGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TraceGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TraceGroup class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + contextRef + Represents the following attribute in the schema: contextRef + + + + + brushRef + Represents the following attribute in the schema: brushRef + + + + + + + + Defines the TraceView Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:traceView. + + + The following table lists the possible child types: + + <inkml:annotation> + <inkml:annotationXML> + <inkml:traceView> + + + + + + Initializes a new instance of the TraceView class. + + + + + Initializes a new instance of the TraceView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TraceView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TraceView class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + contextRef + Represents the following attribute in the schema: contextRef + + + + + traceDataRef + Represents the following attribute in the schema: traceDataRef + + + + + from + Represents the following attribute in the schema: from + + + + + to + Represents the following attribute in the schema: to + + + + + + + + Defines the Context Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:context. + + + The following table lists the possible child types: + + <inkml:brush> + <inkml:canvas> + <inkml:canvasTransform> + <inkml:inkSource> + <inkml:timestamp> + <inkml:traceFormat> + + + + + + Initializes a new instance of the Context class. + + + + + Initializes a new instance of the Context class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Context class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Context class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: xml:id + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + contextRef + Represents the following attribute in the schema: contextRef + + + + + canvasRef + Represents the following attribute in the schema: canvasRef + + + + + canvasTransformRef + Represents the following attribute in the schema: canvasTransformRef + + + + + traceFormatRef + Represents the following attribute in the schema: traceFormatRef + + + + + inkSourceRef + Represents the following attribute in the schema: inkSourceRef + + + + + brushRef + Represents the following attribute in the schema: brushRef + + + + + timestampRef + Represents the following attribute in the schema: timestampRef + + + + + Canvas. + Represents the following element tag in the schema: inkml:canvas. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + CanvasTransform. + Represents the following element tag in the schema: inkml:canvasTransform. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + TraceFormat. + Represents the following element tag in the schema: inkml:traceFormat. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + InkSource. + Represents the following element tag in the schema: inkml:inkSource. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + Brush. + Represents the following element tag in the schema: inkml:brush. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + Timestamp. + Represents the following element tag in the schema: inkml:timestamp. + + + xmlns:inkml = http://www.w3.org/2003/InkML + + + + + + + + Defines the Definitions Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is inkml:definitions. + + + The following table lists the possible child types: + + <inkml:brush> + <inkml:canvas> + <inkml:canvasTransform> + <inkml:context> + <inkml:inkSource> + <inkml:mapping> + <inkml:timestamp> + <inkml:trace> + <inkml:traceFormat> + <inkml:traceGroup> + <inkml:traceView> + + + + + + Initializes a new instance of the Definitions class. + + + + + Initializes a new instance of the Definitions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Definitions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Definitions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ChannelDataTypeValues enumeration. + + + + + Creates a new ChannelDataTypeValues enum instance + + + + + integer. + When the item is serialized out as xml, its value is "integer". + + + + + decimal. + When the item is serialized out as xml, its value is "decimal". + + + + + boolean. + When the item is serialized out as xml, its value is "boolean". + + + + + Defines the ChannelValueOrientationValues enumeration. + + + + + Creates a new ChannelValueOrientationValues enum instance + + + + + +ve. + When the item is serialized out as xml, its value is "+ve". + + + + + -ve. + When the item is serialized out as xml, its value is "-ve". + + + + + Defines the StandardChannelPropertyNameValues enumeration. + + + + + Creates a new StandardChannelPropertyNameValues enum instance + + + + + threshold. + When the item is serialized out as xml, its value is "threshold". + + + + + resolution. + When the item is serialized out as xml, its value is "resolution". + + + + + quantization. + When the item is serialized out as xml, its value is "quantization". + + + + + noise. + When the item is serialized out as xml, its value is "noise". + + + + + accuracy. + When the item is serialized out as xml, its value is "accuracy". + + + + + crossCoupling. + When the item is serialized out as xml, its value is "crossCoupling". + + + + + skew. + When the item is serialized out as xml, its value is "skew". + + + + + minBandwidth. + When the item is serialized out as xml, its value is "minBandwidth". + + + + + peakRate. + When the item is serialized out as xml, its value is "peakRate". + + + + + distortion. + When the item is serialized out as xml, its value is "distortion". + + + + + Defines the StandardBrushPropertyNameValues enumeration. + + + + + Creates a new StandardBrushPropertyNameValues enum instance + + + + + width. + When the item is serialized out as xml, its value is "width". + + + + + height. + When the item is serialized out as xml, its value is "height". + + + + + color. + When the item is serialized out as xml, its value is "color". + + + + + transparency. + When the item is serialized out as xml, its value is "transparency". + + + + + tip. + When the item is serialized out as xml, its value is "tip". + + + + + rasterOp. + When the item is serialized out as xml, its value is "rasterOp". + + + + + antiAliased. + When the item is serialized out as xml, its value is "antiAliased". + + + + + fitToCurve. + When the item is serialized out as xml, its value is "fitToCurve". + + + + + ignorePressure. + When the item is serialized out as xml, its value is "ignorePressure". + + + + + Defines the StandardChannelNameValues enumeration. + + + + + Creates a new StandardChannelNameValues enum instance + + + + + X. + When the item is serialized out as xml, its value is "X". + + + + + Y. + When the item is serialized out as xml, its value is "Y". + + + + + Z. + When the item is serialized out as xml, its value is "Z". + + + + + F. + When the item is serialized out as xml, its value is "F". + + + + + TP. + When the item is serialized out as xml, its value is "TP". + + + + + BP. + When the item is serialized out as xml, its value is "BP". + + + + + S. + When the item is serialized out as xml, its value is "S". + + + + + B1. + When the item is serialized out as xml, its value is "B1". + + + + + B2. + When the item is serialized out as xml, its value is "B2". + + + + + B3. + When the item is serialized out as xml, its value is "B3". + + + + + B4. + When the item is serialized out as xml, its value is "B4". + + + + + E. + When the item is serialized out as xml, its value is "E". + + + + + OTx. + When the item is serialized out as xml, its value is "OTx". + + + + + OTy. + When the item is serialized out as xml, its value is "OTy". + + + + + OA. + When the item is serialized out as xml, its value is "OA". + + + + + OE. + When the item is serialized out as xml, its value is "OE". + + + + + OR. + When the item is serialized out as xml, its value is "OR". + + + + + RP. + When the item is serialized out as xml, its value is "RP". + + + + + RR. + When the item is serialized out as xml, its value is "RR". + + + + + RY. + When the item is serialized out as xml, its value is "RY". + + + + + C. + When the item is serialized out as xml, its value is "C". + + + + + CR. + When the item is serialized out as xml, its value is "CR". + + + + + CG. + When the item is serialized out as xml, its value is "CG". + + + + + CB. + When the item is serialized out as xml, its value is "CB". + + + + + CC. + When the item is serialized out as xml, its value is "CC". + + + + + CM. + When the item is serialized out as xml, its value is "CM". + + + + + CY. + When the item is serialized out as xml, its value is "CY". + + + + + CK. + When the item is serialized out as xml, its value is "CK". + + + + + W. + When the item is serialized out as xml, its value is "W". + + + + + T. + When the item is serialized out as xml, its value is "T". + + + + + SN. + When the item is serialized out as xml, its value is "SN". + + + + + TW. + When the item is serialized out as xml, its value is "TW". + + + + + TH. + When the item is serialized out as xml, its value is "TH". + + + + + TC. + When the item is serialized out as xml, its value is "TC". + + + + + Defines the StandardLengthUnitsValues enumeration. + + + + + Creates a new StandardLengthUnitsValues enum instance + + + + + m. + When the item is serialized out as xml, its value is "m". + + + + + cm. + When the item is serialized out as xml, its value is "cm". + + + + + mm. + When the item is serialized out as xml, its value is "mm". + + + + + in. + When the item is serialized out as xml, its value is "in". + + + + + pt. + When the item is serialized out as xml, its value is "pt". + + + + + pc. + When the item is serialized out as xml, its value is "pc". + + + + + em. + When the item is serialized out as xml, its value is "em". + + + + + ex. + When the item is serialized out as xml, its value is "ex". + + + + + Defines the StandardPerLengthUnitsValues enumeration. + + + + + Creates a new StandardPerLengthUnitsValues enum instance + + + + + 1/m. + When the item is serialized out as xml, its value is "1/m". + + + + + 1/cm. + When the item is serialized out as xml, its value is "1/cm". + + + + + 1/mm. + When the item is serialized out as xml, its value is "1/mm". + + + + + 1/in. + When the item is serialized out as xml, its value is "1/in". + + + + + 1/pt. + When the item is serialized out as xml, its value is "1/pt". + + + + + 1/pc. + When the item is serialized out as xml, its value is "1/pc". + + + + + 1/em. + When the item is serialized out as xml, its value is "1/em". + + + + + 1/ex. + When the item is serialized out as xml, its value is "1/ex". + + + + + Defines the StandardTimeUnitsValues enumeration. + + + + + Creates a new StandardTimeUnitsValues enum instance + + + + + s. + When the item is serialized out as xml, its value is "s". + + + + + ms. + When the item is serialized out as xml, its value is "ms". + + + + + Defines the StandardPerTimeUnitsValues enumeration. + + + + + Creates a new StandardPerTimeUnitsValues enum instance + + + + + 1/s. + When the item is serialized out as xml, its value is "1/s". + + + + + 1/ms. + When the item is serialized out as xml, its value is "1/ms". + + + + + Defines the StandardMassForceUnitsValues enumeration. + + + + + Creates a new StandardMassForceUnitsValues enum instance + + + + + Kg. + When the item is serialized out as xml, its value is "Kg". + + + + + g. + When the item is serialized out as xml, its value is "g". + + + + + mg. + When the item is serialized out as xml, its value is "mg". + + + + + N. + When the item is serialized out as xml, its value is "N". + + + + + lb. + When the item is serialized out as xml, its value is "lb". + + + + + Defines the StandardPerMassForceUnitsValues enumeration. + + + + + Creates a new StandardPerMassForceUnitsValues enum instance + + + + + 1/Kg. + When the item is serialized out as xml, its value is "1/Kg". + + + + + 1/g. + When the item is serialized out as xml, its value is "1/g". + + + + + 1/mg. + When the item is serialized out as xml, its value is "1/mg". + + + + + 1/N. + When the item is serialized out as xml, its value is "1/N". + + + + + 1/lb. + When the item is serialized out as xml, its value is "1/lb". + + + + + Defines the StandardAngleUnitsValues enumeration. + + + + + Creates a new StandardAngleUnitsValues enum instance + + + + + deg. + When the item is serialized out as xml, its value is "deg". + + + + + rad. + When the item is serialized out as xml, its value is "rad". + + + + + Defines the StandardPerAngleUnitsValues enumeration. + + + + + Creates a new StandardPerAngleUnitsValues enum instance + + + + + 1/deg. + When the item is serialized out as xml, its value is "1/deg". + + + + + 1/rad. + When the item is serialized out as xml, its value is "1/rad". + + + + + Defines the StandardOtherUnitsValues enumeration. + + + + + Creates a new StandardOtherUnitsValues enum instance + + + + + %. + When the item is serialized out as xml, its value is "%". + + + + + dev. + When the item is serialized out as xml, its value is "dev". + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + Defines the StandardPerOtherUnitsValues enumeration. + + + + + Creates a new StandardPerOtherUnitsValues enum instance + + + + + 1/%. + When the item is serialized out as xml, its value is "1/%". + + + + + 1/dev. + When the item is serialized out as xml, its value is "1/dev". + + + + + Defines the TraceTypeValues enumeration. + + + + + Creates a new TraceTypeValues enum instance + + + + + penDown. + When the item is serialized out as xml, its value is "penDown". + + + + + penUp. + When the item is serialized out as xml, its value is "penUp". + + + + + indeterminate. + When the item is serialized out as xml, its value is "indeterminate". + + + + + Defines the TraceContinuationValues enumeration. + + + + + Creates a new TraceContinuationValues enum instance + + + + + begin. + When the item is serialized out as xml, its value is "begin". + + + + + end. + When the item is serialized out as xml, its value is "end". + + + + + middle. + When the item is serialized out as xml, its value is "middle". + + + + + Defines the RasterOperationValues enumeration. + + + + + Creates a new RasterOperationValues enum instance + + + + + black. + When the item is serialized out as xml, its value is "black". + + + + + notMergePen. + When the item is serialized out as xml, its value is "notMergePen". + + + + + maskNotPen. + When the item is serialized out as xml, its value is "maskNotPen". + + + + + notCopyPen. + When the item is serialized out as xml, its value is "notCopyPen". + + + + + maskPenNot. + When the item is serialized out as xml, its value is "maskPenNot". + + + + + not. + When the item is serialized out as xml, its value is "not". + + + + + xOrPen. + When the item is serialized out as xml, its value is "xOrPen". + + + + + notMaskPen. + When the item is serialized out as xml, its value is "notMaskPen". + + + + + maskPen. + When the item is serialized out as xml, its value is "maskPen". + + + + + notXOrPen. + When the item is serialized out as xml, its value is "notXOrPen". + + + + + noOperation. + When the item is serialized out as xml, its value is "noOperation". + + + + + mergeNotPen. + When the item is serialized out as xml, its value is "mergeNotPen". + + + + + copyPen. + When the item is serialized out as xml, its value is "copyPen". + + + + + mergePenNot. + When the item is serialized out as xml, its value is "mergePenNot". + + + + + mergePen. + When the item is serialized out as xml, its value is "mergePen". + + + + + white. + When the item is serialized out as xml, its value is "white". + + + + + Defines the PenTipShapeValues enumeration. + + + + + Creates a new PenTipShapeValues enum instance + + + + + ellipse. + When the item is serialized out as xml, its value is "ellipse". + + + + + rectangle. + When the item is serialized out as xml, its value is "rectangle". + + + + + drop. + When the item is serialized out as xml, its value is "drop". + + + + + Defines the MappingTypeValues enumeration. + + + + + Creates a new MappingTypeValues enum instance + + + + + identity. + When the item is serialized out as xml, its value is "identity". + + + + + lookup. + When the item is serialized out as xml, its value is "lookup". + + + + + affine. + When the item is serialized out as xml, its value is "affine". + + + + + mathml. + When the item is serialized out as xml, its value is "mathml". + + + + + product. + When the item is serialized out as xml, its value is "product". + + + + + unknown. + When the item is serialized out as xml, its value is "unknown". + + + + + Defines the TableApplyValues enumeration. + + + + + Creates a new TableApplyValues enum instance + + + + + absolute. + When the item is serialized out as xml, its value is "absolute". + + + + + relative. + When the item is serialized out as xml, its value is "relative". + + + + + Defines the TableInterpolationValues enumeration. + + + + + Creates a new TableInterpolationValues enum instance + + + + + floor. + When the item is serialized out as xml, its value is "floor". + + + + + middle. + When the item is serialized out as xml, its value is "middle". + + + + + ceiling. + When the item is serialized out as xml, its value is "ceiling". + + + + + linear. + When the item is serialized out as xml, its value is "linear". + + + + + cubic. + When the item is serialized out as xml, its value is "cubic". + + + + + Defines CustomUI. + + + Defines the CustomUI Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:customUI. + + + The following table lists the possible child types: + + <mso:commands> + <mso:ribbon> + + + + + + CustomUI constructor. + + The owner part of the CustomUI. + + + + Loads the DOM from an OpenXML part. + + The part to be loaded. + + + + Saves the DOM into the OpenXML part. + + The part to be saved to. + + + + Gets the CustomUIPart associated with this element, it could either be a QuickAccessToolbarCustomizationsPart or a RibbonExtensibilityPart. + + + + + Initializes a new instance of the CustomUI class. + + + + + Initializes a new instance of the CustomUI class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomUI class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomUI class from outer XML. + + Specifies the outer XML of the element. + + + + onLoad + Represents the following attribute in the schema: onLoad + + + + + loadImage + Represents the following attribute in the schema: loadImage + + + + + RepurposedCommands. + Represents the following element tag in the schema: mso:commands. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + Ribbon. + Represents the following element tag in the schema: mso:ribbon. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + + + + Defines the UnsizedControlClone Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:control. + + + + + Initializes a new instance of the UnsizedControlClone class. + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the UnsizedButton Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:button. + + + + + Initializes a new instance of the UnsizedButton class. + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the CheckBox Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:checkBox. + + + + + Initializes a new instance of the CheckBox class. + + + + + getPressed + Represents the following attribute in the schema: getPressed + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the UnsizedGallery Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:gallery. + + + The following table lists the possible child types: + + <mso:button> + <mso:item> + + + + + + Initializes a new instance of the UnsizedGallery class. + + + + + Initializes a new instance of the UnsizedGallery class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UnsizedGallery class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UnsizedGallery class from outer XML. + + Specifies the outer XML of the element. + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + invalidateContentOnDrop + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + columns + Represents the following attribute in the schema: columns + + + + + rows + Represents the following attribute in the schema: rows + + + + + itemWidth + Represents the following attribute in the schema: itemWidth + + + + + itemHeight + Represents the following attribute in the schema: itemHeight + + + + + getItemWidth + Represents the following attribute in the schema: getItemWidth + + + + + getItemHeight + Represents the following attribute in the schema: getItemHeight + + + + + showItemLabel + Represents the following attribute in the schema: showItemLabel + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + showItemImage + Represents the following attribute in the schema: showItemImage + + + + + getItemCount + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel + Represents the following attribute in the schema: getItemLabel + + + + + getItemScreentip + Represents the following attribute in the schema: getItemScreentip + + + + + getItemSupertip + Represents the following attribute in the schema: getItemSupertip + + + + + getItemImage + Represents the following attribute in the schema: getItemImage + + + + + getItemID + Represents the following attribute in the schema: getItemID + + + + + sizeString + Represents the following attribute in the schema: sizeString + + + + + getSelectedItemID + Represents the following attribute in the schema: getSelectedItemID + + + + + getSelectedItemIndex + Represents the following attribute in the schema: getSelectedItemIndex + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the UnsizedToggleButton Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:toggleButton. + + + + + Initializes a new instance of the UnsizedToggleButton class. + + + + + getPressed + Represents the following attribute in the schema: getPressed + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the MenuSeparator Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:menuSeparator. + + + + + Initializes a new instance of the MenuSeparator class. + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + title + Represents the following attribute in the schema: title + + + + + getTitle + Represents the following attribute in the schema: getTitle + + + + + + + + Defines the UnsizedSplitButton Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:splitButton. + + + The following table lists the possible child types: + + <mso:menu> + <mso:button> + <mso:toggleButton> + + + + + + Initializes a new instance of the UnsizedSplitButton class. + + + + + Initializes a new instance of the UnsizedSplitButton class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UnsizedSplitButton class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UnsizedSplitButton class from outer XML. + + Specifies the outer XML of the element. + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the UnsizedMenu Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:menu. + + + The following table lists the possible child types: + + <mso:button> + <mso:checkBox> + <mso:control> + <mso:dynamicMenu> + <mso:gallery> + <mso:menu> + <mso:menuSeparator> + <mso:splitButton> + <mso:toggleButton> + + + + + + Initializes a new instance of the UnsizedMenu class. + + + + + Initializes a new instance of the UnsizedMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UnsizedMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UnsizedMenu class from outer XML. + + Specifies the outer XML of the element. + + + + itemSize + Represents the following attribute in the schema: itemSize + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the UnsizedDynamicMenu Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:dynamicMenu. + + + + + Initializes a new instance of the UnsizedDynamicMenu class. + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + getContent + Represents the following attribute in the schema: getContent + + + + + invalidateContentOnDrop + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the SplitButtonWithTitle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:splitButton. + + + The following table lists the possible child types: + + <mso:menu> + <mso:button> + <mso:toggleButton> + + + + + + Initializes a new instance of the SplitButtonWithTitle class. + + + + + Initializes a new instance of the SplitButtonWithTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButtonWithTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButtonWithTitle class from outer XML. + + Specifies the outer XML of the element. + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the MenuWithTitle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:menu. + + + The following table lists the possible child types: + + <mso:button> + <mso:checkBox> + <mso:control> + <mso:dynamicMenu> + <mso:gallery> + <mso:menuSeparator> + <mso:menu> + <mso:splitButton> + <mso:toggleButton> + + + + + + Initializes a new instance of the MenuWithTitle class. + + + + + Initializes a new instance of the MenuWithTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuWithTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuWithTitle class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + itemSize + Represents the following attribute in the schema: itemSize + + + + + title + Represents the following attribute in the schema: title + + + + + getTitle + Represents the following attribute in the schema: getTitle + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the ControlClone Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:control. + + + + + Initializes a new instance of the ControlClone class. + + + + + size + Represents the following attribute in the schema: size + + + + + getSize + Represents the following attribute in the schema: getSize + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the TextLabel Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:labelControl. + + + + + Initializes a new instance of the TextLabel class. + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the Button Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:button. + + + + + Initializes a new instance of the Button class. + + + + + size + Represents the following attribute in the schema: size + + + + + getSize + Represents the following attribute in the schema: getSize + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the ToggleButton Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:toggleButton. + + + + + Initializes a new instance of the ToggleButton class. + + + + + size + Represents the following attribute in the schema: size + + + + + getSize + Represents the following attribute in the schema: getSize + + + + + getPressed + Represents the following attribute in the schema: getPressed + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the EditBox Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:editBox. + + + + + Initializes a new instance of the EditBox class. + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + maxLength + Represents the following attribute in the schema: maxLength + + + + + getText + Represents the following attribute in the schema: getText + + + + + onChange + Represents the following attribute in the schema: onChange + + + + + sizeString + Represents the following attribute in the schema: sizeString + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the ComboBox Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:comboBox. + + + The following table lists the possible child types: + + <mso:item> + + + + + + Initializes a new instance of the ComboBox class. + + + + + Initializes a new instance of the ComboBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ComboBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ComboBox class from outer XML. + + Specifies the outer XML of the element. + + + + showItemImage + Represents the following attribute in the schema: showItemImage + + + + + getItemCount + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel + Represents the following attribute in the schema: getItemLabel + + + + + getItemScreentip + Represents the following attribute in the schema: getItemScreentip + + + + + getItemSupertip + Represents the following attribute in the schema: getItemSupertip + + + + + getItemImage + Represents the following attribute in the schema: getItemImage + + + + + getItemID + Represents the following attribute in the schema: getItemID + + + + + sizeString + Represents the following attribute in the schema: sizeString + + + + + invalidateContentOnDrop + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + maxLength + Represents the following attribute in the schema: maxLength + + + + + getText + Represents the following attribute in the schema: getText + + + + + onChange + Represents the following attribute in the schema: onChange + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the DropDown Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:dropDown. + + + The following table lists the possible child types: + + <mso:button> + <mso:item> + + + + + + Initializes a new instance of the DropDown class. + + + + + Initializes a new instance of the DropDown class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropDown class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropDown class from outer XML. + + Specifies the outer XML of the element. + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + showItemImage + Represents the following attribute in the schema: showItemImage + + + + + getItemCount + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel + Represents the following attribute in the schema: getItemLabel + + + + + getItemScreentip + Represents the following attribute in the schema: getItemScreentip + + + + + getItemSupertip + Represents the following attribute in the schema: getItemSupertip + + + + + getItemImage + Represents the following attribute in the schema: getItemImage + + + + + getItemID + Represents the following attribute in the schema: getItemID + + + + + sizeString + Represents the following attribute in the schema: sizeString + + + + + getSelectedItemID + Represents the following attribute in the schema: getSelectedItemID + + + + + getSelectedItemIndex + Represents the following attribute in the schema: getSelectedItemIndex + + + + + showItemLabel + Represents the following attribute in the schema: showItemLabel + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the Gallery Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:gallery. + + + The following table lists the possible child types: + + <mso:button> + <mso:item> + + + + + + Initializes a new instance of the Gallery class. + + + + + Initializes a new instance of the Gallery class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Gallery class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Gallery class from outer XML. + + Specifies the outer XML of the element. + + + + size + Represents the following attribute in the schema: size + + + + + getSize + Represents the following attribute in the schema: getSize + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + invalidateContentOnDrop + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + columns + Represents the following attribute in the schema: columns + + + + + rows + Represents the following attribute in the schema: rows + + + + + itemWidth + Represents the following attribute in the schema: itemWidth + + + + + itemHeight + Represents the following attribute in the schema: itemHeight + + + + + getItemWidth + Represents the following attribute in the schema: getItemWidth + + + + + getItemHeight + Represents the following attribute in the schema: getItemHeight + + + + + showItemLabel + Represents the following attribute in the schema: showItemLabel + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + showItemImage + Represents the following attribute in the schema: showItemImage + + + + + getItemCount + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel + Represents the following attribute in the schema: getItemLabel + + + + + getItemScreentip + Represents the following attribute in the schema: getItemScreentip + + + + + getItemSupertip + Represents the following attribute in the schema: getItemSupertip + + + + + getItemImage + Represents the following attribute in the schema: getItemImage + + + + + getItemID + Represents the following attribute in the schema: getItemID + + + + + sizeString + Represents the following attribute in the schema: sizeString + + + + + getSelectedItemID + Represents the following attribute in the schema: getSelectedItemID + + + + + getSelectedItemIndex + Represents the following attribute in the schema: getSelectedItemIndex + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the Menu Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:menu. + + + The following table lists the possible child types: + + <mso:button> + <mso:checkBox> + <mso:control> + <mso:dynamicMenu> + <mso:gallery> + <mso:menu> + <mso:menuSeparator> + <mso:splitButton> + <mso:toggleButton> + + + + + + Initializes a new instance of the Menu class. + + + + + Initializes a new instance of the Menu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Menu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Menu class from outer XML. + + Specifies the outer XML of the element. + + + + size + Represents the following attribute in the schema: size + + + + + getSize + Represents the following attribute in the schema: getSize + + + + + itemSize + Represents the following attribute in the schema: itemSize + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the DynamicMenu Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:dynamicMenu. + + + + + Initializes a new instance of the DynamicMenu class. + + + + + size + Represents the following attribute in the schema: size + + + + + getSize + Represents the following attribute in the schema: getSize + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + getContent + Represents the following attribute in the schema: getContent + + + + + invalidateContentOnDrop + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the SplitButton Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:splitButton. + + + The following table lists the possible child types: + + <mso:menu> + <mso:button> + <mso:toggleButton> + + + + + + Initializes a new instance of the SplitButton class. + + + + + Initializes a new instance of the SplitButton class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButton class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButton class from outer XML. + + Specifies the outer XML of the element. + + + + size + Represents the following attribute in the schema: size + + + + + getSize + Represents the following attribute in the schema: getSize + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the Box Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:box. + + + The following table lists the possible child types: + + <mso:box> + <mso:button> + <mso:buttonGroup> + <mso:checkBox> + <mso:comboBox> + <mso:control> + <mso:dropDown> + <mso:dynamicMenu> + <mso:editBox> + <mso:gallery> + <mso:labelControl> + <mso:menu> + <mso:splitButton> + <mso:toggleButton> + + + + + + Initializes a new instance of the Box class. + + + + + Initializes a new instance of the Box class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Box class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Box class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + boxStyle + Represents the following attribute in the schema: boxStyle + + + + + + + + Defines the ButtonGroup Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:buttonGroup. + + + The following table lists the possible child types: + + <mso:button> + <mso:control> + <mso:dynamicMenu> + <mso:gallery> + <mso:menu> + <mso:splitButton> + <mso:toggleButton> + + + + + + Initializes a new instance of the ButtonGroup class. + + + + + Initializes a new instance of the ButtonGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ButtonGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ButtonGroup class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + + + + Defines the MenuRoot Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:menu. + + + The following table lists the possible child types: + + <mso:button> + <mso:checkBox> + <mso:control> + <mso:dynamicMenu> + <mso:gallery> + <mso:menu> + <mso:menuSeparator> + <mso:splitButton> + <mso:toggleButton> + + + + + + Initializes a new instance of the MenuRoot class. + + + + + Initializes a new instance of the MenuRoot class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuRoot class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuRoot class from outer XML. + + Specifies the outer XML of the element. + + + + title + Represents the following attribute in the schema: title + + + + + getTitle + Represents the following attribute in the schema: getTitle + + + + + itemSize + Represents the following attribute in the schema: itemSize + + + + + + + + Defines the Item Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:item. + + + + + Initializes a new instance of the Item class. + + + + + id + Represents the following attribute in the schema: id + + + + + label + Represents the following attribute in the schema: label + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + + + + Defines the VisibleButton Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:button. + + + + + Initializes a new instance of the VisibleButton class. + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the VisibleToggleButton Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:toggleButton. + + + + + Initializes a new instance of the VisibleToggleButton class. + + + + + getPressed + Represents the following attribute in the schema: getPressed + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the VerticalSeparator Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:separator. + + + + + Initializes a new instance of the VerticalSeparator class. + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + + + + Defines the DialogBoxLauncher Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:dialogBoxLauncher. + + + The following table lists the possible child types: + + <mso:button> + + + + + + Initializes a new instance of the DialogBoxLauncher class. + + + + + Initializes a new instance of the DialogBoxLauncher class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DialogBoxLauncher class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DialogBoxLauncher class from outer XML. + + Specifies the outer XML of the element. + + + + UnsizedButton. + Represents the following element tag in the schema: mso:button. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + + + + Defines the Group Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:group. + + + The following table lists the possible child types: + + <mso:box> + <mso:button> + <mso:buttonGroup> + <mso:checkBox> + <mso:comboBox> + <mso:control> + <mso:dialogBoxLauncher> + <mso:dropDown> + <mso:dynamicMenu> + <mso:editBox> + <mso:gallery> + <mso:labelControl> + <mso:menu> + <mso:separator> + <mso:splitButton> + <mso:toggleButton> + + + + + + Initializes a new instance of the Group class. + + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the QuickAccessToolbarControlClone Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:control. + + + + + Initializes a new instance of the QuickAccessToolbarControlClone class. + + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + description + Represents the following attribute in the schema: description + + + + + getDescription + Represents the following attribute in the schema: getDescription + + + + + size + Represents the following attribute in the schema: size + + + + + getSize + Represents the following attribute in the schema: getSize + + + + + image + Represents the following attribute in the schema: image + + + + + imageMso + Represents the following attribute in the schema: imageMso + + + + + getImage + Represents the following attribute in the schema: getImage + + + + + screentip + Represents the following attribute in the schema: screentip + + + + + getScreentip + Represents the following attribute in the schema: getScreentip + + + + + supertip + Represents the following attribute in the schema: supertip + + + + + getSupertip + Represents the following attribute in the schema: getSupertip + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + showLabel + Represents the following attribute in the schema: showLabel + + + + + getShowLabel + Represents the following attribute in the schema: getShowLabel + + + + + showImage + Represents the following attribute in the schema: showImage + + + + + getShowImage + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the SharedQatControls Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:sharedControls. + + + The following table lists the possible child types: + + <mso:button> + <mso:control> + <mso:separator> + + + + + + Initializes a new instance of the SharedQatControls class. + + + + + Initializes a new instance of the SharedQatControls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedQatControls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedQatControls class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DocumentSpecificQuickAccessToolbarControls Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:documentControls. + + + The following table lists the possible child types: + + <mso:button> + <mso:control> + <mso:separator> + + + + + + Initializes a new instance of the DocumentSpecificQuickAccessToolbarControls class. + + + + + Initializes a new instance of the DocumentSpecificQuickAccessToolbarControls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentSpecificQuickAccessToolbarControls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentSpecificQuickAccessToolbarControls class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the QatItemsType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <mso:button> + <mso:control> + <mso:separator> + + + + + + Initializes a new instance of the QatItemsType class. + + + + + Initializes a new instance of the QatItemsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QatItemsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QatItemsType class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the Tab Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:tab. + + + The following table lists the possible child types: + + <mso:group> + + + + + + Initializes a new instance of the Tab class. + + + + + Initializes a new instance of the Tab class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tab class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tab class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + idQ + Represents the following attribute in the schema: idQ + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + tag + Represents the following attribute in the schema: tag + + + + + label + Represents the following attribute in the schema: label + + + + + getLabel + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ + Represents the following attribute in the schema: insertBeforeQ + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + keytip + Represents the following attribute in the schema: keytip + + + + + getKeytip + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the ContextualTabSet Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:tabSet. + + + The following table lists the possible child types: + + <mso:tab> + + + + + + Initializes a new instance of the ContextualTabSet class. + + + + + Initializes a new instance of the ContextualTabSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextualTabSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextualTabSet class from outer XML. + + Specifies the outer XML of the element. + + + + idMso + Represents the following attribute in the schema: idMso + + + + + visible + Represents the following attribute in the schema: visible + + + + + getVisible + Represents the following attribute in the schema: getVisible + + + + + + + + Defines the RepurposedCommand Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:command. + + + + + Initializes a new instance of the RepurposedCommand class. + + + + + onAction + Represents the following attribute in the schema: onAction + + + + + enabled + Represents the following attribute in the schema: enabled + + + + + getEnabled + Represents the following attribute in the schema: getEnabled + + + + + idMso + Represents the following attribute in the schema: idMso + + + + + + + + Defines the OfficeMenu Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:officeMenu. + + + The following table lists the possible child types: + + <mso:button> + <mso:checkBox> + <mso:control> + <mso:dynamicMenu> + <mso:gallery> + <mso:menuSeparator> + <mso:menu> + <mso:splitButton> + <mso:toggleButton> + + + + + + Initializes a new instance of the OfficeMenu class. + + + + + Initializes a new instance of the OfficeMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeMenu class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the QuickAccessToolbar Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:qat. + + + The following table lists the possible child types: + + <mso:sharedControls> + <mso:documentControls> + + + + + + Initializes a new instance of the QuickAccessToolbar class. + + + + + Initializes a new instance of the QuickAccessToolbar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuickAccessToolbar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuickAccessToolbar class from outer XML. + + Specifies the outer XML of the element. + + + + SharedQatControls. + Represents the following element tag in the schema: mso:sharedControls. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + DocumentSpecificQuickAccessToolbarControls. + Represents the following element tag in the schema: mso:documentControls. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + + + + Defines the Tabs Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:tabs. + + + The following table lists the possible child types: + + <mso:tab> + + + + + + Initializes a new instance of the Tabs class. + + + + + Initializes a new instance of the Tabs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tabs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tabs class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ContextualTabSets Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:contextualTabs. + + + The following table lists the possible child types: + + <mso:tabSet> + + + + + + Initializes a new instance of the ContextualTabSets class. + + + + + Initializes a new instance of the ContextualTabSets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextualTabSets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextualTabSets class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RepurposedCommands Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:commands. + + + The following table lists the possible child types: + + <mso:command> + + + + + + Initializes a new instance of the RepurposedCommands class. + + + + + Initializes a new instance of the RepurposedCommands class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RepurposedCommands class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RepurposedCommands class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Ribbon Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is mso:ribbon. + + + The following table lists the possible child types: + + <mso:contextualTabs> + <mso:officeMenu> + <mso:qat> + <mso:tabs> + + + + + + Initializes a new instance of the Ribbon class. + + + + + Initializes a new instance of the Ribbon class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Ribbon class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Ribbon class from outer XML. + + Specifies the outer XML of the element. + + + + startFromScratch + Represents the following attribute in the schema: startFromScratch + + + + + OfficeMenu. + Represents the following element tag in the schema: mso:officeMenu. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + QuickAccessToolbar. + Represents the following element tag in the schema: mso:qat. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + Tabs. + Represents the following element tag in the schema: mso:tabs. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + ContextualTabSets. + Represents the following element tag in the schema: mso:contextualTabs. + + + xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui + + + + + + + + Defines the SizeValues enumeration. + + + + + Creates a new SizeValues enum instance + + + + + normal. + When the item is serialized out as xml, its value is "normal". + + + + + large. + When the item is serialized out as xml, its value is "large". + + + + + Defines the ItemSizeValues enumeration. + + + + + Creates a new ItemSizeValues enum instance + + + + + normal. + When the item is serialized out as xml, its value is "normal". + + + + + large. + When the item is serialized out as xml, its value is "large". + + + + + Defines the BoxStyleValues enumeration. + + + + + Creates a new BoxStyleValues enum instance + + + + + horizontal. + When the item is serialized out as xml, its value is "horizontal". + + + + + vertical. + When the item is serialized out as xml, its value is "vertical". + + + + + Defines MailMergeRecipients. + + + Defines the MailMergeRecipients Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:recipients. + + + The following table lists the possible child types: + + <wne:recipientData> + + + + + + MailMergeRecipients constructor. + + The owner part of the MailMergeRecipients. + + + + Loads the DOM from an OpenXML part. + + The part to be loaded. + + + + Saves the DOM into the OpenXML part. + + The part to be saved to. + + + + Initializes a new instance of the MailMergeRecipients class. + + + + + Initializes a new instance of the MailMergeRecipients class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MailMergeRecipients class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MailMergeRecipients class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TemplateCommandGroup Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:tcg. + + + The following table lists the possible child types: + + <wne:acds> + <wne:keymaps> + <wne:keymapsBad> + <wne:toolbars> + + + + + + Initializes a new instance of the TemplateCommandGroup class. + + + + + Initializes a new instance of the TemplateCommandGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TemplateCommandGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TemplateCommandGroup class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the CustomizationPart + + Specifies the part to be loaded. + + + + Saves the DOM into the CustomizationPart. + + Specifies the part to save to. + + + + Gets the CustomizationPart associated with this element. + + + + + Defines the Mcds Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:mcds. + + + The following table lists the possible child types: + + <wne:mcd> + + + + + + Initializes a new instance of the Mcds class. + + + + + Initializes a new instance of the Mcds class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Mcds class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Mcds class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the VbaSuppData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:vbaSuppData. + + + The following table lists the possible child types: + + <wne:docEvents> + <wne:mcds> + + + + + + Initializes a new instance of the VbaSuppData class. + + + + + Initializes a new instance of the VbaSuppData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VbaSuppData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VbaSuppData class from outer XML. + + Specifies the outer XML of the element. + + + + DocEvents. + Represents the following element tag in the schema: wne:docEvents. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + Mcds. + Represents the following element tag in the schema: wne:mcds. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Loads the DOM from the VbaDataPart + + Specifies the part to be loaded. + + + + Saves the DOM into the VbaDataPart. + + Specifies the part to save to. + + + + Gets the VbaDataPart associated with this element. + + + + + Defines the FixedCommandKeyboardCustomization Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:fci. + + + + + Initializes a new instance of the FixedCommandKeyboardCustomization class. + + + + + fciName + Represents the following attribute in the schema: wne:fciName + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + fciIndex + Represents the following attribute in the schema: wne:fciIndex + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + swArg + Represents the following attribute in the schema: wne:swArg + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the MacroKeyboardCustomization Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:macro. + + + + + Initializes a new instance of the MacroKeyboardCustomization class. + + + + + + + + Defines the WllMacroKeyboardCustomization Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:wll. + + + + + Initializes a new instance of the WllMacroKeyboardCustomization class. + + + + + + + + Defines the MacroWllType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the MacroWllType class. + + + + + macroName + Represents the following attribute in the schema: wne:macroName + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + Defines the AllocatedCommandKeyboardCustomization Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:acd. + + + + + Initializes a new instance of the AllocatedCommandKeyboardCustomization class. + + + + + + + + Defines the AllocatedCommandManifestEntry Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:acdEntry. + + + + + Initializes a new instance of the AllocatedCommandManifestEntry class. + + + + + + + + Defines the AcceleratorKeymapType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the AcceleratorKeymapType class. + + + + + acdName + Represents the following attribute in the schema: wne:acdName + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + Defines the CharacterInsertion Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:wch. + + + + + Initializes a new instance of the CharacterInsertion class. + + + + + val + Represents the following attribute in the schema: wne:val + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the KeyMapEntry Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:keymap. + + + The following table lists the possible child types: + + <wne:acd> + <wne:fci> + <wne:wch> + <wne:macro> + <wne:wll> + + + + + + Initializes a new instance of the KeyMapEntry class. + + + + + Initializes a new instance of the KeyMapEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the KeyMapEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the KeyMapEntry class from outer XML. + + Specifies the outer XML of the element. + + + + chmPrimary + Represents the following attribute in the schema: wne:chmPrimary + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + chmSecondary + Represents the following attribute in the schema: wne:chmSecondary + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + kcmPrimary + Represents the following attribute in the schema: wne:kcmPrimary + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + kcmSecondary + Represents the following attribute in the schema: wne:kcmSecondary + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + mask + Represents the following attribute in the schema: wne:mask + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + FixedCommandKeyboardCustomization. + Represents the following element tag in the schema: wne:fci. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + MacroKeyboardCustomization. + Represents the following element tag in the schema: wne:macro. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + AllocatedCommandKeyboardCustomization. + Represents the following element tag in the schema: wne:acd. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + WllMacroKeyboardCustomization. + Represents the following element tag in the schema: wne:wll. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + CharacterInsertion. + Represents the following element tag in the schema: wne:wch. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the AllocatedCommand Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:acd. + + + + + Initializes a new instance of the AllocatedCommand class. + + + + + argValue + Represents the following attribute in the schema: wne:argValue + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + fciBasedOn + Represents the following attribute in the schema: wne:fciBasedOn + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + fciIndexBasedOn + Represents the following attribute in the schema: wne:fciIndexBasedOn + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + acdName + Represents the following attribute in the schema: wne:acdName + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the Mcd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:mcd. + + + + + Initializes a new instance of the Mcd class. + + + + + macroName + Represents the following attribute in the schema: wne:macroName + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + name + Represents the following attribute in the schema: wne:name + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + menuHelp + Represents the following attribute in the schema: wne:menuHelp + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + bEncrypt + Represents the following attribute in the schema: wne:bEncrypt + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + cmg + Represents the following attribute in the schema: wne:cmg + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the EventDocNewXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocNew. + + + + + Initializes a new instance of the EventDocNewXsdString class. + + + + + Initializes a new instance of the EventDocNewXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocOpenXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocOpen. + + + + + Initializes a new instance of the EventDocOpenXsdString class. + + + + + Initializes a new instance of the EventDocOpenXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocCloseXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocClose. + + + + + Initializes a new instance of the EventDocCloseXsdString class. + + + + + Initializes a new instance of the EventDocCloseXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocSyncXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocSync. + + + + + Initializes a new instance of the EventDocSyncXsdString class. + + + + + Initializes a new instance of the EventDocSyncXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocXmlAfterInsertXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocXmlAfterInsert. + + + + + Initializes a new instance of the EventDocXmlAfterInsertXsdString class. + + + + + Initializes a new instance of the EventDocXmlAfterInsertXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocXmlBeforeDeleteXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocXmlBeforeDelete. + + + + + Initializes a new instance of the EventDocXmlBeforeDeleteXsdString class. + + + + + Initializes a new instance of the EventDocXmlBeforeDeleteXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocContentControlAfterInsertXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocContentControlAfterInsert. + + + + + Initializes a new instance of the EventDocContentControlAfterInsertXsdString class. + + + + + Initializes a new instance of the EventDocContentControlAfterInsertXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocContentControlBeforeDeleteXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocContentControlBeforeDelete. + + + + + Initializes a new instance of the EventDocContentControlBeforeDeleteXsdString class. + + + + + Initializes a new instance of the EventDocContentControlBeforeDeleteXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocContentControlOnExistXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocContentControlOnExit. + + + + + Initializes a new instance of the EventDocContentControlOnExistXsdString class. + + + + + Initializes a new instance of the EventDocContentControlOnExistXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocContentControlOnEnterXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocContentControlOnEnter. + + + + + Initializes a new instance of the EventDocContentControlOnEnterXsdString class. + + + + + Initializes a new instance of the EventDocContentControlOnEnterXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocStoreUpdateXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocStoreUpdate. + + + + + Initializes a new instance of the EventDocStoreUpdateXsdString class. + + + + + Initializes a new instance of the EventDocStoreUpdateXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocContentControlUpdateXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocContentControlContentUpdate. + + + + + Initializes a new instance of the EventDocContentControlUpdateXsdString class. + + + + + Initializes a new instance of the EventDocContentControlUpdateXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EventDocBuildingBlockAfterInsertXsdString Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:eventDocBuildingBlockAfterInsert. + + + + + Initializes a new instance of the EventDocBuildingBlockAfterInsertXsdString class. + + + + + Initializes a new instance of the EventDocBuildingBlockAfterInsertXsdString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the DocEvents Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:docEvents. + + + The following table lists the possible child types: + + <wne:eventDocNew> + <wne:eventDocOpen> + <wne:eventDocClose> + <wne:eventDocSync> + <wne:eventDocXmlAfterInsert> + <wne:eventDocXmlBeforeDelete> + <wne:eventDocContentControlAfterInsert> + <wne:eventDocContentControlBeforeDelete> + <wne:eventDocContentControlOnExit> + <wne:eventDocContentControlOnEnter> + <wne:eventDocStoreUpdate> + <wne:eventDocContentControlContentUpdate> + <wne:eventDocBuildingBlockAfterInsert> + + + + + + Initializes a new instance of the DocEvents class. + + + + + Initializes a new instance of the DocEvents class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocEvents class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocEvents class from outer XML. + + Specifies the outer XML of the element. + + + + EventDocNewXsdString. + Represents the following element tag in the schema: wne:eventDocNew. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocOpenXsdString. + Represents the following element tag in the schema: wne:eventDocOpen. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocCloseXsdString. + Represents the following element tag in the schema: wne:eventDocClose. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocSyncXsdString. + Represents the following element tag in the schema: wne:eventDocSync. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocXmlAfterInsertXsdString. + Represents the following element tag in the schema: wne:eventDocXmlAfterInsert. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocXmlBeforeDeleteXsdString. + Represents the following element tag in the schema: wne:eventDocXmlBeforeDelete. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocContentControlAfterInsertXsdString. + Represents the following element tag in the schema: wne:eventDocContentControlAfterInsert. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocContentControlBeforeDeleteXsdString. + Represents the following element tag in the schema: wne:eventDocContentControlBeforeDelete. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocContentControlOnExistXsdString. + Represents the following element tag in the schema: wne:eventDocContentControlOnExit. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocContentControlOnEnterXsdString. + Represents the following element tag in the schema: wne:eventDocContentControlOnEnter. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocStoreUpdateXsdString. + Represents the following element tag in the schema: wne:eventDocStoreUpdate. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocContentControlUpdateXsdString. + Represents the following element tag in the schema: wne:eventDocContentControlContentUpdate. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + EventDocBuildingBlockAfterInsertXsdString. + Represents the following element tag in the schema: wne:eventDocBuildingBlockAfterInsert. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the AllocatedCommandManifest Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:acdManifest. + + + The following table lists the possible child types: + + <wne:acdEntry> + + + + + + Initializes a new instance of the AllocatedCommandManifest class. + + + + + Initializes a new instance of the AllocatedCommandManifest class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AllocatedCommandManifest class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AllocatedCommandManifest class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ToolbarData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:toolbarData. + + + + + Initializes a new instance of the ToolbarData class. + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the KeyMapCustomizations Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:keymaps. + + + The following table lists the possible child types: + + <wne:keymap> + + + + + + Initializes a new instance of the KeyMapCustomizations class. + + + + + Initializes a new instance of the KeyMapCustomizations class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the KeyMapCustomizations class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the KeyMapCustomizations class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MismatchedKeyMapCustomization Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:keymapsBad. + + + The following table lists the possible child types: + + <wne:keymap> + + + + + + Initializes a new instance of the MismatchedKeyMapCustomization class. + + + + + Initializes a new instance of the MismatchedKeyMapCustomization class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MismatchedKeyMapCustomization class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MismatchedKeyMapCustomization class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the KeymapsType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <wne:keymap> + + + + + + Initializes a new instance of the KeymapsType class. + + + + + Initializes a new instance of the KeymapsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the KeymapsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the KeymapsType class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the Toolbars Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:toolbars. + + + The following table lists the possible child types: + + <wne:acdManifest> + <wne:toolbarData> + + + + + + Initializes a new instance of the Toolbars class. + + + + + Initializes a new instance of the Toolbars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Toolbars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Toolbars class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AllocatedCommands Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:acds. + + + The following table lists the possible child types: + + <wne:acd> + + + + + + Initializes a new instance of the AllocatedCommands class. + + + + + Initializes a new instance of the AllocatedCommands class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AllocatedCommands class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AllocatedCommands class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RecordIncluded Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:active. + + + + + Initializes a new instance of the RecordIncluded class. + + + + + val + Represents the following attribute in the schema: wne:val + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the RecordHashCode Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:hash. + + + + + Initializes a new instance of the RecordHashCode class. + + + + + val + Represents the following attribute in the schema: wne:val + + + xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the SingleDataSourceRecord Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wne:recipientData. + + + The following table lists the possible child types: + + <wne:hash> + <wne:active> + + + + + + Initializes a new instance of the SingleDataSourceRecord class. + + + + + Initializes a new instance of the SingleDataSourceRecord class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SingleDataSourceRecord class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SingleDataSourceRecord class from outer XML. + + Specifies the outer XML of the element. + + + + RecordIncluded. + Represents the following element tag in the schema: wne:active. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + RecordHashCode. + Represents the following element tag in the schema: wne:hash. + + + xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml + + + + + + + + Defines the OEmbed Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is woe:oembed. + + + + + Initializes a new instance of the OEmbed class. + + + + + oEmbedUrl, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: oEmbedUrl + + + + + mediaType, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: mediaType + + + + + picLocksAutoForOEmbed, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: picLocksAutoForOEmbed + + + + + + + + Defines the ActiveXControlData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ax:ocx. + + + The following table lists the possible child types: + + <ax:ocxPr> + + + + + + Initializes a new instance of the ActiveXControlData class. + + + + + Initializes a new instance of the ActiveXControlData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ActiveXControlData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ActiveXControlData class from outer XML. + + Specifies the outer XML of the element. + + + + classid + Represents the following attribute in the schema: ax:classid + + + xmlns:ax=http://schemas.microsoft.com/office/2006/activeX + + + + + license + Represents the following attribute in the schema: ax:license + + + xmlns:ax=http://schemas.microsoft.com/office/2006/activeX + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + persistence + Represents the following attribute in the schema: ax:persistence + + + xmlns:ax=http://schemas.microsoft.com/office/2006/activeX + + + + + + + + Defines the ActiveXObjectProperty Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ax:ocxPr. + + + The following table lists the possible child types: + + <ax:font> + <ax:picture> + + + + + + Initializes a new instance of the ActiveXObjectProperty class. + + + + + Initializes a new instance of the ActiveXObjectProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ActiveXObjectProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ActiveXObjectProperty class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: ax:name + + + xmlns:ax=http://schemas.microsoft.com/office/2006/activeX + + + + + value + Represents the following attribute in the schema: ax:value + + + xmlns:ax=http://schemas.microsoft.com/office/2006/activeX + + + + + SharedComFont. + Represents the following element tag in the schema: ax:font. + + + xmlns:ax = http://schemas.microsoft.com/office/2006/activeX + + + + + SharedComPicture. + Represents the following element tag in the schema: ax:picture. + + + xmlns:ax = http://schemas.microsoft.com/office/2006/activeX + + + + + + + + Defines the SharedComFont Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ax:font. + + + The following table lists the possible child types: + + <ax:ocxPr> + + + + + + Initializes a new instance of the SharedComFont class. + + + + + Initializes a new instance of the SharedComFont class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedComFont class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedComFont class from outer XML. + + Specifies the outer XML of the element. + + + + persistence + Represents the following attribute in the schema: ax:persistence + + + xmlns:ax=http://schemas.microsoft.com/office/2006/activeX + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the SharedComPicture Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ax:picture. + + + + + Initializes a new instance of the SharedComPicture class. + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the PersistenceValues enumeration. + + + + + Creates a new PersistenceValues enum instance + + + + + persistPropertyBag. + When the item is serialized out as xml, its value is "persistPropertyBag". + + + + + persistStream. + When the item is serialized out as xml, its value is "persistStream". + + + + + persistStreamInit. + When the item is serialized out as xml, its value is "persistStreamInit". + + + + + persistStorage. + When the item is serialized out as xml, its value is "persistStorage". + + + + + Defines the CoverPageProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cppr:CoverPageProperties. + + + The following table lists the possible child types: + + <cppr:PublishDate> + <cppr:Abstract> + <cppr:CompanyAddress> + <cppr:CompanyPhone> + <cppr:CompanyFax> + <cppr:CompanyEmail> + + + + + + Initializes a new instance of the CoverPageProperties class. + + + + + Initializes a new instance of the CoverPageProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CoverPageProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CoverPageProperties class from outer XML. + + Specifies the outer XML of the element. + + + + PublishDate. + Represents the following element tag in the schema: cppr:PublishDate. + + + xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps + + + + + DocumentAbstract. + Represents the following element tag in the schema: cppr:Abstract. + + + xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps + + + + + CompanyAddress. + Represents the following element tag in the schema: cppr:CompanyAddress. + + + xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps + + + + + CompanyPhoneNumber. + Represents the following element tag in the schema: cppr:CompanyPhone. + + + xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps + + + + + CompanyFaxNumber. + Represents the following element tag in the schema: cppr:CompanyFax. + + + xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps + + + + + CompanyEmailAddress. + Represents the following element tag in the schema: cppr:CompanyEmail. + + + xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps + + + + + + + + Defines the PublishDate Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cppr:PublishDate. + + + + + Initializes a new instance of the PublishDate class. + + + + + Initializes a new instance of the PublishDate class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the DocumentAbstract Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cppr:Abstract. + + + + + Initializes a new instance of the DocumentAbstract class. + + + + + Initializes a new instance of the DocumentAbstract class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CompanyAddress Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cppr:CompanyAddress. + + + + + Initializes a new instance of the CompanyAddress class. + + + + + Initializes a new instance of the CompanyAddress class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CompanyPhoneNumber Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cppr:CompanyPhone. + + + + + Initializes a new instance of the CompanyPhoneNumber class. + + + + + Initializes a new instance of the CompanyPhoneNumber class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CompanyFaxNumber Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cppr:CompanyFax. + + + + + Initializes a new instance of the CompanyFaxNumber class. + + + + + Initializes a new instance of the CompanyFaxNumber class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CompanyEmailAddress Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cppr:CompanyEmail. + + + + + Initializes a new instance of the CompanyEmailAddress class. + + + + + Initializes a new instance of the CompanyEmailAddress class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CustomPropertyEditors Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdip:customPropertyEditors. + + + The following table lists the possible child types: + + <cdip:customPropertyEditor> + <cdip:defaultPropertyEditorNamespace> + <cdip:showOnOpen> + + + + + + Initializes a new instance of the CustomPropertyEditors class. + + + + + Initializes a new instance of the CustomPropertyEditors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomPropertyEditors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomPropertyEditors class from outer XML. + + Specifies the outer XML of the element. + + + + ShowOnOpen. + Represents the following element tag in the schema: cdip:showOnOpen. + + + xmlns:cdip = http://schemas.microsoft.com/office/2006/customDocumentInformationPanel + + + + + DefaultPropertyEditorNamespace. + Represents the following element tag in the schema: cdip:defaultPropertyEditorNamespace. + + + xmlns:cdip = http://schemas.microsoft.com/office/2006/customDocumentInformationPanel + + + + + + + + Defines the PropertyEditorNamespace Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdip:XMLNamespace. + + + + + Initializes a new instance of the PropertyEditorNamespace class. + + + + + Initializes a new instance of the PropertyEditorNamespace class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the DefaultPropertyEditorNamespace Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdip:defaultPropertyEditorNamespace. + + + + + Initializes a new instance of the DefaultPropertyEditorNamespace class. + + + + + Initializes a new instance of the DefaultPropertyEditorNamespace class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the XsnFileLocation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdip:XSNLocation. + + + + + Initializes a new instance of the XsnFileLocation class. + + + + + Initializes a new instance of the XsnFileLocation class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the ShowOnOpen Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdip:showOnOpen. + + + + + Initializes a new instance of the ShowOnOpen class. + + + + + Initializes a new instance of the ShowOnOpen class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CustomPropertyEditor Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdip:customPropertyEditor. + + + The following table lists the possible child types: + + <cdip:XMLNamespace> + <cdip:XSNLocation> + + + + + + Initializes a new instance of the CustomPropertyEditor class. + + + + + Initializes a new instance of the CustomPropertyEditor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomPropertyEditor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomPropertyEditor class from outer XML. + + Specifies the outer XML of the element. + + + + PropertyEditorNamespace. + Represents the following element tag in the schema: cdip:XMLNamespace. + + + xmlns:cdip = http://schemas.microsoft.com/office/2006/customDocumentInformationPanel + + + + + XsnFileLocation. + Represents the following element tag in the schema: cdip:XSNLocation. + + + xmlns:cdip = http://schemas.microsoft.com/office/2006/customDocumentInformationPanel + + + + + + + + Defines the ContentTypeSchema Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ct:contentTypeSchema. + + + + + Initializes a new instance of the ContentTypeSchema class. + + + + + Initializes a new instance of the ContentTypeSchema class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentTypeSchema class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentTypeSchema class from outer XML. + + Specifies the outer XML of the element. + + + + _ + Represents the following attribute in the schema: ct:_ + + + xmlns:ct=http://schemas.microsoft.com/office/2006/metadata/contentType + + + + + _ + Represents the following attribute in the schema: ma:_ + + + xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes + + + + + contentTypeName + Represents the following attribute in the schema: ma:contentTypeName + + + xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes + + + + + contentTypeID + Represents the following attribute in the schema: ma:contentTypeID + + + xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes + + + + + contentTypeVersion + Represents the following attribute in the schema: ma:contentTypeVersion + + + xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes + + + + + contentTypeDescription + Represents the following attribute in the schema: ma:contentTypeDescription + + + xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes + + + + + contentTypeScope + Represents the following attribute in the schema: ma:contentTypeScope + + + xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes + + + + + versionID + Represents the following attribute in the schema: ma:versionID + + + xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes + + + + + + + + Defines the CustomXsn Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ntns:customXsn. + + + The following table lists the possible child types: + + <ntns:xsnLocation> + <ntns:cached> + <ntns:openByDefault> + <ntns:xsnScope> + + + + + + Initializes a new instance of the CustomXsn class. + + + + + Initializes a new instance of the CustomXsn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXsn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXsn class from outer XML. + + Specifies the outer XML of the element. + + + + XsnLocation. + Represents the following element tag in the schema: ntns:xsnLocation. + + + xmlns:ntns = http://schemas.microsoft.com/office/2006/metadata/customXsn + + + + + CachedView. + Represents the following element tag in the schema: ntns:cached. + + + xmlns:ntns = http://schemas.microsoft.com/office/2006/metadata/customXsn + + + + + OpenByDefault. + Represents the following element tag in the schema: ntns:openByDefault. + + + xmlns:ntns = http://schemas.microsoft.com/office/2006/metadata/customXsn + + + + + Scope. + Represents the following element tag in the schema: ntns:xsnScope. + + + xmlns:ntns = http://schemas.microsoft.com/office/2006/metadata/customXsn + + + + + + + + Defines the XsnLocation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ntns:xsnLocation. + + + + + Initializes a new instance of the XsnLocation class. + + + + + Initializes a new instance of the XsnLocation class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CachedView Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ntns:cached. + + + + + Initializes a new instance of the CachedView class. + + + + + Initializes a new instance of the CachedView class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the OpenByDefault Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ntns:openByDefault. + + + + + Initializes a new instance of the OpenByDefault class. + + + + + Initializes a new instance of the OpenByDefault class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Scope Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ntns:xsnScope. + + + + + Initializes a new instance of the Scope class. + + + + + Initializes a new instance of the Scope class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the LongProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is lp:LongProperties. + + + The following table lists the possible child types: + + <lp:LongProp> + + + + + + Initializes a new instance of the LongProperties class. + + + + + Initializes a new instance of the LongProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LongProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LongProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LongProperty Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is lp:LongProp. + + + + + Initializes a new instance of the LongProperty class. + + + + + Initializes a new instance of the LongProperty class with the specified text content. + + Specifies the text content of the element. + + + + name + Represents the following attribute in the schema: name + + + + + + + + Defines the Dummy Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ma:DummyContentTypeElement. + + + + + Initializes a new instance of the Dummy class. + + + + + decimals + Represents the following attribute in the schema: decimals + + + + + default + Represents the following attribute in the schema: default + + + + + description + Represents the following attribute in the schema: description + + + + + displayName + Represents the following attribute in the schema: displayName + + + + + fieldsID + Represents the following attribute in the schema: fieldsID + + + + + format + Represents the following attribute in the schema: format + + + + + hidden + Represents the following attribute in the schema: hidden + + + + + index + Represents the following attribute in the schema: index + + + + + internalName + Represents the following attribute in the schema: internalName + + + + + LCID + Represents the following attribute in the schema: LCID + + + + + list + Represents the following attribute in the schema: list + + + + + percentage + Represents the following attribute in the schema: percentage + + + + + readOnly + Represents the following attribute in the schema: readOnly + + + + + requiredMultiChoice + Represents the following attribute in the schema: requiredMultiChoice + + + + + root + Represents the following attribute in the schema: root + + + + + showField + Represents the following attribute in the schema: showField + + + + + web + Represents the following attribute in the schema: web + + + + + + + + Defines the TrueOnlyValues enumeration. + + + + + Creates a new TrueOnlyValues enum instance + + + + + true. + When the item is serialized out as xml, its value is "true". + + + + + Defines the Drawing Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:drawing. + + + The following table lists the possible child types: + + <dsp:spTree> + + + + + + Initializes a new instance of the Drawing class. + + + + + Initializes a new instance of the Drawing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Drawing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Drawing class from outer XML. + + Specifies the outer XML of the element. + + + + ShapeTree. + Represents the following element tag in the schema: dsp:spTree. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + + + + Loads the DOM from the DiagramPersistLayoutPart + + Specifies the part to be loaded. + + + + Saves the DOM into the DiagramPersistLayoutPart. + + Specifies the part to save to. + + + + Gets the DiagramPersistLayoutPart associated with this element. + + + + + Defines the DataModelExtensionBlock Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:dataModelExt. + + + + + Initializes a new instance of the DataModelExtensionBlock class. + + + + + relId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: relId + + + + + minVer, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: minVer + + + + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualDrawingShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:cNvSpPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:spLocks> + + + + + + Initializes a new instance of the NonVisualDrawingShapeProperties class. + + + + + Initializes a new instance of the NonVisualDrawingShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Text Box + Represents the following attribute in the schema: txBox + + + + + Shape Locks. + Represents the following element tag in the schema: a:spLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ShapeNonVisualProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:nvSpPr. + + + The following table lists the possible child types: + + <dsp:cNvPr> + <dsp:cNvSpPr> + + + + + + Initializes a new instance of the ShapeNonVisualProperties class. + + + + + Initializes a new instance of the ShapeNonVisualProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeNonVisualProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeNonVisualProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: dsp:cNvPr. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + NonVisualDrawingShapeProperties. + Represents the following element tag in the schema: dsp:cNvSpPr. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ShapeStyle Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:style. + + + The following table lists the possible child types: + + <a:fontRef> + <a:lnRef> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the ShapeStyle class. + + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class from outer XML. + + Specifies the outer XML of the element. + + + + LineReference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillReference. + Represents the following element tag in the schema: a:fillRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + EffectReference. + Represents the following element tag in the schema: a:effectRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Reference. + Represents the following element tag in the schema: a:fontRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the TextBody Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:txBody. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBody class. + + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the Transform2D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:txXfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NonVisualGroupDrawingShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:cNvGrpSpPr. + + + The following table lists the possible child types: + + <a:grpSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProperties class. + + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + GroupShapeLocks. + Represents the following element tag in the schema: a:grpSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualGroupDrawingShapePropsExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the GroupShapeNonVisualProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:nvGrpSpPr. + + + The following table lists the possible child types: + + <dsp:cNvPr> + <dsp:cNvGrpSpPr> + + + + + + Initializes a new instance of the GroupShapeNonVisualProperties class. + + + + + Initializes a new instance of the GroupShapeNonVisualProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeNonVisualProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeNonVisualProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: dsp:cNvPr. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + NonVisualGroupDrawingShapeProperties. + Represents the following element tag in the schema: dsp:cNvGrpSpPr. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + + + + Defines the GroupShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:grpSpPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:xfrm> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:scene3d> + <a:solidFill> + + + + + + Initializes a new instance of the GroupShapeProperties class. + + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Grouped Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the Shape Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:sp. + + + The following table lists the possible child types: + + <dsp:extLst> + <dsp:spPr> + <dsp:style> + <dsp:txBody> + <dsp:txXfrm> + <dsp:nvSpPr> + + + + + + Initializes a new instance of the Shape class. + + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class from outer XML. + + Specifies the outer XML of the element. + + + + modelId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: modelId + + + + + ShapeNonVisualProperties. + Represents the following element tag in the schema: dsp:nvSpPr. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + ShapeProperties. + Represents the following element tag in the schema: dsp:spPr. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + ShapeStyle. + Represents the following element tag in the schema: dsp:style. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + TextBody. + Represents the following element tag in the schema: dsp:txBody. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + Transform2D. + Represents the following element tag in the schema: dsp:txXfrm. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: dsp:extLst. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + + + + Defines the GroupShape Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:grpSp. + + + The following table lists the possible child types: + + <dsp:grpSpPr> + <dsp:extLst> + <dsp:grpSp> + <dsp:nvGrpSpPr> + <dsp:sp> + + + + + + Initializes a new instance of the GroupShape class. + + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ShapeTree Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dsp:spTree. + + + The following table lists the possible child types: + + <dsp:grpSpPr> + <dsp:extLst> + <dsp:grpSp> + <dsp:nvGrpSpPr> + <dsp:sp> + + + + + + Initializes a new instance of the ShapeTree class. + + + + + Initializes a new instance of the ShapeTree class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeTree class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeTree class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GroupShapeType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <dsp:grpSpPr> + <dsp:extLst> + <dsp:grpSp> + <dsp:nvGrpSpPr> + <dsp:sp> + + + + + + Initializes a new instance of the GroupShapeType class. + + + + + Initializes a new instance of the GroupShapeType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeType class from outer XML. + + Specifies the outer XML of the element. + + + + GroupShapeNonVisualProperties. + Represents the following element tag in the schema: dsp:nvGrpSpPr. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + GroupShapeProperties. + Represents the following element tag in the schema: dsp:grpSpPr. + + + xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram + + + + + Defines the OEmbedShared Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is aoe:oembedShared. + + + The following table lists the possible child types: + + <aoe:extLst> + + + + + + Initializes a new instance of the OEmbedShared class. + + + + + Initializes a new instance of the OEmbedShared class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OEmbedShared class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OEmbedShared class from outer XML. + + Specifies the outer XML of the element. + + + + srcUrl, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: srcUrl + + + + + type, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: type + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: aoe:extLst. + + + xmlns:aoe = http://schemas.microsoft.com/office/drawing/2021/oembed + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is aoe:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ScriptLink Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is asl:scriptLink. + + + The following table lists the possible child types: + + <asl:extLst> + + + + + + Initializes a new instance of the ScriptLink class. + + + + + Initializes a new instance of the ScriptLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScriptLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScriptLink class from outer XML. + + Specifies the outer XML of the element. + + + + val, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: val + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: asl:extLst. + + + xmlns:asl = http://schemas.microsoft.com/office/drawing/2021/scriptlink + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is asl:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ImageFormula Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is aif:imageFormula. + + + + + Initializes a new instance of the ImageFormula class. + + + + + formula, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: formula + + + + + + + + Defines the Macrosheet Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xne:macrosheet. + + + The following table lists the possible child types: + + <x:autoFilter> + <x:cols> + <x:conditionalFormatting> + <x:customProperties> + <x:customSheetViews> + <x:dataConsolidate> + <x:drawing> + <x:drawingHF> + <x:extLst> + <x:headerFooter> + <x:legacyDrawing> + <x:legacyDrawingHF> + <x:oleObjects> + <x:rowBreaks> + <x:colBreaks> + <x:pageMargins> + <x:pageSetup> + <x:phoneticPr> + <x:printOptions> + <x:picture> + <x:sheetData> + <x:dimension> + <x:sheetFormatPr> + <x:sheetPr> + <x:sheetProtection> + <x:sheetViews> + <x:sortState> + + + + + + Initializes a new instance of the Macrosheet class. + + + + + Initializes a new instance of the Macrosheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Macrosheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Macrosheet class from outer XML. + + Specifies the outer XML of the element. + + + + Sheet Properties. + Represents the following element tag in the schema: x:sheetPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Macro Sheet Dimensions. + Represents the following element tag in the schema: x:dimension. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Macro Sheet Views. + Represents the following element tag in the schema: x:sheetViews. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Sheet Format Properties. + Represents the following element tag in the schema: x:sheetFormatPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the MacroSheetPart + + Specifies the part to be loaded. + + + + Saves the DOM into the MacroSheetPart. + + Specifies the part to save to. + + + + Gets the MacroSheetPart associated with this element. + + + + + Worksheet Sort Map. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xne:worksheetSortMap. + + + The following table lists the possible child types: + + <xne:colSortMap> + <xne:rowSortMap> + + + + + + Initializes a new instance of the WorksheetSortMap class. + + + + + Initializes a new instance of the WorksheetSortMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorksheetSortMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorksheetSortMap class from outer XML. + + Specifies the outer XML of the element. + + + + Row Sort Map. + Represents the following element tag in the schema: xne:rowSortMap. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + Column Sort Map. + Represents the following element tag in the schema: xne:colSortMap. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + + + + Loads the DOM from the WorksheetSortMapPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorksheetSortMapPart. + + Specifies the part to save to. + + + + Gets the WorksheetSortMapPart associated with this element. + + + + + Defines the ReferenceSequence Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xne:sqref. + + + + + Initializes a new instance of the ReferenceSequence class. + + + + + Initializes a new instance of the ReferenceSequence class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Formula Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xne:f. + + + + + Initializes a new instance of the Formula class. + + + + + Initializes a new instance of the Formula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Row Sort Map. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xne:rowSortMap. + + + The following table lists the possible child types: + + <xne:row> + + + + + + Initializes a new instance of the RowSortMap class. + + + + + Initializes a new instance of the RowSortMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowSortMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowSortMap class from outer XML. + + Specifies the outer XML of the element. + + + + Reference + Represents the following attribute in the schema: ref + + + + + Count + Represents the following attribute in the schema: count + + + + + + + + Column Sort Map. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xne:colSortMap. + + + The following table lists the possible child types: + + <xne:col> + + + + + + Initializes a new instance of the ColumnSortMap class. + + + + + Initializes a new instance of the ColumnSortMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnSortMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnSortMap class from outer XML. + + Specifies the outer XML of the element. + + + + Reference + Represents the following attribute in the schema: ref + + + + + Count + Represents the following attribute in the schema: count + + + + + + + + Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xne:row. + + + + + Initializes a new instance of the RowSortMapItem class. + + + + + + + + Column. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xne:col. + + + + + Initializes a new instance of the ColumnSortMapItem class. + + + + + + + + Defines the SortMapItemType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the SortMapItemType class. + + + + + New Value + Represents the following attribute in the schema: newVal + + + + + Old Value + Represents the following attribute in the schema: oldVal + + + + + Defines the CommentV2MonikerList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is pc2:cmMkLst. + + + The following table lists the possible child types: + + <pc:sldMkLst> + <pc2:cmMK> + + + + + + Initializes a new instance of the CommentV2MonikerList class. + + + + + Initializes a new instance of the CommentV2MonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentV2MonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentV2MonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + SlideMonikerList. + Represents the following element tag in the schema: pc:sldMkLst. + + + xmlns:pc = http://schemas.microsoft.com/office/powerpoint/2013/main/command + + + + + CommentV2Moniker. + Represents the following element tag in the schema: pc2:cmMK. + + + xmlns:pc2 = http://schemas.microsoft.com/office/powerpoint/2019/9/main/command + + + + + + + + Defines the CommentReplyV2MonikerList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is pc2:cmRplyMkLst. + + + The following table lists the possible child types: + + <pc2:cmRplyMk> + <pc2:cmMkLst> + + + + + + Initializes a new instance of the CommentReplyV2MonikerList class. + + + + + Initializes a new instance of the CommentReplyV2MonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentReplyV2MonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentReplyV2MonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + CommentV2MonikerList. + Represents the following element tag in the schema: pc2:cmMkLst. + + + xmlns:pc2 = http://schemas.microsoft.com/office/powerpoint/2019/9/main/command + + + + + CommentReplyV2Moniker. + Represents the following element tag in the schema: pc2:cmRplyMk. + + + xmlns:pc2 = http://schemas.microsoft.com/office/powerpoint/2019/9/main/command + + + + + + + + Defines the CommentV2Moniker Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is pc2:cmMK. + + + + + Initializes a new instance of the CommentV2Moniker class. + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the CommentReplyV2Moniker Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is pc2:cmRplyMk. + + + + + Initializes a new instance of the CommentReplyV2Moniker class. + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the TaskHistoryDetails Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:taskHistoryDetails. + + + The following table lists the possible child types: + + <p216:extLst> + <p216:history> + + + + + + Initializes a new instance of the TaskHistoryDetails class. + + + + + Initializes a new instance of the TaskHistoryDetails class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryDetails class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryDetails class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + TaskHistory. + Represents the following element tag in the schema: p216:history. + + + xmlns:p216 = http://schemas.microsoft.com/office/powerpoint/2021/06/main + + + + + ExtensionList. + Represents the following element tag in the schema: p216:extLst. + + + xmlns:p216 = http://schemas.microsoft.com/office/powerpoint/2021/06/main + + + + + + + + Defines the CommentAnchor Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:comment. + + + + + Initializes a new instance of the CommentAnchor class. + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the ExtensionList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AtrbtnTaskAssignUnassignUser Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:atrbtn. + + + + + Initializes a new instance of the AtrbtnTaskAssignUnassignUser class. + + + + + + + + Defines the AsgnTaskAssignUnassignUser Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:asgn. + + + + + Initializes a new instance of the AsgnTaskAssignUnassignUser class. + + + + + + + + Defines the UnAsgnTaskAssignUnassignUser Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:unAsgn. + + + + + Initializes a new instance of the UnAsgnTaskAssignUnassignUser class. + + + + + + + + Defines the OpenXmlTaskAssignUnassignUserElement Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlTaskAssignUnassignUserElement class. + + + + + authorId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: authorId + + + + + Defines the TaskAnchor Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:anchr. + + + The following table lists the possible child types: + + <p216:extLst> + <p216:comment> + + + + + + Initializes a new instance of the TaskAnchor class. + + + + + Initializes a new instance of the TaskAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + CommentAnchor. + Represents the following element tag in the schema: p216:comment. + + + xmlns:p216 = http://schemas.microsoft.com/office/powerpoint/2021/06/main + + + + + ExtensionList. + Represents the following element tag in the schema: p216:extLst. + + + xmlns:p216 = http://schemas.microsoft.com/office/powerpoint/2021/06/main + + + + + + + + Defines the AddEmpty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:add. + + + + + Initializes a new instance of the AddEmpty class. + + + + + + + + Defines the UnasgnAllEmpty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:unasgnAll. + + + + + Initializes a new instance of the UnasgnAllEmpty class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Defines the TaskTitleEventInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:title. + + + + + Initializes a new instance of the TaskTitleEventInfo class. + + + + + val, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TaskScheduleEventInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:date. + + + + + Initializes a new instance of the TaskScheduleEventInfo class. + + + + + stDt, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: stDt + + + + + endDt, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: endDt + + + + + + + + Defines the TaskProgressEventInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:pcntCmplt. + + + + + Initializes a new instance of the TaskProgressEventInfo class. + + + + + val, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TaskPriorityRecord Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:pri. + + + + + Initializes a new instance of the TaskPriorityRecord class. + + + + + val, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TaskUndo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:undo. + + + + + Initializes a new instance of the TaskUndo class. + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the TaskUnknownRecord Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:unknown. + + + + + Initializes a new instance of the TaskUnknownRecord class. + + + + + + + + Defines the TaskHistoryEvent Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:event. + + + The following table lists the possible child types: + + <p216:add> + <p216:unasgnAll> + <p216:extLst> + <p216:anchr> + <p216:atrbtn> + <p216:asgn> + <p216:unAsgn> + <p216:pri> + <p216:pcntCmplt> + <p216:date> + <p216:title> + <p216:undo> + <p216:unknown> + + + + + + Initializes a new instance of the TaskHistoryEvent class. + + + + + Initializes a new instance of the TaskHistoryEvent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryEvent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryEvent class from outer XML. + + Specifies the outer XML of the element. + + + + time, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: time + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + AtrbtnTaskAssignUnassignUser. + Represents the following element tag in the schema: p216:atrbtn. + + + xmlns:p216 = http://schemas.microsoft.com/office/powerpoint/2021/06/main + + + + + TaskAnchor. + Represents the following element tag in the schema: p216:anchr. + + + xmlns:p216 = http://schemas.microsoft.com/office/powerpoint/2021/06/main + + + + + + + + Defines the TaskHistory Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p216:history. + + + The following table lists the possible child types: + + <p216:event> + + + + + + Initializes a new instance of the TaskHistory class. + + + + + Initializes a new instance of the TaskHistory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistory class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Reactions Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p223:reactions. + + + The following table lists the possible child types: + + <p223:rxn> + + + + + + Initializes a new instance of the Reactions class. + + + + + Initializes a new instance of the Reactions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Reactions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Reactions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExtensionList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p223:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ReactionInstance Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p223:instance. + + + The following table lists the possible child types: + + <p223:extLst> + + + + + + Initializes a new instance of the ReactionInstance class. + + + + + Initializes a new instance of the ReactionInstance class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ReactionInstance class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ReactionInstance class from outer XML. + + Specifies the outer XML of the element. + + + + time, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: time + + + + + authorId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: authorId + + + + + ExtensionList. + Represents the following element tag in the schema: p223:extLst. + + + xmlns:p223 = http://schemas.microsoft.com/office/powerpoint/2022/03/main + + + + + + + + Defines the Reaction Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p223:rxn. + + + The following table lists the possible child types: + + <p223:instance> + + + + + + Initializes a new instance of the Reaction class. + + + + + Initializes a new instance of the Reaction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Reaction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Reaction class from outer XML. + + Specifies the outer XML of the element. + + + + type, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: type + + + + + + + + Defines the TaskDetails Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:taskDetails. + + + The following table lists the possible child types: + + <p228:extLst> + <p228:history> + + + + + + Initializes a new instance of the TaskDetails class. + + + + + Initializes a new instance of the TaskDetails class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskDetails class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskDetails class from outer XML. + + Specifies the outer XML of the element. + + + + deleted, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: deleted + + + + + inactive, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: inactive + + + + + TaskHistory. + Represents the following element tag in the schema: p228:history. + + + xmlns:p228 = http://schemas.microsoft.com/office/powerpoint/2022/08/main + + + + + ExtensionList. + Represents the following element tag in the schema: p228:extLst. + + + xmlns:p228 = http://schemas.microsoft.com/office/powerpoint/2022/08/main + + + + + + + + Defines the CommentAnchor Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:comment. + + + + + Initializes a new instance of the CommentAnchor class. + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the ExtensionList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AtrbtnTaskAssignUnassignUser Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:atrbtn. + + + + + Initializes a new instance of the AtrbtnTaskAssignUnassignUser class. + + + + + + + + Defines the AsgnTaskAssignUnassignUser Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:asgn. + + + + + Initializes a new instance of the AsgnTaskAssignUnassignUser class. + + + + + + + + Defines the OpenXmlTaskAssignUnassignUserElement Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlTaskAssignUnassignUserElement class. + + + + + authorId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: authorId + + + + + Defines the TaskAnchor Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:anchr. + + + The following table lists the possible child types: + + <p228:extLst> + <p228:comment> + + + + + + Initializes a new instance of the TaskAnchor class. + + + + + Initializes a new instance of the TaskAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + CommentAnchor. + Represents the following element tag in the schema: p228:comment. + + + xmlns:p228 = http://schemas.microsoft.com/office/powerpoint/2022/08/main + + + + + ExtensionList. + Represents the following element tag in the schema: p228:extLst. + + + xmlns:p228 = http://schemas.microsoft.com/office/powerpoint/2022/08/main + + + + + + + + Defines the AddEmpty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:add. + + + + + Initializes a new instance of the AddEmpty class. + + + + + + + + Defines the UnasgnAllEmpty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:unasgnAll. + + + + + Initializes a new instance of the UnasgnAllEmpty class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Defines the TaskTitleEventInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:title. + + + + + Initializes a new instance of the TaskTitleEventInfo class. + + + + + val, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TaskScheduleEventInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:date. + + + + + Initializes a new instance of the TaskScheduleEventInfo class. + + + + + stDt, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: stDt + + + + + endDt, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: endDt + + + + + + + + Defines the TaskProgressEventInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:pcntCmplt. + + + + + Initializes a new instance of the TaskProgressEventInfo class. + + + + + val, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TaskUndo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:undo. + + + + + Initializes a new instance of the TaskUndo class. + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the TaskUnknownRecord Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:unknown. + + + + + Initializes a new instance of the TaskUnknownRecord class. + + + + + + + + Defines the TaskHistoryEvent Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:event. + + + The following table lists the possible child types: + + <p228:add> + <p228:unasgnAll> + <p228:extLst> + <p228:anchr> + <p228:atrbtn> + <p228:asgn> + <p228:pcntCmplt> + <p228:date> + <p228:title> + <p228:undo> + <p228:unknown> + + + + + + Initializes a new instance of the TaskHistoryEvent class. + + + + + Initializes a new instance of the TaskHistoryEvent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryEvent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryEvent class from outer XML. + + Specifies the outer XML of the element. + + + + time, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: time + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + AtrbtnTaskAssignUnassignUser. + Represents the following element tag in the schema: p228:atrbtn. + + + xmlns:p228 = http://schemas.microsoft.com/office/powerpoint/2022/08/main + + + + + TaskAnchor. + Represents the following element tag in the schema: p228:anchr. + + + xmlns:p228 = http://schemas.microsoft.com/office/powerpoint/2022/08/main + + + + + + + + Defines the TaskHistory Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p228:history. + + + The following table lists the possible child types: + + <p228:event> + + + + + + Initializes a new instance of the TaskHistory class. + + + + + Initializes a new instance of the TaskHistory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistory class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PlaceholderTypeExtension Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p232:phTypeExt. + + + The following table lists the possible child types: + + <p232:type> + + + + + + Initializes a new instance of the PlaceholderTypeExtension class. + + + + + Initializes a new instance of the PlaceholderTypeExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlaceholderTypeExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlaceholderTypeExtension class from outer XML. + + Specifies the outer XML of the element. + + + + PlaceholderTypeACB. + Represents the following element tag in the schema: p232:type. + + + xmlns:p232 = http://schemas.microsoft.com/office/powerpoint/2023/02/main + + + + + + + + Defines the CameoEmpty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p232:cameo. + + + + + Initializes a new instance of the CameoEmpty class. + + + + + + + + Defines the UnknownEmpty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p232:unknown. + + + + + Initializes a new instance of the UnknownEmpty class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Defines the PlaceholderTypeACB Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p232:type. + + + The following table lists the possible child types: + + <p232:cameo> + <p232:unknown> + + + + + + Initializes a new instance of the PlaceholderTypeACB class. + + + + + Initializes a new instance of the PlaceholderTypeACB class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlaceholderTypeACB class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlaceholderTypeACB class from outer XML. + + Specifies the outer XML of the element. + + + + CameoEmpty. + Represents the following element tag in the schema: p232:cameo. + + + xmlns:p232 = http://schemas.microsoft.com/office/powerpoint/2023/02/main + + + + + UnknownEmpty. + Represents the following element tag in the schema: p232:unknown. + + + xmlns:p232 = http://schemas.microsoft.com/office/powerpoint/2023/02/main + + + + + + + + Defines the ExternalBookAlternateUrls Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxl21:alternateUrls. + + + The following table lists the possible child types: + + <xxl21:absoluteUrl> + <xxl21:relativeUrl> + + + + + + Initializes a new instance of the ExternalBookAlternateUrls class. + + + + + Initializes a new instance of the ExternalBookAlternateUrls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalBookAlternateUrls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalBookAlternateUrls class from outer XML. + + Specifies the outer XML of the element. + + + + driveId, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: driveId + + + + + itemId, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: itemId + + + + + AbsoluteUrlAlternateUrl. + Represents the following element tag in the schema: xxl21:absoluteUrl. + + + xmlns:xxl21 = http://schemas.microsoft.com/office/spreadsheetml/2021/extlinks2021 + + + + + RelativeUrlAlternateUrl. + Represents the following element tag in the schema: xxl21:relativeUrl. + + + xmlns:xxl21 = http://schemas.microsoft.com/office/spreadsheetml/2021/extlinks2021 + + + + + + + + Defines the AbsoluteUrlAlternateUrl Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxl21:absoluteUrl. + + + + + Initializes a new instance of the AbsoluteUrlAlternateUrl class. + + + + + + + + Defines the RelativeUrlAlternateUrl Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxl21:relativeUrl. + + + + + Initializes a new instance of the RelativeUrlAlternateUrl class. + + + + + + + + Defines the OpenXmlAlternateUrlElement Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlAlternateUrlElement class. + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Defines the CacheVersionInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxpvi:cacheVersionInfo. + + + The following table lists the possible child types: + + <xxpvi:requiredFeature> + <xxpvi:lastRefreshFeature> + + + + + + Initializes a new instance of the CacheVersionInfo class. + + + + + Initializes a new instance of the CacheVersionInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheVersionInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheVersionInfo class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotVersionInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxpvi:pivotVersionInfo. + + + The following table lists the possible child types: + + <xxpvi:requiredFeature> + <xxpvi:lastUpdateFeature> + + + + + + Initializes a new instance of the PivotVersionInfo class. + + + + + Initializes a new instance of the PivotVersionInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotVersionInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotVersionInfo class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RequiredFeatureXsdstring Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxpvi:requiredFeature. + + + + + Initializes a new instance of the RequiredFeatureXsdstring class. + + + + + Initializes a new instance of the RequiredFeatureXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the LastRefreshFeatureXsdstring Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxpvi:lastRefreshFeature. + + + + + Initializes a new instance of the LastRefreshFeatureXsdstring class. + + + + + Initializes a new instance of the LastRefreshFeatureXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the LastUpdateFeatureXsdstring Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxpvi:lastUpdateFeature. + + + + + Initializes a new instance of the LastUpdateFeatureXsdstring class. + + + + + Initializes a new instance of the LastUpdateFeatureXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the VersionInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxdsv:versionInfo. + + + The following table lists the possible child types: + + <xxdsv:requiredFeature> + <xxdsv:lastRefreshFeature> + <xxdsv:lastEditFeature> + + + + + + Initializes a new instance of the VersionInfo class. + + + + + Initializes a new instance of the VersionInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VersionInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VersionInfo class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RequiredFeatureXsdstring Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxdsv:requiredFeature. + + + + + Initializes a new instance of the RequiredFeatureXsdstring class. + + + + + Initializes a new instance of the RequiredFeatureXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the LastRefreshFeatureXsdstring Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxdsv:lastRefreshFeature. + + + + + Initializes a new instance of the LastRefreshFeatureXsdstring class. + + + + + Initializes a new instance of the LastRefreshFeatureXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the LastEditFeatureXsdstring Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xxdsv:lastEditFeature. + + + + + Initializes a new instance of the LastEditFeatureXsdstring class. + + + + + Initializes a new instance of the LastEditFeatureXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the ExternalCodeService Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlecs:externalCodeService. + + + + + Initializes a new instance of the ExternalCodeService class. + + + + + autoShow, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: autoShow + + + + + timeout, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: timeout + + + + + + + + Defines the Question Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlmsforms:question. + + + The following table lists the possible child types: + + <xlmsforms:extLst> + + + + + + Initializes a new instance of the Question class. + + + + + Initializes a new instance of the Question class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Question class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Question class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + ExtensionList. + Represents the following element tag in the schema: xlmsforms:extLst. + + + xmlns:xlmsforms = http://schemas.microsoft.com/office/spreadsheetml/2023/msForms + + + + + + + + Defines the MsForm Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlmsforms:msForm. + + + The following table lists the possible child types: + + <xlmsforms:extLst> + <xlmsforms:syncedQuestionId> + + + + + + Initializes a new instance of the MsForm class. + + + + + Initializes a new instance of the MsForm class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MsForm class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MsForm class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: id + + + + + isFormConnected, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: isFormConnected + + + + + maxResponseId, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: maxResponseId + + + + + latestEventMarker, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: latestEventMarker + + + + + + + + Defines the SyncedQuestionId Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlmsforms:syncedQuestionId. + + + + + Initializes a new instance of the SyncedQuestionId class. + + + + + Initializes a new instance of the SyncedQuestionId class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the ExtensionList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlmsforms:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AggregationInfo Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlpcalc:aggregationInfo. + + + + + Initializes a new instance of the AggregationInfo class. + + + + + aggregationType, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: aggregationType + + + + + sourceField, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: sourceField + + + + + + + + Defines the FeatureSupport Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlpcalc:featureSupportInfo. + + + + + Initializes a new instance of the FeatureSupport class. + + + + + featureName, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: featureName + + + + + + + + Defines the AggregationType enumeration. + + + + + Creates a new AggregationType enum instance + + + + + distinctCount. + When the item is serialized out as xml, its value is "distinctCount". + + + + + median. + When the item is serialized out as xml, its value is "median". + + + + + Defines the Xsdboolean Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlpar:autoRefresh. + + + + + Initializes a new instance of the Xsdboolean class. + + + + + Initializes a new instance of the Xsdboolean class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the FeaturePropertyBags Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:FeaturePropertyBags. + + + The following table lists the possible child types: + + <xfpb:extLst> + <xfpb:bagExt> + <xfpb:bag> + + + + + + Initializes a new instance of the FeaturePropertyBags class. + + + + + Initializes a new instance of the FeaturePropertyBags class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FeaturePropertyBags class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FeaturePropertyBags class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: count + + + + + + + + Loads the DOM from the FeaturePropertyBagsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the FeaturePropertyBagsPart. + + Specifies the part to save to. + + + + Gets the FeaturePropertyBagsPart associated with this element. + + + + + Defines the FpbsFeaturePropertyBags Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:fpbs. + + + The following table lists the possible child types: + + <xfpb:extLst> + <xfpb:bagExt> + <xfpb:bag> + + + + + + Initializes a new instance of the FpbsFeaturePropertyBags class. + + + + + Initializes a new instance of the FpbsFeaturePropertyBags class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FpbsFeaturePropertyBags class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FpbsFeaturePropertyBags class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlFeaturePropertyBagsElement Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <xfpb:extLst> + <xfpb:bagExt> + <xfpb:bag> + + + + + + Initializes a new instance of the OpenXmlFeaturePropertyBagsElement class. + + + + + Initializes a new instance of the OpenXmlFeaturePropertyBagsElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlFeaturePropertyBagsElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlFeaturePropertyBagsElement class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: count + + + + + Defines the XfComplement Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:xfComplement. + + + + + Initializes a new instance of the XfComplement class. + + + + + i, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: i + + + + + + + + Defines the DXFComplement Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:DXFComplement. + + + + + Initializes a new instance of the DXFComplement class. + + + + + i, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: i + + + + + + + + Defines the RevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:revdxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the RevDxf class. + + + + + Initializes a new instance of the RevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + FpbsFeaturePropertyBags. + Represents the following element tag in the schema: xfpb:fpbs. + + + xmlns:xfpb = http://schemas.microsoft.com/office/spreadsheetml/2022/featurepropertybag + + + + + DifferentialFormatType. + Represents the following element tag in the schema: xfpb:dxf. + + + xmlns:xfpb = http://schemas.microsoft.com/office/spreadsheetml/2022/featurepropertybag + + + + + + + + Defines the HeaderRowRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:headerRowRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the HeaderRowRevDxfTableRevDxf class. + + + + + Initializes a new instance of the HeaderRowRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderRowRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderRowRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:dataRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the DataRevDxfTableRevDxf class. + + + + + Initializes a new instance of the DataRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TotalsRowRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:totalsRowRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the TotalsRowRevDxfTableRevDxf class. + + + + + Initializes a new instance of the TotalsRowRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TotalsRowRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TotalsRowRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HeaderRowBorderRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:headerRowBorderRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the HeaderRowBorderRevDxfTableRevDxf class. + + + + + Initializes a new instance of the HeaderRowBorderRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderRowBorderRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderRowBorderRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableBorderRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:tableBorderRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the TableBorderRevDxfTableRevDxf class. + + + + + Initializes a new instance of the TableBorderRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableBorderRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableBorderRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TotalsRowBorderRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:totalsRowBorderRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the TotalsRowBorderRevDxfTableRevDxf class. + + + + + Initializes a new instance of the TotalsRowBorderRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TotalsRowBorderRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TotalsRowBorderRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColumnHeaderRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:columnHeaderRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the ColumnHeaderRevDxfTableRevDxf class. + + + + + Initializes a new instance of the ColumnHeaderRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnHeaderRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnHeaderRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColumnBodyRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:columnBodyRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the ColumnBodyRevDxfTableRevDxf class. + + + + + Initializes a new instance of the ColumnBodyRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnBodyRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnBodyRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColumnTotalsRevDxfTableRevDxf Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:columnTotalsRevDxf. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the ColumnTotalsRevDxfTableRevDxf class. + + + + + Initializes a new instance of the ColumnTotalsRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnTotalsRevDxfTableRevDxf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnTotalsRevDxfTableRevDxf class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlTableRevDxfElement Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <xfpb:dxf> + <xfpb:fpbs> + + + + + + Initializes a new instance of the OpenXmlTableRevDxfElement class. + + + + + Initializes a new instance of the OpenXmlTableRevDxfElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlTableRevDxfElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlTableRevDxfElement class from outer XML. + + Specifies the outer XML of the element. + + + + FpbsFeaturePropertyBags. + Represents the following element tag in the schema: xfpb:fpbs. + + + xmlns:xfpb = http://schemas.microsoft.com/office/spreadsheetml/2022/featurepropertybag + + + + + DifferentialFormatType. + Represents the following element tag in the schema: xfpb:dxf. + + + xmlns:xfpb = http://schemas.microsoft.com/office/spreadsheetml/2022/featurepropertybag + + + + + Defines the BagExtensions Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:bagExt. + + + The following table lists the possible child types: + + <xfpb:extLst> + + + + + + Initializes a new instance of the BagExtensions class. + + + + + Initializes a new instance of the BagExtensions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BagExtensions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BagExtensions class from outer XML. + + Specifies the outer XML of the element. + + + + ExtensionList. + Represents the following element tag in the schema: xfpb:extLst. + + + xmlns:xfpb = http://schemas.microsoft.com/office/spreadsheetml/2022/featurepropertybag + + + + + + + + Defines the FeaturePropertyBag Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:bag. + + + The following table lists the possible child types: + + <xfpb:a> + <xfpb:bagId> + <xfpb:b> + <xfpb:d> + <xfpb:i> + <xfpb:rel> + <xfpb:s> + + + + + + Initializes a new instance of the FeaturePropertyBag class. + + + + + Initializes a new instance of the FeaturePropertyBag class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FeaturePropertyBag class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FeaturePropertyBag class from outer XML. + + Specifies the outer XML of the element. + + + + type, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: type + + + + + extRef, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: extRef + + + + + bagExtId, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: bagExtId + + + + + att, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: att + + + + + + + + Defines the ExtensionList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ArrayFeatureProperty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:a. + + + The following table lists the possible child types: + + <xfpb:b> + <xfpb:d> + <xfpb:i> + <xfpb:s> + <xfpb:rel> + <xfpb:bagId> + + + + + + Initializes a new instance of the ArrayFeatureProperty class. + + + + + Initializes a new instance of the ArrayFeatureProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ArrayFeatureProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ArrayFeatureProperty class from outer XML. + + Specifies the outer XML of the element. + + + + Name of the key for the key value pair., this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: k + + + + + + + + Defines the BagFeatureProperty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:bagId. + + + + + Initializes a new instance of the BagFeatureProperty class. + + + + + Initializes a new instance of the BagFeatureProperty class with the specified text content. + + Specifies the text content of the element. + + + + k, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: k + + + + + + + + Defines the IntFeatureProperty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:i. + + + + + Initializes a new instance of the IntFeatureProperty class. + + + + + Initializes a new instance of the IntFeatureProperty class with the specified text content. + + Specifies the text content of the element. + + + + k, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: k + + + + + + + + Defines the StringFeatureProperty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:s. + + + + + Initializes a new instance of the StringFeatureProperty class. + + + + + Initializes a new instance of the StringFeatureProperty class with the specified text content. + + Specifies the text content of the element. + + + + k, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: k + + + + + + + + Defines the BoolFeatureProperty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:b. + + + + + Initializes a new instance of the BoolFeatureProperty class. + + + + + Initializes a new instance of the BoolFeatureProperty class with the specified text content. + + Specifies the text content of the element. + + + + k, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: k + + + + + + + + Defines the DecimalFeatureProperty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:d. + + + + + Initializes a new instance of the DecimalFeatureProperty class. + + + + + Initializes a new instance of the DecimalFeatureProperty class with the specified text content. + + Specifies the text content of the element. + + + + k, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: k + + + + + + + + Defines the RelFeatureProperty Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:rel. + + + + + Initializes a new instance of the RelFeatureProperty class. + + + + + Initializes a new instance of the RelFeatureProperty class with the specified text content. + + Specifies the text content of the element. + + + + Name of the key for the key value pair., this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: k + + + + + + + + Defines the DifferentialFormatType Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:dxf. + + + The following table lists the possible child types: + + <x:border> + <x:alignment> + <x:protection> + <x:extLst> + <x:fill> + <x:font> + <x:numFmt> + + + + + + Initializes a new instance of the DifferentialFormatType class. + + + + + Initializes a new instance of the DifferentialFormatType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormatType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormatType class from outer XML. + + Specifies the outer XML of the element. + + + + Font Properties. + Represents the following element tag in the schema: x:font. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Number Format. + Represents the following element tag in the schema: x:numFmt. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Fill. + Represents the following element tag in the schema: x:fill. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Alignment. + Represents the following element tag in the schema: x:alignment. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Border Properties. + Represents the following element tag in the schema: x:border. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Protection Properties. + Represents the following element tag in the schema: x:protection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the XsdunsignedInt Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:bagId. + + + + + Initializes a new instance of the XsdunsignedInt class. + + + + + Initializes a new instance of the XsdunsignedInt class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Xsdinteger Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:i. + + + + + Initializes a new instance of the Xsdinteger class. + + + + + Initializes a new instance of the Xsdinteger class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the SXsdstring Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:s. + + + + + Initializes a new instance of the SXsdstring class. + + + + + Initializes a new instance of the SXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the RelXsdstring Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:rel. + + + + + Initializes a new instance of the RelXsdstring class. + + + + + Initializes a new instance of the RelXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Xsdboolean Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:b. + + + + + Initializes a new instance of the Xsdboolean class. + + + + + Initializes a new instance of the Xsdboolean class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Xsddouble Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xfpb:d. + + + + + Initializes a new instance of the Xsddouble class. + + + + + Initializes a new instance of the Xsddouble class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the RichValueRels Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlrvrel:richValueRels. + + + The following table lists the possible child types: + + <xlrvrel:extLst> + <xlrvrel:rel> + + + + + + Initializes a new instance of the RichValueRels class. + + + + + Initializes a new instance of the RichValueRels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueRels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueRels class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichValueRelRelationship Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlrvrel:rel. + + + + + Initializes a new instance of the RichValueRelRelationship class. + + + + + id, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the ExtensionList Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is xlrvrel:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Data for the Windows platform.. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p223:reactions> + <p228:taskDetails> + + + + + + Initializes a new instance of the CommentPropertiesExtension class. + + + + + Initializes a new instance of the CommentPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentPropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CommentUnknownAnchor Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:unknownAnchor. + + + + + Initializes a new instance of the CommentUnknownAnchor class. + + + + + + + + Defines the TextBodyType Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:txBody. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBodyType class. + + + + + Initializes a new instance of the TextBodyType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyType class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the CommentPropertiesExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the CommentPropertiesExtensionList class. + + + + + Initializes a new instance of the CommentPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentPropertiesExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AuthorList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:authorLst. + + + The following table lists the possible child types: + + <p188:author> + + + + + + Initializes a new instance of the AuthorList class. + + + + + Initializes a new instance of the AuthorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AuthorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AuthorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the PowerPointAuthorsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the PowerPointAuthorsPart. + + Specifies the part to save to. + + + + Gets the PowerPointAuthorsPart associated with this element. + + + + + Defines the CommentList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:cmLst. + + + The following table lists the possible child types: + + <p188:cm> + + + + + + Initializes a new instance of the CommentList class. + + + + + Initializes a new instance of the CommentList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the PowerPointCommentPart + + Specifies the part to be loaded. + + + + Saves the DOM into the PowerPointCommentPart. + + Specifies the part to save to. + + + + Gets the PowerPointCommentPart associated with this element. + + + + + Defines the CommentRelationship Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:commentRel. + + + + + Initializes a new instance of the CommentRelationship class. + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Author Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:author. + + + The following table lists the possible child types: + + <p188:extLst> + + + + + + Initializes a new instance of the Author class. + + + + + Initializes a new instance of the Author class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Author class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Author class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + name, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: name + + + + + initials, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: initials + + + + + userId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: userId + + + + + providerId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: providerId + + + + + ExtensionList. + Represents the following element tag in the schema: p188:extLst. + + + xmlns:p188 = http://schemas.microsoft.com/office/powerpoint/2018/8/main + + + + + + + + Defines the CommentReply Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:reply. + + + The following table lists the possible child types: + + <p188:txBody> + <p188:extLst> + + + + + + Initializes a new instance of the CommentReply class. + + + + + Initializes a new instance of the CommentReply class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentReply class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentReply class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + authorId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: authorId + + + + + status, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: status + + + + + created, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: created + + + + + tags, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: tags + + + + + likes, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: likes + + + + + TextBodyType. + Represents the following element tag in the schema: p188:txBody. + + + xmlns:p188 = http://schemas.microsoft.com/office/powerpoint/2018/8/main + + + + + CommentPropertiesExtensionList. + Represents the following element tag in the schema: p188:extLst. + + + xmlns:p188 = http://schemas.microsoft.com/office/powerpoint/2018/8/main + + + + + + + + Defines the Point2DType Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:pos. + + + + + Initializes a new instance of the Point2DType class. + + + + + X-Axis Coordinate + Represents the following attribute in the schema: x + + + + + Y-Axis Coordinate + Represents the following attribute in the schema: y + + + + + + + + Defines the CommentReplyList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:replyLst. + + + The following table lists the possible child types: + + <p188:reply> + + + + + + Initializes a new instance of the CommentReplyList class. + + + + + Initializes a new instance of the CommentReplyList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentReplyList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentReplyList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Comment Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p188:cm. + + + The following table lists the possible child types: + + <p188:pos> + <p188:txBody> + <oac:deMkLst> + <oac:tcMkLst> + <oac:gridColMkLst> + <oac:trMkLst> + <oac:txBodyMkLst> + <oac:txMkLst> + <p188:extLst> + <p188:replyLst> + <p188:unknownAnchor> + <pc:sldMasterMkLst> + <pc:sldLayoutMkLst> + <pc:sldMkLst> + + + + + + Initializes a new instance of the Comment class. + + + + + Initializes a new instance of the Comment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comment class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + authorId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: authorId + + + + + status, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: status + + + + + created, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: created + + + + + tags, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: tags + + + + + likes, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: likes + + + + + startDate, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: startDate + + + + + dueDate, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: dueDate + + + + + assignedTo, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: assignedTo + + + + + complete, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: complete + + + + + priority, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: priority + + + + + title, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: title + + + + + + + + Defines the CommentStatus enumeration. + + + + + Creates a new CommentStatus enum instance + + + + + active. + When the item is serialized out as xml, its value is "active". + + + + + resolved. + When the item is serialized out as xml, its value is "resolved". + + + + + closed. + When the item is serialized out as xml, its value is "closed". + + + + + Defines the TaskHistoryDetails Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:taskHistoryDetails. + + + The following table lists the possible child types: + + <p1912:extLst> + <p1912:history> + + + + + + Initializes a new instance of the TaskHistoryDetails class. + + + + + Initializes a new instance of the TaskHistoryDetails class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryDetails class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryDetails class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + TaskHistory. + Represents the following element tag in the schema: p1912:history. + + + xmlns:p1912 = http://schemas.microsoft.com/office/powerpoint/2019/12/main + + + + + ExtensionList. + Represents the following element tag in the schema: p1912:extLst. + + + xmlns:p1912 = http://schemas.microsoft.com/office/powerpoint/2019/12/main + + + + + + + + Defines the CommentAnchor Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:comment. + + + + + Initializes a new instance of the CommentAnchor class. + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AtrbtnTaskAssignUnassignUser Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:atrbtn. + + + + + Initializes a new instance of the AtrbtnTaskAssignUnassignUser class. + + + + + + + + Defines the AsgnTaskAssignUnassignUser Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:asgn. + + + + + Initializes a new instance of the AsgnTaskAssignUnassignUser class. + + + + + + + + Defines the UnAsgnTaskAssignUnassignUser Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:unAsgn. + + + + + Initializes a new instance of the UnAsgnTaskAssignUnassignUser class. + + + + + + + + Defines the OpenXmlTaskAssignUnassignUserElement Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlTaskAssignUnassignUserElement class. + + + + + authorId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: authorId + + + + + Defines the TaskAnchor Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:anchr. + + + The following table lists the possible child types: + + <p1912:extLst> + <p1912:comment> + + + + + + Initializes a new instance of the TaskAnchor class. + + + + + Initializes a new instance of the TaskAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + CommentAnchor. + Represents the following element tag in the schema: p1912:comment. + + + xmlns:p1912 = http://schemas.microsoft.com/office/powerpoint/2019/12/main + + + + + ExtensionList. + Represents the following element tag in the schema: p1912:extLst. + + + xmlns:p1912 = http://schemas.microsoft.com/office/powerpoint/2019/12/main + + + + + + + + Defines the AddEmpty Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:add. + + + + + Initializes a new instance of the AddEmpty class. + + + + + + + + Defines the UnasgnAllEmpty Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:unasgnAll. + + + + + Initializes a new instance of the UnasgnAllEmpty class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Defines the TaskTitleEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:title. + + + + + Initializes a new instance of the TaskTitleEventInfo class. + + + + + val, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TaskScheduleEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:date. + + + + + Initializes a new instance of the TaskScheduleEventInfo class. + + + + + stDt, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: stDt + + + + + endDt, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: endDt + + + + + + + + Defines the TaskProgressEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:pcntCmplt. + + + + + Initializes a new instance of the TaskProgressEventInfo class. + + + + + val, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TaskPriorityRecord Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:pri. + + + + + Initializes a new instance of the TaskPriorityRecord class. + + + + + val, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TaskUndo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:undo. + + + + + Initializes a new instance of the TaskUndo class. + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the TaskUnknownRecord Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:unknown. + + + + + Initializes a new instance of the TaskUnknownRecord class. + + + + + + + + Defines the TaskHistoryEvent Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:event. + + + The following table lists the possible child types: + + <p1912:add> + <p1912:unasgnAll> + <p1912:extLst> + <p1912:anchr> + <p1912:atrbtn> + <p1912:asgn> + <p1912:unAsgn> + <p1912:pri> + <p1912:pcntCmplt> + <p1912:date> + <p1912:title> + <p1912:undo> + <p1912:unknown> + + + + + + Initializes a new instance of the TaskHistoryEvent class. + + + + + Initializes a new instance of the TaskHistoryEvent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryEvent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryEvent class from outer XML. + + Specifies the outer XML of the element. + + + + time, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: time + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + AtrbtnTaskAssignUnassignUser. + Represents the following element tag in the schema: p1912:atrbtn. + + + xmlns:p1912 = http://schemas.microsoft.com/office/powerpoint/2019/12/main + + + + + TaskAnchor. + Represents the following element tag in the schema: p1912:anchr. + + + xmlns:p1912 = http://schemas.microsoft.com/office/powerpoint/2019/12/main + + + + + + + + Defines the TaskHistory Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p1912:history. + + + The following table lists the possible child types: + + <p1912:event> + + + + + + Initializes a new instance of the TaskHistory class. + + + + + Initializes a new instance of the TaskHistory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistory class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DesignerTagList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p202:designTagLst. + + + The following table lists the possible child types: + + <p202:designTag> + + + + + + Initializes a new instance of the DesignerTagList class. + + + + + Initializes a new instance of the DesignerTagList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DesignerTagList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DesignerTagList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DesignerDrawingProps Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p202:designPr. + + + The following table lists the possible child types: + + <p202:extLst> + <p202:designTagLst> + + + + + + Initializes a new instance of the DesignerDrawingProps class. + + + + + Initializes a new instance of the DesignerDrawingProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DesignerDrawingProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DesignerDrawingProps class from outer XML. + + Specifies the outer XML of the element. + + + + edtDesignElem, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: edtDesignElem + + + + + DesignerTagList. + Represents the following element tag in the schema: p202:designTagLst. + + + xmlns:p202 = http://schemas.microsoft.com/office/powerpoint/2020/02/main + + + + + ExtensionList. + Represents the following element tag in the schema: p202:extLst. + + + xmlns:p202 = http://schemas.microsoft.com/office/powerpoint/2020/02/main + + + + + + + + Defines the DesignerTag Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p202:designTag. + + + + + Initializes a new instance of the DesignerTag class. + + + + + name, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: name + + + + + val, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p202:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Extension Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is oel:ext. + + + + + Initializes a new instance of the Extension class. + + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class from outer XML. + + Specifies the outer XML of the element. + + + + uri, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: uri + + + + + + + + Defines the ClassificationLabelList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is clbl:labelList. + + + The following table lists the possible child types: + + <clbl:extLst> + <clbl:label> + + + + + + Initializes a new instance of the ClassificationLabelList class. + + + + + Initializes a new instance of the ClassificationLabelList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ClassificationLabelList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ClassificationLabelList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the LabelInfoPart + + Specifies the part to be loaded. + + + + Saves the DOM into the LabelInfoPart. + + Specifies the part to save to. + + + + Gets the LabelInfoPart associated with this element. + + + + + Defines the ClassificationExtension Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is clbl:ext. + + + + + Initializes a new instance of the ClassificationExtension class. + + + + + Initializes a new instance of the ClassificationExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ClassificationExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ClassificationExtension class from outer XML. + + Specifies the outer XML of the element. + + + + uri, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: uri + + + + + + + + Defines the ClassificationLabel Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is clbl:label. + + + + + Initializes a new instance of the ClassificationLabel class. + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + enabled, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: enabled + + + + + setDate, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: setDate + + + + + method, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: method + + + + + name, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: name + + + + + siteId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: siteId + + + + + actionId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: actionId + + + + + contentBits, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: contentBits + + + + + removed, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: removed + + + + + + + + Defines the ClassificationExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is clbl:extLst. + + + The following table lists the possible child types: + + <clbl:ext> + + + + + + Initializes a new instance of the ClassificationExtensionList class. + + + + + Initializes a new instance of the ClassificationExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ClassificationExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ClassificationExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LineSketchNoneEmpty Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is ask:lineSketchNone. + + + + + Initializes a new instance of the LineSketchNoneEmpty class. + + + + + + + + Defines the LineSketchCurvedEmpty Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is ask:lineSketchCurved. + + + + + Initializes a new instance of the LineSketchCurvedEmpty class. + + + + + + + + Defines the LineSketchFreehandEmpty Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is ask:lineSketchFreehand. + + + + + Initializes a new instance of the LineSketchFreehandEmpty class. + + + + + + + + Defines the LineSketchScribbleEmpty Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is ask:lineSketchScribble. + + + + + Initializes a new instance of the LineSketchScribbleEmpty class. + + + + + + + + Defines the OpenXmlEmptyElement Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlEmptyElement class. + + + + + Defines the LineSketchStyleProperties Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is ask:lineSketchStyleProps. + + + The following table lists the possible child types: + + <a:custGeom> + <ask:extLst> + <a:prstGeom> + <ask:type> + <ask:seed> + + + + + + Initializes a new instance of the LineSketchStyleProperties class. + + + + + Initializes a new instance of the LineSketchStyleProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSketchStyleProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSketchStyleProperties class from outer XML. + + Specifies the outer XML of the element. + + + + sd, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: sd + + + + + + + + Defines the LineSketchTypeProperties Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is ask:type. + + + The following table lists the possible child types: + + <ask:lineSketchNone> + <ask:lineSketchCurved> + <ask:lineSketchFreehand> + <ask:lineSketchScribble> + + + + + + Initializes a new instance of the LineSketchTypeProperties class. + + + + + Initializes a new instance of the LineSketchTypeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSketchTypeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSketchTypeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + LineSketchNoneEmpty. + Represents the following element tag in the schema: ask:lineSketchNone. + + + xmlns:ask = http://schemas.microsoft.com/office/drawing/2018/sketchyshapes + + + + + LineSketchCurvedEmpty. + Represents the following element tag in the schema: ask:lineSketchCurved. + + + xmlns:ask = http://schemas.microsoft.com/office/drawing/2018/sketchyshapes + + + + + LineSketchFreehandEmpty. + Represents the following element tag in the schema: ask:lineSketchFreehand. + + + xmlns:ask = http://schemas.microsoft.com/office/drawing/2018/sketchyshapes + + + + + LineSketchScribbleEmpty. + Represents the following element tag in the schema: ask:lineSketchScribble. + + + xmlns:ask = http://schemas.microsoft.com/office/drawing/2018/sketchyshapes + + + + + + + + Defines the LineSketchSeed Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is ask:seed. + + + + + Initializes a new instance of the LineSketchSeed class. + + + + + Initializes a new instance of the LineSketchSeed class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is ask:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ClassificationOutcome Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is aclsh:classification. + + + + + Initializes a new instance of the ClassificationOutcome class. + + + + + classificationOutcomeType, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: classificationOutcomeType + + + + + + + + Defines the ClassificationOutcomeType enumeration. + + + + + Creates a new ClassificationOutcomeType enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + hdr. + When the item is serialized out as xml, its value is "hdr". + + + + + ftr. + When the item is serialized out as xml, its value is "ftr". + + + + + watermark. + When the item is serialized out as xml, its value is "watermark". + + + + + Defines the BackgroundNormalProperties Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is alf:Normal. + + + The following table lists the possible child types: + + <alf:extLst> + + + + + + Initializes a new instance of the BackgroundNormalProperties class. + + + + + Initializes a new instance of the BackgroundNormalProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundNormalProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundNormalProperties class from outer XML. + + Specifies the outer XML of the element. + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: alf:extLst. + + + xmlns:alf = http://schemas.microsoft.com/office/drawing/2021/livefeed + + + + + + + + Defines the BackgroundRemovedProperties Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is alf:Removed. + + + The following table lists the possible child types: + + <alf:extLst> + + + + + + Initializes a new instance of the BackgroundRemovedProperties class. + + + + + Initializes a new instance of the BackgroundRemovedProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundRemovedProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundRemovedProperties class from outer XML. + + Specifies the outer XML of the element. + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: alf:extLst. + + + xmlns:alf = http://schemas.microsoft.com/office/drawing/2021/livefeed + + + + + + + + Defines the BackgroundBlurProperties Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is alf:Blur. + + + The following table lists the possible child types: + + <alf:extLst> + + + + + + Initializes a new instance of the BackgroundBlurProperties class. + + + + + Initializes a new instance of the BackgroundBlurProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundBlurProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundBlurProperties class from outer XML. + + Specifies the outer XML of the element. + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: alf:extLst. + + + xmlns:alf = http://schemas.microsoft.com/office/drawing/2021/livefeed + + + + + + + + Defines the BackgroundCustomProperties Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is alf:Custom. + + + The following table lists the possible child types: + + <alf:extLst> + + + + + + Initializes a new instance of the BackgroundCustomProperties class. + + + + + Initializes a new instance of the BackgroundCustomProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundCustomProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundCustomProperties class from outer XML. + + Specifies the outer XML of the element. + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: alf:extLst. + + + xmlns:alf = http://schemas.microsoft.com/office/drawing/2021/livefeed + + + + + + + + Defines the LiveFeedProperties Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is alf:liveFeedProps. + + + The following table lists the possible child types: + + <alf:extLst> + <alf:backgroundProps> + + + + + + Initializes a new instance of the LiveFeedProperties class. + + + + + Initializes a new instance of the LiveFeedProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LiveFeedProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LiveFeedProperties class from outer XML. + + Specifies the outer XML of the element. + + + + LiveFeedBackgroundProperties. + Represents the following element tag in the schema: alf:backgroundProps. + + + xmlns:alf = http://schemas.microsoft.com/office/drawing/2021/livefeed + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: alf:extLst. + + + xmlns:alf = http://schemas.microsoft.com/office/drawing/2021/livefeed + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is alf:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LiveFeedBackgroundProperties Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is alf:backgroundProps. + + + The following table lists the possible child types: + + <alf:extLst> + <alf:Blur> + <alf:Custom> + <alf:Normal> + <alf:Removed> + + + + + + Initializes a new instance of the LiveFeedBackgroundProperties class. + + + + + Initializes a new instance of the LiveFeedBackgroundProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LiveFeedBackgroundProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LiveFeedBackgroundProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExternalLinksPr Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xxlnp:externalLinksPr. + + + + + Initializes a new instance of the ExternalLinksPr class. + + + + + autoRefresh, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: autoRefresh + + + + + + + + Defines the NamedSheetViews Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:namedSheetViews. + + + The following table lists the possible child types: + + <xnsv:extLst> + <xnsv:namedSheetView> + + + + + + Initializes a new instance of the NamedSheetViews class. + + + + + Initializes a new instance of the NamedSheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NamedSheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NamedSheetViews class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the NamedSheetViewsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the NamedSheetViewsPart. + + Specifies the part to save to. + + + + Gets the NamedSheetViewsPart associated with this element. + + + + + Defines the NamedSheetView Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:namedSheetView. + + + The following table lists the possible child types: + + <xnsv:extLst> + <xnsv:nsvFilter> + + + + + + Initializes a new instance of the NamedSheetView class. + + + + + Initializes a new instance of the NamedSheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NamedSheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NamedSheetView class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: name + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NsvFilter Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:nsvFilter. + + + The following table lists the possible child types: + + <xnsv:extLst> + <xnsv:columnFilter> + <xnsv:sortRules> + + + + + + Initializes a new instance of the NsvFilter class. + + + + + Initializes a new instance of the NsvFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NsvFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NsvFilter class from outer XML. + + Specifies the outer XML of the element. + + + + filterId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: filterId + + + + + ref, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: ref + + + + + tableId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: tableId + + + + + + + + Defines the ColumnFilter Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:columnFilter. + + + The following table lists the possible child types: + + <xnsv:dxf> + <xnsv:extLst> + <xnsv:filter> + + + + + + Initializes a new instance of the ColumnFilter class. + + + + + Initializes a new instance of the ColumnFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnFilter class from outer XML. + + Specifies the outer XML of the element. + + + + colId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: colId + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + DifferentialFormatType. + Represents the following element tag in the schema: xnsv:dxf. + + + xmlns:xnsv = http://schemas.microsoft.com/office/spreadsheetml/2019/namedsheetviews + + + + + + + + Defines the SortRules Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:sortRules. + + + The following table lists the possible child types: + + <xnsv:extLst> + <xnsv:sortRule> + + + + + + Initializes a new instance of the SortRules class. + + + + + Initializes a new instance of the SortRules class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SortRules class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SortRules class from outer XML. + + Specifies the outer XML of the element. + + + + sortMethod, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: sortMethod + + + + + caseSensitive, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: caseSensitive + + + + + + + + Defines the DifferentialFormatType Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:dxf. + + + The following table lists the possible child types: + + <x:border> + <x:alignment> + <x:protection> + <x:extLst> + <x:fill> + <x:font> + <x:numFmt> + + + + + + Initializes a new instance of the DifferentialFormatType class. + + + + + Initializes a new instance of the DifferentialFormatType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormatType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormatType class from outer XML. + + Specifies the outer XML of the element. + + + + Font Properties. + Represents the following element tag in the schema: x:font. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Number Format. + Represents the following element tag in the schema: x:numFmt. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Fill. + Represents the following element tag in the schema: x:fill. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Alignment. + Represents the following element tag in the schema: x:alignment. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Border Properties. + Represents the following element tag in the schema: x:border. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Protection Properties. + Represents the following element tag in the schema: x:protection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the FilterColumn Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:filter. + + + The following table lists the possible child types: + + <x:colorFilter> + <x:customFilters> + <x:dynamicFilter> + <x:extLst> + <x:filters> + <x:iconFilter> + <x:top10> + <x14:customFilters> + <x14:iconFilter> + + + + + + Initializes a new instance of the FilterColumn class. + + + + + Initializes a new instance of the FilterColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilterColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilterColumn class from outer XML. + + Specifies the outer XML of the element. + + + + Filter Column Data + Represents the following attribute in the schema: colId + + + + + Hidden AutoFilter Button + Represents the following attribute in the schema: hiddenButton + + + + + Show Filter Button + Represents the following attribute in the schema: showButton + + + + + Filter Criteria. + Represents the following element tag in the schema: x:filters. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Top 10. + Represents the following element tag in the schema: x:top10. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CustomFilters14. + Represents the following element tag in the schema: x14:customFilters. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + Custom Filters. + Represents the following element tag in the schema: x:customFilters. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Dynamic Filter. + Represents the following element tag in the schema: x:dynamicFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Color Filter Criteria. + Represents the following element tag in the schema: x:colorFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + IconFilter14. + Represents the following element tag in the schema: x14:iconFilter. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + Icon Filter. + Represents the following element tag in the schema: x:iconFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the SortRule Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:sortRule. + + + The following table lists the possible child types: + + <xnsv:dxf> + <xnsv:sortCondition> + <xnsv:richSortCondition> + + + + + + Initializes a new instance of the SortRule class. + + + + + Initializes a new instance of the SortRule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SortRule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SortRule class from outer XML. + + Specifies the outer XML of the element. + + + + colId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: colId + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + DifferentialFormatType. + Represents the following element tag in the schema: xnsv:dxf. + + + xmlns:xnsv = http://schemas.microsoft.com/office/spreadsheetml/2019/namedsheetviews + + + + + + + + Defines the SortCondition Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:sortCondition. + + + + + Initializes a new instance of the SortCondition class. + + + + + descending, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: descending + + + + + sortBy, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sortBy + + + + + ref, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: ref + + + + + customList, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: customList + + + + + dxfId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dxfId + + + + + iconSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconSet + + + + + iconId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconId + + + + + + + + Defines the RichSortCondition Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xnsv:richSortCondition. + + + + + Initializes a new instance of the RichSortCondition class. + + + + + richSortKey, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: richSortKey + + + + + descending, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: descending + + + + + sortBy, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sortBy + + + + + ref, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: ref + + + + + customList, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: customList + + + + + dxfId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dxfId + + + + + iconSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconSet + + + + + iconId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconId + + + + + + + + Defines the Xsdboolean Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xxpim:implicitMeasureSupport. + + + + + Initializes a new instance of the Xsdboolean class. + + + + + Initializes a new instance of the Xsdboolean class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Ignorable Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xxpim:ignorableAfterVersion. + + + + + Initializes a new instance of the Ignorable class. + + + + + version, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: version + + + + + + + + Defines the DataFieldFutureData Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xxpim:dataFieldFutureData. + + + + + Initializes a new instance of the DataFieldFutureData class. + + + + + version, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: version + + + + + sourceField, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: sourceField + + + + + + + + Defines the WebImagesSupportingRichData Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xlrdwi:webImagesSrd. + + + The following table lists the possible child types: + + <xlrdwi:extLst> + <xlrdwi:webImageSrd> + + + + + + Initializes a new instance of the WebImagesSupportingRichData class. + + + + + Initializes a new instance of the WebImagesSupportingRichData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebImagesSupportingRichData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebImagesSupportingRichData class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the RdRichValueWebImagePart + + Specifies the part to be loaded. + + + + Saves the DOM into the RdRichValueWebImagePart. + + Specifies the part to save to. + + + + Gets the RdRichValueWebImagePart associated with this element. + + + + + Defines the WebImageSupportingRichData Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xlrdwi:webImageSrd. + + + The following table lists the possible child types: + + <xlrdwi:address> + <xlrdwi:moreImagesAddress> + <xlrdwi:blip> + + + + + + Initializes a new instance of the WebImageSupportingRichData class. + + + + + Initializes a new instance of the WebImageSupportingRichData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebImageSupportingRichData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebImageSupportingRichData class from outer XML. + + Specifies the outer XML of the element. + + + + AddressWebImageSupportingRichDataRelationship. + Represents the following element tag in the schema: xlrdwi:address. + + + xmlns:xlrdwi = http://schemas.microsoft.com/office/spreadsheetml/2020/richdatawebimage + + + + + MoreImagesAddressWebImageSupportingRichDataRelationship. + Represents the following element tag in the schema: xlrdwi:moreImagesAddress. + + + xmlns:xlrdwi = http://schemas.microsoft.com/office/spreadsheetml/2020/richdatawebimage + + + + + BlipWebImageSupportingRichDataRelationship. + Represents the following element tag in the schema: xlrdwi:blip. + + + xmlns:xlrdwi = http://schemas.microsoft.com/office/spreadsheetml/2020/richdatawebimage + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xlrdwi:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AddressWebImageSupportingRichDataRelationship Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xlrdwi:address. + + + + + Initializes a new instance of the AddressWebImageSupportingRichDataRelationship class. + + + + + + + + Defines the MoreImagesAddressWebImageSupportingRichDataRelationship Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xlrdwi:moreImagesAddress. + + + + + Initializes a new instance of the MoreImagesAddressWebImageSupportingRichDataRelationship class. + + + + + + + + Defines the BlipWebImageSupportingRichDataRelationship Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xlrdwi:blip. + + + + + Initializes a new instance of the BlipWebImageSupportingRichDataRelationship class. + + + + + + + + Defines the OpenXmlWebImageSupportingRichDataRelationshipElement Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlWebImageSupportingRichDataRelationshipElement class. + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Defines the RichValueRefreshIntervals Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xlrvr:refreshIntervals. + + + The following table lists the possible child types: + + <xlrvr:refreshInterval> + + + + + + Initializes a new instance of the RichValueRefreshIntervals class. + + + + + Initializes a new instance of the RichValueRefreshIntervals class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueRefreshIntervals class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueRefreshIntervals class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichValueRefreshInterval Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xlrvr:refreshInterval. + + + + + Initializes a new instance of the RichValueRefreshInterval class. + + + + + resourceIdInt, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: resourceIdInt + + + + + resourceIdStr, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: resourceIdStr + + + + + interval, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: interval + + + + + + + + Defines the XsdunsignedInt Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xltc2:checksum. + + + + + Initializes a new instance of the XsdunsignedInt class. + + + + + Initializes a new instance of the XsdunsignedInt class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CommentHyperlink Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xltc2:hyperlink. + + + The following table lists the possible child types: + + <xltc2:extLst> + + + + + + Initializes a new instance of the CommentHyperlink class. + + + + + Initializes a new instance of the CommentHyperlink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentHyperlink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentHyperlink class from outer XML. + + Specifies the outer XML of the element. + + + + startIndex, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: startIndex + + + + + length, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: length + + + + + url, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: url + + + + + ExtensionList. + Represents the following element tag in the schema: xltc2:extLst. + + + xmlns:xltc2 = http://schemas.microsoft.com/office/spreadsheetml/2020/threadedcomments2 + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is xltc2:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Tasks Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Tasks. + + + The following table lists the possible child types: + + <t:extLst> + <t:Task> + + + + + + Initializes a new instance of the Tasks class. + + + + + Initializes a new instance of the Tasks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tasks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tasks class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the DocumentTasksPart + + Specifies the part to be loaded. + + + + Saves the DOM into the DocumentTasksPart. + + Specifies the part to save to. + + + + Gets the DocumentTasksPart associated with this element. + + + + + Defines the Task Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Task. + + + The following table lists the possible child types: + + <t:extLst> + <t:Anchor> + <t:History> + + + + + + Initializes a new instance of the Task class. + + + + + Initializes a new instance of the Task class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Task class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Task class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + TaskAnchor. + Represents the following element tag in the schema: t:Anchor. + + + xmlns:t = http://schemas.microsoft.com/office/tasks/2019/documenttasks + + + + + TaskHistory. + Represents the following element tag in the schema: t:History. + + + xmlns:t = http://schemas.microsoft.com/office/tasks/2019/documenttasks + + + + + ExtensionList. + Represents the following element tag in the schema: t:extLst. + + + xmlns:t = http://schemas.microsoft.com/office/tasks/2019/documenttasks + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:extLst. + + + The following table lists the possible child types: + + <oel:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TaskAnchor Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Anchor. + + + The following table lists the possible child types: + + <t:extLst> + <t:Comment> + + + + + + Initializes a new instance of the TaskAnchor class. + + + + + Initializes a new instance of the TaskAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + CommentAnchor. + Represents the following element tag in the schema: t:Comment. + + + xmlns:t = http://schemas.microsoft.com/office/tasks/2019/documenttasks + + + + + ExtensionList. + Represents the following element tag in the schema: t:extLst. + + + xmlns:t = http://schemas.microsoft.com/office/tasks/2019/documenttasks + + + + + + + + Defines the TaskHistory Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:History. + + + The following table lists the possible child types: + + <t:Event> + + + + + + Initializes a new instance of the TaskHistory class. + + + + + Initializes a new instance of the TaskHistory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistory class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TaskHistoryEvent Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Event. + + + The following table lists the possible child types: + + <t:extLst> + <t:Anchor> + <t:Create> + <t:Delete> + <t:Priority> + <t:Progress> + <t:Schedule> + <t:SetTitle> + <t:UnassignAll> + <t:Undelete> + <t:Undo> + <t:Attribution> + <t:Assign> + <t:Unassign> + + + + + + Initializes a new instance of the TaskHistoryEvent class. + + + + + Initializes a new instance of the TaskHistoryEvent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryEvent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskHistoryEvent class from outer XML. + + Specifies the outer XML of the element. + + + + time, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: time + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + AttributionTaskUser. + Represents the following element tag in the schema: t:Attribution. + + + xmlns:t = http://schemas.microsoft.com/office/tasks/2019/documenttasks + + + + + TaskAnchor. + Represents the following element tag in the schema: t:Anchor. + + + xmlns:t = http://schemas.microsoft.com/office/tasks/2019/documenttasks + + + + + + + + Defines the AttributionTaskUser Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Attribution. + + + + + Initializes a new instance of the AttributionTaskUser class. + + + + + + + + Defines the AssignTaskUser Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Assign. + + + + + Initializes a new instance of the AssignTaskUser class. + + + + + + + + Defines the UnassignTaskUser Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Unassign. + + + + + Initializes a new instance of the UnassignTaskUser class. + + + + + + + + Defines the OpenXmlTaskUserElement Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlTaskUserElement class. + + + + + userId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: userId + + + + + userName, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: userName + + + + + userProvider, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: userProvider + + + + + Defines the TaskCreateEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Create. + + + + + Initializes a new instance of the TaskCreateEventInfo class. + + + + + + + + Defines the TaskTitleEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:SetTitle. + + + + + Initializes a new instance of the TaskTitleEventInfo class. + + + + + title, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: title + + + + + + + + Defines the TaskScheduleEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Schedule. + + + + + Initializes a new instance of the TaskScheduleEventInfo class. + + + + + startDate, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: startDate + + + + + dueDate, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: dueDate + + + + + + + + Defines the TaskProgressEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Progress. + + + + + Initializes a new instance of the TaskProgressEventInfo class. + + + + + percentComplete, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: percentComplete + + + + + + + + Defines the TaskPriorityEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Priority. + + + + + Initializes a new instance of the TaskPriorityEventInfo class. + + + + + value, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: value + + + + + + + + Defines the TaskDeleteEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Delete. + + + + + Initializes a new instance of the TaskDeleteEventInfo class. + + + + + + + + Defines the TaskUndeleteEventInfo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Undelete. + + + + + Initializes a new instance of the TaskUndeleteEventInfo class. + + + + + + + + Defines the TaskUnassignAll Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:UnassignAll. + + + + + Initializes a new instance of the TaskUnassignAll class. + + + + + + + + Defines the TaskUndo Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Undo. + + + + + Initializes a new instance of the TaskUndo class. + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the CommentAnchor Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is t:Comment. + + + + + Initializes a new instance of the CommentAnchor class. + + + + + id, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the Extension Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is w16cur:ext. + + + + + Initializes a new instance of the Extension class. + + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class from outer XML. + + Specifies the outer XML of the element. + + + + uri, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: w16cur:uri + + + xmlns:w16cur=http://schemas.microsoft.com/office/word/2018/wordml + + + + + + + + Defines the CommentsExtensible Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is w16cex:commentsExtensible. + + + The following table lists the possible child types: + + <w16cex:commentExtensible> + <w16cex:extLst> + + + + + + Initializes a new instance of the CommentsExtensible class. + + + + + Initializes a new instance of the CommentsExtensible class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentsExtensible class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentsExtensible class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WordCommentsExtensiblePart + + Specifies the part to be loaded. + + + + Saves the DOM into the WordCommentsExtensiblePart. + + Specifies the part to save to. + + + + Gets the WordCommentsExtensiblePart associated with this element. + + + + + Defines the CommentExtensible Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is w16cex:commentExtensible. + + + The following table lists the possible child types: + + <w16cex:extLst> + + + + + + Initializes a new instance of the CommentExtensible class. + + + + + Initializes a new instance of the CommentExtensible class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentExtensible class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentExtensible class from outer XML. + + Specifies the outer XML of the element. + + + + durableId, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: w16cex:durableId + + + xmlns:w16cex=http://schemas.microsoft.com/office/word/2018/wordml/cex + + + + + dateUtc, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: w16cex:dateUtc + + + xmlns:w16cex=http://schemas.microsoft.com/office/word/2018/wordml/cex + + + + + intelligentPlaceholder, this property is only available in Office 2021 and later. + Represents the following attribute in the schema: w16cex:intelligentPlaceholder + + + xmlns:w16cex=http://schemas.microsoft.com/office/word/2018/wordml/cex + + + + + ExtensionList. + Represents the following element tag in the schema: w16cex:extLst. + + + xmlns:w16cex = http://schemas.microsoft.com/office/word/2018/wordml/cex + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is w16cex:extLst. + + + The following table lists the possible child types: + + <w16cur:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CellType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x:f> + <x:extLst> + <x:is> + <x:v> + + + + + + Initializes a new instance of the CellType class. + + + + + Initializes a new instance of the CellType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellType class from outer XML. + + Specifies the outer XML of the element. + + + + Reference + Represents the following attribute in the schema: r + + + + + Style Index + Represents the following attribute in the schema: s + + + + + Cell Data Type + Represents the following attribute in the schema: t + + + + + Cell Metadata Index + Represents the following attribute in the schema: cm + + + + + Value Metadata Index + Represents the following attribute in the schema: vm + + + + + Show Phonetic + Represents the following attribute in the schema: ph + + + + + Formula. + Represents the following element tag in the schema: x:f. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Cell Value. + Represents the following element tag in the schema: x:v. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Rich Text Inline. + Represents the following element tag in the schema: x:is. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + This provides additional constructors than in the generated files. + + + Cell Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:v. + + + + + Instantiates an instance of for a . Dates must + be in ISO 8601 format, which this constructor ensures + + DateTime for cell + + + + Instantiates an instance of for a . Dates must + be in ISO 8601 format, which this constructor ensures + + DateTime for cell + + + + Instantiates an instance of for a . + + Boolean value + + + + Instantiates an instance of for a . + + Number. + + + + Instantiates an instance of for a . + + Number. + + + + Instantiates an instance of for a . + + Number. + + + + Attempts to parse cell value to retrieve a . + + The result if successful. + Success or failure + + + + Attempts to parse cell value to retrieve a . + + The result if successful. + Success or failure + + + + Attempts to parse cell value to retrieve a . + + The result if successful. + Success or failure + + + + Attempts to parse cell value to retrieve a . + + The result if successful. + Success or failure + + + + Attempts to parse cell value to retrieve a . + + The result if successful. + Success or failure + + + + Attempts to parse cell value to retrieve a . + + The result if successful. + Success or failure + + + + Initializes a new instance of the CellValue class. + + + + + Initializes a new instance of the CellValue class with the specified text content. + + Specifies the text content of the element. + + + + + + + Extension. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + + + Initializes a new instance of the Extension class. + + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Calculation Chain Info. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:calcChain. + + + The following table lists the possible child types: + + <x:c> + <x:extLst> + + + + + + Initializes a new instance of the CalculationChain class. + + + + + Initializes a new instance of the CalculationChain class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculationChain class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculationChain class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the CalculationChainPart + + Specifies the part to be loaded. + + + + Saves the DOM into the CalculationChainPart. + + Specifies the part to save to. + + + + Gets the CalculationChainPart associated with this element. + + + + + Comments. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:comments. + + + The following table lists the possible child types: + + <x:authors> + <x:commentList> + <x:extLst> + + + + + + Initializes a new instance of the Comments class. + + + + + Initializes a new instance of the Comments class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comments class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comments class from outer XML. + + Specifies the outer XML of the element. + + + + Authors. + Represents the following element tag in the schema: x:authors. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + List of Comments. + Represents the following element tag in the schema: x:commentList. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the WorksheetCommentsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorksheetCommentsPart. + + Specifies the part to save to. + + + + Gets the WorksheetCommentsPart associated with this element. + + + + + XML Mapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:MapInfo. + + + The following table lists the possible child types: + + <x:Map> + <x:Schema> + + + + + + Initializes a new instance of the MapInfo class. + + + + + Initializes a new instance of the MapInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MapInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MapInfo class from outer XML. + + Specifies the outer XML of the element. + + + + Prefix Mappings for XPath Expressions + Represents the following attribute in the schema: SelectionNamespaces + + + + + + + + Loads the DOM from the CustomXmlMappingsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the CustomXmlMappingsPart. + + Specifies the part to save to. + + + + Gets the CustomXmlMappingsPart associated with this element. + + + + + Connections. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:connections. + + + The following table lists the possible child types: + + <x:connection> + + + + + + Initializes a new instance of the Connections class. + + + + + Initializes a new instance of the Connections class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connections class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connections class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the ConnectionsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ConnectionsPart. + + Specifies the part to save to. + + + + Gets the ConnectionsPart associated with this element. + + + + + PivotCache Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotCacheDefinition. + + + The following table lists the possible child types: + + <x:cacheFields> + <x:cacheHierarchies> + <x:cacheSource> + <x:calculatedItems> + <x:calculatedMembers> + <x:dimensions> + <x:maps> + <x:measureGroups> + <x:kpis> + <x:extLst> + <x:tupleCache> + + + + + + Initializes a new instance of the PivotCacheDefinition class. + + + + + Initializes a new instance of the PivotCacheDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + invalid + Represents the following attribute in the schema: invalid + + + + + saveData + Represents the following attribute in the schema: saveData + + + + + refreshOnLoad + Represents the following attribute in the schema: refreshOnLoad + + + + + optimizeMemory + Represents the following attribute in the schema: optimizeMemory + + + + + enableRefresh + Represents the following attribute in the schema: enableRefresh + + + + + refreshedBy + Represents the following attribute in the schema: refreshedBy + + + + + refreshedDateIso + Represents the following attribute in the schema: refreshedDateIso + + + + + refreshedDate + Represents the following attribute in the schema: refreshedDate + + + + + backgroundQuery + Represents the following attribute in the schema: backgroundQuery + + + + + missingItemsLimit + Represents the following attribute in the schema: missingItemsLimit + + + + + createdVersion + Represents the following attribute in the schema: createdVersion + + + + + refreshedVersion + Represents the following attribute in the schema: refreshedVersion + + + + + minRefreshableVersion + Represents the following attribute in the schema: minRefreshableVersion + + + + + recordCount + Represents the following attribute in the schema: recordCount + + + + + upgradeOnRefresh + Represents the following attribute in the schema: upgradeOnRefresh + + + + + tupleCache + Represents the following attribute in the schema: tupleCache + + + + + supportSubquery + Represents the following attribute in the schema: supportSubquery + + + + + supportAdvancedDrill + Represents the following attribute in the schema: supportAdvancedDrill + + + + + CacheSource. + Represents the following element tag in the schema: x:cacheSource. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CacheFields. + Represents the following element tag in the schema: x:cacheFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CacheHierarchies. + Represents the following element tag in the schema: x:cacheHierarchies. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Kpis. + Represents the following element tag in the schema: x:kpis. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + TupleCache. + Represents the following element tag in the schema: x:tupleCache. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CalculatedItems. + Represents the following element tag in the schema: x:calculatedItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CalculatedMembers. + Represents the following element tag in the schema: x:calculatedMembers. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Dimensions. + Represents the following element tag in the schema: x:dimensions. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + MeasureGroups. + Represents the following element tag in the schema: x:measureGroups. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Maps. + Represents the following element tag in the schema: x:maps. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotCacheDefinitionExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the PivotTableCacheDefinitionPart + + Specifies the part to be loaded. + + + + Saves the DOM into the PivotTableCacheDefinitionPart. + + Specifies the part to save to. + + + + Gets the PivotTableCacheDefinitionPart associated with this element. + + + + + PivotCache Records. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotCacheRecords. + + + The following table lists the possible child types: + + <x:extLst> + <x:r> + + + + + + Initializes a new instance of the PivotCacheRecords class. + + + + + Initializes a new instance of the PivotCacheRecords class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheRecords class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheRecords class from outer XML. + + Specifies the outer XML of the element. + + + + PivotCache Records Count + Represents the following attribute in the schema: count + + + + + + + + Loads the DOM from the PivotTableCacheRecordsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the PivotTableCacheRecordsPart. + + Specifies the part to save to. + + + + Gets the PivotTableCacheRecordsPart associated with this element. + + + + + PivotTable Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotTableDefinition. + + + The following table lists the possible child types: + + <x:chartFormats> + <x:colFields> + <x:colHierarchiesUsage> + <x:colItems> + <x:conditionalFormats> + <x:dataFields> + <x:formats> + <x:location> + <x:pageFields> + <x:pivotFields> + <x:filters> + <x:pivotHierarchies> + <x:extLst> + <x:pivotTableStyleInfo> + <x:rowFields> + <x:rowHierarchiesUsage> + <x:rowItems> + + + + + + Initializes a new instance of the PivotTableDefinition class. + + + + + Initializes a new instance of the PivotTableDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: name + + + + + cacheId + Represents the following attribute in the schema: cacheId + + + + + dataOnRows + Represents the following attribute in the schema: dataOnRows + + + + + dataPosition + Represents the following attribute in the schema: dataPosition + + + + + Auto Format Id + Represents the following attribute in the schema: autoFormatId + + + + + Apply Number Formats + Represents the following attribute in the schema: applyNumberFormats + + + + + Apply Border Formats + Represents the following attribute in the schema: applyBorderFormats + + + + + Apply Font Formats + Represents the following attribute in the schema: applyFontFormats + + + + + Apply Pattern Formats + Represents the following attribute in the schema: applyPatternFormats + + + + + Apply Alignment Formats + Represents the following attribute in the schema: applyAlignmentFormats + + + + + Apply Width / Height Formats + Represents the following attribute in the schema: applyWidthHeightFormats + + + + + dataCaption + Represents the following attribute in the schema: dataCaption + + + + + grandTotalCaption + Represents the following attribute in the schema: grandTotalCaption + + + + + errorCaption + Represents the following attribute in the schema: errorCaption + + + + + showError + Represents the following attribute in the schema: showError + + + + + missingCaption + Represents the following attribute in the schema: missingCaption + + + + + showMissing + Represents the following attribute in the schema: showMissing + + + + + pageStyle + Represents the following attribute in the schema: pageStyle + + + + + pivotTableStyle + Represents the following attribute in the schema: pivotTableStyle + + + + + vacatedStyle + Represents the following attribute in the schema: vacatedStyle + + + + + tag + Represents the following attribute in the schema: tag + + + + + updatedVersion + Represents the following attribute in the schema: updatedVersion + + + + + minRefreshableVersion + Represents the following attribute in the schema: minRefreshableVersion + + + + + asteriskTotals + Represents the following attribute in the schema: asteriskTotals + + + + + showItems + Represents the following attribute in the schema: showItems + + + + + editData + Represents the following attribute in the schema: editData + + + + + disableFieldList + Represents the following attribute in the schema: disableFieldList + + + + + showCalcMbrs + Represents the following attribute in the schema: showCalcMbrs + + + + + visualTotals + Represents the following attribute in the schema: visualTotals + + + + + showMultipleLabel + Represents the following attribute in the schema: showMultipleLabel + + + + + showDataDropDown + Represents the following attribute in the schema: showDataDropDown + + + + + showDrill + Represents the following attribute in the schema: showDrill + + + + + printDrill + Represents the following attribute in the schema: printDrill + + + + + showMemberPropertyTips + Represents the following attribute in the schema: showMemberPropertyTips + + + + + showDataTips + Represents the following attribute in the schema: showDataTips + + + + + enableWizard + Represents the following attribute in the schema: enableWizard + + + + + enableDrill + Represents the following attribute in the schema: enableDrill + + + + + enableFieldProperties + Represents the following attribute in the schema: enableFieldProperties + + + + + preserveFormatting + Represents the following attribute in the schema: preserveFormatting + + + + + useAutoFormatting + Represents the following attribute in the schema: useAutoFormatting + + + + + pageWrap + Represents the following attribute in the schema: pageWrap + + + + + pageOverThenDown + Represents the following attribute in the schema: pageOverThenDown + + + + + subtotalHiddenItems + Represents the following attribute in the schema: subtotalHiddenItems + + + + + rowGrandTotals + Represents the following attribute in the schema: rowGrandTotals + + + + + colGrandTotals + Represents the following attribute in the schema: colGrandTotals + + + + + fieldPrintTitles + Represents the following attribute in the schema: fieldPrintTitles + + + + + itemPrintTitles + Represents the following attribute in the schema: itemPrintTitles + + + + + mergeItem + Represents the following attribute in the schema: mergeItem + + + + + showDropZones + Represents the following attribute in the schema: showDropZones + + + + + createdVersion + Represents the following attribute in the schema: createdVersion + + + + + indent + Represents the following attribute in the schema: indent + + + + + showEmptyRow + Represents the following attribute in the schema: showEmptyRow + + + + + showEmptyCol + Represents the following attribute in the schema: showEmptyCol + + + + + showHeaders + Represents the following attribute in the schema: showHeaders + + + + + compact + Represents the following attribute in the schema: compact + + + + + outline + Represents the following attribute in the schema: outline + + + + + outlineData + Represents the following attribute in the schema: outlineData + + + + + compactData + Represents the following attribute in the schema: compactData + + + + + published + Represents the following attribute in the schema: published + + + + + gridDropZones + Represents the following attribute in the schema: gridDropZones + + + + + immersive + Represents the following attribute in the schema: immersive + + + + + multipleFieldFilters + Represents the following attribute in the schema: multipleFieldFilters + + + + + chartFormat + Represents the following attribute in the schema: chartFormat + + + + + rowHeaderCaption + Represents the following attribute in the schema: rowHeaderCaption + + + + + colHeaderCaption + Represents the following attribute in the schema: colHeaderCaption + + + + + fieldListSortAscending + Represents the following attribute in the schema: fieldListSortAscending + + + + + mdxSubqueries + Represents the following attribute in the schema: mdxSubqueries + + + + + customListSort + Represents the following attribute in the schema: customListSort + + + + + Location. + Represents the following element tag in the schema: x:location. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotFields. + Represents the following element tag in the schema: x:pivotFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + RowFields. + Represents the following element tag in the schema: x:rowFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + RowItems. + Represents the following element tag in the schema: x:rowItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ColumnFields. + Represents the following element tag in the schema: x:colFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ColumnItems. + Represents the following element tag in the schema: x:colItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PageFields. + Represents the following element tag in the schema: x:pageFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + DataFields. + Represents the following element tag in the schema: x:dataFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Formats. + Represents the following element tag in the schema: x:formats. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ConditionalFormats. + Represents the following element tag in the schema: x:conditionalFormats. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ChartFormats. + Represents the following element tag in the schema: x:chartFormats. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotHierarchies. + Represents the following element tag in the schema: x:pivotHierarchies. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotTableStyle. + Represents the following element tag in the schema: x:pivotTableStyleInfo. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotFilters. + Represents the following element tag in the schema: x:filters. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + RowHierarchiesUsage. + Represents the following element tag in the schema: x:rowHierarchiesUsage. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ColumnHierarchiesUsage. + Represents the following element tag in the schema: x:colHierarchiesUsage. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotTableDefinitionExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the PivotTablePart + + Specifies the part to be loaded. + + + + Saves the DOM into the PivotTablePart. + + Specifies the part to save to. + + + + Gets the PivotTablePart associated with this element. + + + + + Query Table. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:queryTable. + + + The following table lists the possible child types: + + <x:extLst> + <x:queryTableRefresh> + + + + + + Initializes a new instance of the QueryTable class. + + + + + Initializes a new instance of the QueryTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTable class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: name + + + + + headers + Represents the following attribute in the schema: headers + + + + + rowNumbers + Represents the following attribute in the schema: rowNumbers + + + + + disableRefresh + Represents the following attribute in the schema: disableRefresh + + + + + backgroundRefresh + Represents the following attribute in the schema: backgroundRefresh + + + + + firstBackgroundRefresh + Represents the following attribute in the schema: firstBackgroundRefresh + + + + + refreshOnLoad + Represents the following attribute in the schema: refreshOnLoad + + + + + growShrinkType + Represents the following attribute in the schema: growShrinkType + + + + + fillFormulas + Represents the following attribute in the schema: fillFormulas + + + + + removeDataOnSave + Represents the following attribute in the schema: removeDataOnSave + + + + + disableEdit + Represents the following attribute in the schema: disableEdit + + + + + preserveFormatting + Represents the following attribute in the schema: preserveFormatting + + + + + adjustColumnWidth + Represents the following attribute in the schema: adjustColumnWidth + + + + + intermediate + Represents the following attribute in the schema: intermediate + + + + + connectionId + Represents the following attribute in the schema: connectionId + + + + + Auto Format Id + Represents the following attribute in the schema: autoFormatId + + + + + Apply Number Formats + Represents the following attribute in the schema: applyNumberFormats + + + + + Apply Border Formats + Represents the following attribute in the schema: applyBorderFormats + + + + + Apply Font Formats + Represents the following attribute in the schema: applyFontFormats + + + + + Apply Pattern Formats + Represents the following attribute in the schema: applyPatternFormats + + + + + Apply Alignment Formats + Represents the following attribute in the schema: applyAlignmentFormats + + + + + Apply Width / Height Formats + Represents the following attribute in the schema: applyWidthHeightFormats + + + + + QueryTableRefresh. + Represents the following element tag in the schema: x:queryTableRefresh. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + QueryTableExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the QueryTablePart + + Specifies the part to be loaded. + + + + Saves the DOM into the QueryTablePart. + + Specifies the part to save to. + + + + Gets the QueryTablePart associated with this element. + + + + + Shared String Table. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sst. + + + The following table lists the possible child types: + + <x:extLst> + <x:si> + + + + + + Initializes a new instance of the SharedStringTable class. + + + + + Initializes a new instance of the SharedStringTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedStringTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedStringTable class from outer XML. + + Specifies the outer XML of the element. + + + + String Count + Represents the following attribute in the schema: count + + + + + Unique String Count + Represents the following attribute in the schema: uniqueCount + + + + + + + + Loads the DOM from the SharedStringTablePart + + Specifies the part to be loaded. + + + + Saves the DOM into the SharedStringTablePart. + + Specifies the part to save to. + + + + Gets the SharedStringTablePart associated with this element. + + + + + Revision Headers. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:headers. + + + The following table lists the possible child types: + + <x:header> + + + + + + Initializes a new instance of the Headers class. + + + + + Initializes a new instance of the Headers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Headers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Headers class from outer XML. + + Specifies the outer XML of the element. + + + + Last Revision GUID + Represents the following attribute in the schema: guid + + + + + Last GUID + Represents the following attribute in the schema: lastGuid + + + + + Shared Workbook + Represents the following attribute in the schema: shared + + + + + Disk Revisions + Represents the following attribute in the schema: diskRevisions + + + + + History + Represents the following attribute in the schema: history + + + + + Track Revisions + Represents the following attribute in the schema: trackRevisions + + + + + Exclusive Mode + Represents the following attribute in the schema: exclusive + + + + + Revision Id + Represents the following attribute in the schema: revisionId + + + + + Version + Represents the following attribute in the schema: version + + + + + Keep Change History + Represents the following attribute in the schema: keepChangeHistory + + + + + Protected + Represents the following attribute in the schema: protected + + + + + Preserve History + Represents the following attribute in the schema: preserveHistory + + + + + + + + Loads the DOM from the WorkbookRevisionHeaderPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorkbookRevisionHeaderPart. + + Specifies the part to save to. + + + + Gets the WorkbookRevisionHeaderPart associated with this element. + + + + + Revisions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:revisions. + + + The following table lists the possible child types: + + <x:raf> + <x:rcc> + <x:rcmt> + <x:rcft> + <x:rcv> + <x:rdn> + <x:rfmt> + <x:ris> + <x:rm> + <x:rqt> + <x:rrc> + <x:rsnm> + + + + + + Initializes a new instance of the Revisions class. + + + + + Initializes a new instance of the Revisions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Revisions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Revisions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WorkbookRevisionLogPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorkbookRevisionLogPart. + + Specifies the part to save to. + + + + Gets the WorkbookRevisionLogPart associated with this element. + + + + + User List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:users. + + + The following table lists the possible child types: + + <x:userInfo> + + + + + + Initializes a new instance of the Users class. + + + + + Initializes a new instance of the Users class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Users class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Users class from outer XML. + + Specifies the outer XML of the element. + + + + Active User Count + Represents the following attribute in the schema: count + + + + + + + + Loads the DOM from the WorkbookUserDataPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorkbookUserDataPart. + + Specifies the part to save to. + + + + Gets the WorkbookUserDataPart associated with this element. + + + + + Worksheet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:worksheet. + + + The following table lists the possible child types: + + <x:autoFilter> + <x:cellWatches> + <x:cols> + <x:conditionalFormatting> + <x:controls> + <x:customProperties> + <x:customSheetViews> + <x:dataConsolidate> + <x:dataValidations> + <x:drawing> + <x:drawingHF> + <x:headerFooter> + <x:hyperlinks> + <x:ignoredErrors> + <x:legacyDrawing> + <x:legacyDrawingHF> + <x:mergeCells> + <x:oleObjects> + <x:rowBreaks> + <x:colBreaks> + <x:pageMargins> + <x:pageSetup> + <x:phoneticPr> + <x:printOptions> + <x:protectedRanges> + <x:scenarios> + <x:picture> + <x:sheetCalcPr> + <x:sheetData> + <x:dimension> + <x:sheetFormatPr> + <x:sheetPr> + <x:sheetProtection> + <x:sheetViews> + <x:sortState> + <x:tableParts> + <x:webPublishItems> + <x:extLst> + + + + + + Initializes a new instance of the Worksheet class. + + + + + Initializes a new instance of the Worksheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Worksheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Worksheet class from outer XML. + + Specifies the outer XML of the element. + + + + SheetProperties. + Represents the following element tag in the schema: x:sheetPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + SheetDimension. + Represents the following element tag in the schema: x:dimension. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + SheetViews. + Represents the following element tag in the schema: x:sheetViews. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + SheetFormatProperties. + Represents the following element tag in the schema: x:sheetFormatPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the WorksheetPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorksheetPart. + + Specifies the part to save to. + + + + Gets the WorksheetPart associated with this element. + + + + + Chart Sheet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:chartsheet. + + + The following table lists the possible child types: + + <x:sheetPr> + <x:sheetProtection> + <x:sheetViews> + <x:pageSetup> + <x:customSheetViews> + <x:drawing> + <x:drawingHF> + <x:extLst> + <x:headerFooter> + <x:legacyDrawing> + <x:legacyDrawingHF> + <x:pageMargins> + <x:picture> + <x:webPublishItems> + + + + + + Initializes a new instance of the Chartsheet class. + + + + + Initializes a new instance of the Chartsheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Chartsheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Chartsheet class from outer XML. + + Specifies the outer XML of the element. + + + + Chart Sheet Properties. + Represents the following element tag in the schema: x:sheetPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Chart Sheet Views. + Represents the following element tag in the schema: x:sheetViews. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Chart Sheet Protection. + Represents the following element tag in the schema: x:sheetProtection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Custom Chart Sheet Views. + Represents the following element tag in the schema: x:customSheetViews. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PageMargins. + Represents the following element tag in the schema: x:pageMargins. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ChartSheetPageSetup. + Represents the following element tag in the schema: x:pageSetup. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + HeaderFooter. + Represents the following element tag in the schema: x:headerFooter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Drawing. + Represents the following element tag in the schema: x:drawing. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + LegacyDrawing. + Represents the following element tag in the schema: x:legacyDrawing. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Legacy Drawing Reference in Header Footer. + Represents the following element tag in the schema: x:legacyDrawingHF. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + DrawingHeaderFooter. + Represents the following element tag in the schema: x:drawingHF. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Picture. + Represents the following element tag in the schema: x:picture. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + WebPublishItems. + Represents the following element tag in the schema: x:webPublishItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the ChartsheetPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ChartsheetPart. + + Specifies the part to save to. + + + + Gets the ChartsheetPart associated with this element. + + + + + Dialog Sheet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dialogsheet. + + + The following table lists the possible child types: + + <x:controls> + <x:customSheetViews> + <x:drawing> + <x:drawingHF> + <x:extLst> + <x:headerFooter> + <x:legacyDrawing> + <x:legacyDrawingHF> + <x:oleObjects> + <x:pageMargins> + <x:pageSetup> + <x:printOptions> + <x:sheetFormatPr> + <x:sheetPr> + <x:sheetProtection> + <x:sheetViews> + + + + + + Initializes a new instance of the DialogSheet class. + + + + + Initializes a new instance of the DialogSheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DialogSheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DialogSheet class from outer XML. + + Specifies the outer XML of the element. + + + + Sheet Properties. + Represents the following element tag in the schema: x:sheetPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Dialog Sheet Views. + Represents the following element tag in the schema: x:sheetViews. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Dialog Sheet Format Properties. + Represents the following element tag in the schema: x:sheetFormatPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Sheet Protection. + Represents the following element tag in the schema: x:sheetProtection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Custom Sheet Views. + Represents the following element tag in the schema: x:customSheetViews. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Print Options. + Represents the following element tag in the schema: x:printOptions. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Page Margins. + Represents the following element tag in the schema: x:pageMargins. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Page Setup Settings. + Represents the following element tag in the schema: x:pageSetup. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Header and Footer Settings. + Represents the following element tag in the schema: x:headerFooter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Drawing. + Represents the following element tag in the schema: x:drawing. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Legacy Drawing. + Represents the following element tag in the schema: x:legacyDrawing. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Legacy Drawing Header Footer. + Represents the following element tag in the schema: x:legacyDrawingHF. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + DrawingHeaderFooter. + Represents the following element tag in the schema: x:drawingHF. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + OleObjects. + Represents the following element tag in the schema: x:oleObjects. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Controls. + Represents the following element tag in the schema: x:controls. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the DialogsheetPart + + Specifies the part to be loaded. + + + + Saves the DOM into the DialogsheetPart. + + Specifies the part to save to. + + + + Gets the DialogsheetPart associated with this element. + + + + + Metadata. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:metadata. + + + The following table lists the possible child types: + + <x:extLst> + <x:futureMetadata> + <x:mdxMetadata> + <x:cellMetadata> + <x:valueMetadata> + <x:metadataStrings> + <x:metadataTypes> + + + + + + Initializes a new instance of the Metadata class. + + + + + Initializes a new instance of the Metadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Metadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Metadata class from outer XML. + + Specifies the outer XML of the element. + + + + Metadata Types Collection. + Represents the following element tag in the schema: x:metadataTypes. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Metadata String Store. + Represents the following element tag in the schema: x:metadataStrings. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + MDX Metadata Information. + Represents the following element tag in the schema: x:mdxMetadata. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the CellMetadataPart + + Specifies the part to be loaded. + + + + Saves the DOM into the CellMetadataPart. + + Specifies the part to save to. + + + + Gets the CellMetadataPart associated with this element. + + + + + Single Cells. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:singleXmlCells. + + + The following table lists the possible child types: + + <x:singleXmlCell> + + + + + + Initializes a new instance of the SingleXmlCells class. + + + + + Initializes a new instance of the SingleXmlCells class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SingleXmlCells class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SingleXmlCells class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the SingleCellTablePart + + Specifies the part to be loaded. + + + + Saves the DOM into the SingleCellTablePart. + + Specifies the part to save to. + + + + Gets the SingleCellTablePart associated with this element. + + + + + Style Sheet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:styleSheet. + + + The following table lists the possible child types: + + <x:borders> + <x:cellStyles> + <x:cellStyleXfs> + <x:cellXfs> + <x:colors> + <x:dxfs> + <x:fills> + <x:fonts> + <x:numFmts> + <x:extLst> + <x:tableStyles> + + + + + + Initializes a new instance of the Stylesheet class. + + + + + Initializes a new instance of the Stylesheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Stylesheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Stylesheet class from outer XML. + + Specifies the outer XML of the element. + + + + NumberingFormats. + Represents the following element tag in the schema: x:numFmts. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Fonts. + Represents the following element tag in the schema: x:fonts. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Fills. + Represents the following element tag in the schema: x:fills. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Borders. + Represents the following element tag in the schema: x:borders. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CellStyleFormats. + Represents the following element tag in the schema: x:cellStyleXfs. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CellFormats. + Represents the following element tag in the schema: x:cellXfs. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CellStyles. + Represents the following element tag in the schema: x:cellStyles. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + DifferentialFormats. + Represents the following element tag in the schema: x:dxfs. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + TableStyles. + Represents the following element tag in the schema: x:tableStyles. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Colors. + Represents the following element tag in the schema: x:colors. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + StylesheetExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the WorkbookStylesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorkbookStylesPart. + + Specifies the part to save to. + + + + Gets the WorkbookStylesPart associated with this element. + + + + + External Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:externalLink. + + + The following table lists the possible child types: + + <x:ddeLink> + <x:extLst> + <x:externalBook> + <x:oleLink> + + + + + + Initializes a new instance of the ExternalLink class. + + + + + Initializes a new instance of the ExternalLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalLink class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the ExternalWorkbookPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ExternalWorkbookPart. + + Specifies the part to save to. + + + + Gets the ExternalWorkbookPart associated with this element. + + + + + Table. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:table. + + + The following table lists the possible child types: + + <x:autoFilter> + <x:sortState> + <x:tableColumns> + <x:extLst> + <x:tableStyleInfo> + + + + + + Initializes a new instance of the Table class. + + + + + Initializes a new instance of the Table class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Table class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Table class from outer XML. + + Specifies the outer XML of the element. + + + + Table Id + Represents the following attribute in the schema: id + + + + + Name + Represents the following attribute in the schema: name + + + + + Table Name + Represents the following attribute in the schema: displayName + + + + + Table Comment + Represents the following attribute in the schema: comment + + + + + Reference + Represents the following attribute in the schema: ref + + + + + Table Type + Represents the following attribute in the schema: tableType + + + + + Header Row Count + Represents the following attribute in the schema: headerRowCount + + + + + Insert Row Showing + Represents the following attribute in the schema: insertRow + + + + + Insert Row Shift + Represents the following attribute in the schema: insertRowShift + + + + + Totals Row Count + Represents the following attribute in the schema: totalsRowCount + + + + + Totals Row Shown + Represents the following attribute in the schema: totalsRowShown + + + + + Published + Represents the following attribute in the schema: published + + + + + Header Row Format Id + Represents the following attribute in the schema: headerRowDxfId + + + + + Data Area Format Id + Represents the following attribute in the schema: dataDxfId + + + + + Totals Row Format Id + Represents the following attribute in the schema: totalsRowDxfId + + + + + Header Row Border Format Id + Represents the following attribute in the schema: headerRowBorderDxfId + + + + + Table Border Format Id + Represents the following attribute in the schema: tableBorderDxfId + + + + + Totals Row Border Format Id + Represents the following attribute in the schema: totalsRowBorderDxfId + + + + + Header Row Style + Represents the following attribute in the schema: headerRowCellStyle + + + + + Data Style Name + Represents the following attribute in the schema: dataCellStyle + + + + + Totals Row Style + Represents the following attribute in the schema: totalsRowCellStyle + + + + + Connection ID + Represents the following attribute in the schema: connectionId + + + + + Table AutoFilter. + Represents the following element tag in the schema: x:autoFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Sort State. + Represents the following element tag in the schema: x:sortState. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Table Columns. + Represents the following element tag in the schema: x:tableColumns. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Table Style. + Represents the following element tag in the schema: x:tableStyleInfo. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the TableDefinitionPart + + Specifies the part to be loaded. + + + + Saves the DOM into the TableDefinitionPart. + + Specifies the part to save to. + + + + Gets the TableDefinitionPart associated with this element. + + + + + Volatile Dependency Types. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:volTypes. + + + The following table lists the possible child types: + + <x:extLst> + <x:volType> + + + + + + Initializes a new instance of the VolatileTypes class. + + + + + Initializes a new instance of the VolatileTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VolatileTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VolatileTypes class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the VolatileDependenciesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the VolatileDependenciesPart. + + Specifies the part to save to. + + + + Gets the VolatileDependenciesPart associated with this element. + + + + + Workbook. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:workbook. + + + The following table lists the possible child types: + + <x:bookViews> + <x:calcPr> + <x:customWorkbookViews> + <x:definedNames> + <x:externalReferences> + <x:fileRecoveryPr> + <x:fileSharing> + <x:fileVersion> + <x:functionGroups> + <x:oleSize> + <x:pivotCaches> + <x:sheets> + <x:webPublishing> + <x:webPublishObjects> + <x:extLst> + <x:workbookPr> + <x:workbookProtection> + <x15ac:absPath> + + + + + + Initializes a new instance of the Workbook class. + + + + + Initializes a new instance of the Workbook class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Workbook class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Workbook class from outer XML. + + Specifies the outer XML of the element. + + + + conformance + Represents the following attribute in the schema: conformance + + + + + FileVersion. + Represents the following element tag in the schema: x:fileVersion. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + FileSharing. + Represents the following element tag in the schema: x:fileSharing. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + WorkbookProperties. + Represents the following element tag in the schema: x:workbookPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + AbsolutePath, this property is only available in Office 2013 and later.. + Represents the following element tag in the schema: x15ac:absPath. + + + xmlns:x15ac = http://schemas.microsoft.com/office/spreadsheetml/2010/11/ac + + + + + WorkbookProtection. + Represents the following element tag in the schema: x:workbookProtection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + BookViews. + Represents the following element tag in the schema: x:bookViews. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Sheets. + Represents the following element tag in the schema: x:sheets. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + FunctionGroups. + Represents the following element tag in the schema: x:functionGroups. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExternalReferences. + Represents the following element tag in the schema: x:externalReferences. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + DefinedNames. + Represents the following element tag in the schema: x:definedNames. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CalculationProperties. + Represents the following element tag in the schema: x:calcPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + OleSize. + Represents the following element tag in the schema: x:oleSize. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CustomWorkbookViews. + Represents the following element tag in the schema: x:customWorkbookViews. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotCaches. + Represents the following element tag in the schema: x:pivotCaches. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + WebPublishing. + Represents the following element tag in the schema: x:webPublishing. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Loads the DOM from the WorkbookPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorkbookPart. + + Specifies the part to save to. + + + + Gets the WorkbookPart associated with this element. + + + + + AutoFilter Column. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:filterColumn. + + + The following table lists the possible child types: + + <x:colorFilter> + <x:customFilters> + <x:dynamicFilter> + <x:extLst> + <x:filters> + <x:iconFilter> + <x:top10> + <x14:customFilters> + <x14:iconFilter> + + + + + + Initializes a new instance of the FilterColumn class. + + + + + Initializes a new instance of the FilterColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilterColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilterColumn class from outer XML. + + Specifies the outer XML of the element. + + + + Filter Column Data + Represents the following attribute in the schema: colId + + + + + Hidden AutoFilter Button + Represents the following attribute in the schema: hiddenButton + + + + + Show Filter Button + Represents the following attribute in the schema: showButton + + + + + Filter Criteria. + Represents the following element tag in the schema: x:filters. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Top 10. + Represents the following element tag in the schema: x:top10. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CustomFilters14, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: x14:customFilters. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + Custom Filters. + Represents the following element tag in the schema: x:customFilters. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Dynamic Filter. + Represents the following element tag in the schema: x:dynamicFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Color Filter Criteria. + Represents the following element tag in the schema: x:colorFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + IconFilter14, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: x14:iconFilter. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + Icon Filter. + Represents the following element tag in the schema: x:iconFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Sort State for Auto Filter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sortState. + + + The following table lists the possible child types: + + <x:extLst> + <x:sortCondition> + <x14:sortCondition> + + + + + + Initializes a new instance of the SortState class. + + + + + Initializes a new instance of the SortState class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SortState class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SortState class from outer XML. + + Specifies the outer XML of the element. + + + + Sort by Columns + Represents the following attribute in the schema: columnSort + + + + + Case Sensitive + Represents the following attribute in the schema: caseSensitive + + + + + Sort Method + Represents the following attribute in the schema: sortMethod + + + + + Sort Range + Represents the following attribute in the schema: ref + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Custom Filter Criteria. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customFilter. + + + + + Initializes a new instance of the CustomFilter class. + + + + + Filter Comparison Operator + Represents the following attribute in the schema: operator + + + + + Top or Bottom Value + Represents the following attribute in the schema: val + + + + + + + + Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:c. + + + + + Initializes a new instance of the CalculationCell class. + + + + + Cell Reference + Represents the following attribute in the schema: r + + + + + Sheet Id + Represents the following attribute in the schema: i + + + + + Child Chain + Represents the following attribute in the schema: s + + + + + New Dependency Level + Represents the following attribute in the schema: l + + + + + New Thread + Represents the following attribute in the schema: t + + + + + Array + Represents the following attribute in the schema: a + + + + + + + + Authors. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:authors. + + + The following table lists the possible child types: + + <x:author> + + + + + + Initializes a new instance of the Authors class. + + + + + Initializes a new instance of the Authors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Authors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Authors class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List of Comments. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:commentList. + + + The following table lists the possible child types: + + <x:comment> + + + + + + Initializes a new instance of the CommentList class. + + + + + Initializes a new instance of the CommentList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Comment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:comment. + + + The following table lists the possible child types: + + <x:commentPr> + <x:text> + + + + + + Initializes a new instance of the Comment class. + + + + + Initializes a new instance of the Comment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comment class from outer XML. + + Specifies the outer XML of the element. + + + + Cell Reference + Represents the following attribute in the schema: ref + + + + + Author Id + Represents the following attribute in the schema: authorId + + + + + Unique Identifier for Comment + Represents the following attribute in the schema: guid + + + + + shapeId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: shapeId + + + + + Comment Text. + Represents the following element tag in the schema: x:text. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CommentProperties, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: x:commentPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Author. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:author. + + + + + Initializes a new instance of the Author class. + + + + + Initializes a new instance of the Author class with the specified text content. + + Specifies the text content of the element. + + + + + + + Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:t. + + + + + Initializes a new instance of the Text class. + + + + + Initializes a new instance of the Text class with the specified text content. + + Specifies the text content of the element. + + + + + + + Formula. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:formula. + + + + + Initializes a new instance of the Formula class. + + + + + Initializes a new instance of the Formula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Old Formula. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oldFormula. + + + + + Initializes a new instance of the OldFormula class. + + + + + Initializes a new instance of the OldFormula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Odd Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oddHeader. + + + + + Initializes a new instance of the OddHeader class. + + + + + Initializes a new instance of the OddHeader class with the specified text content. + + Specifies the text content of the element. + + + + + + + Odd Page Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oddFooter. + + + + + Initializes a new instance of the OddFooter class. + + + + + Initializes a new instance of the OddFooter class with the specified text content. + + Specifies the text content of the element. + + + + + + + Even Page Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:evenHeader. + + + + + Initializes a new instance of the EvenHeader class. + + + + + Initializes a new instance of the EvenHeader class with the specified text content. + + Specifies the text content of the element. + + + + + + + Even Page Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:evenFooter. + + + + + Initializes a new instance of the EvenFooter class. + + + + + Initializes a new instance of the EvenFooter class with the specified text content. + + Specifies the text content of the element. + + + + + + + First Page Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:firstHeader. + + + + + Initializes a new instance of the FirstHeader class. + + + + + Initializes a new instance of the FirstHeader class with the specified text content. + + Specifies the text content of the element. + + + + + + + First Page Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:firstFooter. + + + + + Initializes a new instance of the FirstFooter class. + + + + + Initializes a new instance of the FirstFooter class with the specified text content. + + Specifies the text content of the element. + + + + + + + DDE Link Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:val. + + + + + Initializes a new instance of the DdeLinkValue class. + + + + + Initializes a new instance of the DdeLinkValue class with the specified text content. + + Specifies the text content of the element. + + + + + + + Strings in Subtopic. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:stp. + + + + + Initializes a new instance of the Subtopic class. + + + + + Initializes a new instance of the Subtopic class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Formula1 Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:formula1. + + + + + Initializes a new instance of the Formula1 class. + + + + + Initializes a new instance of the Formula1 class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Formula2 Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:formula2. + + + + + Initializes a new instance of the Formula2 class. + + + + + Initializes a new instance of the Formula2 class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the XstringType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the XstringType class. + + + + + Initializes a new instance of the XstringType class with the specified text content. + + Specifies the text content of the element. + + + + Content Contains Significant Whitespace + Represents the following attribute in the schema: xml:space + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + XML Schema. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:Schema. + + + + + Initializes a new instance of the Schema class. + + + + + Initializes a new instance of the Schema class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Schema class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Schema class from outer XML. + + Specifies the outer XML of the element. + + + + Schema ID + Represents the following attribute in the schema: ID + + + + + Schema Reference + Represents the following attribute in the schema: SchemaRef + + + + + Schema Root Namespace + Represents the following attribute in the schema: Namespace + + + + + + + + XML Mapping Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:Map. + + + The following table lists the possible child types: + + <x:DataBinding> + + + + + + Initializes a new instance of the Map class. + + + + + Initializes a new instance of the Map class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Map class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Map class from outer XML. + + Specifies the outer XML of the element. + + + + XML Mapping ID + Represents the following attribute in the schema: ID + + + + + XML Mapping Name + Represents the following attribute in the schema: Name + + + + + Root Element Name + Represents the following attribute in the schema: RootElement + + + + + Schema Name + Represents the following attribute in the schema: SchemaID + + + + + Show Validation Errors + Represents the following attribute in the schema: ShowImportExportValidationErrors + + + + + AutoFit Table on Refresh + Represents the following attribute in the schema: AutoFit + + + + + Append Data to Table + Represents the following attribute in the schema: Append + + + + + Preserve AutoFilter State + Represents the following attribute in the schema: PreserveSortAFLayout + + + + + Preserve Cell Formatting + Represents the following attribute in the schema: PreserveFormat + + + + + XML Mapping. + Represents the following element tag in the schema: x:DataBinding. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + XML Mapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:DataBinding. + + + + + Initializes a new instance of the DataBinding class. + + + + + Initializes a new instance of the DataBinding class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataBinding class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataBinding class from outer XML. + + Specifies the outer XML of the element. + + + + DataBindingName + Represents the following attribute in the schema: DataBindingName + + + + + FileBinding + Represents the following attribute in the schema: FileBinding + + + + + ConnectionID + Represents the following attribute in the schema: ConnectionID + + + + + FileBindingName + Represents the following attribute in the schema: FileBindingName + + + + + DataBindingLoadMode + Represents the following attribute in the schema: DataBindingLoadMode + + + + + + + + Connection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:connection. + + + The following table lists the possible child types: + + <x:extLst> + <x:dbPr> + <x:olapPr> + <x:parameters> + <x:textPr> + <x:webPr> + + + + + + Initializes a new instance of the Connection class. + + + + + Initializes a new instance of the Connection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connection class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + sourceFile + Represents the following attribute in the schema: sourceFile + + + + + odcFile + Represents the following attribute in the schema: odcFile + + + + + keepAlive + Represents the following attribute in the schema: keepAlive + + + + + interval + Represents the following attribute in the schema: interval + + + + + name + Represents the following attribute in the schema: name + + + + + description + Represents the following attribute in the schema: description + + + + + type + Represents the following attribute in the schema: type + + + + + reconnectionMethod + Represents the following attribute in the schema: reconnectionMethod + + + + + refreshedVersion + Represents the following attribute in the schema: refreshedVersion + + + + + minRefreshableVersion + Represents the following attribute in the schema: minRefreshableVersion + + + + + savePassword + Represents the following attribute in the schema: savePassword + + + + + new + Represents the following attribute in the schema: new + + + + + deleted + Represents the following attribute in the schema: deleted + + + + + onlyUseConnectionFile + Represents the following attribute in the schema: onlyUseConnectionFile + + + + + background + Represents the following attribute in the schema: background + + + + + refreshOnLoad + Represents the following attribute in the schema: refreshOnLoad + + + + + saveData + Represents the following attribute in the schema: saveData + + + + + credentials + Represents the following attribute in the schema: credentials + + + + + singleSignOnId + Represents the following attribute in the schema: singleSignOnId + + + + + DatabaseProperties. + Represents the following element tag in the schema: x:dbPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + OlapProperties. + Represents the following element tag in the schema: x:olapPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + WebQueryProperties. + Represents the following element tag in the schema: x:webPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + TextProperties. + Represents the following element tag in the schema: x:textPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Parameters. + Represents the following element tag in the schema: x:parameters. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ConnectionExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Tables. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tables. + + + The following table lists the possible child types: + + <x:x> + <x:m> + <x:s> + + + + + + Initializes a new instance of the Tables class. + + + + + Initializes a new instance of the Tables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tables class from outer XML. + + Specifies the outer XML of the element. + + + + Count of Tables + Represents the following attribute in the schema: count + + + + + + + + Parameter Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:parameter. + + + + + Initializes a new instance of the Parameter class. + + + + + Parameter Name + Represents the following attribute in the schema: name + + + + + SQL Data Type + Represents the following attribute in the schema: sqlType + + + + + Parameter Type + Represents the following attribute in the schema: parameterType + + + + + Refresh on Change + Represents the following attribute in the schema: refreshOnChange + + + + + Parameter Prompt String + Represents the following attribute in the schema: prompt + + + + + Boolean + Represents the following attribute in the schema: boolean + + + + + Double + Represents the following attribute in the schema: double + + + + + Integer + Represents the following attribute in the schema: integer + + + + + String + Represents the following attribute in the schema: string + + + + + Cell Reference + Represents the following attribute in the schema: cell + + + + + + + + No Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:m. + + + + + Initializes a new instance of the MissingTable class. + + + + + + + + Character Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:s. + + + + + Initializes a new instance of the CharacterValue class. + + + + + Value + Represents the following attribute in the schema: v + + + + + + + + Index. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:x. + + + + + Initializes a new instance of the FieldItem class. + + + + + Shared Items Index + Represents the following attribute in the schema: v + + + + + + + + Text Import Field Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:textField. + + + + + Initializes a new instance of the TextField class. + + + + + Field Type + Represents the following attribute in the schema: type + + + + + Position + Represents the following attribute in the schema: position + + + + + + + + PivotCache Field. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cacheField. + + + The following table lists the possible child types: + + <x:extLst> + <x:fieldGroup> + <x:sharedItems> + <x:mpMap> + + + + + + Initializes a new instance of the CacheField class. + + + + + Initializes a new instance of the CacheField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheField class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: name + + + + + caption + Represents the following attribute in the schema: caption + + + + + propertyName + Represents the following attribute in the schema: propertyName + + + + + serverField + Represents the following attribute in the schema: serverField + + + + + uniqueList + Represents the following attribute in the schema: uniqueList + + + + + numFmtId + Represents the following attribute in the schema: numFmtId + + + + + formula + Represents the following attribute in the schema: formula + + + + + sqlType + Represents the following attribute in the schema: sqlType + + + + + hierarchy + Represents the following attribute in the schema: hierarchy + + + + + level + Represents the following attribute in the schema: level + + + + + databaseField + Represents the following attribute in the schema: databaseField + + + + + mappingCount + Represents the following attribute in the schema: mappingCount + + + + + memberPropertyField + Represents the following attribute in the schema: memberPropertyField + + + + + SharedItems. + Represents the following element tag in the schema: x:sharedItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + FieldGroup. + Represents the following element tag in the schema: x:fieldGroup. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Page Item Values. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pages. + + + The following table lists the possible child types: + + <x:page> + + + + + + Initializes a new instance of the Pages class. + + + + + Initializes a new instance of the Pages class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Pages class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Pages class from outer XML. + + Specifies the outer XML of the element. + + + + Page Item String Count + Represents the following attribute in the schema: count + + + + + + + + Range Sets. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rangeSets. + + + The following table lists the possible child types: + + <x:rangeSet> + + + + + + Initializes a new instance of the RangeSets class. + + + + + Initializes a new instance of the RangeSets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RangeSets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RangeSets class from outer XML. + + Specifies the outer XML of the element. + + + + Reference and Page Item Count + Represents the following attribute in the schema: count + + + + + + + + Page Items. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:page. + + + The following table lists the possible child types: + + <x:pageItem> + + + + + + Initializes a new instance of the Page class. + + + + + Initializes a new instance of the Page class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Page class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Page class from outer XML. + + Specifies the outer XML of the element. + + + + Page Item String Count + Represents the following attribute in the schema: count + + + + + + + + Page Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pageItem. + + + + + Initializes a new instance of the PageItem class. + + + + + Page Item Name + Represents the following attribute in the schema: name + + + + + + + + Range Set. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rangeSet. + + + + + Initializes a new instance of the RangeSet class. + + + + + Field Item Index Page 1 + Represents the following attribute in the schema: i1 + + + + + Field Item Index Page 2 + Represents the following attribute in the schema: i2 + + + + + Field Item index Page 3 + Represents the following attribute in the schema: i3 + + + + + Field Item Index Page 4 + Represents the following attribute in the schema: i4 + + + + + Reference + Represents the following attribute in the schema: ref + + + + + Named Range + Represents the following attribute in the schema: name + + + + + Sheet Name + Represents the following attribute in the schema: sheet + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + No Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:m. + + + The following table lists the possible child types: + + <x:tpls> + <x:x> + + + + + + Initializes a new instance of the MissingItem class. + + + + + Initializes a new instance of the MissingItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MissingItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MissingItem class from outer XML. + + Specifies the outer XML of the element. + + + + Unused Item + Represents the following attribute in the schema: u + + + + + Calculated Item + Represents the following attribute in the schema: f + + + + + Caption + Represents the following attribute in the schema: c + + + + + Member Property Count + Represents the following attribute in the schema: cp + + + + + Format Index + Represents the following attribute in the schema: in + + + + + background Color + Represents the following attribute in the schema: bc + + + + + Foreground Color + Represents the following attribute in the schema: fc + + + + + Italic + Represents the following attribute in the schema: i + + + + + Underline + Represents the following attribute in the schema: un + + + + + Strikethrough + Represents the following attribute in the schema: st + + + + + Bold + Represents the following attribute in the schema: b + + + + + + + + Numeric. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:n. + + + The following table lists the possible child types: + + <x:tpls> + <x:x> + + + + + + Initializes a new instance of the NumberItem class. + + + + + Initializes a new instance of the NumberItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberItem class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: v + + + + + Unused Item + Represents the following attribute in the schema: u + + + + + Calculated Item + Represents the following attribute in the schema: f + + + + + Caption + Represents the following attribute in the schema: c + + + + + Member Property Count + Represents the following attribute in the schema: cp + + + + + Format Index + Represents the following attribute in the schema: in + + + + + Background Color + Represents the following attribute in the schema: bc + + + + + Foreground Color + Represents the following attribute in the schema: fc + + + + + Italic + Represents the following attribute in the schema: i + + + + + Underline + Represents the following attribute in the schema: un + + + + + Strikethrough + Represents the following attribute in the schema: st + + + + + Bold + Represents the following attribute in the schema: b + + + + + + + + Boolean. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:b. + + + The following table lists the possible child types: + + <x:x> + + + + + + Initializes a new instance of the BooleanItem class. + + + + + Initializes a new instance of the BooleanItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BooleanItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BooleanItem class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: v + + + + + Unused Item + Represents the following attribute in the schema: u + + + + + Calculated Item + Represents the following attribute in the schema: f + + + + + Caption + Represents the following attribute in the schema: c + + + + + Member Property Count + Represents the following attribute in the schema: cp + + + + + + + + Error Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:e. + + + The following table lists the possible child types: + + <x:tpls> + <x:x> + + + + + + Initializes a new instance of the ErrorItem class. + + + + + Initializes a new instance of the ErrorItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ErrorItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ErrorItem class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: v + + + + + Unused Item + Represents the following attribute in the schema: u + + + + + Calculated Item + Represents the following attribute in the schema: f + + + + + Item Caption + Represents the following attribute in the schema: c + + + + + Member Property Count + Represents the following attribute in the schema: cp + + + + + Format Index + Represents the following attribute in the schema: in + + + + + background Color + Represents the following attribute in the schema: bc + + + + + Foreground Color + Represents the following attribute in the schema: fc + + + + + Italic + Represents the following attribute in the schema: i + + + + + Underline + Represents the following attribute in the schema: un + + + + + Strikethrough + Represents the following attribute in the schema: st + + + + + Bold + Represents the following attribute in the schema: b + + + + + Tuples. + Represents the following element tag in the schema: x:tpls. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Character Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:s. + + + The following table lists the possible child types: + + <x:tpls> + <x:x> + + + + + + Initializes a new instance of the StringItem class. + + + + + Initializes a new instance of the StringItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringItem class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: v + + + + + Unused Item + Represents the following attribute in the schema: u + + + + + Calculated Item + Represents the following attribute in the schema: f + + + + + Item Caption + Represents the following attribute in the schema: c + + + + + Member Property Count + Represents the following attribute in the schema: cp + + + + + Format Index + Represents the following attribute in the schema: in + + + + + Background Color + Represents the following attribute in the schema: bc + + + + + Foreground Color + Represents the following attribute in the schema: fc + + + + + Italic + Represents the following attribute in the schema: i + + + + + Underline + Represents the following attribute in the schema: un + + + + + Strikethrough + Represents the following attribute in the schema: st + + + + + Bold + Represents the following attribute in the schema: b + + + + + + + + Date Time. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:d. + + + The following table lists the possible child types: + + <x:x> + + + + + + Initializes a new instance of the DateTimeItem class. + + + + + Initializes a new instance of the DateTimeItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DateTimeItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DateTimeItem class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: v + + + + + Unused Item + Represents the following attribute in the schema: u + + + + + Calculated Item Value + Represents the following attribute in the schema: f + + + + + Caption + Represents the following attribute in the schema: c + + + + + Member Property Count + Represents the following attribute in the schema: cp + + + + + + + + Tuples. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tpls. + + + The following table lists the possible child types: + + <x:tpl> + + + + + + Initializes a new instance of the Tuples class. + + + + + Initializes a new instance of the Tuples class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tuples class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tuples class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Sort By Tuple. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sortByTuple. + + + The following table lists the possible child types: + + <x:tpl> + + + + + + Initializes a new instance of the SortByTuple class. + + + + + Initializes a new instance of the SortByTuple class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SortByTuple class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SortByTuple class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TuplesType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x:tpl> + + + + + + Initializes a new instance of the TuplesType class. + + + + + Initializes a new instance of the TuplesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TuplesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TuplesType class from outer XML. + + Specifies the outer XML of the element. + + + + Member Name Count + Represents the following attribute in the schema: c + + + + + Member Property Indexes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:x. + + + + + Initializes a new instance of the MemberPropertyIndex class. + + + + + + + + Defines the MemberPropertiesMap Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:mpMap. + + + + + Initializes a new instance of the MemberPropertiesMap class. + + + + + + + + Defines the XType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the XType class. + + + + + Shared Items Index + Represents the following attribute in the schema: v + + + + + PivotCache Record. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:r. + + + The following table lists the possible child types: + + <x:b> + <x:d> + <x:e> + <x:x> + <x:m> + <x:n> + <x:s> + + + + + + Initializes a new instance of the PivotCacheRecord class. + + + + + Initializes a new instance of the PivotCacheRecord class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheRecord class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheRecord class from outer XML. + + Specifies the outer XML of the element. + + + + + + + OLAP KPI. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:kpi. + + + + + Initializes a new instance of the Kpi class. + + + + + KPI Unique Name + Represents the following attribute in the schema: uniqueName + + + + + KPI Display Name + Represents the following attribute in the schema: caption + + + + + KPI Display Folder + Represents the following attribute in the schema: displayFolder + + + + + KPI Measure Group Name + Represents the following attribute in the schema: measureGroup + + + + + Parent KPI + Represents the following attribute in the schema: parent + + + + + KPI Value Unique Name + Represents the following attribute in the schema: value + + + + + KPI Goal Unique Name + Represents the following attribute in the schema: goal + + + + + KPI Status Unique Name + Represents the following attribute in the schema: status + + + + + KPI Trend Unique Name + Represents the following attribute in the schema: trend + + + + + KPI Weight Unique Name + Represents the following attribute in the schema: weight + + + + + + + + PivotCache Field Id. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fieldUsage. + + + + + Initializes a new instance of the FieldUsage class. + + + + + Field Index + Represents the following attribute in the schema: x + + + + + + + + OLAP Grouping Levels. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:groupLevel. + + + The following table lists the possible child types: + + <x:extLst> + <x:groups> + + + + + + Initializes a new instance of the GroupLevel class. + + + + + Initializes a new instance of the GroupLevel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupLevel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupLevel class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Name + Represents the following attribute in the schema: uniqueName + + + + + Grouping Level Display Name + Represents the following attribute in the schema: caption + + + + + User-Defined Group Level + Represents the following attribute in the schema: user + + + + + Custom Roll Up + Represents the following attribute in the schema: customRollUp + + + + + OLAP Level Groups. + Represents the following element tag in the schema: x:groups. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + OLAP Level Groups. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:groups. + + + The following table lists the possible child types: + + <x:group> + + + + + + Initializes a new instance of the Groups class. + + + + + Initializes a new instance of the Groups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Groups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Groups class from outer XML. + + Specifies the outer XML of the element. + + + + Level Group Count + Represents the following attribute in the schema: count + + + + + + + + OLAP Group. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:group. + + + The following table lists the possible child types: + + <x:groupMembers> + + + + + + Initializes a new instance of the Group class. + + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class from outer XML. + + Specifies the outer XML of the element. + + + + Group Name + Represents the following attribute in the schema: name + + + + + Unique Group Name + Represents the following attribute in the schema: uniqueName + + + + + Group Caption + Represents the following attribute in the schema: caption + + + + + Parent Unique Name + Represents the following attribute in the schema: uniqueParent + + + + + Group Id + Represents the following attribute in the schema: id + + + + + OLAP Group Members. + Represents the following element tag in the schema: x:groupMembers. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + OLAP Group Members. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:groupMembers. + + + The following table lists the possible child types: + + <x:groupMember> + + + + + + Initializes a new instance of the GroupMembers class. + + + + + Initializes a new instance of the GroupMembers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupMembers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupMembers class from outer XML. + + Specifies the outer XML of the element. + + + + Group Member Count + Represents the following attribute in the schema: count + + + + + + + + OLAP Group Member. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:groupMember. + + + + + Initializes a new instance of the GroupMember class. + + + + + Group Member Unique Name + Represents the following attribute in the schema: uniqueName + + + + + Group + Represents the following attribute in the schema: group + + + + + + + + Entries. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:entries. + + + The following table lists the possible child types: + + <x:e> + <x:m> + <x:n> + <x:s> + + + + + + Initializes a new instance of the Entries class. + + + + + Initializes a new instance of the Entries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Entries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Entries class from outer XML. + + Specifies the outer XML of the element. + + + + Tuple Count + Represents the following attribute in the schema: count + + + + + + + + Sets. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sets. + + + The following table lists the possible child types: + + <x:set> + + + + + + Initializes a new instance of the Sets class. + + + + + Initializes a new instance of the Sets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sets class from outer XML. + + Specifies the outer XML of the element. + + + + Tuple Set Count + Represents the following attribute in the schema: count + + + + + + + + OLAP Query Cache. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:queryCache. + + + The following table lists the possible child types: + + <x:query> + + + + + + Initializes a new instance of the QueryCache class. + + + + + Initializes a new instance of the QueryCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryCache class from outer XML. + + Specifies the outer XML of the element. + + + + Cached Query Count + Represents the following attribute in the schema: count + + + + + + + + Server Formats. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:serverFormats. + + + The following table lists the possible child types: + + <x:serverFormat> + + + + + + Initializes a new instance of the ServerFormats class. + + + + + Initializes a new instance of the ServerFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ServerFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ServerFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Format Count + Represents the following attribute in the schema: count + + + + + + + + Server Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:serverFormat. + + + + + Initializes a new instance of the ServerFormat class. + + + + + Culture + Represents the following attribute in the schema: culture + + + + + Format + Represents the following attribute in the schema: format + + + + + + + + Tuple. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tpl. + + + + + Initializes a new instance of the Tuple class. + + + + + Field Index + Represents the following attribute in the schema: fld + + + + + Hierarchy Index + Represents the following attribute in the schema: hier + + + + + Item Index + Represents the following attribute in the schema: item + + + + + + + + OLAP Set. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:set. + + + The following table lists the possible child types: + + <x:tpls> + <x:sortByTuple> + + + + + + Initializes a new instance of the TupleSet class. + + + + + Initializes a new instance of the TupleSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSet class from outer XML. + + Specifies the outer XML of the element. + + + + Number of Tuples + Represents the following attribute in the schema: count + + + + + Maximum Rank Requested + Represents the following attribute in the schema: maxRank + + + + + MDX Set Definition + Represents the following attribute in the schema: setDefinition + + + + + Set Sort Order + Represents the following attribute in the schema: sortType + + + + + Query Failed + Represents the following attribute in the schema: queryFailed + + + + + + + + Query. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:query. + + + The following table lists the possible child types: + + <x:tpls> + + + + + + Initializes a new instance of the Query class. + + + + + Initializes a new instance of the Query class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Query class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Query class from outer XML. + + Specifies the outer XML of the element. + + + + MDX Query String + Represents the following attribute in the schema: mdx + + + + + Tuples. + Represents the following element tag in the schema: x:tpls. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Calculated Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:calculatedItem. + + + The following table lists the possible child types: + + <x:extLst> + <x:pivotArea> + + + + + + Initializes a new instance of the CalculatedItem class. + + + + + Initializes a new instance of the CalculatedItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedItem class from outer XML. + + Specifies the outer XML of the element. + + + + Field Index + Represents the following attribute in the schema: field + + + + + Calculated Item Formula + Represents the following attribute in the schema: formula + + + + + Calculated Item Location. + Represents the following element tag in the schema: x:pivotArea. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Calculated Item Location. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotArea. + + + The following table lists the possible child types: + + <x:extLst> + <x:references> + + + + + + Initializes a new instance of the PivotArea class. + + + + + Initializes a new instance of the PivotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotArea class from outer XML. + + Specifies the outer XML of the element. + + + + Field Index + Represents the following attribute in the schema: field + + + + + Rule Type + Represents the following attribute in the schema: type + + + + + Data Only + Represents the following attribute in the schema: dataOnly + + + + + Labels Only + Represents the following attribute in the schema: labelOnly + + + + + Include Row Grand Total + Represents the following attribute in the schema: grandRow + + + + + Include Column Grand Total + Represents the following attribute in the schema: grandCol + + + + + Cache Index + Represents the following attribute in the schema: cacheIndex + + + + + Outline + Represents the following attribute in the schema: outline + + + + + Offset Reference + Represents the following attribute in the schema: offset + + + + + Collapsed Levels Are Subtotals + Represents the following attribute in the schema: collapsedLevelsAreSubtotals + + + + + Axis + Represents the following attribute in the schema: axis + + + + + Field Position + Represents the following attribute in the schema: fieldPosition + + + + + References. + Represents the following element tag in the schema: x:references. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Calculated Member. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:calculatedMember. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the CalculatedMember class. + + + + + Initializes a new instance of the CalculatedMember class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMember class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMember class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: name + + + + + mdx + Represents the following attribute in the schema: mdx + + + + + memberName + Represents the following attribute in the schema: memberName + + + + + hierarchy + Represents the following attribute in the schema: hierarchy + + + + + parent + Represents the following attribute in the schema: parent + + + + + solveOrder + Represents the following attribute in the schema: solveOrder + + + + + set + Represents the following attribute in the schema: set + + + + + CalculatedMemberExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + PivotTable Field. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotField. + + + The following table lists the possible child types: + + <x:autoSortScope> + <x:items> + <x:extLst> + + + + + + Initializes a new instance of the PivotField class. + + + + + Initializes a new instance of the PivotField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotField class from outer XML. + + Specifies the outer XML of the element. + + + + Field Name + Represents the following attribute in the schema: name + + + + + Axis + Represents the following attribute in the schema: axis + + + + + Data Field + Represents the following attribute in the schema: dataField + + + + + Custom Subtotal Caption + Represents the following attribute in the schema: subtotalCaption + + + + + Show PivotField Header Drop Downs + Represents the following attribute in the schema: showDropDowns + + + + + Hidden Level + Represents the following attribute in the schema: hiddenLevel + + + + + Unique Member Property + Represents the following attribute in the schema: uniqueMemberProperty + + + + + Compact + Represents the following attribute in the schema: compact + + + + + All Items Expanded + Represents the following attribute in the schema: allDrilled + + + + + Number Format Id + Represents the following attribute in the schema: numFmtId + + + + + Outline Items + Represents the following attribute in the schema: outline + + + + + Subtotals At Top + Represents the following attribute in the schema: subtotalTop + + + + + Drag To Row + Represents the following attribute in the schema: dragToRow + + + + + Drag To Column + Represents the following attribute in the schema: dragToCol + + + + + Multiple Field Filters + Represents the following attribute in the schema: multipleItemSelectionAllowed + + + + + Drag Field to Page + Represents the following attribute in the schema: dragToPage + + + + + Field Can Drag to Data + Represents the following attribute in the schema: dragToData + + + + + Drag Off + Represents the following attribute in the schema: dragOff + + + + + Show All Items + Represents the following attribute in the schema: showAll + + + + + Insert Blank Row + Represents the following attribute in the schema: insertBlankRow + + + + + Server-based Page Field + Represents the following attribute in the schema: serverField + + + + + Insert Item Page Break + Represents the following attribute in the schema: insertPageBreak + + + + + Auto Show + Represents the following attribute in the schema: autoShow + + + + + Top Auto Show + Represents the following attribute in the schema: topAutoShow + + + + + Hide New Items + Represents the following attribute in the schema: hideNewItems + + + + + Measure Filter + Represents the following attribute in the schema: measureFilter + + + + + Inclusive Manual Filter + Represents the following attribute in the schema: includeNewItemsInFilter + + + + + Items Per Page Count + Represents the following attribute in the schema: itemPageCount + + + + + Auto Sort Type + Represents the following attribute in the schema: sortType + + + + + Data Source Sort + Represents the following attribute in the schema: dataSourceSort + + + + + Auto Sort + Represents the following attribute in the schema: nonAutoSortDefault + + + + + Auto Show Rank By + Represents the following attribute in the schema: rankBy + + + + + Show Default Subtotal + Represents the following attribute in the schema: defaultSubtotal + + + + + Sum Subtotal + Represents the following attribute in the schema: sumSubtotal + + + + + CountA + Represents the following attribute in the schema: countASubtotal + + + + + Average + Represents the following attribute in the schema: avgSubtotal + + + + + Max Subtotal + Represents the following attribute in the schema: maxSubtotal + + + + + Min Subtotal + Represents the following attribute in the schema: minSubtotal + + + + + Product Subtotal + Represents the following attribute in the schema: productSubtotal + + + + + Count + Represents the following attribute in the schema: countSubtotal + + + + + StdDev Subtotal + Represents the following attribute in the schema: stdDevSubtotal + + + + + StdDevP Subtotal + Represents the following attribute in the schema: stdDevPSubtotal + + + + + Variance Subtotal + Represents the following attribute in the schema: varSubtotal + + + + + VarP Subtotal + Represents the following attribute in the schema: varPSubtotal + + + + + Show Member Property in Cell + Represents the following attribute in the schema: showPropCell + + + + + Show Member Property ToolTip + Represents the following attribute in the schema: showPropTip + + + + + Show As Caption + Represents the following attribute in the schema: showPropAsCaption + + + + + Drill State + Represents the following attribute in the schema: defaultAttributeDrillState + + + + + Field Items. + Represents the following element tag in the schema: x:items. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + AutoSort Scope. + Represents the following element tag in the schema: x:autoSortScope. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + PivotTable Field Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:item. + + + + + Initializes a new instance of the Item class. + + + + + Item User Caption + Represents the following attribute in the schema: n + + + + + Item Type + Represents the following attribute in the schema: t + + + + + Hidden + Represents the following attribute in the schema: h + + + + + Character + Represents the following attribute in the schema: s + + + + + Hide Details + Represents the following attribute in the schema: sd + + + + + Calculated Member + Represents the following attribute in the schema: f + + + + + Missing + Represents the following attribute in the schema: m + + + + + Child Items + Represents the following attribute in the schema: c + + + + + Item Index + Represents the following attribute in the schema: x + + + + + Expanded + Represents the following attribute in the schema: d + + + + + Drill Across Attributes + Represents the following attribute in the schema: e + + + + + + + + Data Field Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dataField. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the DataField class. + + + + + Initializes a new instance of the DataField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataField class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: name + + + + + fld + Represents the following attribute in the schema: fld + + + + + subtotal + Represents the following attribute in the schema: subtotal + + + + + showDataAs + Represents the following attribute in the schema: showDataAs + + + + + baseField + Represents the following attribute in the schema: baseField + + + + + baseItem + Represents the following attribute in the schema: baseItem + + + + + numFmtId + Represents the following attribute in the schema: numFmtId + + + + + DataFieldExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Row Items. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:i. + + + The following table lists the possible child types: + + <x:x> + + + + + + Initializes a new instance of the RowItem class. + + + + + Initializes a new instance of the RowItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowItem class from outer XML. + + Specifies the outer XML of the element. + + + + Item Type + Represents the following attribute in the schema: t + + + + + Repeated Items Count + Represents the following attribute in the schema: r + + + + + Data Field Index + Represents the following attribute in the schema: i + + + + + + + + Row Items. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:field. + + + + + Initializes a new instance of the Field class. + + + + + Field Index + Represents the following attribute in the schema: x + + + + + + + + PivotTable Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:format. + + + The following table lists the possible child types: + + <x:extLst> + <x:pivotArea> + + + + + + Initializes a new instance of the Format class. + + + + + Initializes a new instance of the Format class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Format class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Format class from outer XML. + + Specifies the outer XML of the element. + + + + Format Action + Represents the following attribute in the schema: action + + + + + Format Id + Represents the following attribute in the schema: dxfId + + + + + Pivot Table Location. + Represents the following element tag in the schema: x:pivotArea. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Conditional Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:conditionalFormat. + + + The following table lists the possible child types: + + <x:extLst> + <x:pivotAreas> + + + + + + Initializes a new instance of the ConditionalFormat class. + + + + + Initializes a new instance of the ConditionalFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormat class from outer XML. + + Specifies the outer XML of the element. + + + + Conditional Formatting Scope + Represents the following attribute in the schema: scope + + + + + Conditional Formatting Rule Type + Represents the following attribute in the schema: type + + + + + Priority + Represents the following attribute in the schema: priority + + + + + Pivot Areas. + Represents the following element tag in the schema: x:pivotAreas. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Pivot Areas. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotAreas. + + + The following table lists the possible child types: + + <x:pivotArea> + + + + + + Initializes a new instance of the PivotAreas class. + + + + + Initializes a new instance of the PivotAreas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotAreas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotAreas class from outer XML. + + Specifies the outer XML of the element. + + + + Pivot Area Count + Represents the following attribute in the schema: count + + + + + + + + PivotChart Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:chartFormat. + + + The following table lists the possible child types: + + <x:pivotArea> + + + + + + Initializes a new instance of the ChartFormat class. + + + + + Initializes a new instance of the ChartFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartFormat class from outer XML. + + Specifies the outer XML of the element. + + + + Chart Index + Represents the following attribute in the schema: chart + + + + + Pivot Format Id + Represents the following attribute in the schema: format + + + + + Series Format + Represents the following attribute in the schema: series + + + + + Pivot Table Location Rule. + Represents the following element tag in the schema: x:pivotArea. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + OLAP Hierarchy. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotHierarchy. + + + The following table lists the possible child types: + + <x:mps> + <x:members> + <x:extLst> + + + + + + Initializes a new instance of the PivotHierarchy class. + + + + + Initializes a new instance of the PivotHierarchy class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotHierarchy class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotHierarchy class from outer XML. + + Specifies the outer XML of the element. + + + + Outline New Levels + Represents the following attribute in the schema: outline + + + + + Multiple Field Filters + Represents the following attribute in the schema: multipleItemSelectionAllowed + + + + + New Levels Subtotals At Top + Represents the following attribute in the schema: subtotalTop + + + + + Show In Field List + Represents the following attribute in the schema: showInFieldList + + + + + Drag To Row + Represents the following attribute in the schema: dragToRow + + + + + Drag To Column + Represents the following attribute in the schema: dragToCol + + + + + Drag to Page + Represents the following attribute in the schema: dragToPage + + + + + Drag To Data + Represents the following attribute in the schema: dragToData + + + + + Drag Off + Represents the following attribute in the schema: dragOff + + + + + Inclusive Manual Filter + Represents the following attribute in the schema: includeNewItemsInFilter + + + + + Hierarchy Caption + Represents the following attribute in the schema: caption + + + + + OLAP Member Properties. + Represents the following element tag in the schema: x:mps. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Row OLAP Hierarchies. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rowHierarchyUsage. + + + + + Initializes a new instance of the RowHierarchyUsage class. + + + + + + + + Column OLAP Hierarchies. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:colHierarchyUsage. + + + + + Initializes a new instance of the ColumnHierarchyUsage class. + + + + + + + + Defines the HierarchyUsageType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the HierarchyUsageType class. + + + + + Hierarchy Usage + Represents the following attribute in the schema: hierarchyUsage + + + + + OLAP Member Property. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:mp. + + + + + Initializes a new instance of the MemberProperty class. + + + + + OLAP Member Property Unique Name + Represents the following attribute in the schema: name + + + + + Show Cell + Represents the following attribute in the schema: showCell + + + + + Show Tooltip + Represents the following attribute in the schema: showTip + + + + + Show As Caption + Represents the following attribute in the schema: showAsCaption + + + + + Name Length + Represents the following attribute in the schema: nameLen + + + + + Property Name Character Index + Represents the following attribute in the schema: pPos + + + + + Property Name Length + Represents the following attribute in the schema: pLen + + + + + Level Index + Represents the following attribute in the schema: level + + + + + Field Index + Represents the following attribute in the schema: field + + + + + + + + Member. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:member. + + + + + Initializes a new instance of the Member class. + + + + + Hidden Item Name + Represents the following attribute in the schema: name + + + + + + + + OLAP Dimension. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dimension. + + + + + Initializes a new instance of the Dimension class. + + + + + Measure + Represents the following attribute in the schema: measure + + + + + Dimension Name + Represents the following attribute in the schema: name + + + + + Dimension Unique Name + Represents the following attribute in the schema: uniqueName + + + + + Dimension Display Name + Represents the following attribute in the schema: caption + + + + + + + + OLAP Measure Group. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:measureGroup. + + + + + Initializes a new instance of the MeasureGroup class. + + + + + Measure Group Name + Represents the following attribute in the schema: name + + + + + Measure Group Display Name + Represents the following attribute in the schema: caption + + + + + + + + OLAP Measure Group. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:map. + + + + + Initializes a new instance of the MeasureDimensionMap class. + + + + + Measure Group Id + Represents the following attribute in the schema: measureGroup + + + + + Dimension Id + Represents the following attribute in the schema: dimension + + + + + + + + PivotTable Advanced Filter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:filter. + + + The following table lists the possible child types: + + <x:autoFilter> + <x:extLst> + + + + + + Initializes a new instance of the PivotFilter class. + + + + + Initializes a new instance of the PivotFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFilter class from outer XML. + + Specifies the outer XML of the element. + + + + fld + Represents the following attribute in the schema: fld + + + + + mpFld + Represents the following attribute in the schema: mpFld + + + + + type + Represents the following attribute in the schema: type + + + + + evalOrder + Represents the following attribute in the schema: evalOrder + + + + + id + Represents the following attribute in the schema: id + + + + + iMeasureHier + Represents the following attribute in the schema: iMeasureHier + + + + + iMeasureFld + Represents the following attribute in the schema: iMeasureFld + + + + + name + Represents the following attribute in the schema: name + + + + + description + Represents the following attribute in the schema: description + + + + + stringValue1 + Represents the following attribute in the schema: stringValue1 + + + + + stringValue2 + Represents the following attribute in the schema: stringValue2 + + + + + AutoFilter. + Represents the following element tag in the schema: x:autoFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotFilterExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + PivotCache Hierarchy. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cacheHierarchy. + + + The following table lists the possible child types: + + <x:extLst> + <x:fieldsUsage> + <x:groupLevels> + + + + + + Initializes a new instance of the CacheHierarchy class. + + + + + Initializes a new instance of the CacheHierarchy class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchy class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchy class from outer XML. + + Specifies the outer XML of the element. + + + + uniqueName + Represents the following attribute in the schema: uniqueName + + + + + caption + Represents the following attribute in the schema: caption + + + + + measure + Represents the following attribute in the schema: measure + + + + + set + Represents the following attribute in the schema: set + + + + + parentSet + Represents the following attribute in the schema: parentSet + + + + + iconSet + Represents the following attribute in the schema: iconSet + + + + + attribute + Represents the following attribute in the schema: attribute + + + + + time + Represents the following attribute in the schema: time + + + + + keyAttribute + Represents the following attribute in the schema: keyAttribute + + + + + defaultMemberUniqueName + Represents the following attribute in the schema: defaultMemberUniqueName + + + + + allUniqueName + Represents the following attribute in the schema: allUniqueName + + + + + allCaption + Represents the following attribute in the schema: allCaption + + + + + dimensionUniqueName + Represents the following attribute in the schema: dimensionUniqueName + + + + + displayFolder + Represents the following attribute in the schema: displayFolder + + + + + measureGroup + Represents the following attribute in the schema: measureGroup + + + + + measures + Represents the following attribute in the schema: measures + + + + + count + Represents the following attribute in the schema: count + + + + + oneField + Represents the following attribute in the schema: oneField + + + + + memberValueDatatype + Represents the following attribute in the schema: memberValueDatatype + + + + + unbalanced + Represents the following attribute in the schema: unbalanced + + + + + unbalancedGroup + Represents the following attribute in the schema: unbalancedGroup + + + + + hidden + Represents the following attribute in the schema: hidden + + + + + FieldsUsage. + Represents the following element tag in the schema: x:fieldsUsage. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + GroupLevels. + Represents the following element tag in the schema: x:groupLevels. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CacheHierarchyExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Range Grouping Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rangePr. + + + + + Initializes a new instance of the RangeProperties class. + + + + + Source Data Set Beginning Range + Represents the following attribute in the schema: autoStart + + + + + Source Data Ending Range + Represents the following attribute in the schema: autoEnd + + + + + Group By + Represents the following attribute in the schema: groupBy + + + + + Numeric Grouping Start Value + Represents the following attribute in the schema: startNum + + + + + Numeric Grouping End Value + Represents the following attribute in the schema: endNum + + + + + Date Grouping Start Value + Represents the following attribute in the schema: startDate + + + + + Date Grouping End Value + Represents the following attribute in the schema: endDate + + + + + Grouping Interval + Represents the following attribute in the schema: groupInterval + + + + + + + + Discrete Grouping Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:discretePr. + + + The following table lists the possible child types: + + <x:x> + + + + + + Initializes a new instance of the DiscreteProperties class. + + + + + Initializes a new instance of the DiscreteProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiscreteProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiscreteProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Mapping Index Count + Represents the following attribute in the schema: count + + + + + + + + OLAP Group Items. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:groupItems. + + + The following table lists the possible child types: + + <x:b> + <x:d> + <x:e> + <x:m> + <x:n> + <x:s> + + + + + + Initializes a new instance of the GroupItems class. + + + + + Initializes a new instance of the GroupItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupItems class from outer XML. + + Specifies the outer XML of the element. + + + + Items Created Count + Represents the following attribute in the schema: count + + + + + + + + Page Field. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pageField. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the PageField class. + + + + + Initializes a new instance of the PageField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PageField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PageField class from outer XML. + + Specifies the outer XML of the element. + + + + Field + Represents the following attribute in the schema: fld + + + + + Item Index + Represents the following attribute in the schema: item + + + + + OLAP Hierarchy Index + Represents the following attribute in the schema: hier + + + + + Hierarchy Unique Name + Represents the following attribute in the schema: name + + + + + Hierarchy Display Name + Represents the following attribute in the schema: cap + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + References. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:references. + + + The following table lists the possible child types: + + <x:reference> + + + + + + Initializes a new instance of the PivotAreaReferences class. + + + + + Initializes a new instance of the PivotAreaReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotAreaReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotAreaReferences class from outer XML. + + Specifies the outer XML of the element. + + + + Pivot Filter Count + Represents the following attribute in the schema: count + + + + + + + + Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:reference. + + + The following table lists the possible child types: + + <x:extLst> + <x:x> + + + + + + Initializes a new instance of the PivotAreaReference class. + + + + + Initializes a new instance of the PivotAreaReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotAreaReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotAreaReference class from outer XML. + + Specifies the outer XML of the element. + + + + Field Index + Represents the following attribute in the schema: field + + + + + Item Index Count + Represents the following attribute in the schema: count + + + + + Selected + Represents the following attribute in the schema: selected + + + + + Positional Reference + Represents the following attribute in the schema: byPosition + + + + + Relative Reference + Represents the following attribute in the schema: relative + + + + + Include Default Filter + Represents the following attribute in the schema: defaultSubtotal + + + + + Include Sum Filter + Represents the following attribute in the schema: sumSubtotal + + + + + Include CountA Filter + Represents the following attribute in the schema: countASubtotal + + + + + Include Average Filter + Represents the following attribute in the schema: avgSubtotal + + + + + Include Maximum Filter + Represents the following attribute in the schema: maxSubtotal + + + + + Include Minimum Filter + Represents the following attribute in the schema: minSubtotal + + + + + Include Product Filter + Represents the following attribute in the schema: productSubtotal + + + + + Include Count Subtotal + Represents the following attribute in the schema: countSubtotal + + + + + Include StdDev Filter + Represents the following attribute in the schema: stdDevSubtotal + + + + + Include StdDevP Filter + Represents the following attribute in the schema: stdDevPSubtotal + + + + + Include Var Filter + Represents the following attribute in the schema: varSubtotal + + + + + Include VarP Filter + Represents the following attribute in the schema: varPSubtotal + + + + + + + + Query table fields. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:queryTableFields. + + + The following table lists the possible child types: + + <x:queryTableField> + + + + + + Initializes a new instance of the QueryTableFields class. + + + + + Initializes a new instance of the QueryTableFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableFields class from outer XML. + + Specifies the outer XML of the element. + + + + Column Count + Represents the following attribute in the schema: count + + + + + + + + Deleted Fields. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:queryTableDeletedFields. + + + The following table lists the possible child types: + + <x:deletedField> + + + + + + Initializes a new instance of the QueryTableDeletedFields class. + + + + + Initializes a new instance of the QueryTableDeletedFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableDeletedFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableDeletedFields class from outer XML. + + Specifies the outer XML of the element. + + + + Deleted Fields Count + Represents the following attribute in the schema: count + + + + + + + + Deleted Field. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:deletedField. + + + + + Initializes a new instance of the DeletedField class. + + + + + Deleted Fields Name + Represents the following attribute in the schema: name + + + + + + + + QueryTable Field. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:queryTableField. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the QueryTableField class. + + + + + Initializes a new instance of the QueryTableField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableField class from outer XML. + + Specifies the outer XML of the element. + + + + Field Id + Represents the following attribute in the schema: id + + + + + Name + Represents the following attribute in the schema: name + + + + + Data Bound Column + Represents the following attribute in the schema: dataBound + + + + + Row Numbers + Represents the following attribute in the schema: rowNumbers + + + + + Fill This Formula On Refresh + Represents the following attribute in the schema: fillFormulas + + + + + Clipped Column + Represents the following attribute in the schema: clipped + + + + + Table Column Id + Represents the following attribute in the schema: tableColumnId + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + String Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:si. + + + The following table lists the possible child types: + + <x:phoneticPr> + <x:rPh> + <x:r> + <x:t> + + + + + + Initializes a new instance of the SharedStringItem class. + + + + + Initializes a new instance of the SharedStringItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedStringItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedStringItem class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Rich Text Inline. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:is. + + + The following table lists the possible child types: + + <x:phoneticPr> + <x:rPh> + <x:r> + <x:t> + + + + + + Initializes a new instance of the InlineString class. + + + + + Initializes a new instance of the InlineString class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InlineString class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InlineString class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Comment Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:text. + + + The following table lists the possible child types: + + <x:phoneticPr> + <x:rPh> + <x:r> + <x:t> + + + + + + Initializes a new instance of the CommentText class. + + + + + Initializes a new instance of the CommentText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentText class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RstType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x:phoneticPr> + <x:rPh> + <x:r> + <x:t> + + + + + + Initializes a new instance of the RstType class. + + + + + Initializes a new instance of the RstType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RstType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RstType class from outer XML. + + Specifies the outer XML of the element. + + + + Text. + Represents the following element tag in the schema: x:t. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Bold. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:b. + + + + + Initializes a new instance of the Bold class. + + + + + + + + Italic. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:i. + + + + + Initializes a new instance of the Italic class. + + + + + + + + Strike Through. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:strike. + + + + + Initializes a new instance of the Strike class. + + + + + + + + Condense. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:condense. + + + + + Initializes a new instance of the Condense class. + + + + + + + + Extend. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extend. + + + + + Initializes a new instance of the Extend class. + + + + + + + + Outline. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:outline. + + + + + Initializes a new instance of the Outline class. + + + + + + + + Shadow. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:shadow. + + + + + Initializes a new instance of the Shadow class. + + + + + + + + Defines the BooleanPropertyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BooleanPropertyType class. + + + + + Value + Represents the following attribute in the schema: val + + + + + Underline. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:u. + + + + + Initializes a new instance of the Underline class. + + + + + Underline Value + Represents the following attribute in the schema: val + + + + + + + + Vertical Alignment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:vertAlign. + + + + + Initializes a new instance of the VerticalTextAlignment class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Font Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sz. + + + + + Initializes a new instance of the FontSize class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Text Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:color. + + + + + Initializes a new instance of the Color class. + + + + + + + + Sheet Tab Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tabColor. + + + + + Initializes a new instance of the TabColor class. + + + + + + + + Foreground Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fgColor. + + + + + Initializes a new instance of the ForegroundColor class. + + + + + + + + Background Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:bgColor. + + + + + Initializes a new instance of the BackgroundColor class. + + + + + + + + Defines the ColorType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the ColorType class. + + + + + Automatic + Represents the following attribute in the schema: auto + + + + + Index + Represents the following attribute in the schema: indexed + + + + + Alpha Red Green Blue Color Value + Represents the following attribute in the schema: rgb + + + + + Theme Color + Represents the following attribute in the schema: theme + + + + + Tint + Represents the following attribute in the schema: tint + + + + + Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rFont. + + + + + Initializes a new instance of the RunFont class. + + + + + String Value + Represents the following attribute in the schema: val + + + + + + + + Font Family. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:family. + + + + + Initializes a new instance of the FontFamily class. + + + + + + + + Character Set. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:charset. + + + + + Initializes a new instance of the RunPropertyCharSet class. + + + + + + + + Defines the InternationalPropertyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the InternationalPropertyType class. + + + + + Value + Represents the following attribute in the schema: val + + + + + Font Scheme. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:scheme. + + + + + Initializes a new instance of the FontScheme class. + + + + + Font Scheme + Represents the following attribute in the schema: val + + + + + + + + Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rPr. + + + The following table lists the possible child types: + + <x:b> + <x:i> + <x:strike> + <x:condense> + <x:extend> + <x:outline> + <x:shadow> + <x:color> + <x:rFont> + <x:scheme> + <x:sz> + <x:family> + <x:charset> + <x:u> + <x:vertAlign> + + + + + + Initializes a new instance of the RunProperties class. + + + + + Initializes a new instance of the RunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Rich Text Run. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:r. + + + The following table lists the possible child types: + + <x:rPr> + <x:t> + + + + + + Initializes a new instance of the Run class. + + + + + Initializes a new instance of the Run class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Run class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Run class from outer XML. + + Specifies the outer XML of the element. + + + + Run Properties. + Represents the following element tag in the schema: x:rPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Text. + Represents the following element tag in the schema: x:t. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Phonetic Run. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rPh. + + + The following table lists the possible child types: + + <x:t> + + + + + + Initializes a new instance of the PhoneticRun class. + + + + + Initializes a new instance of the PhoneticRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PhoneticRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PhoneticRun class from outer XML. + + Specifies the outer XML of the element. + + + + Base Text Start Index + Represents the following attribute in the schema: sb + + + + + Base Text End Index + Represents the following attribute in the schema: eb + + + + + Text. + Represents the following element tag in the schema: x:t. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Phonetic Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:phoneticPr. + + + + + Initializes a new instance of the PhoneticProperties class. + + + + + Font Id + Represents the following attribute in the schema: fontId + + + + + Character Type + Represents the following attribute in the schema: type + + + + + Alignment + Represents the following attribute in the schema: alignment + + + + + + + + Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:header. + + + The following table lists the possible child types: + + <x:extLst> + <x:reviewedList> + <x:sheetIdMap> + + + + + + Initializes a new instance of the Header class. + + + + + Initializes a new instance of the Header class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Header class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Header class from outer XML. + + Specifies the outer XML of the element. + + + + GUID + Represents the following attribute in the schema: guid + + + + + Date Time + Represents the following attribute in the schema: dateTime + + + + + Last Sheet Id + Represents the following attribute in the schema: maxSheetId + + + + + User Name + Represents the following attribute in the schema: userName + + + + + Relationship ID + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Minimum Revision Id + Represents the following attribute in the schema: minRId + + + + + Max Revision Id + Represents the following attribute in the schema: maxRId + + + + + Sheet Id Map. + Represents the following element tag in the schema: x:sheetIdMap. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Reviewed List. + Represents the following element tag in the schema: x:reviewedList. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Revision Row Column Insert Delete. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rrc. + + + The following table lists the possible child types: + + <x:rcc> + <x:rfmt> + <x:undo> + + + + + + Initializes a new instance of the RevisionRowColumn class. + + + + + Initializes a new instance of the RevisionRowColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionRowColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionRowColumn class from outer XML. + + Specifies the outer XML of the element. + + + + Revision Id + Represents the following attribute in the schema: rId + + + + + Revision From Rejection + Represents the following attribute in the schema: ua + + + + + Revision Undo Rejected + Represents the following attribute in the schema: ra + + + + + Sheet Id + Represents the following attribute in the schema: sId + + + + + End Of List + Represents the following attribute in the schema: eol + + + + + Reference + Represents the following attribute in the schema: ref + + + + + User Action + Represents the following attribute in the schema: action + + + + + Edge Deleted + Represents the following attribute in the schema: edge + + + + + + + + Revision Cell Move. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rm. + + + The following table lists the possible child types: + + <x:rcc> + <x:rfmt> + <x:undo> + + + + + + Initializes a new instance of the RevisionMove class. + + + + + Initializes a new instance of the RevisionMove class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionMove class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionMove class from outer XML. + + Specifies the outer XML of the element. + + + + Revision Id + Represents the following attribute in the schema: rId + + + + + Revision From Rejection + Represents the following attribute in the schema: ua + + + + + Revision Undo Rejected + Represents the following attribute in the schema: ra + + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + Source + Represents the following attribute in the schema: source + + + + + Destination + Represents the following attribute in the schema: destination + + + + + Source Sheet Id + Represents the following attribute in the schema: sourceSheetId + + + + + + + + Revision Custom View. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rcv. + + + + + Initializes a new instance of the RevisionCustomView class. + + + + + GUID + Represents the following attribute in the schema: guid + + + + + User Action + Represents the following attribute in the schema: action + + + + + + + + Revision Sheet Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rsnm. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the RevisionSheetName class. + + + + + Initializes a new instance of the RevisionSheetName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionSheetName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionSheetName class from outer XML. + + Specifies the outer XML of the element. + + + + Revision Id + Represents the following attribute in the schema: rId + + + + + Revision From Rejection + Represents the following attribute in the schema: ua + + + + + Revision Undo Rejected + Represents the following attribute in the schema: ra + + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + Old Sheet Name + Represents the following attribute in the schema: oldName + + + + + New Sheet Name + Represents the following attribute in the schema: newName + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Revision Insert Sheet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ris. + + + + + Initializes a new instance of the RevisionInsertSheet class. + + + + + Revision Id + Represents the following attribute in the schema: rId + + + + + Revision From Rejection + Represents the following attribute in the schema: ua + + + + + Revision Undo Rejected + Represents the following attribute in the schema: ra + + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + Sheet Name + Represents the following attribute in the schema: name + + + + + Sheet Position + Represents the following attribute in the schema: sheetPosition + + + + + + + + Revision Cell Change. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rcc. + + + The following table lists the possible child types: + + <x:oc> + <x:odxf> + <x:ndxf> + <x:extLst> + <x:nc> + + + + + + Initializes a new instance of the RevisionCellChange class. + + + + + Initializes a new instance of the RevisionCellChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionCellChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionCellChange class from outer XML. + + Specifies the outer XML of the element. + + + + Revision Id + Represents the following attribute in the schema: rId + + + + + Revision From Rejection + Represents the following attribute in the schema: ua + + + + + Revision Undo Rejected + Represents the following attribute in the schema: ra + + + + + Sheet Id + Represents the following attribute in the schema: sId + + + + + Old Formatting + Represents the following attribute in the schema: odxf + + + + + Row Column Formatting Change + Represents the following attribute in the schema: xfDxf + + + + + Style Revision + Represents the following attribute in the schema: s + + + + + Formatting + Represents the following attribute in the schema: dxf + + + + + Number Format Id + Represents the following attribute in the schema: numFmtId + + + + + Quote Prefix + Represents the following attribute in the schema: quotePrefix + + + + + Old Quote Prefix + Represents the following attribute in the schema: oldQuotePrefix + + + + + Phonetic Text + Represents the following attribute in the schema: ph + + + + + Old Phonetic Text + Represents the following attribute in the schema: oldPh + + + + + End of List Formula Update + Represents the following attribute in the schema: endOfListFormulaUpdate + + + + + Old Cell Data. + Represents the following element tag in the schema: x:oc. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + New Cell Data. + Represents the following element tag in the schema: x:nc. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Old Formatting Information. + Represents the following element tag in the schema: x:odxf. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + New Formatting Information. + Represents the following element tag in the schema: x:ndxf. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Revision Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rfmt. + + + The following table lists the possible child types: + + <x:dxf> + <x:extLst> + + + + + + Initializes a new instance of the RevisionFormat class. + + + + + Initializes a new instance of the RevisionFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionFormat class from outer XML. + + Specifies the outer XML of the element. + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + Row or Column Formatting Change + Represents the following attribute in the schema: xfDxf + + + + + Style + Represents the following attribute in the schema: s + + + + + Sequence Of References + Represents the following attribute in the schema: sqref + + + + + Start index + Represents the following attribute in the schema: start + + + + + Length + Represents the following attribute in the schema: length + + + + + Formatting. + Represents the following element tag in the schema: x:dxf. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Revision AutoFormat. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:raf. + + + + + Initializes a new instance of the RevisionAutoFormat class. + + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + Auto Format Id + Represents the following attribute in the schema: autoFormatId + + + + + Apply Number Formats + Represents the following attribute in the schema: applyNumberFormats + + + + + Apply Border Formats + Represents the following attribute in the schema: applyBorderFormats + + + + + Apply Font Formats + Represents the following attribute in the schema: applyFontFormats + + + + + Apply Pattern Formats + Represents the following attribute in the schema: applyPatternFormats + + + + + Apply Alignment Formats + Represents the following attribute in the schema: applyAlignmentFormats + + + + + Apply Width / Height Formats + Represents the following attribute in the schema: applyWidthHeightFormats + + + + + Reference + Represents the following attribute in the schema: ref + + + + + + + + Revision Defined Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rdn. + + + The following table lists the possible child types: + + <x:extLst> + <x:formula> + <x:oldFormula> + + + + + + Initializes a new instance of the RevisionDefinedName class. + + + + + Initializes a new instance of the RevisionDefinedName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionDefinedName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionDefinedName class from outer XML. + + Specifies the outer XML of the element. + + + + Revision Id + Represents the following attribute in the schema: rId + + + + + Revision From Rejection + Represents the following attribute in the schema: ua + + + + + Revision Undo Rejected + Represents the following attribute in the schema: ra + + + + + Local Name Sheet Id + Represents the following attribute in the schema: localSheetId + + + + + Custom View + Represents the following attribute in the schema: customView + + + + + Name + Represents the following attribute in the schema: name + + + + + Function + Represents the following attribute in the schema: function + + + + + Old Function + Represents the following attribute in the schema: oldFunction + + + + + Function Group Id + Represents the following attribute in the schema: functionGroupId + + + + + Old Function Group Id + Represents the following attribute in the schema: oldFunctionGroupId + + + + + Shortcut Key + Represents the following attribute in the schema: shortcutKey + + + + + Old Short Cut Key + Represents the following attribute in the schema: oldShortcutKey + + + + + Named Range Hidden + Represents the following attribute in the schema: hidden + + + + + Old Hidden + Represents the following attribute in the schema: oldHidden + + + + + New Custom Menu + Represents the following attribute in the schema: customMenu + + + + + Old Custom Menu Text + Represents the following attribute in the schema: oldCustomMenu + + + + + Description + Represents the following attribute in the schema: description + + + + + Old Description + Represents the following attribute in the schema: oldDescription + + + + + New Help Topic + Represents the following attribute in the schema: help + + + + + Old Help Topic + Represents the following attribute in the schema: oldHelp + + + + + Status Bar + Represents the following attribute in the schema: statusBar + + + + + Old Status Bar + Represents the following attribute in the schema: oldStatusBar + + + + + Name Comment + Represents the following attribute in the schema: comment + + + + + Old Name Comment + Represents the following attribute in the schema: oldComment + + + + + Formula. + Represents the following element tag in the schema: x:formula. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Old Formula. + Represents the following element tag in the schema: x:oldFormula. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Revision Cell Comment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rcmt. + + + + + Initializes a new instance of the RevisionComment class. + + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + Cell + Represents the following attribute in the schema: cell + + + + + GUID + Represents the following attribute in the schema: guid + + + + + User Action + Represents the following attribute in the schema: action + + + + + Always Show Comment + Represents the following attribute in the schema: alwaysShow + + + + + Old Comment + Represents the following attribute in the schema: old + + + + + Comment In Hidden Row + Represents the following attribute in the schema: hiddenRow + + + + + Hidden Column + Represents the following attribute in the schema: hiddenColumn + + + + + Author + Represents the following attribute in the schema: author + + + + + Original Comment Length + Represents the following attribute in the schema: oldLength + + + + + New Comment Length + Represents the following attribute in the schema: newLength + + + + + + + + Revision Query Table. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rqt. + + + + + Initializes a new instance of the RevisionQueryTable class. + + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + QueryTable Reference + Represents the following attribute in the schema: ref + + + + + Field Id + Represents the following attribute in the schema: fieldId + + + + + + + + Revision Merge Conflict. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rcft. + + + + + Initializes a new instance of the RevisionConflict class. + + + + + Revision Id + Represents the following attribute in the schema: rId + + + + + Revision From Rejection + Represents the following attribute in the schema: ua + + + + + Revision Undo Rejected + Represents the following attribute in the schema: ra + + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + + + + Sheet Id Map. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetIdMap. + + + The following table lists the possible child types: + + <x:sheetId> + + + + + + Initializes a new instance of the SheetIdMap class. + + + + + Initializes a new instance of the SheetIdMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetIdMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetIdMap class from outer XML. + + Specifies the outer XML of the element. + + + + Sheet Count + Represents the following attribute in the schema: count + + + + + + + + Reviewed List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:reviewedList. + + + The following table lists the possible child types: + + <x:reviewed> + + + + + + Initializes a new instance of the ReviewedList class. + + + + + Initializes a new instance of the ReviewedList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ReviewedList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ReviewedList class from outer XML. + + Specifies the outer XML of the element. + + + + Reviewed Revisions Count + Represents the following attribute in the schema: count + + + + + + + + Reviewed. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:reviewed. + + + + + Initializes a new instance of the Reviewed class. + + + + + revision Id + Represents the following attribute in the schema: rId + + + + + + + + Undo. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:undo. + + + + + Initializes a new instance of the Undo class. + + + + + Index + Represents the following attribute in the schema: index + + + + + Expression + Represents the following attribute in the schema: exp + + + + + Reference 3D + Represents the following attribute in the schema: ref3D + + + + + Array Entered + Represents the following attribute in the schema: array + + + + + Value Needed + Represents the following attribute in the schema: v + + + + + Defined Name Formula + Represents the following attribute in the schema: nf + + + + + Cross Sheet Move + Represents the following attribute in the schema: cs + + + + + Range + Represents the following attribute in the schema: dr + + + + + Defined Name + Represents the following attribute in the schema: dn + + + + + Cell Reference + Represents the following attribute in the schema: r + + + + + Sheet Id + Represents the following attribute in the schema: sId + + + + + + + + Old Cell Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oc. + + + The following table lists the possible child types: + + <x:f> + <x:extLst> + <x:is> + <x:v> + + + + + + Initializes a new instance of the OldCell class. + + + + + Initializes a new instance of the OldCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OldCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OldCell class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:c. + + + The following table lists the possible child types: + + <x:f> + <x:extLst> + <x:is> + <x:v> + + + + + + Initializes a new instance of the Cell class. + + + + + Initializes a new instance of the Cell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Cell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Cell class from outer XML. + + Specifies the outer XML of the element. + + + + + + + New Cell Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:nc. + + + The following table lists the possible child types: + + <x:f> + <x:extLst> + <x:is> + <x:v> + + + + + + Initializes a new instance of the NewCell class. + + + + + Initializes a new instance of the NewCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NewCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NewCell class from outer XML. + + Specifies the outer XML of the element. + + + + Reference + Represents the following attribute in the schema: r + + + + + Style Index + Represents the following attribute in the schema: s + + + + + Cell Data Type + Represents the following attribute in the schema: t + + + + + Cell Metadata Index + Represents the following attribute in the schema: cm + + + + + Value Metadata Index + Represents the following attribute in the schema: vm + + + + + Show Phonetic + Represents the following attribute in the schema: ph + + + + + Formula. + Represents the following element tag in the schema: x:f. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Cell Value. + Represents the following element tag in the schema: x:v. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Rich Text Inline. + Represents the following element tag in the schema: x:is. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Old Formatting Information. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:odxf. + + + The following table lists the possible child types: + + <x:border> + <x:alignment> + <x:protection> + <x:extLst> + <x:fill> + <x:font> + <x:numFmt> + + + + + + Initializes a new instance of the OldDifferentialFormat class. + + + + + Initializes a new instance of the OldDifferentialFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OldDifferentialFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OldDifferentialFormat class from outer XML. + + Specifies the outer XML of the element. + + + + + + + New Formatting Information. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ndxf. + + + The following table lists the possible child types: + + <x:border> + <x:alignment> + <x:protection> + <x:extLst> + <x:fill> + <x:font> + <x:numFmt> + + + + + + Initializes a new instance of the NewDifferentialFormat class. + + + + + Initializes a new instance of the NewDifferentialFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NewDifferentialFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NewDifferentialFormat class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dxf. + + + The following table lists the possible child types: + + <x:border> + <x:alignment> + <x:protection> + <x:extLst> + <x:fill> + <x:font> + <x:numFmt> + + + + + + Initializes a new instance of the DifferentialFormat class. + + + + + Initializes a new instance of the DifferentialFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormat class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DifferentialFormatType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x:border> + <x:alignment> + <x:protection> + <x:extLst> + <x:fill> + <x:font> + <x:numFmt> + + + + + + Initializes a new instance of the DifferentialFormatType class. + + + + + Initializes a new instance of the DifferentialFormatType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormatType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormatType class from outer XML. + + Specifies the outer XML of the element. + + + + Font Properties. + Represents the following element tag in the schema: x:font. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Number Format. + Represents the following element tag in the schema: x:numFmt. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Fill. + Represents the following element tag in the schema: x:fill. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Alignment. + Represents the following element tag in the schema: x:alignment. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Border Properties. + Represents the following element tag in the schema: x:border. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Protection Properties. + Represents the following element tag in the schema: x:protection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Sheet Id. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetId. + + + + + Initializes a new instance of the SheetId class. + + + + + Sheet Id + Represents the following attribute in the schema: val + + + + + + + + Formula. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:f. + + + + + Initializes a new instance of the CellFormula class. + + + + + Initializes a new instance of the CellFormula class with the specified text content. + + Specifies the text content of the element. + + + + Formula Type + Represents the following attribute in the schema: t + + + + + Always Calculate Array + Represents the following attribute in the schema: aca + + + + + Range of Cells + Represents the following attribute in the schema: ref + + + + + Data Table 2-D + Represents the following attribute in the schema: dt2D + + + + + Data Table Row + Represents the following attribute in the schema: dtr + + + + + Input 1 Deleted + Represents the following attribute in the schema: del1 + + + + + Input 2 Deleted + Represents the following attribute in the schema: del2 + + + + + Data Table Cell 1 + Represents the following attribute in the schema: r1 + + + + + Input Cell 2 + Represents the following attribute in the schema: r2 + + + + + Calculate Cell + Represents the following attribute in the schema: ca + + + + + Shared Group Index + Represents the following attribute in the schema: si + + + + + Assigns Value to Name + Represents the following attribute in the schema: bx + + + + + Content Contains Significant Whitespace + Represents the following attribute in the schema: xml:space + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + + + + User Information. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:userInfo. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the UserInfo class. + + + + + Initializes a new instance of the UserInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UserInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UserInfo class from outer XML. + + Specifies the outer XML of the element. + + + + User Revisions GUID + Represents the following attribute in the schema: guid + + + + + User Name + Represents the following attribute in the schema: name + + + + + User Id + Represents the following attribute in the schema: id + + + + + Date Time + Represents the following attribute in the schema: dateTime + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:row. + + + The following table lists the possible child types: + + <x:c> + <x:extLst> + + + + + + Initializes a new instance of the Row class. + + + + + Initializes a new instance of the Row class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Row class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Row class from outer XML. + + Specifies the outer XML of the element. + + + + Row Index + Represents the following attribute in the schema: r + + + + + Spans + Represents the following attribute in the schema: spans + + + + + Style Index + Represents the following attribute in the schema: s + + + + + Custom Format + Represents the following attribute in the schema: customFormat + + + + + Row Height + Represents the following attribute in the schema: ht + + + + + Hidden + Represents the following attribute in the schema: hidden + + + + + Custom Height + Represents the following attribute in the schema: customHeight + + + + + Outline Level + Represents the following attribute in the schema: outlineLevel + + + + + Collapsed + Represents the following attribute in the schema: collapsed + + + + + Thick Top Border + Represents the following attribute in the schema: thickTop + + + + + Thick Bottom + Represents the following attribute in the schema: thickBot + + + + + Show Phonetic + Represents the following attribute in the schema: ph + + + + + dyDescent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x14ac:dyDescent + + + xmlns:x14ac=http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac + + + + + + + + Column Width and Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:col. + + + + + Initializes a new instance of the Column class. + + + + + Minimum Column + Represents the following attribute in the schema: min + + + + + Maximum Column + Represents the following attribute in the schema: max + + + + + Column Width + Represents the following attribute in the schema: width + + + + + Style + Represents the following attribute in the schema: style + + + + + Hidden Columns + Represents the following attribute in the schema: hidden + + + + + Best Fit Column Width + Represents the following attribute in the schema: bestFit + + + + + Custom Width + Represents the following attribute in the schema: customWidth + + + + + Show Phonetic Information + Represents the following attribute in the schema: phonetic + + + + + Outline Level + Represents the following attribute in the schema: outlineLevel + + + + + Collapsed + Represents the following attribute in the schema: collapsed + + + + + + + + Outline Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:outlinePr. + + + + + Initializes a new instance of the OutlineProperties class. + + + + + Apply Styles in Outline + Represents the following attribute in the schema: applyStyles + + + + + Summary Below + Represents the following attribute in the schema: summaryBelow + + + + + Summary Right + Represents the following attribute in the schema: summaryRight + + + + + Show Outline Symbols + Represents the following attribute in the schema: showOutlineSymbols + + + + + + + + Page Setup Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pageSetUpPr. + + + + + Initializes a new instance of the PageSetupProperties class. + + + + + Show Auto Page Breaks + Represents the following attribute in the schema: autoPageBreaks + + + + + Fit To Page + Represents the following attribute in the schema: fitToPage + + + + + + + + View Pane. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pane. + + + + + Initializes a new instance of the Pane class. + + + + + Horizontal Split Position + Represents the following attribute in the schema: xSplit + + + + + Vertical Split Position + Represents the following attribute in the schema: ySplit + + + + + Top Left Visible Cell + Represents the following attribute in the schema: topLeftCell + + + + + Active Pane + Represents the following attribute in the schema: activePane + + + + + Split State + Represents the following attribute in the schema: state + + + + + + + + Selection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:selection. + + + + + Initializes a new instance of the Selection class. + + + + + Pane + Represents the following attribute in the schema: pane + + + + + Active Cell Location + Represents the following attribute in the schema: activeCell + + + + + Active Cell Index + Represents the following attribute in the schema: activeCellId + + + + + Sequence of References + Represents the following attribute in the schema: sqref + + + + + + + + PivotTable Selection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotSelection. + + + The following table lists the possible child types: + + <x:pivotArea> + + + + + + Initializes a new instance of the PivotSelection class. + + + + + Initializes a new instance of the PivotSelection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotSelection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotSelection class from outer XML. + + Specifies the outer XML of the element. + + + + Pane + Represents the following attribute in the schema: pane + + + + + Show Header + Represents the following attribute in the schema: showHeader + + + + + Label + Represents the following attribute in the schema: label + + + + + Data Selection + Represents the following attribute in the schema: data + + + + + Extendable + Represents the following attribute in the schema: extendable + + + + + Selection Count + Represents the following attribute in the schema: count + + + + + Axis + Represents the following attribute in the schema: axis + + + + + Dimension + Represents the following attribute in the schema: dimension + + + + + Start + Represents the following attribute in the schema: start + + + + + Minimum + Represents the following attribute in the schema: min + + + + + Maximum + Represents the following attribute in the schema: max + + + + + Active Row + Represents the following attribute in the schema: activeRow + + + + + Active Column + Represents the following attribute in the schema: activeCol + + + + + Previous Row + Represents the following attribute in the schema: previousRow + + + + + Previous Column Selection + Represents the following attribute in the schema: previousCol + + + + + Click Count + Represents the following attribute in the schema: click + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Pivot Area. + Represents the following element tag in the schema: x:pivotArea. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:brk. + + + + + Initializes a new instance of the Break class. + + + + + Id + Represents the following attribute in the schema: id + + + + + Minimum + Represents the following attribute in the schema: min + + + + + Maximum + Represents the following attribute in the schema: max + + + + + Manual Page Break + Represents the following attribute in the schema: man + + + + + Pivot-Created Page Break + Represents the following attribute in the schema: pt + + + + + + + + Data Consolidation Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dataRef. + + + + + Initializes a new instance of the DataReference class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + Named Range + Represents the following attribute in the schema: name + + + + + Sheet Name + Represents the following attribute in the schema: sheet + + + + + relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Horizontal Page Breaks. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rowBreaks. + + + The following table lists the possible child types: + + <x:brk> + + + + + + Initializes a new instance of the RowBreaks class. + + + + + Initializes a new instance of the RowBreaks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowBreaks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowBreaks class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Vertical Page Breaks. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:colBreaks. + + + The following table lists the possible child types: + + <x:brk> + + + + + + Initializes a new instance of the ColumnBreaks class. + + + + + Initializes a new instance of the ColumnBreaks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnBreaks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnBreaks class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PageBreakType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x:brk> + + + + + + Initializes a new instance of the PageBreakType class. + + + + + Initializes a new instance of the PageBreakType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PageBreakType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PageBreakType class from outer XML. + + Specifies the outer XML of the element. + + + + Page Break Count + Represents the following attribute in the schema: count + + + + + Manual Break Count + Represents the following attribute in the schema: manualBreakCount + + + + + Page Margins. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pageMargins. + + + + + Initializes a new instance of the PageMargins class. + + + + + Left Page Margin + Represents the following attribute in the schema: left + + + + + Right Page Margin + Represents the following attribute in the schema: right + + + + + Top Page Margin + Represents the following attribute in the schema: top + + + + + Bottom Page Margin + Represents the following attribute in the schema: bottom + + + + + Header Page Margin + Represents the following attribute in the schema: header + + + + + Footer Page Margin + Represents the following attribute in the schema: footer + + + + + + + + Print Options. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:printOptions. + + + + + Initializes a new instance of the PrintOptions class. + + + + + Horizontal Centered + Represents the following attribute in the schema: horizontalCentered + + + + + Vertical Centered + Represents the following attribute in the schema: verticalCentered + + + + + Print Headings + Represents the following attribute in the schema: headings + + + + + Print Grid Lines + Represents the following attribute in the schema: gridLines + + + + + Grid Lines Set + Represents the following attribute in the schema: gridLinesSet + + + + + + + + Page Setup Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pageSetup. + + + + + Initializes a new instance of the PageSetup class. + + + + + Paper Size + Represents the following attribute in the schema: paperSize + + + + + Print Scale + Represents the following attribute in the schema: scale + + + + + First Page Number + Represents the following attribute in the schema: firstPageNumber + + + + + Fit To Width + Represents the following attribute in the schema: fitToWidth + + + + + Fit To Height + Represents the following attribute in the schema: fitToHeight + + + + + Page Order + Represents the following attribute in the schema: pageOrder + + + + + Orientation + Represents the following attribute in the schema: orientation + + + + + Use Printer Defaults + Represents the following attribute in the schema: usePrinterDefaults + + + + + Black And White + Represents the following attribute in the schema: blackAndWhite + + + + + Draft + Represents the following attribute in the schema: draft + + + + + Print Cell Comments + Represents the following attribute in the schema: cellComments + + + + + Use First Page Number + Represents the following attribute in the schema: useFirstPageNumber + + + + + Print Error Handling + Represents the following attribute in the schema: errors + + + + + Horizontal DPI + Represents the following attribute in the schema: horizontalDpi + + + + + Vertical DPI + Represents the following attribute in the schema: verticalDpi + + + + + Number Of Copies + Represents the following attribute in the schema: copies + + + + + Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Header Footer Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:headerFooter. + + + The following table lists the possible child types: + + <x:oddHeader> + <x:oddFooter> + <x:evenHeader> + <x:evenFooter> + <x:firstHeader> + <x:firstFooter> + + + + + + Initializes a new instance of the HeaderFooter class. + + + + + Initializes a new instance of the HeaderFooter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooter class from outer XML. + + Specifies the outer XML of the element. + + + + Different Odd Even Header Footer + Represents the following attribute in the schema: differentOddEven + + + + + Different First Page + Represents the following attribute in the schema: differentFirst + + + + + Scale Header and Footer With Document + Represents the following attribute in the schema: scaleWithDoc + + + + + Align Margins + Represents the following attribute in the schema: alignWithMargins + + + + + Odd Header. + Represents the following element tag in the schema: x:oddHeader. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Odd Page Footer. + Represents the following element tag in the schema: x:oddFooter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Even Page Header. + Represents the following element tag in the schema: x:evenHeader. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Even Page Footer. + Represents the following element tag in the schema: x:evenFooter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + First Page Header. + Represents the following element tag in the schema: x:firstHeader. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + First Page Footer. + Represents the following element tag in the schema: x:firstFooter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + AutoFilter Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:autoFilter. + + + The following table lists the possible child types: + + <x:extLst> + <x:filterColumn> + <x:sortState> + + + + + + Initializes a new instance of the AutoFilter class. + + + + + Initializes a new instance of the AutoFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoFilter class from outer XML. + + Specifies the outer XML of the element. + + + + Cell or Range Reference + Represents the following attribute in the schema: ref + + + + + + + + Conditional Formatting Rule. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cfRule. + + + The following table lists the possible child types: + + <x:extLst> + <x:colorScale> + <x:dataBar> + <x:iconSet> + <x:formula> + + + + + + Initializes a new instance of the ConditionalFormattingRule class. + + + + + Initializes a new instance of the ConditionalFormattingRule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingRule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingRule class from outer XML. + + Specifies the outer XML of the element. + + + + Type + Represents the following attribute in the schema: type + + + + + Differential Formatting Id + Represents the following attribute in the schema: dxfId + + + + + Priority + Represents the following attribute in the schema: priority + + + + + Stop If True + Represents the following attribute in the schema: stopIfTrue + + + + + Above Or Below Average + Represents the following attribute in the schema: aboveAverage + + + + + Top 10 Percent + Represents the following attribute in the schema: percent + + + + + Bottom N + Represents the following attribute in the schema: bottom + + + + + Operator + Represents the following attribute in the schema: operator + + + + + Text + Represents the following attribute in the schema: text + + + + + Time Period + Represents the following attribute in the schema: timePeriod + + + + + Rank + Represents the following attribute in the schema: rank + + + + + StdDev + Represents the following attribute in the schema: stdDev + + + + + Equal Average + Represents the following attribute in the schema: equalAverage + + + + + + + + Hyperlink. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:hyperlink. + + + + + Initializes a new instance of the Hyperlink class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Location + Represents the following attribute in the schema: location + + + + + Tool Tip + Represents the following attribute in the schema: tooltip + + + + + Display String + Represents the following attribute in the schema: display + + + + + + + + Conditional Format Value Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cfvo. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the ConditionalFormatValueObject class. + + + + + Initializes a new instance of the ConditionalFormatValueObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormatValueObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormatValueObject class from outer XML. + + Specifies the outer XML of the element. + + + + Type + Represents the following attribute in the schema: type + + + + + Value + Represents the following attribute in the schema: val + + + + + Greater Than Or Equal + Represents the following attribute in the schema: gte + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Scenario. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:scenario. + + + The following table lists the possible child types: + + <x:inputCells> + + + + + + Initializes a new instance of the Scenario class. + + + + + Initializes a new instance of the Scenario class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scenario class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scenario class from outer XML. + + Specifies the outer XML of the element. + + + + Scenario Name + Represents the following attribute in the schema: name + + + + + Scenario Locked + Represents the following attribute in the schema: locked + + + + + Hidden Scenario + Represents the following attribute in the schema: hidden + + + + + Changing Cell Count + Represents the following attribute in the schema: count + + + + + User Name + Represents the following attribute in the schema: user + + + + + Scenario Comment + Represents the following attribute in the schema: comment + + + + + + + + Protected Range. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:protectedRange. + + + + + Initializes a new instance of the ProtectedRange class. + + + + + password + Represents the following attribute in the schema: password + + + + + algorithmName + Represents the following attribute in the schema: algorithmName + + + + + hashValue + Represents the following attribute in the schema: hashValue + + + + + saltValue + Represents the following attribute in the schema: saltValue + + + + + spinCount + Represents the following attribute in the schema: spinCount + + + + + sqref + Represents the following attribute in the schema: sqref + + + + + name + Represents the following attribute in the schema: name + + + + + securityDescriptor + Represents the following attribute in the schema: securityDescriptor + + + + + + + + Cell Watch Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cellWatch. + + + + + Initializes a new instance of the CellWatch class. + + + + + Reference + Represents the following attribute in the schema: r + + + + + + + + Chart Sheet Page Setup. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pageSetup. + + + + + Initializes a new instance of the ChartSheetPageSetup class. + + + + + Paper Size + Represents the following attribute in the schema: paperSize + + + + + First Page Number + Represents the following attribute in the schema: firstPageNumber + + + + + Orientation + Represents the following attribute in the schema: orientation + + + + + Use Printer Defaults + Represents the following attribute in the schema: usePrinterDefaults + + + + + Black And White + Represents the following attribute in the schema: blackAndWhite + + + + + Draft + Represents the following attribute in the schema: draft + + + + + Use First Page Number + Represents the following attribute in the schema: useFirstPageNumber + + + + + Horizontal DPI + Represents the following attribute in the schema: horizontalDpi + + + + + Vertical DPI + Represents the following attribute in the schema: verticalDpi + + + + + Number Of Copies + Represents the following attribute in the schema: copies + + + + + Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Custom Property. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customPr. + + + + + Initializes a new instance of the CustomProperty class. + + + + + Custom Property Name + Represents the following attribute in the schema: name + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Web Publishing Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:webPublishItem. + + + + + Initializes a new instance of the WebPublishItem class. + + + + + Id + Represents the following attribute in the schema: id + + + + + Destination Bookmark + Represents the following attribute in the schema: divId + + + + + Web Source Type + Represents the following attribute in the schema: sourceType + + + + + Source Id + Represents the following attribute in the schema: sourceRef + + + + + Source Object Name + Represents the following attribute in the schema: sourceObject + + + + + Destination File Name + Represents the following attribute in the schema: destinationFile + + + + + Title + Represents the following attribute in the schema: title + + + + + Automatically Publish + Represents the following attribute in the schema: autoRepublish + + + + + + + + Table Part. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tablePart. + + + + + Initializes a new instance of the TablePart class. + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Chart Sheet View. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetView. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the ChartSheetView class. + + + + + Initializes a new instance of the ChartSheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSheetView class from outer XML. + + Specifies the outer XML of the element. + + + + Sheet Tab Selected + Represents the following attribute in the schema: tabSelected + + + + + Window Zoom Scale + Represents the following attribute in the schema: zoomScale + + + + + Workbook View Id + Represents the following attribute in the schema: workbookViewId + + + + + Zoom To Fit + Represents the following attribute in the schema: zoomToFit + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Custom Chart Sheet View. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customSheetView. + + + The following table lists the possible child types: + + <x:pageSetup> + <x:headerFooter> + <x:pageMargins> + + + + + + Initializes a new instance of the CustomChartsheetView class. + + + + + Initializes a new instance of the CustomChartsheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomChartsheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomChartsheetView class from outer XML. + + Specifies the outer XML of the element. + + + + GUID + Represents the following attribute in the schema: guid + + + + + Print Scale + Represents the following attribute in the schema: scale + + + + + Visible State + Represents the following attribute in the schema: state + + + + + Zoom To Fit + Represents the following attribute in the schema: zoomToFit + + + + + PageMargins. + Represents the following element tag in the schema: x:pageMargins. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Chart Sheet Page Setup. + Represents the following element tag in the schema: x:pageSetup. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + HeaderFooter. + Represents the following element tag in the schema: x:headerFooter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Input Cells. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:inputCells. + + + + + Initializes a new instance of the InputCells class. + + + + + Reference + Represents the following attribute in the schema: r + + + + + Deleted + Represents the following attribute in the schema: deleted + + + + + Undone + Represents the following attribute in the schema: undone + + + + + Value + Represents the following attribute in the schema: val + + + + + Number Format Id + Represents the following attribute in the schema: numFmtId + + + + + + + + Embedded Control. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:control. + + + The following table lists the possible child types: + + <x:controlPr> + + + + + + Initializes a new instance of the Control class. + + + + + Initializes a new instance of the Control class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Control class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Control class from outer XML. + + Specifies the outer XML of the element. + + + + Shape Id + Represents the following attribute in the schema: shapeId + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Control Name + Represents the following attribute in the schema: name + + + + + ControlProperties, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: x:controlPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Ignored Error. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ignoredError. + + + + + Initializes a new instance of the IgnoredError class. + + + + + Sequence of References + Represents the following attribute in the schema: sqref + + + + + Evaluation Error + Represents the following attribute in the schema: evalError + + + + + Two Digit Text Year + Represents the following attribute in the schema: twoDigitTextYear + + + + + Number Stored As Text + Represents the following attribute in the schema: numberStoredAsText + + + + + Formula + Represents the following attribute in the schema: formula + + + + + Formula Range + Represents the following attribute in the schema: formulaRange + + + + + Unlocked Formula + Represents the following attribute in the schema: unlockedFormula + + + + + Empty Cell Reference + Represents the following attribute in the schema: emptyCellReference + + + + + List Data Validation + Represents the following attribute in the schema: listDataValidation + + + + + Calculated Column + Represents the following attribute in the schema: calculatedColumn + + + + + + + + Merged Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:mergeCell. + + + + + Initializes a new instance of the MergeCell class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + + + + Data Validation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dataValidation. + + + The following table lists the possible child types: + + <x:formula1> + <x:formula2> + <x12ac:list> + + + + + + Initializes a new instance of the DataValidation class. + + + + + Initializes a new instance of the DataValidation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidation class from outer XML. + + Specifies the outer XML of the element. + + + + type + Represents the following attribute in the schema: type + + + + + errorStyle + Represents the following attribute in the schema: errorStyle + + + + + imeMode + Represents the following attribute in the schema: imeMode + + + + + operator + Represents the following attribute in the schema: operator + + + + + allowBlank + Represents the following attribute in the schema: allowBlank + + + + + showDropDown + Represents the following attribute in the schema: showDropDown + + + + + showInputMessage + Represents the following attribute in the schema: showInputMessage + + + + + showErrorMessage + Represents the following attribute in the schema: showErrorMessage + + + + + errorTitle + Represents the following attribute in the schema: errorTitle + + + + + error + Represents the following attribute in the schema: error + + + + + promptTitle + Represents the following attribute in the schema: promptTitle + + + + + prompt + Represents the following attribute in the schema: prompt + + + + + sqref + Represents the following attribute in the schema: sqref + + + + + List, this property is only available in Office 2013 and later.. + Represents the following element tag in the schema: x12ac:list. + + + xmlns:x12ac = http://schemas.microsoft.com/office/spreadsheetml/2011/1/ac + + + + + Formula1. + Represents the following element tag in the schema: x:formula1. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Formula2. + Represents the following element tag in the schema: x:formula2. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Worksheet View. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetView. + + + The following table lists the possible child types: + + <x:extLst> + <x:pane> + <x:pivotSelection> + <x:selection> + + + + + + Initializes a new instance of the SheetView class. + + + + + Initializes a new instance of the SheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetView class from outer XML. + + Specifies the outer XML of the element. + + + + Window Protection + Represents the following attribute in the schema: windowProtection + + + + + Show Formulas + Represents the following attribute in the schema: showFormulas + + + + + Show Grid Lines + Represents the following attribute in the schema: showGridLines + + + + + Show Headers + Represents the following attribute in the schema: showRowColHeaders + + + + + Show Zero Values + Represents the following attribute in the schema: showZeros + + + + + Right To Left + Represents the following attribute in the schema: rightToLeft + + + + + Sheet Tab Selected + Represents the following attribute in the schema: tabSelected + + + + + Show Ruler + Represents the following attribute in the schema: showRuler + + + + + Show Outline Symbols + Represents the following attribute in the schema: showOutlineSymbols + + + + + Default Grid Color + Represents the following attribute in the schema: defaultGridColor + + + + + Show White Space + Represents the following attribute in the schema: showWhiteSpace + + + + + View Type + Represents the following attribute in the schema: view + + + + + Top Left Visible Cell + Represents the following attribute in the schema: topLeftCell + + + + + Color Id + Represents the following attribute in the schema: colorId + + + + + Zoom Scale + Represents the following attribute in the schema: zoomScale + + + + + Zoom Scale Normal View + Represents the following attribute in the schema: zoomScaleNormal + + + + + Zoom Scale Page Break Preview + Represents the following attribute in the schema: zoomScaleSheetLayoutView + + + + + Zoom Scale Page Layout View + Represents the following attribute in the schema: zoomScalePageLayoutView + + + + + Workbook View Index + Represents the following attribute in the schema: workbookViewId + + + + + View Pane. + Represents the following element tag in the schema: x:pane. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Custom Sheet View. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customSheetView. + + + The following table lists the possible child types: + + <x:autoFilter> + <x:extLst> + <x:headerFooter> + <x:rowBreaks> + <x:colBreaks> + <x:pageMargins> + <x:pageSetup> + <x:pane> + <x:printOptions> + <x:selection> + + + + + + Initializes a new instance of the CustomSheetView class. + + + + + Initializes a new instance of the CustomSheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomSheetView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomSheetView class from outer XML. + + Specifies the outer XML of the element. + + + + GUID + Represents the following attribute in the schema: guid + + + + + Print Scale + Represents the following attribute in the schema: scale + + + + + Color Id + Represents the following attribute in the schema: colorId + + + + + Show Page Breaks + Represents the following attribute in the schema: showPageBreaks + + + + + Show Formulas + Represents the following attribute in the schema: showFormulas + + + + + Show Grid Lines + Represents the following attribute in the schema: showGridLines + + + + + Show Headers + Represents the following attribute in the schema: showRowCol + + + + + Show Outline Symbols + Represents the following attribute in the schema: outlineSymbols + + + + + Show Zero Values + Represents the following attribute in the schema: zeroValues + + + + + Fit To Page + Represents the following attribute in the schema: fitToPage + + + + + Print Area Defined + Represents the following attribute in the schema: printArea + + + + + Filtered List + Represents the following attribute in the schema: filter + + + + + Show AutoFitler Drop Down Controls + Represents the following attribute in the schema: showAutoFilter + + + + + Hidden Rows + Represents the following attribute in the schema: hiddenRows + + + + + Hidden Columns + Represents the following attribute in the schema: hiddenColumns + + + + + Visible State + Represents the following attribute in the schema: state + + + + + Filter + Represents the following attribute in the schema: filterUnique + + + + + View Type + Represents the following attribute in the schema: view + + + + + Show Ruler + Represents the following attribute in the schema: showRuler + + + + + Top Left Visible Cell + Represents the following attribute in the schema: topLeftCell + + + + + Pane Split Information. + Represents the following element tag in the schema: x:pane. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Selection. + Represents the following element tag in the schema: x:selection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Horizontal Page Breaks. + Represents the following element tag in the schema: x:rowBreaks. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Vertical Page Breaks. + Represents the following element tag in the schema: x:colBreaks. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Page Margins. + Represents the following element tag in the schema: x:pageMargins. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Print Options. + Represents the following element tag in the schema: x:printOptions. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Page Setup Settings. + Represents the following element tag in the schema: x:pageSetup. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Header Footer Settings. + Represents the following element tag in the schema: x:headerFooter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + AutoFilter Settings. + Represents the following element tag in the schema: x:autoFilter. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + OLE Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oleObject. + + + The following table lists the possible child types: + + <x:objectPr> + + + + + + Initializes a new instance of the OleObject class. + + + + + Initializes a new instance of the OleObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObject class from outer XML. + + Specifies the outer XML of the element. + + + + OLE ProgId + Represents the following attribute in the schema: progId + + + + + Data or View Aspect + Represents the following attribute in the schema: dvAspect + + + + + OLE Link Moniker + Represents the following attribute in the schema: link + + + + + OLE Update + Represents the following attribute in the schema: oleUpdate + + + + + Auto Load + Represents the following attribute in the schema: autoLoad + + + + + Shape Id + Represents the following attribute in the schema: shapeId + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + EmbeddedObjectProperties, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: x:objectPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Metadata Types Collection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:metadataTypes. + + + The following table lists the possible child types: + + <x:metadataType> + + + + + + Initializes a new instance of the MetadataTypes class. + + + + + Initializes a new instance of the MetadataTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MetadataTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MetadataTypes class from outer XML. + + Specifies the outer XML of the element. + + + + Metadata Type Count + Represents the following attribute in the schema: count + + + + + + + + Metadata String Store. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:metadataStrings. + + + The following table lists the possible child types: + + <x:s> + + + + + + Initializes a new instance of the MetadataStrings class. + + + + + Initializes a new instance of the MetadataStrings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MetadataStrings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MetadataStrings class from outer XML. + + Specifies the outer XML of the element. + + + + MDX Metadata String Count + Represents the following attribute in the schema: count + + + + + + + + MDX Metadata Information. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:mdxMetadata. + + + The following table lists the possible child types: + + <x:mdx> + + + + + + Initializes a new instance of the MdxMetadata class. + + + + + Initializes a new instance of the MdxMetadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MdxMetadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MdxMetadata class from outer XML. + + Specifies the outer XML of the element. + + + + MDX Metadata Record Count + Represents the following attribute in the schema: count + + + + + + + + Future Metadata. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:futureMetadata. + + + The following table lists the possible child types: + + <x:extLst> + <x:bk> + + + + + + Initializes a new instance of the FutureMetadata class. + + + + + Initializes a new instance of the FutureMetadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FutureMetadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FutureMetadata class from outer XML. + + Specifies the outer XML of the element. + + + + Metadata Type Name + Represents the following attribute in the schema: name + + + + + Future Metadata Block Count + Represents the following attribute in the schema: count + + + + + + + + Cell Metadata. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cellMetadata. + + + The following table lists the possible child types: + + <x:bk> + + + + + + Initializes a new instance of the CellMetadata class. + + + + + Initializes a new instance of the CellMetadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellMetadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellMetadata class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Value Metadata. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:valueMetadata. + + + The following table lists the possible child types: + + <x:bk> + + + + + + Initializes a new instance of the ValueMetadata class. + + + + + Initializes a new instance of the ValueMetadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueMetadata class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueMetadata class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MetadataBlocksType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x:bk> + + + + + + Initializes a new instance of the MetadataBlocksType class. + + + + + Initializes a new instance of the MetadataBlocksType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MetadataBlocksType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MetadataBlocksType class from outer XML. + + Specifies the outer XML of the element. + + + + Metadata Block Count + Represents the following attribute in the schema: count + + + + + Metadata Type Information. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:metadataType. + + + + + Initializes a new instance of the MetadataType class. + + + + + Metadata Type Name + Represents the following attribute in the schema: name + + + + + Minimum Supported Version + Represents the following attribute in the schema: minSupportedVersion + + + + + Metadata Ghost Row + Represents the following attribute in the schema: ghostRow + + + + + Metadata Ghost Column + Represents the following attribute in the schema: ghostCol + + + + + Metadata Edit + Represents the following attribute in the schema: edit + + + + + Metadata Cell Value Delete + Represents the following attribute in the schema: delete + + + + + Metadata Copy + Represents the following attribute in the schema: copy + + + + + Metadata Paste All + Represents the following attribute in the schema: pasteAll + + + + + Metadata Paste Formulas + Represents the following attribute in the schema: pasteFormulas + + + + + Metadata Paste Special Values + Represents the following attribute in the schema: pasteValues + + + + + Metadata Paste Formats + Represents the following attribute in the schema: pasteFormats + + + + + Metadata Paste Comments + Represents the following attribute in the schema: pasteComments + + + + + Metadata Paste Data Validation + Represents the following attribute in the schema: pasteDataValidation + + + + + Metadata Paste Borders + Represents the following attribute in the schema: pasteBorders + + + + + Metadata Paste Column Widths + Represents the following attribute in the schema: pasteColWidths + + + + + Metadata Paste Number Formats + Represents the following attribute in the schema: pasteNumberFormats + + + + + Metadata Merge + Represents the following attribute in the schema: merge + + + + + Meatadata Split First + Represents the following attribute in the schema: splitFirst + + + + + Metadata Split All + Represents the following attribute in the schema: splitAll + + + + + Metadata Insert Delete + Represents the following attribute in the schema: rowColShift + + + + + Metadata Clear All + Represents the following attribute in the schema: clearAll + + + + + Metadata Clear Formats + Represents the following attribute in the schema: clearFormats + + + + + Metadata Clear Contents + Represents the following attribute in the schema: clearContents + + + + + Metadata Clear Comments + Represents the following attribute in the schema: clearComments + + + + + Metadata Formula Assignment + Represents the following attribute in the schema: assign + + + + + Metadata Coercion + Represents the following attribute in the schema: coerce + + + + + Adjust Metadata + Represents the following attribute in the schema: adjust + + + + + Cell Metadata + Represents the following attribute in the schema: cellMeta + + + + + + + + Metadata Block. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:bk. + + + The following table lists the possible child types: + + <x:rc> + + + + + + Initializes a new instance of the MetadataBlock class. + + + + + Initializes a new instance of the MetadataBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MetadataBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MetadataBlock class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Metadata Record. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rc. + + + + + Initializes a new instance of the MetadataRecord class. + + + + + Metadata Record Type Index + Represents the following attribute in the schema: t + + + + + Metadata Record Value Index + Represents the following attribute in the schema: v + + + + + + + + Future Metadata Block. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:bk. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the FutureMetadataBlock class. + + + + + Initializes a new instance of the FutureMetadataBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FutureMetadataBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FutureMetadataBlock class from outer XML. + + Specifies the outer XML of the element. + + + + Future Feature Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + MDX Metadata Record. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:mdx. + + + The following table lists the possible child types: + + <x:k> + <x:p> + <x:ms> + <x:t> + + + + + + Initializes a new instance of the Mdx class. + + + + + Initializes a new instance of the Mdx class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Mdx class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Mdx class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Name Index + Represents the following attribute in the schema: n + + + + + Cube Function Tag + Represents the following attribute in the schema: f + + + + + Tuple MDX Metadata. + Represents the following element tag in the schema: x:t. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Set MDX Metadata. + Represents the following element tag in the schema: x:ms. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Member Property MDX Metadata. + Represents the following element tag in the schema: x:p. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + KPI MDX Metadata. + Represents the following element tag in the schema: x:k. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Tuple MDX Metadata. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:t. + + + The following table lists the possible child types: + + <x:n> + + + + + + Initializes a new instance of the MdxTuple class. + + + + + Initializes a new instance of the MdxTuple class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MdxTuple class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MdxTuple class from outer XML. + + Specifies the outer XML of the element. + + + + Member Index Count + Represents the following attribute in the schema: c + + + + + Server Formatting Culture Currency + Represents the following attribute in the schema: ct + + + + + Server Formatting String Index + Represents the following attribute in the schema: si + + + + + Server Formatting Built-In Number Format Index + Represents the following attribute in the schema: fi + + + + + Server Formatting Background Color + Represents the following attribute in the schema: bc + + + + + Server Formatting Foreground Color + Represents the following attribute in the schema: fc + + + + + Server Formatting Italic Font + Represents the following attribute in the schema: i + + + + + Server Formatting Underline Font + Represents the following attribute in the schema: u + + + + + Server Formatting Strikethrough Font + Represents the following attribute in the schema: st + + + + + Server Formatting Bold Font + Represents the following attribute in the schema: b + + + + + + + + Set MDX Metadata. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ms. + + + The following table lists the possible child types: + + <x:n> + + + + + + Initializes a new instance of the MdxSet class. + + + + + Initializes a new instance of the MdxSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MdxSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MdxSet class from outer XML. + + Specifies the outer XML of the element. + + + + Set Definition Index + Represents the following attribute in the schema: ns + + + + + Sort By Member Index Count + Represents the following attribute in the schema: c + + + + + Set Sort Order + Represents the following attribute in the schema: o + + + + + + + + Member Property MDX Metadata. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:p. + + + + + Initializes a new instance of the MdxMemberProp class. + + + + + Member Unique Name Index + Represents the following attribute in the schema: n + + + + + Property Name Index + Represents the following attribute in the schema: np + + + + + + + + KPI MDX Metadata. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:k. + + + + + Initializes a new instance of the MdxKpi class. + + + + + Member Unique Name Index + Represents the following attribute in the schema: n + + + + + KPI Index + Represents the following attribute in the schema: np + + + + + KPI Property + Represents the following attribute in the schema: p + + + + + + + + Member Unique Name Index. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:n. + + + + + Initializes a new instance of the NameIndex class. + + + + + Index Value + Represents the following attribute in the schema: x + + + + + String is a Set + Represents the following attribute in the schema: s + + + + + + + + Table Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:singleXmlCell. + + + The following table lists the possible child types: + + <x:extLst> + <x:xmlCellPr> + + + + + + Initializes a new instance of the SingleXmlCell class. + + + + + Initializes a new instance of the SingleXmlCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SingleXmlCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SingleXmlCell class from outer XML. + + Specifies the outer XML of the element. + + + + Table Id + Represents the following attribute in the schema: id + + + + + Reference + Represents the following attribute in the schema: r + + + + + Connection ID + Represents the following attribute in the schema: connectionId + + + + + Cell Properties. + Represents the following element tag in the schema: x:xmlCellPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Cell Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:xmlCellPr. + + + The following table lists the possible child types: + + <x:extLst> + <x:xmlPr> + + + + + + Initializes a new instance of the XmlCellProperties class. + + + + + Initializes a new instance of the XmlCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the XmlCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the XmlCellProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Table Field Id + Represents the following attribute in the schema: id + + + + + Unique Table Name + Represents the following attribute in the schema: uniqueName + + + + + Column XML Properties. + Represents the following element tag in the schema: x:xmlPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Column XML Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:xmlPr. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the XmlProperties class. + + + + + Initializes a new instance of the XmlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the XmlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the XmlProperties class from outer XML. + + Specifies the outer XML of the element. + + + + XML Map Id + Represents the following attribute in the schema: mapId + + + + + XPath + Represents the following attribute in the schema: xpath + + + + + XML Data Type + Represents the following attribute in the schema: xmlDataType + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Pattern. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:patternFill. + + + The following table lists the possible child types: + + <x:fgColor> + <x:bgColor> + + + + + + Initializes a new instance of the PatternFill class. + + + + + Initializes a new instance of the PatternFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PatternFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PatternFill class from outer XML. + + Specifies the outer XML of the element. + + + + Pattern Type + Represents the following attribute in the schema: patternType + + + + + Foreground Color. + Represents the following element tag in the schema: x:fgColor. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Background Color. + Represents the following element tag in the schema: x:bgColor. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Gradient. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:gradientFill. + + + The following table lists the possible child types: + + <x:stop> + + + + + + Initializes a new instance of the GradientFill class. + + + + + Initializes a new instance of the GradientFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientFill class from outer XML. + + Specifies the outer XML of the element. + + + + Gradient Fill Type + Represents the following attribute in the schema: type + + + + + Linear Gradient Degree + Represents the following attribute in the schema: degree + + + + + Left Convergence + Represents the following attribute in the schema: left + + + + + Right Convergence + Represents the following attribute in the schema: right + + + + + Top Gradient Convergence + Represents the following attribute in the schema: top + + + + + Bottom Convergence + Represents the following attribute in the schema: bottom + + + + + + + + Gradient Stop. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:stop. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the GradientStop class. + + + + + Initializes a new instance of the GradientStop class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStop class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStop class from outer XML. + + Specifies the outer XML of the element. + + + + Gradient Stop Position + Represents the following attribute in the schema: position + + + + + Color. + Represents the following element tag in the schema: x:color. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Number Formats. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:numFmt. + + + + + Initializes a new instance of the NumberingFormat class. + + + + + Number Format Id + Represents the following attribute in the schema: numFmtId + + + + + Number Format Code + Represents the following attribute in the schema: formatCode + + + + + + + + Alignment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:alignment. + + + + + Initializes a new instance of the Alignment class. + + + + + Horizontal Alignment + Represents the following attribute in the schema: horizontal + + + + + Vertical Alignment + Represents the following attribute in the schema: vertical + + + + + Text Rotation + Represents the following attribute in the schema: textRotation + + + + + Wrap Text + Represents the following attribute in the schema: wrapText + + + + + Indent + Represents the following attribute in the schema: indent + + + + + Relative Indent + Represents the following attribute in the schema: relativeIndent + + + + + Justify Last Line + Represents the following attribute in the schema: justifyLastLine + + + + + Shrink To Fit + Represents the following attribute in the schema: shrinkToFit + + + + + Reading Order + Represents the following attribute in the schema: readingOrder + + + + + mergeCell + Represents the following attribute in the schema: mergeCell + + + + + + + + Protection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:protection. + + + + + Initializes a new instance of the Protection class. + + + + + Cell Locked + Represents the following attribute in the schema: locked + + + + + Hidden Cell + Represents the following attribute in the schema: hidden + + + + + + + + Font Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:font. + + + The following table lists the possible child types: + + <x:b> + <x:i> + <x:strike> + <x:condense> + <x:extend> + <x:outline> + <x:shadow> + <x:charset> + <x:color> + <x:family> + <x:name> + <x:scheme> + <x:sz> + <x:u> + <x:vertAlign> + + + + + + Initializes a new instance of the Font class. + + + + + Initializes a new instance of the Font class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Font class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Font class from outer XML. + + Specifies the outer XML of the element. + + + + Bold. + Represents the following element tag in the schema: x:b. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Italic. + Represents the following element tag in the schema: x:i. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Strike Through. + Represents the following element tag in the schema: x:strike. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Condense. + Represents the following element tag in the schema: x:condense. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Extend. + Represents the following element tag in the schema: x:extend. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Outline. + Represents the following element tag in the schema: x:outline. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Shadow. + Represents the following element tag in the schema: x:shadow. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Underline. + Represents the following element tag in the schema: x:u. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Text Vertical Alignment. + Represents the following element tag in the schema: x:vertAlign. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Font Size. + Represents the following element tag in the schema: x:sz. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Text Color. + Represents the following element tag in the schema: x:color. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Font Name. + Represents the following element tag in the schema: x:name. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Font Family. + Represents the following element tag in the schema: x:family. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Character Set. + Represents the following element tag in the schema: x:charset. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Scheme. + Represents the following element tag in the schema: x:scheme. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fill. + + + The following table lists the possible child types: + + <x:gradientFill> + <x:patternFill> + + + + + + Initializes a new instance of the Fill class. + + + + + Initializes a new instance of the Fill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fill class from outer XML. + + Specifies the outer XML of the element. + + + + Pattern. + Represents the following element tag in the schema: x:patternFill. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Gradient. + Represents the following element tag in the schema: x:gradientFill. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Border Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:border. + + + The following table lists the possible child types: + + <x:start> + <x:end> + <x:left> + <x:right> + <x:top> + <x:bottom> + <x:diagonal> + <x:vertical> + <x:horizontal> + + + + + + Initializes a new instance of the Border class. + + + + + Initializes a new instance of the Border class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Border class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Border class from outer XML. + + Specifies the outer XML of the element. + + + + Diagonal Up + Represents the following attribute in the schema: diagonalUp + + + + + Diagonal Down + Represents the following attribute in the schema: diagonalDown + + + + + Outline + Represents the following attribute in the schema: outline + + + + + StartBorder, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: x:start. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + EndBorder, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: x:end. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Left Border. + Represents the following element tag in the schema: x:left. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Right Border. + Represents the following element tag in the schema: x:right. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Top Border. + Represents the following element tag in the schema: x:top. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Bottom Border. + Represents the following element tag in the schema: x:bottom. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Diagonal. + Represents the following element tag in the schema: x:diagonal. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Vertical Inner Border. + Represents the following element tag in the schema: x:vertical. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Horizontal Inner Borders. + Represents the following element tag in the schema: x:horizontal. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Color Indexes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:indexedColors. + + + The following table lists the possible child types: + + <x:rgbColor> + + + + + + Initializes a new instance of the IndexedColors class. + + + + + Initializes a new instance of the IndexedColors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IndexedColors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IndexedColors class from outer XML. + + Specifies the outer XML of the element. + + + + + + + MRU Colors. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:mruColors. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the MruColors class. + + + + + Initializes a new instance of the MruColors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MruColors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MruColors class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Table Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tableStyle. + + + The following table lists the possible child types: + + <x:tableStyleElement> + + + + + + Initializes a new instance of the TableStyle class. + + + + + Initializes a new instance of the TableStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyle class from outer XML. + + Specifies the outer XML of the element. + + + + Table Style Name + Represents the following attribute in the schema: name + + + + + Pivot Style + Represents the following attribute in the schema: pivot + + + + + Table + Represents the following attribute in the schema: table + + + + + Table Style Count + Represents the following attribute in the schema: count + + + + + + + + RGB Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rgbColor. + + + + + Initializes a new instance of the RgbColor class. + + + + + Alpha Red Green Blue + Represents the following attribute in the schema: rgb + + + + + + + + Cell Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cellStyle. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the CellStyle class. + + + + + Initializes a new instance of the CellStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellStyle class from outer XML. + + Specifies the outer XML of the element. + + + + User Defined Cell Style + Represents the following attribute in the schema: name + + + + + Format Id + Represents the following attribute in the schema: xfId + + + + + Built-In Style Id + Represents the following attribute in the schema: builtinId + + + + + Outline Style + Represents the following attribute in the schema: iLevel + + + + + Hidden Style + Represents the following attribute in the schema: hidden + + + + + Custom Built In + Represents the following attribute in the schema: customBuiltin + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Formatting Elements. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:xf. + + + The following table lists the possible child types: + + <x:alignment> + <x:protection> + <x:extLst> + + + + + + Initializes a new instance of the CellFormat class. + + + + + Initializes a new instance of the CellFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellFormat class from outer XML. + + Specifies the outer XML of the element. + + + + Number Format Id + Represents the following attribute in the schema: numFmtId + + + + + Font Id + Represents the following attribute in the schema: fontId + + + + + Fill Id + Represents the following attribute in the schema: fillId + + + + + Border Id + Represents the following attribute in the schema: borderId + + + + + Format Id + Represents the following attribute in the schema: xfId + + + + + Quote Prefix + Represents the following attribute in the schema: quotePrefix + + + + + Pivot Button + Represents the following attribute in the schema: pivotButton + + + + + Apply Number Format + Represents the following attribute in the schema: applyNumberFormat + + + + + Apply Font + Represents the following attribute in the schema: applyFont + + + + + Apply Fill + Represents the following attribute in the schema: applyFill + + + + + Apply Border + Represents the following attribute in the schema: applyBorder + + + + + Apply Alignment + Represents the following attribute in the schema: applyAlignment + + + + + Apply Protection + Represents the following attribute in the schema: applyProtection + + + + + Alignment. + Represents the following element tag in the schema: x:alignment. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Protection. + Represents the following element tag in the schema: x:protection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Font Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:name. + + + + + Initializes a new instance of the FontName class. + + + + + String Value + Represents the following attribute in the schema: val + + + + + + + + Font Family. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:family. + + + + + Initializes a new instance of the FontFamilyNumbering class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Character Set. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:charset. + + + + + Initializes a new instance of the FontCharSet class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Table Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tableStyleElement. + + + + + Initializes a new instance of the TableStyleElement class. + + + + + Table Style Type + Represents the following attribute in the schema: type + + + + + Band Size + Represents the following attribute in the schema: size + + + + + Formatting Id + Represents the following attribute in the schema: dxfId + + + + + + + + Defined Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:definedName. + + + + + Initializes a new instance of the ExternalDefinedName class. + + + + + Defined Name + Represents the following attribute in the schema: name + + + + + Refers To + Represents the following attribute in the schema: refersTo + + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + + + + External Sheet Data Set. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetData. + + + The following table lists the possible child types: + + <x:row> + + + + + + Initializes a new instance of the ExternalSheetData class. + + + + + Initializes a new instance of the ExternalSheetData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalSheetData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalSheetData class from outer XML. + + Specifies the outer XML of the element. + + + + Sheet Id + Represents the following attribute in the schema: sheetId + + + + + Last Refresh Resulted in Error + Represents the following attribute in the schema: refreshError + + + + + + + + Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:row. + + + The following table lists the possible child types: + + <x:cell> + + + + + + Initializes a new instance of the ExternalRow class. + + + + + Initializes a new instance of the ExternalRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalRow class from outer XML. + + Specifies the outer XML of the element. + + + + Row + Represents the following attribute in the schema: r + + + + + + + + External Cell Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cell. + + + The following table lists the possible child types: + + <x:v> + + + + + + Initializes a new instance of the ExternalCell class. + + + + + Initializes a new instance of the ExternalCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalCell class from outer XML. + + Specifies the outer XML of the element. + + + + Reference + Represents the following attribute in the schema: r + + + + + Type + Represents the following attribute in the schema: t + + + + + Value Metadata + Represents the following attribute in the schema: vm + + + + + Value. + Represents the following element tag in the schema: x:v. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + DDE Items Collection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ddeItems. + + + The following table lists the possible child types: + + <x:ddeItem> + + + + + + Initializes a new instance of the DdeItems class. + + + + + Initializes a new instance of the DdeItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DdeItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DdeItems class from outer XML. + + Specifies the outer XML of the element. + + + + + + + DDE Item definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ddeItem. + + + The following table lists the possible child types: + + <x:values> + + + + + + Initializes a new instance of the DdeItem class. + + + + + Initializes a new instance of the DdeItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DdeItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DdeItem class from outer XML. + + Specifies the outer XML of the element. + + + + DDE Name + Represents the following attribute in the schema: name + + + + + OLE + Represents the following attribute in the schema: ole + + + + + Advise + Represents the following attribute in the schema: advise + + + + + Data is an Image + Represents the following attribute in the schema: preferPic + + + + + DDE Name Values. + Represents the following element tag in the schema: x:values. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + DDE Name Values. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:values. + + + The following table lists the possible child types: + + <x:value> + + + + + + Initializes a new instance of the Values class. + + + + + Initializes a new instance of the Values class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Values class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Values class from outer XML. + + Specifies the outer XML of the element. + + + + Rows + Represents the following attribute in the schema: rows + + + + + Columns + Represents the following attribute in the schema: cols + + + + + + + + Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:value. + + + The following table lists the possible child types: + + <x:val> + + + + + + Initializes a new instance of the Value class. + + + + + Initializes a new instance of the Value class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Value class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Value class from outer XML. + + Specifies the outer XML of the element. + + + + DDE Value Type + Represents the following attribute in the schema: t + + + + + DDE Link Value. + Represents the following element tag in the schema: x:val. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + OLE Link Items. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oleItems. + + + The following table lists the possible child types: + + <x:oleItem> + <x14:oleItem> + + + + + + Initializes a new instance of the OleItems class. + + + + + Initializes a new instance of the OleItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleItems class from outer XML. + + Specifies the outer XML of the element. + + + + + + + External Workbook. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:externalBook. + + + The following table lists the possible child types: + + <x:definedNames> + <x:sheetDataSet> + <x:sheetNames> + <xxl21:alternateUrls> + + + + + + Initializes a new instance of the ExternalBook class. + + + + + Initializes a new instance of the ExternalBook class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalBook class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalBook class from outer XML. + + Specifies the outer XML of the element. + + + + Relationship to supporting book file path + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Alternate URLs and identifiers of the external book, this property is only available in Microsoft365 and later.. + Represents the following element tag in the schema: xxl21:alternateUrls. + + + xmlns:xxl21 = http://schemas.microsoft.com/office/spreadsheetml/2021/extlinks2021 + + + + + Sheet names of supporting book. + Represents the following element tag in the schema: x:sheetNames. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Defined names associated with supporting book.. + Represents the following element tag in the schema: x:definedNames. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Cached worksheet data associated with supporting book. + Represents the following element tag in the schema: x:sheetDataSet. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + DDE Connection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ddeLink. + + + The following table lists the possible child types: + + <x:ddeItems> + + + + + + Initializes a new instance of the DdeLink class. + + + + + Initializes a new instance of the DdeLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DdeLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DdeLink class from outer XML. + + Specifies the outer XML of the element. + + + + Service name + Represents the following attribute in the schema: ddeService + + + + + Topic for DDE server + Represents the following attribute in the schema: ddeTopic + + + + + DDE Items Collection. + Represents the following element tag in the schema: x:ddeItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + OLE Link. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oleLink. + + + The following table lists the possible child types: + + <x:oleItems> + + + + + + Initializes a new instance of the OleLink class. + + + + + Initializes a new instance of the OleLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleLink class from outer XML. + + Specifies the outer XML of the element. + + + + OLE Link Relationship + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + OLE Link ProgID + Represents the following attribute in the schema: progId + + + + + OLE Link Items. + Represents the following element tag in the schema: x:oleItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Sheet Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetName. + + + + + Initializes a new instance of the SheetName class. + + + + + Sheet Name Value + Represents the following attribute in the schema: val + + + + + + + + Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:v. + + + + + Initializes a new instance of the Xstring class. + + + + + Initializes a new instance of the Xstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Table Column. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tableColumn. + + + The following table lists the possible child types: + + <x:extLst> + <x:calculatedColumnFormula> + <x:totalsRowFormula> + <x:xmlColumnPr> + + + + + + Initializes a new instance of the TableColumn class. + + + + + Initializes a new instance of the TableColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableColumn class from outer XML. + + Specifies the outer XML of the element. + + + + Table Field Id + Represents the following attribute in the schema: id + + + + + Unique Name + Represents the following attribute in the schema: uniqueName + + + + + Column name + Represents the following attribute in the schema: name + + + + + Totals Row Function + Represents the following attribute in the schema: totalsRowFunction + + + + + Totals Row Label + Represents the following attribute in the schema: totalsRowLabel + + + + + Query Table Field Id + Represents the following attribute in the schema: queryTableFieldId + + + + + Header Row Cell Format Id + Represents the following attribute in the schema: headerRowDxfId + + + + + Data and Insert Row Format Id + Represents the following attribute in the schema: dataDxfId + + + + + Totals Row Format Id + Represents the following attribute in the schema: totalsRowDxfId + + + + + Header Row Cell Style + Represents the following attribute in the schema: headerRowCellStyle + + + + + Data Area Style Name + Represents the following attribute in the schema: dataCellStyle + + + + + Totals Row Style Name + Represents the following attribute in the schema: totalsRowCellStyle + + + + + Calculated Column Formula. + Represents the following element tag in the schema: x:calculatedColumnFormula. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Totals Row Formula. + Represents the following element tag in the schema: x:totalsRowFormula. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + XML Column Properties. + Represents the following element tag in the schema: x:xmlColumnPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Calculated Column Formula. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:calculatedColumnFormula. + + + + + Initializes a new instance of the CalculatedColumnFormula class. + + + + + Initializes a new instance of the CalculatedColumnFormula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Totals Row Formula. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:totalsRowFormula. + + + + + Initializes a new instance of the TotalsRowFormula class. + + + + + Initializes a new instance of the TotalsRowFormula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the TableFormulaType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TableFormulaType class. + + + + + Initializes a new instance of the TableFormulaType class with the specified text content. + + Specifies the text content of the element. + + + + Array + Represents the following attribute in the schema: array + + + + + space + Represents the following attribute in the schema: xml:space + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + XML Column Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:xmlColumnPr. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the XmlColumnProperties class. + + + + + Initializes a new instance of the XmlColumnProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the XmlColumnProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the XmlColumnProperties class from outer XML. + + Specifies the outer XML of the element. + + + + XML Map Id + Represents the following attribute in the schema: mapId + + + + + XPath + Represents the following attribute in the schema: xpath + + + + + Denormalized + Represents the following attribute in the schema: denormalized + + + + + XML Data Type + Represents the following attribute in the schema: xmlDataType + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Volatile Dependency Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:volType. + + + The following table lists the possible child types: + + <x:main> + + + + + + Initializes a new instance of the VolatileType class. + + + + + Initializes a new instance of the VolatileType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VolatileType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VolatileType class from outer XML. + + Specifies the outer XML of the element. + + + + Type + Represents the following attribute in the schema: type + + + + + + + + Main. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:main. + + + The following table lists the possible child types: + + <x:tp> + + + + + + Initializes a new instance of the Main class. + + + + + Initializes a new instance of the Main class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Main class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Main class from outer XML. + + Specifies the outer XML of the element. + + + + First String + Represents the following attribute in the schema: first + + + + + + + + Topic. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tp. + + + The following table lists the possible child types: + + <x:tr> + <x:stp> + <x:v> + + + + + + Initializes a new instance of the Topic class. + + + + + Initializes a new instance of the Topic class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Topic class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Topic class from outer XML. + + Specifies the outer XML of the element. + + + + Type + Represents the following attribute in the schema: t + + + + + Topic Value. + Represents the following element tag in the schema: x:v. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + References. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tr. + + + + + Initializes a new instance of the TopicReferences class. + + + + + Reference + Represents the following attribute in the schema: r + + + + + Sheet Id + Represents the following attribute in the schema: s + + + + + + + + PivotCache. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotCache. + + + + + Initializes a new instance of the PivotCache class. + + + + + PivotCache Id + Represents the following attribute in the schema: cacheId + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Web Publishing Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:webPublishObject. + + + + + Initializes a new instance of the WebPublishObject class. + + + + + Id + Represents the following attribute in the schema: id + + + + + Div Id + Represents the following attribute in the schema: divId + + + + + Source Object + Represents the following attribute in the schema: sourceObject + + + + + Destination File + Represents the following attribute in the schema: destinationFile + + + + + Title + Represents the following attribute in the schema: title + + + + + Auto Republish + Represents the following attribute in the schema: autoRepublish + + + + + + + + External Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:externalReference. + + + + + Initializes a new instance of the ExternalReference class. + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Custom Workbook View. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customWorkbookView. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the CustomWorkbookView class. + + + + + Initializes a new instance of the CustomWorkbookView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomWorkbookView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomWorkbookView class from outer XML. + + Specifies the outer XML of the element. + + + + Custom View Name + Represents the following attribute in the schema: name + + + + + Custom View GUID + Represents the following attribute in the schema: guid + + + + + Auto Update + Represents the following attribute in the schema: autoUpdate + + + + + Merge Interval + Represents the following attribute in the schema: mergeInterval + + + + + Changes Saved Win + Represents the following attribute in the schema: changesSavedWin + + + + + Only Synch + Represents the following attribute in the schema: onlySync + + + + + Personal View + Represents the following attribute in the schema: personalView + + + + + Include Print Settings + Represents the following attribute in the schema: includePrintSettings + + + + + Include Hidden Rows and Columns + Represents the following attribute in the schema: includeHiddenRowCol + + + + + Maximized + Represents the following attribute in the schema: maximized + + + + + Minimized + Represents the following attribute in the schema: minimized + + + + + Show Horizontal Scroll + Represents the following attribute in the schema: showHorizontalScroll + + + + + Show Vertical Scroll + Represents the following attribute in the schema: showVerticalScroll + + + + + Show Sheet Tabs + Represents the following attribute in the schema: showSheetTabs + + + + + Top Left Corner (X Coordinate) + Represents the following attribute in the schema: xWindow + + + + + Top Left Corner (Y Coordinate) + Represents the following attribute in the schema: yWindow + + + + + Window Width + Represents the following attribute in the schema: windowWidth + + + + + Window Height + Represents the following attribute in the schema: windowHeight + + + + + Sheet Tab Ratio + Represents the following attribute in the schema: tabRatio + + + + + Active Sheet in Book View + Represents the following attribute in the schema: activeSheetId + + + + + Show Formula Bar + Represents the following attribute in the schema: showFormulaBar + + + + + Show Status Bar + Represents the following attribute in the schema: showStatusbar + + + + + Show Comments + Represents the following attribute in the schema: showComments + + + + + Show Objects + Represents the following attribute in the schema: showObjects + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Sheet Information. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheet. + + + + + Initializes a new instance of the Sheet class. + + + + + Sheet Name + Represents the following attribute in the schema: name + + + + + Sheet Tab Id + Represents the following attribute in the schema: sheetId + + + + + Visible State + Represents the following attribute in the schema: state + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Workbook View. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:workbookView. + + + The following table lists the possible child types: + + <x:extLst> + + + + + + Initializes a new instance of the WorkbookView class. + + + + + Initializes a new instance of the WorkbookView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorkbookView class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorkbookView class from outer XML. + + Specifies the outer XML of the element. + + + + Visibility + Represents the following attribute in the schema: visibility + + + + + Minimized + Represents the following attribute in the schema: minimized + + + + + Show Horizontal Scroll + Represents the following attribute in the schema: showHorizontalScroll + + + + + Show Vertical Scroll + Represents the following attribute in the schema: showVerticalScroll + + + + + Show Sheet Tabs + Represents the following attribute in the schema: showSheetTabs + + + + + Upper Left Corner (X Coordinate) + Represents the following attribute in the schema: xWindow + + + + + Upper Left Corner (Y Coordinate) + Represents the following attribute in the schema: yWindow + + + + + Window Width + Represents the following attribute in the schema: windowWidth + + + + + Window Height + Represents the following attribute in the schema: windowHeight + + + + + Sheet Tab Ratio + Represents the following attribute in the schema: tabRatio + + + + + First Sheet + Represents the following attribute in the schema: firstSheet + + + + + Active Sheet Index + Represents the following attribute in the schema: activeTab + + + + + AutoFilter Date Grouping + Represents the following attribute in the schema: autoFilterDateGrouping + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defined Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:definedName. + + + + + Initializes a new instance of the DefinedName class. + + + + + Initializes a new instance of the DefinedName class with the specified text content. + + Specifies the text content of the element. + + + + Defined Name + Represents the following attribute in the schema: name + + + + + Comment + Represents the following attribute in the schema: comment + + + + + Custom Menu Text + Represents the following attribute in the schema: customMenu + + + + + Description + Represents the following attribute in the schema: description + + + + + Help + Represents the following attribute in the schema: help + + + + + Status Bar + Represents the following attribute in the schema: statusBar + + + + + Local Name Sheet Id + Represents the following attribute in the schema: localSheetId + + + + + Hidden Name + Represents the following attribute in the schema: hidden + + + + + Function + Represents the following attribute in the schema: function + + + + + Procedure + Represents the following attribute in the schema: vbProcedure + + + + + External Function + Represents the following attribute in the schema: xlm + + + + + Function Group Id + Represents the following attribute in the schema: functionGroupId + + + + + Shortcut Key + Represents the following attribute in the schema: shortcutKey + + + + + Publish To Server + Represents the following attribute in the schema: publishToServer + + + + + Workbook Parameter (Server) + Represents the following attribute in the schema: workbookParameter + + + + + + + + Function Group. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:functionGroup. + + + + + Initializes a new instance of the FunctionGroup class. + + + + + Name + Represents the following attribute in the schema: name + + + + + + + + Defines the ObjectAnchor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x:anchor. + + + The following table lists the possible child types: + + <x:from> + <x:to> + + + + + + Initializes a new instance of the ObjectAnchor class. + + + + + Initializes a new instance of the ObjectAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ObjectAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ObjectAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + moveWithCells + Represents the following attribute in the schema: moveWithCells + + + + + sizeWithCells + Represents the following attribute in the schema: sizeWithCells + + + + + z-order + Represents the following attribute in the schema: z-order + + + + + FromMarker. + Represents the following element tag in the schema: x:from. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ToMarker. + Represents the following element tag in the schema: x:to. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the FromMarker Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x:from. + + + The following table lists the possible child types: + + <xdr:colOff> + <xdr:rowOff> + <xdr:col> + <xdr:row> + + + + + + Initializes a new instance of the FromMarker class. + + + + + Initializes a new instance of the FromMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FromMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FromMarker class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ToMarker Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x:to. + + + The following table lists the possible child types: + + <xdr:colOff> + <xdr:rowOff> + <xdr:col> + <xdr:row> + + + + + + Initializes a new instance of the ToMarker class. + + + + + Initializes a new instance of the ToMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToMarker class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MarkerType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <xdr:colOff> + <xdr:rowOff> + <xdr:col> + <xdr:row> + + + + + + Initializes a new instance of the MarkerType class. + + + + + Initializes a new instance of the MarkerType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MarkerType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MarkerType class from outer XML. + + Specifies the outer XML of the element. + + + + Column). + Represents the following element tag in the schema: xdr:col. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Column Offset. + Represents the following element tag in the schema: xdr:colOff. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Row. + Represents the following element tag in the schema: xdr:row. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Row Offset. + Represents the following element tag in the schema: xdr:rowOff. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Defines the ConditionalFormattingRuleExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:id> + + + + + + Initializes a new instance of the ConditionalFormattingRuleExtension class. + + + + + Initializes a new instance of the ConditionalFormattingRuleExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingRuleExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingRuleExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the PivotHierarchyExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:pivotHierarchy> + + + + + + Initializes a new instance of the PivotHierarchyExtension class. + + + + + Initializes a new instance of the PivotHierarchyExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotHierarchyExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotHierarchyExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the PivotFieldExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:pivotField> + + + + + + Initializes a new instance of the PivotFieldExtension class. + + + + + Initializes a new instance of the PivotFieldExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFieldExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFieldExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the CacheSourceExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:sourceConnection> + + + + + + Initializes a new instance of the CacheSourceExtension class. + + + + + Initializes a new instance of the CacheSourceExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheSourceExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheSourceExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + OLE Link Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oleItem. + + + + + Initializes a new instance of the OleItem class. + + + + + OLE Name + Represents the following attribute in the schema: name + + + + + Icon + Represents the following attribute in the schema: icon + + + + + Advise + Represents the following attribute in the schema: advise + + + + + Object is an Image + Represents the following attribute in the schema: preferPic + + + + + + + + Defines the StartBorder Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x:start. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the StartBorder class. + + + + + Initializes a new instance of the StartBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StartBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StartBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the EndBorder Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x:end. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the EndBorder class. + + + + + Initializes a new instance of the EndBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Left Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:left. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the LeftBorder class. + + + + + Initializes a new instance of the LeftBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeftBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeftBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Right Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:right. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the RightBorder class. + + + + + Initializes a new instance of the RightBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RightBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RightBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Top Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:top. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the TopBorder class. + + + + + Initializes a new instance of the TopBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Bottom Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:bottom. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the BottomBorder class. + + + + + Initializes a new instance of the BottomBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Diagonal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:diagonal. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the DiagonalBorder class. + + + + + Initializes a new instance of the DiagonalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagonalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagonalBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Vertical Inner Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:vertical. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the VerticalBorder class. + + + + + Initializes a new instance of the VerticalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VerticalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VerticalBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Horizontal Inner Borders. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:horizontal. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the HorizontalBorder class. + + + + + Initializes a new instance of the HorizontalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HorizontalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HorizontalBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BorderPropertiesType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x:color> + + + + + + Initializes a new instance of the BorderPropertiesType class. + + + + + Initializes a new instance of the BorderPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BorderPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BorderPropertiesType class from outer XML. + + Specifies the outer XML of the element. + + + + Line Style + Represents the following attribute in the schema: style + + + + + Color. + Represents the following element tag in the schema: x:color. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Defines the ControlProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x:controlPr. + + + The following table lists the possible child types: + + <x:anchor> + + + + + + Initializes a new instance of the ControlProperties class. + + + + + Initializes a new instance of the ControlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ControlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ControlProperties class from outer XML. + + Specifies the outer XML of the element. + + + + locked + Represents the following attribute in the schema: locked + + + + + defaultSize + Represents the following attribute in the schema: defaultSize + + + + + print + Represents the following attribute in the schema: print + + + + + disabled + Represents the following attribute in the schema: disabled + + + + + recalcAlways + Represents the following attribute in the schema: recalcAlways + + + + + uiObject + Represents the following attribute in the schema: uiObject + + + + + autoFill + Represents the following attribute in the schema: autoFill + + + + + autoLine + Represents the following attribute in the schema: autoLine + + + + + autoPict + Represents the following attribute in the schema: autoPict + + + + + macro + Represents the following attribute in the schema: macro + + + + + altText + Represents the following attribute in the schema: altText + + + + + linkedCell + Represents the following attribute in the schema: linkedCell + + + + + listFillRange + Represents the following attribute in the schema: listFillRange + + + + + cf + Represents the following attribute in the schema: cf + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ObjectAnchor. + Represents the following element tag in the schema: x:anchor. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the EmbeddedObjectProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x:objectPr. + + + The following table lists the possible child types: + + <x:anchor> + + + + + + Initializes a new instance of the EmbeddedObjectProperties class. + + + + + Initializes a new instance of the EmbeddedObjectProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedObjectProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedObjectProperties class from outer XML. + + Specifies the outer XML of the element. + + + + locked + Represents the following attribute in the schema: locked + + + + + defaultSize + Represents the following attribute in the schema: defaultSize + + + + + print + Represents the following attribute in the schema: print + + + + + disabled + Represents the following attribute in the schema: disabled + + + + + uiObject + Represents the following attribute in the schema: uiObject + + + + + autoFill + Represents the following attribute in the schema: autoFill + + + + + autoLine + Represents the following attribute in the schema: autoLine + + + + + autoPict + Represents the following attribute in the schema: autoPict + + + + + macro + Represents the following attribute in the schema: macro + + + + + altText + Represents the following attribute in the schema: altText + + + + + dde + Represents the following attribute in the schema: dde + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ObjectAnchor. + Represents the following element tag in the schema: x:anchor. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Chart Sheet Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetPr. + + + The following table lists the possible child types: + + <x:tabColor> + + + + + + Initializes a new instance of the ChartSheetProperties class. + + + + + Initializes a new instance of the ChartSheetProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSheetProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSheetProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Published + Represents the following attribute in the schema: published + + + + + Code Name + Represents the following attribute in the schema: codeName + + + + + TabColor. + Represents the following element tag in the schema: x:tabColor. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Chart Sheet Views. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetViews. + + + The following table lists the possible child types: + + <x:sheetView> + <x:extLst> + + + + + + Initializes a new instance of the ChartSheetViews class. + + + + + Initializes a new instance of the ChartSheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSheetViews class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Chart Sheet Protection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetProtection. + + + + + Initializes a new instance of the ChartSheetProtection class. + + + + + Password + Represents the following attribute in the schema: password + + + + + Cryptographic Algorithm Name + Represents the following attribute in the schema: algorithmName + + + + + Password Hash Value + Represents the following attribute in the schema: hashValue + + + + + Salt Value for Password Verifier + Represents the following attribute in the schema: saltValue + + + + + Iterations to Run Hashing Algorithm + Represents the following attribute in the schema: spinCount + + + + + Contents + Represents the following attribute in the schema: content + + + + + Objects Locked + Represents the following attribute in the schema: objects + + + + + + + + Custom Chart Sheet Views. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customSheetViews. + + + The following table lists the possible child types: + + <x:customSheetView> + + + + + + Initializes a new instance of the CustomChartsheetViews class. + + + + + Initializes a new instance of the CustomChartsheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomChartsheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomChartsheetViews class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Drawing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:drawing. + + + + + Initializes a new instance of the Drawing class. + + + + + Relationship id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the LegacyDrawing Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:legacyDrawing. + + + + + Initializes a new instance of the LegacyDrawing class. + + + + + + + + Legacy Drawing Reference in Header Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:legacyDrawingHF. + + + + + Initializes a new instance of the LegacyDrawingHeaderFooter class. + + + + + + + + Defines the LegacyDrawingType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the LegacyDrawingType class. + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Defines the DrawingHeaderFooter Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:drawingHF. + + + + + Initializes a new instance of the DrawingHeaderFooter class. + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + lho + Represents the following attribute in the schema: lho + + + + + lhe + Represents the following attribute in the schema: lhe + + + + + lhf + Represents the following attribute in the schema: lhf + + + + + cho + Represents the following attribute in the schema: cho + + + + + che + Represents the following attribute in the schema: che + + + + + chf + Represents the following attribute in the schema: chf + + + + + rho + Represents the following attribute in the schema: rho + + + + + rhe + Represents the following attribute in the schema: rhe + + + + + rhf + Represents the following attribute in the schema: rhf + + + + + lfo + Represents the following attribute in the schema: lfo + + + + + lfe + Represents the following attribute in the schema: lfe + + + + + lff + Represents the following attribute in the schema: lff + + + + + cfo + Represents the following attribute in the schema: cfo + + + + + cfe + Represents the following attribute in the schema: cfe + + + + + cff + Represents the following attribute in the schema: cff + + + + + rfo + Represents the following attribute in the schema: rfo + + + + + rfe + Represents the following attribute in the schema: rfe + + + + + rff + Represents the following attribute in the schema: rff + + + + + + + + Defines the Picture Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:picture. + + + + + Initializes a new instance of the Picture class. + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the WebPublishItems Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:webPublishItems. + + + The following table lists the possible child types: + + <x:webPublishItem> + + + + + + Initializes a new instance of the WebPublishItems class. + + + + + Initializes a new instance of the WebPublishItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebPublishItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebPublishItems class from outer XML. + + Specifies the outer XML of the element. + + + + Web Publishing Items Count + Represents the following attribute in the schema: count + + + + + + + + Color Scale. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:colorScale. + + + The following table lists the possible child types: + + <x:cfvo> + <x:color> + + + + + + Initializes a new instance of the ColorScale class. + + + + + Initializes a new instance of the ColorScale class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorScale class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorScale class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Data Bar. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dataBar. + + + The following table lists the possible child types: + + <x:cfvo> + <x:color> + + + + + + Initializes a new instance of the DataBar class. + + + + + Initializes a new instance of the DataBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataBar class from outer XML. + + Specifies the outer XML of the element. + + + + Minimum Length + Represents the following attribute in the schema: minLength + + + + + Maximum Length + Represents the following attribute in the schema: maxLength + + + + + Show Values + Represents the following attribute in the schema: showValue + + + + + + + + Icon Set. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:iconSet. + + + The following table lists the possible child types: + + <x:cfvo> + + + + + + Initializes a new instance of the IconSet class. + + + + + Initializes a new instance of the IconSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IconSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IconSet class from outer XML. + + Specifies the outer XML of the element. + + + + Icon Set + Represents the following attribute in the schema: iconSet + + + + + Show Value + Represents the following attribute in the schema: showValue + + + + + Percent + Represents the following attribute in the schema: percent + + + + + Reverse Icons + Represents the following attribute in the schema: reverse + + + + + + + + Defines the ConditionalFormattingRuleExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ConditionalFormattingRuleExtensionList class. + + + + + Initializes a new instance of the ConditionalFormattingRuleExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingRuleExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingRuleExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Data Consolidation References. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dataRefs. + + + The following table lists the possible child types: + + <x:dataRef> + + + + + + Initializes a new instance of the DataReferences class. + + + + + Initializes a new instance of the DataReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataReferences class from outer XML. + + Specifies the outer XML of the element. + + + + Data Consolidation Reference Count + Represents the following attribute in the schema: count + + + + + + + + Sheet Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetPr. + + + The following table lists the possible child types: + + <x:tabColor> + <x:outlinePr> + <x:pageSetUpPr> + + + + + + Initializes a new instance of the SheetProperties class. + + + + + Initializes a new instance of the SheetProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Synch Horizontal + Represents the following attribute in the schema: syncHorizontal + + + + + Synch Vertical + Represents the following attribute in the schema: syncVertical + + + + + Synch Reference + Represents the following attribute in the schema: syncRef + + + + + Transition Formula Evaluation + Represents the following attribute in the schema: transitionEvaluation + + + + + Transition Formula Entry + Represents the following attribute in the schema: transitionEntry + + + + + Published + Represents the following attribute in the schema: published + + + + + Code Name + Represents the following attribute in the schema: codeName + + + + + Filter Mode + Represents the following attribute in the schema: filterMode + + + + + Enable Conditional Formatting Calculations + Represents the following attribute in the schema: enableFormatConditionsCalculation + + + + + Sheet Tab Color. + Represents the following element tag in the schema: x:tabColor. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Outline Properties. + Represents the following element tag in the schema: x:outlinePr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Page Setup Properties. + Represents the following element tag in the schema: x:pageSetUpPr. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Dialog Sheet Views. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetViews. + + + The following table lists the possible child types: + + <x:extLst> + <x:sheetView> + + + + + + Initializes a new instance of the SheetViews class. + + + + + Initializes a new instance of the SheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetViews class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Dialog Sheet Format Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetFormatPr. + + + + + Initializes a new instance of the SheetFormatProperties class. + + + + + Base Column Width + Represents the following attribute in the schema: baseColWidth + + + + + Default Column Width + Represents the following attribute in the schema: defaultColWidth + + + + + Default Row Height + Represents the following attribute in the schema: defaultRowHeight + + + + + Custom Height + Represents the following attribute in the schema: customHeight + + + + + Hidden By Default + Represents the following attribute in the schema: zeroHeight + + + + + Thick Top Border + Represents the following attribute in the schema: thickTop + + + + + Thick Bottom Border + Represents the following attribute in the schema: thickBottom + + + + + Maximum Outline Row + Represents the following attribute in the schema: outlineLevelRow + + + + + Column Outline Level + Represents the following attribute in the schema: outlineLevelCol + + + + + dyDescent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x14ac:dyDescent + + + xmlns:x14ac=http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac + + + + + + + + Sheet Protection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetProtection. + + + + + Initializes a new instance of the SheetProtection class. + + + + + Password + Represents the following attribute in the schema: password + + + + + Cryptographic Algorithm Name + Represents the following attribute in the schema: algorithmName + + + + + Password Hash Value + Represents the following attribute in the schema: hashValue + + + + + Salt Value for Password Verifier + Represents the following attribute in the schema: saltValue + + + + + Iterations to Run Hashing Algorithm + Represents the following attribute in the schema: spinCount + + + + + Sheet Locked + Represents the following attribute in the schema: sheet + + + + + Objects Locked + Represents the following attribute in the schema: objects + + + + + Scenarios Locked + Represents the following attribute in the schema: scenarios + + + + + Format Cells Locked + Represents the following attribute in the schema: formatCells + + + + + Format Columns Locked + Represents the following attribute in the schema: formatColumns + + + + + Format Rows Locked + Represents the following attribute in the schema: formatRows + + + + + Insert Columns Locked + Represents the following attribute in the schema: insertColumns + + + + + Insert Rows Locked + Represents the following attribute in the schema: insertRows + + + + + Insert Hyperlinks Locked + Represents the following attribute in the schema: insertHyperlinks + + + + + Delete Columns Locked + Represents the following attribute in the schema: deleteColumns + + + + + Delete Rows Locked + Represents the following attribute in the schema: deleteRows + + + + + Select Locked Cells Locked + Represents the following attribute in the schema: selectLockedCells + + + + + Sort Locked + Represents the following attribute in the schema: sort + + + + + AutoFilter Locked + Represents the following attribute in the schema: autoFilter + + + + + Pivot Tables Locked + Represents the following attribute in the schema: pivotTables + + + + + Select Unlocked Cells Locked + Represents the following attribute in the schema: selectUnlockedCells + + + + + + + + Custom Sheet Views. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customSheetViews. + + + The following table lists the possible child types: + + <x:customSheetView> + + + + + + Initializes a new instance of the CustomSheetViews class. + + + + + Initializes a new instance of the CustomSheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomSheetViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomSheetViews class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OleObjects Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oleObjects. + + + The following table lists the possible child types: + + <x:oleObject> + + + + + + Initializes a new instance of the OleObjects class. + + + + + Initializes a new instance of the OleObjects class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObjects class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObjects class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Controls Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:controls. + + + The following table lists the possible child types: + + <x:control> + + + + + + Initializes a new instance of the Controls class. + + + + + Initializes a new instance of the Controls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Controls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Controls class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Macro Sheet Dimensions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dimension. + + + + + Initializes a new instance of the SheetDimension class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + + + + Column Information. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cols. + + + The following table lists the possible child types: + + <x:col> + + + + + + Initializes a new instance of the Columns class. + + + + + Initializes a new instance of the Columns class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Columns class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Columns class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Sheet Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetData. + + + The following table lists the possible child types: + + <x:row> + + + + + + Initializes a new instance of the SheetData class. + + + + + Initializes a new instance of the SheetData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetData class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Data Consolidation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dataConsolidate. + + + The following table lists the possible child types: + + <x:dataRefs> + + + + + + Initializes a new instance of the DataConsolidate class. + + + + + Initializes a new instance of the DataConsolidate class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataConsolidate class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataConsolidate class from outer XML. + + Specifies the outer XML of the element. + + + + Function Index + Represents the following attribute in the schema: function + + + + + Use Left Column Labels + Represents the following attribute in the schema: leftLabels + + + + + startLabels, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: startLabels + + + + + Labels In Top Row + Represents the following attribute in the schema: topLabels + + + + + Link + Represents the following attribute in the schema: link + + + + + Data Consolidation References. + Represents the following element tag in the schema: x:dataRefs. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Conditional Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:conditionalFormatting. + + + The following table lists the possible child types: + + <x:cfRule> + <x:extLst> + + + + + + Initializes a new instance of the ConditionalFormatting class. + + + + + Initializes a new instance of the ConditionalFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormatting class from outer XML. + + Specifies the outer XML of the element. + + + + PivotTable Conditional Formatting + Represents the following attribute in the schema: pivot + + + + + Sequence of References + Represents the following attribute in the schema: sqref + + + + + + + + Custom Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customProperties. + + + The following table lists the possible child types: + + <x:customPr> + + + + + + Initializes a new instance of the CustomProperties class. + + + + + Initializes a new instance of the CustomProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + OLAP Member Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:mps. + + + The following table lists the possible child types: + + <x:mp> + + + + + + Initializes a new instance of the MemberProperties class. + + + + + Initializes a new instance of the MemberProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MemberProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MemberProperties class from outer XML. + + Specifies the outer XML of the element. + + + + OLAP Member Properties Count + Represents the following attribute in the schema: count + + + + + + + + Members. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:members. + + + The following table lists the possible child types: + + <x:member> + + + + + + Initializes a new instance of the Members class. + + + + + Initializes a new instance of the Members class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Members class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Members class from outer XML. + + Specifies the outer XML of the element. + + + + Item Count + Represents the following attribute in the schema: count + + + + + Hierarchy Level + Represents the following attribute in the schema: level + + + + + + + + Future Feature Data Storage Area. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the PivotHierarchyExtensionList class. + + + + + Initializes a new instance of the PivotHierarchyExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotHierarchyExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotHierarchyExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Field Items. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:items. + + + The following table lists the possible child types: + + <x:item> + + + + + + Initializes a new instance of the Items class. + + + + + Initializes a new instance of the Items class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Items class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Items class from outer XML. + + Specifies the outer XML of the element. + + + + Field Count + Represents the following attribute in the schema: count + + + + + + + + AutoSort Scope. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:autoSortScope. + + + The following table lists the possible child types: + + <x:pivotArea> + + + + + + Initializes a new instance of the AutoSortScope class. + + + + + Initializes a new instance of the AutoSortScope class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoSortScope class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoSortScope class from outer XML. + + Specifies the outer XML of the element. + + + + Auto Sort Scope. + Represents the following element tag in the schema: x:pivotArea. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Future Feature Data Storage Area. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the PivotFieldExtensionList class. + + + + + Initializes a new instance of the PivotFieldExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFieldExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFieldExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WorksheetSource Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:worksheetSource. + + + + + Initializes a new instance of the WorksheetSource class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + Named Range + Represents the following attribute in the schema: name + + + + + Sheet Name + Represents the following attribute in the schema: sheet + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the Consolidation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:consolidation. + + + The following table lists the possible child types: + + <x:pages> + <x:rangeSets> + + + + + + Initializes a new instance of the Consolidation class. + + + + + Initializes a new instance of the Consolidation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Consolidation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Consolidation class from outer XML. + + Specifies the outer XML of the element. + + + + Auto Page + Represents the following attribute in the schema: autoPage + + + + + Page Item Values. + Represents the following element tag in the schema: x:pages. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Range Sets. + Represents the following element tag in the schema: x:rangeSets. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the CacheSourceExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the CacheSourceExtensionList class. + + + + + Initializes a new instance of the CacheSourceExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheSourceExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheSourceExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CommentProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x:commentPr. + + + The following table lists the possible child types: + + <x:anchor> + + + + + + Initializes a new instance of the CommentProperties class. + + + + + Initializes a new instance of the CommentProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentProperties class from outer XML. + + Specifies the outer XML of the element. + + + + locked + Represents the following attribute in the schema: locked + + + + + defaultSize + Represents the following attribute in the schema: defaultSize + + + + + print + Represents the following attribute in the schema: print + + + + + disabled + Represents the following attribute in the schema: disabled + + + + + uiObject + Represents the following attribute in the schema: uiObject + + + + + autoFill + Represents the following attribute in the schema: autoFill + + + + + autoLine + Represents the following attribute in the schema: autoLine + + + + + altText + Represents the following attribute in the schema: altText + + + + + textHAlign + Represents the following attribute in the schema: textHAlign + + + + + textVAlign + Represents the following attribute in the schema: textVAlign + + + + + lockText + Represents the following attribute in the schema: lockText + + + + + justLastX + Represents the following attribute in the schema: justLastX + + + + + autoScale + Represents the following attribute in the schema: autoScale + + + + + rowHidden + Represents the following attribute in the schema: rowHidden + + + + + colHidden + Represents the following attribute in the schema: colHidden + + + + + ObjectAnchor. + Represents the following element tag in the schema: x:anchor. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the SortCondition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sortCondition. + + + + + Initializes a new instance of the SortCondition class. + + + + + Descending + Represents the following attribute in the schema: descending + + + + + Sort By + Represents the following attribute in the schema: sortBy + + + + + Reference + Represents the following attribute in the schema: ref + + + + + Custom List + Represents the following attribute in the schema: customList + + + + + Format Id + Represents the following attribute in the schema: dxfId + + + + + Icon Set + Represents the following attribute in the schema: iconSet + + + + + Icon Id + Represents the following attribute in the schema: iconId + + + + + + + + Filter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:filter. + + + + + Initializes a new instance of the Filter class. + + + + + Filter Value + Represents the following attribute in the schema: val + + + + + + + + Date Grouping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dateGroupItem. + + + + + Initializes a new instance of the DateGroupItem class. + + + + + Year + Represents the following attribute in the schema: year + + + + + Month + Represents the following attribute in the schema: month + + + + + Day + Represents the following attribute in the schema: day + + + + + Hour + Represents the following attribute in the schema: hour + + + + + Minute + Represents the following attribute in the schema: minute + + + + + Second + Represents the following attribute in the schema: second + + + + + Date Time Grouping + Represents the following attribute in the schema: dateTimeGrouping + + + + + + + + Filter Criteria. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:filters. + + + The following table lists the possible child types: + + <x:dateGroupItem> + <x:filter> + <x14:filter> + + + + + + Initializes a new instance of the Filters class. + + + + + Initializes a new instance of the Filters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Filters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Filters class from outer XML. + + Specifies the outer XML of the element. + + + + Filter by Blank + Represents the following attribute in the schema: blank + + + + + Calendar Type + Represents the following attribute in the schema: calendarType + + + + + + + + Top 10. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:top10. + + + + + Initializes a new instance of the Top10 class. + + + + + Top + Represents the following attribute in the schema: top + + + + + Filter by Percent + Represents the following attribute in the schema: percent + + + + + Top or Bottom Value + Represents the following attribute in the schema: val + + + + + Filter Value + Represents the following attribute in the schema: filterVal + + + + + + + + Custom Filters. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customFilters. + + + The following table lists the possible child types: + + <x:customFilter> + + + + + + Initializes a new instance of the CustomFilters class. + + + + + Initializes a new instance of the CustomFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomFilters class from outer XML. + + Specifies the outer XML of the element. + + + + And + Represents the following attribute in the schema: and + + + + + + + + Dynamic Filter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dynamicFilter. + + + + + Initializes a new instance of the DynamicFilter class. + + + + + Dynamic filter type + Represents the following attribute in the schema: type + + + + + Value + Represents the following attribute in the schema: val + + + + + Max Value + Represents the following attribute in the schema: maxVal + + + + + valIso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: valIso + + + + + maxValIso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: maxValIso + + + + + + + + Color Filter Criteria. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:colorFilter. + + + + + Initializes a new instance of the ColorFilter class. + + + + + Differential Format Record Id + Represents the following attribute in the schema: dxfId + + + + + Filter By Cell Color + Represents the following attribute in the schema: cellColor + + + + + + + + Icon Filter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:iconFilter. + + + + + Initializes a new instance of the IconFilter class. + + + + + Icon Set + Represents the following attribute in the schema: iconSet + + + + + Icon Id + Represents the following attribute in the schema: iconId + + + + + + + + Defines the SlicerCacheDefinitionExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x15:slicerCachePivotTables> + <x15:slicerCacheHideItemsWithNoData> + <x15:tableSlicerCache> + + + + + + Initializes a new instance of the SlicerCacheDefinitionExtension class. + + + + + Initializes a new instance of the SlicerCacheDefinitionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheDefinitionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheDefinitionExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the PivotFilterExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x15:movingPeriodState> + <x15:pivotFilter> + + + + + + Initializes a new instance of the PivotFilterExtension class. + + + + + Initializes a new instance of the PivotFilterExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFilterExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFilterExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the QueryTableExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x15:queryTable> + + + + + + Initializes a new instance of the QueryTableExtension class. + + + + + Initializes a new instance of the QueryTableExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the DatabaseProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dbPr. + + + + + Initializes a new instance of the DatabaseProperties class. + + + + + Connection String + Represents the following attribute in the schema: connection + + + + + Command Text + Represents the following attribute in the schema: command + + + + + Command Text + Represents the following attribute in the schema: serverCommand + + + + + OLE DB Command Type + Represents the following attribute in the schema: commandType + + + + + + + + Defines the OlapProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:olapPr. + + + + + Initializes a new instance of the OlapProperties class. + + + + + Local Cube + Represents the following attribute in the schema: local + + + + + Local Cube Connection + Represents the following attribute in the schema: localConnection + + + + + Local Refresh + Represents the following attribute in the schema: localRefresh + + + + + Send Locale to OLAP + Represents the following attribute in the schema: sendLocale + + + + + Drill Through Count + Represents the following attribute in the schema: rowDrillCount + + + + + OLAP Fill Formatting + Represents the following attribute in the schema: serverFill + + + + + OLAP Number Format + Represents the following attribute in the schema: serverNumberFormat + + + + + OLAP Server Font + Represents the following attribute in the schema: serverFont + + + + + OLAP Font Formatting + Represents the following attribute in the schema: serverFontColor + + + + + + + + Defines the WebQueryProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:webPr. + + + The following table lists the possible child types: + + <x:tables> + + + + + + Initializes a new instance of the WebQueryProperties class. + + + + + Initializes a new instance of the WebQueryProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebQueryProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebQueryProperties class from outer XML. + + Specifies the outer XML of the element. + + + + XML Source + Represents the following attribute in the schema: xml + + + + + Import XML Source Data + Represents the following attribute in the schema: sourceData + + + + + Parse PRE + Represents the following attribute in the schema: parsePre + + + + + Consecutive Delimiters + Represents the following attribute in the schema: consecutive + + + + + Use First Row + Represents the following attribute in the schema: firstRow + + + + + Created in Excel 97 + Represents the following attribute in the schema: xl97 + + + + + Dates as Text + Represents the following attribute in the schema: textDates + + + + + Refreshed in Excel 2000 + Represents the following attribute in the schema: xl2000 + + + + + URL + Represents the following attribute in the schema: url + + + + + Web Post + Represents the following attribute in the schema: post + + + + + HTML Tables Only + Represents the following attribute in the schema: htmlTables + + + + + HTML Formatting Handling + Represents the following attribute in the schema: htmlFormat + + + + + Edit Query URL + Represents the following attribute in the schema: editPage + + + + + Tables. + Represents the following element tag in the schema: x:tables. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the TextProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:textPr. + + + The following table lists the possible child types: + + <x:textFields> + + + + + + Initializes a new instance of the TextProperties class. + + + + + Initializes a new instance of the TextProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextProperties class from outer XML. + + Specifies the outer XML of the element. + + + + prompt + Represents the following attribute in the schema: prompt + + + + + fileType + Represents the following attribute in the schema: fileType + + + + + codePage + Represents the following attribute in the schema: codePage + + + + + characterSet + Represents the following attribute in the schema: characterSet + + + + + firstRow + Represents the following attribute in the schema: firstRow + + + + + sourceFile + Represents the following attribute in the schema: sourceFile + + + + + delimited + Represents the following attribute in the schema: delimited + + + + + decimal + Represents the following attribute in the schema: decimal + + + + + thousands + Represents the following attribute in the schema: thousands + + + + + tab + Represents the following attribute in the schema: tab + + + + + space + Represents the following attribute in the schema: space + + + + + comma + Represents the following attribute in the schema: comma + + + + + semicolon + Represents the following attribute in the schema: semicolon + + + + + consecutive + Represents the following attribute in the schema: consecutive + + + + + qualifier + Represents the following attribute in the schema: qualifier + + + + + delimiter + Represents the following attribute in the schema: delimiter + + + + + TextFields. + Represents the following element tag in the schema: x:textFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the Parameters Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:parameters. + + + The following table lists the possible child types: + + <x:parameter> + + + + + + Initializes a new instance of the Parameters class. + + + + + Initializes a new instance of the Parameters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Parameters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Parameters class from outer XML. + + Specifies the outer XML of the element. + + + + Parameter Count + Represents the following attribute in the schema: count + + + + + + + + Defines the ConnectionExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ConnectionExtensionList class. + + + + + Initializes a new instance of the ConnectionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ConnectionExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:connection> + <x15:connection> + + + + + + Initializes a new instance of the ConnectionExtension class. + + + + + Initializes a new instance of the ConnectionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the TextFields Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:textFields. + + + The following table lists the possible child types: + + <x:textField> + + + + + + Initializes a new instance of the TextFields class. + + + + + Initializes a new instance of the TextFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextFields class from outer XML. + + Specifies the outer XML of the element. + + + + Count of Fields + Represents the following attribute in the schema: count + + + + + + + + Defines the SharedItems Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sharedItems. + + + The following table lists the possible child types: + + <x:b> + <x:d> + <x:e> + <x:m> + <x:n> + <x:s> + + + + + + Initializes a new instance of the SharedItems class. + + + + + Initializes a new instance of the SharedItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedItems class from outer XML. + + Specifies the outer XML of the element. + + + + Contains Semi Mixed Data Types + Represents the following attribute in the schema: containsSemiMixedTypes + + + + + Contains Non Date + Represents the following attribute in the schema: containsNonDate + + + + + Contains Date + Represents the following attribute in the schema: containsDate + + + + + Contains String + Represents the following attribute in the schema: containsString + + + + + Contains Blank + Represents the following attribute in the schema: containsBlank + + + + + Contains Mixed Data Types + Represents the following attribute in the schema: containsMixedTypes + + + + + Contains Numbers + Represents the following attribute in the schema: containsNumber + + + + + Contains Integer + Represents the following attribute in the schema: containsInteger + + + + + Minimum Numeric Value + Represents the following attribute in the schema: minValue + + + + + Maximum Numeric Value + Represents the following attribute in the schema: maxValue + + + + + Minimum Date Time + Represents the following attribute in the schema: minDate + + + + + Maximum Date Time Value + Represents the following attribute in the schema: maxDate + + + + + Shared Items Count + Represents the following attribute in the schema: count + + + + + Long Text + Represents the following attribute in the schema: longText + + + + + + + + Defines the FieldGroup Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fieldGroup. + + + The following table lists the possible child types: + + <x:discretePr> + <x:groupItems> + <x:rangePr> + + + + + + Initializes a new instance of the FieldGroup class. + + + + + Initializes a new instance of the FieldGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FieldGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FieldGroup class from outer XML. + + Specifies the outer XML of the element. + + + + Parent + Represents the following attribute in the schema: par + + + + + Field Base + Represents the following attribute in the schema: base + + + + + + + + Defines the CacheFieldExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the CacheFieldExtensionList class. + + + + + Initializes a new instance of the CacheFieldExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheFieldExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheFieldExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CacheFieldExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:cacheField> + <x15:cachedUniqueNames> + + + + + + Initializes a new instance of the CacheFieldExtension class. + + + + + Initializes a new instance of the CacheFieldExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheFieldExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheFieldExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the FieldsUsage Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fieldsUsage. + + + The following table lists the possible child types: + + <x:fieldUsage> + + + + + + Initializes a new instance of the FieldsUsage class. + + + + + Initializes a new instance of the FieldsUsage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FieldsUsage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FieldsUsage class from outer XML. + + Specifies the outer XML of the element. + + + + Field Count + Represents the following attribute in the schema: count + + + + + + + + Defines the GroupLevels Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:groupLevels. + + + The following table lists the possible child types: + + <x:groupLevel> + + + + + + Initializes a new instance of the GroupLevels class. + + + + + Initializes a new instance of the GroupLevels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupLevels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupLevels class from outer XML. + + Specifies the outer XML of the element. + + + + Grouping Level Count + Represents the following attribute in the schema: count + + + + + + + + Defines the CacheHierarchyExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the CacheHierarchyExtensionList class. + + + + + Initializes a new instance of the CacheHierarchyExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchyExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchyExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CacheHierarchyExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:cacheHierarchy> + <x15:cacheHierarchy> + + + + + + Initializes a new instance of the CacheHierarchyExtension class. + + + + + Initializes a new instance of the CacheHierarchyExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchyExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchyExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the CalculatedMemberExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the CalculatedMemberExtensionList class. + + + + + Initializes a new instance of the CalculatedMemberExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMemberExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMemberExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CalculatedMemberExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:calculatedMember> + <x15:calculatedMember> + + + + + + Initializes a new instance of the CalculatedMemberExtension class. + + + + + Initializes a new instance of the CalculatedMemberExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMemberExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMemberExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the DataFieldExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the DataFieldExtensionList class. + + + + + Initializes a new instance of the DataFieldExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataFieldExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataFieldExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataFieldExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:dataField> + <x15:dataField> + + + + + + Initializes a new instance of the DataFieldExtension class. + + + + + Initializes a new instance of the DataFieldExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataFieldExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataFieldExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the PivotFilterExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the PivotFilterExtensionList class. + + + + + Initializes a new instance of the PivotFilterExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFilterExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFilterExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the QueryTableRefresh Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:queryTableRefresh. + + + The following table lists the possible child types: + + <x:extLst> + <x:queryTableDeletedFields> + <x:queryTableFields> + <x:sortState> + + + + + + Initializes a new instance of the QueryTableRefresh class. + + + + + Initializes a new instance of the QueryTableRefresh class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableRefresh class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableRefresh class from outer XML. + + Specifies the outer XML of the element. + + + + Preserve Sort and Filter Layout + Represents the following attribute in the schema: preserveSortFilterLayout + + + + + Next Field Id Wrapped + Represents the following attribute in the schema: fieldIdWrapped + + + + + Headers In Last Refresh + Represents the following attribute in the schema: headersInLastRefresh + + + + + Minimum Refresh Version + Represents the following attribute in the schema: minimumVersion + + + + + Next field id + Represents the following attribute in the schema: nextId + + + + + Columns Left + Represents the following attribute in the schema: unboundColumnsLeft + + + + + Columns Right + Represents the following attribute in the schema: unboundColumnsRight + + + + + Query table fields. + Represents the following element tag in the schema: x:queryTableFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Deleted Fields. + Represents the following element tag in the schema: x:queryTableDeletedFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Sort State. + Represents the following element tag in the schema: x:sortState. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the QueryTableExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the QueryTableExtensionList class. + + + + + Initializes a new instance of the QueryTableExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QueryTableExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SheetCalculationProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetCalcPr. + + + + + Initializes a new instance of the SheetCalculationProperties class. + + + + + Full Calculation On Load + Represents the following attribute in the schema: fullCalcOnLoad + + + + + + + + Defines the ProtectedRanges Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:protectedRanges. + + + The following table lists the possible child types: + + <x:protectedRange> + + + + + + Initializes a new instance of the ProtectedRanges class. + + + + + Initializes a new instance of the ProtectedRanges class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ProtectedRanges class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ProtectedRanges class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Scenarios Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:scenarios. + + + The following table lists the possible child types: + + <x:scenario> + + + + + + Initializes a new instance of the Scenarios class. + + + + + Initializes a new instance of the Scenarios class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scenarios class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scenarios class from outer XML. + + Specifies the outer XML of the element. + + + + Current Scenario + Represents the following attribute in the schema: current + + + + + Last Shown Scenario + Represents the following attribute in the schema: show + + + + + Sequence of References + Represents the following attribute in the schema: sqref + + + + + + + + Defines the MergeCells Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:mergeCells. + + + The following table lists the possible child types: + + <x:mergeCell> + + + + + + Initializes a new instance of the MergeCells class. + + + + + Initializes a new instance of the MergeCells class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MergeCells class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MergeCells class from outer XML. + + Specifies the outer XML of the element. + + + + Count + Represents the following attribute in the schema: count + + + + + + + + Defines the DataValidations Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dataValidations. + + + The following table lists the possible child types: + + <x:dataValidation> + + + + + + Initializes a new instance of the DataValidations class. + + + + + Initializes a new instance of the DataValidations class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidations class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidations class from outer XML. + + Specifies the outer XML of the element. + + + + Disable Prompts + Represents the following attribute in the schema: disablePrompts + + + + + Top Left Corner (X Coodrinate) + Represents the following attribute in the schema: xWindow + + + + + Top Left Corner (Y Coordinate) + Represents the following attribute in the schema: yWindow + + + + + Data Validation Item Count + Represents the following attribute in the schema: count + + + + + + + + Defines the Hyperlinks Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:hyperlinks. + + + The following table lists the possible child types: + + <x:hyperlink> + + + + + + Initializes a new instance of the Hyperlinks class. + + + + + Initializes a new instance of the Hyperlinks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Hyperlinks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Hyperlinks class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CellWatches Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cellWatches. + + + The following table lists the possible child types: + + <x:cellWatch> + + + + + + Initializes a new instance of the CellWatches class. + + + + + Initializes a new instance of the CellWatches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellWatches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellWatches class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the IgnoredErrors Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ignoredErrors. + + + The following table lists the possible child types: + + <x:extLst> + <x:ignoredError> + + + + + + Initializes a new instance of the IgnoredErrors class. + + + + + Initializes a new instance of the IgnoredErrors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IgnoredErrors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IgnoredErrors class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableParts Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tableParts. + + + The following table lists the possible child types: + + <x:tablePart> + + + + + + Initializes a new instance of the TableParts class. + + + + + Initializes a new instance of the TableParts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableParts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableParts class from outer XML. + + Specifies the outer XML of the element. + + + + Count + Represents the following attribute in the schema: count + + + + + + + + Defines the WorksheetExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the WorksheetExtensionList class. + + + + + Initializes a new instance of the WorksheetExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorksheetExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorksheetExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WorksheetExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:conditionalFormattings> + <x14:dataValidations> + <x14:ignoredErrors> + <x14:protectedRanges> + <x14:slicerList> + <x14:sparklineGroups> + <x15:timelineRefs> + <x15:webExtensions> + + + + + + Initializes a new instance of the WorksheetExtension class. + + + + + Initializes a new instance of the WorksheetExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorksheetExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorksheetExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the NumberingFormats Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:numFmts. + + + The following table lists the possible child types: + + <x:numFmt> + + + + + + Initializes a new instance of the NumberingFormats class. + + + + + Initializes a new instance of the NumberingFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Number Format Count + Represents the following attribute in the schema: count + + + + + + + + Defines the Fonts Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fonts. + + + The following table lists the possible child types: + + <x:font> + + + + + + Initializes a new instance of the Fonts class. + + + + + Initializes a new instance of the Fonts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fonts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fonts class from outer XML. + + Specifies the outer XML of the element. + + + + Font Count + Represents the following attribute in the schema: count + + + + + knownFonts, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x14ac:knownFonts + + + xmlns:x14ac=http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac + + + + + + + + Defines the Fills Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fills. + + + The following table lists the possible child types: + + <x:fill> + + + + + + Initializes a new instance of the Fills class. + + + + + Initializes a new instance of the Fills class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fills class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fills class from outer XML. + + Specifies the outer XML of the element. + + + + Fill Count + Represents the following attribute in the schema: count + + + + + + + + Defines the Borders Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:borders. + + + The following table lists the possible child types: + + <x:border> + + + + + + Initializes a new instance of the Borders class. + + + + + Initializes a new instance of the Borders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Borders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Borders class from outer XML. + + Specifies the outer XML of the element. + + + + Border Count + Represents the following attribute in the schema: count + + + + + + + + Defines the CellStyleFormats Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cellStyleXfs. + + + The following table lists the possible child types: + + <x:xf> + + + + + + Initializes a new instance of the CellStyleFormats class. + + + + + Initializes a new instance of the CellStyleFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellStyleFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellStyleFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Style Count + Represents the following attribute in the schema: count + + + + + + + + Defines the CellFormats Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cellXfs. + + + The following table lists the possible child types: + + <x:xf> + + + + + + Initializes a new instance of the CellFormats class. + + + + + Initializes a new instance of the CellFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Format Count + Represents the following attribute in the schema: count + + + + + + + + Defines the CellStyles Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cellStyles. + + + The following table lists the possible child types: + + <x:cellStyle> + + + + + + Initializes a new instance of the CellStyles class. + + + + + Initializes a new instance of the CellStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CellStyles class from outer XML. + + Specifies the outer XML of the element. + + + + Style Count + Represents the following attribute in the schema: count + + + + + + + + Defines the DifferentialFormats Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dxfs. + + + The following table lists the possible child types: + + <x:dxf> + + + + + + Initializes a new instance of the DifferentialFormats class. + + + + + Initializes a new instance of the DifferentialFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Format Count + Represents the following attribute in the schema: count + + + + + + + + Defines the TableStyles Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tableStyles. + + + The following table lists the possible child types: + + <x:tableStyle> + + + + + + Initializes a new instance of the TableStyles class. + + + + + Initializes a new instance of the TableStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyles class from outer XML. + + Specifies the outer XML of the element. + + + + Table Style Count + Represents the following attribute in the schema: count + + + + + Default Table Style + Represents the following attribute in the schema: defaultTableStyle + + + + + Default Pivot Style + Represents the following attribute in the schema: defaultPivotStyle + + + + + + + + Defines the Colors Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:colors. + + + The following table lists the possible child types: + + <x:indexedColors> + <x:mruColors> + + + + + + Initializes a new instance of the Colors class. + + + + + Initializes a new instance of the Colors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Colors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Colors class from outer XML. + + Specifies the outer XML of the element. + + + + Color Indexes. + Represents the following element tag in the schema: x:indexedColors. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + MRU Colors. + Represents the following element tag in the schema: x:mruColors. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the StylesheetExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the StylesheetExtensionList class. + + + + + Initializes a new instance of the StylesheetExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StylesheetExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StylesheetExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StylesheetExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:dxfs> + <x15:dxfs> + <x14:slicerStyles> + <x15:timelineStyles> + + + + + + Initializes a new instance of the StylesheetExtension class. + + + + + Initializes a new instance of the StylesheetExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StylesheetExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StylesheetExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the Location Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:location. + + + + + Initializes a new instance of the Location class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + First Header Row + Represents the following attribute in the schema: firstHeaderRow + + + + + PivotTable Data First Row + Represents the following attribute in the schema: firstDataRow + + + + + First Data Column + Represents the following attribute in the schema: firstDataCol + + + + + Rows Per Page Count + Represents the following attribute in the schema: rowPageCount + + + + + Columns Per Page + Represents the following attribute in the schema: colPageCount + + + + + + + + Defines the PivotFields Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotFields. + + + The following table lists the possible child types: + + <x:pivotField> + + + + + + Initializes a new instance of the PivotFields class. + + + + + Initializes a new instance of the PivotFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFields class from outer XML. + + Specifies the outer XML of the element. + + + + Field Count + Represents the following attribute in the schema: count + + + + + + + + Defines the RowFields Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rowFields. + + + The following table lists the possible child types: + + <x:field> + + + + + + Initializes a new instance of the RowFields class. + + + + + Initializes a new instance of the RowFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowFields class from outer XML. + + Specifies the outer XML of the element. + + + + Repeated Items Count + Represents the following attribute in the schema: count + + + + + + + + Defines the RowItems Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rowItems. + + + The following table lists the possible child types: + + <x:i> + + + + + + Initializes a new instance of the RowItems class. + + + + + Initializes a new instance of the RowItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowItems class from outer XML. + + Specifies the outer XML of the element. + + + + Items in a Row Count + Represents the following attribute in the schema: count + + + + + + + + Defines the ColumnFields Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:colFields. + + + The following table lists the possible child types: + + <x:field> + + + + + + Initializes a new instance of the ColumnFields class. + + + + + Initializes a new instance of the ColumnFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnFields class from outer XML. + + Specifies the outer XML of the element. + + + + Repeated Items Count + Represents the following attribute in the schema: count + + + + + + + + Defines the ColumnItems Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:colItems. + + + The following table lists the possible child types: + + <x:i> + + + + + + Initializes a new instance of the ColumnItems class. + + + + + Initializes a new instance of the ColumnItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnItems class from outer XML. + + Specifies the outer XML of the element. + + + + Column Item Count + Represents the following attribute in the schema: count + + + + + + + + Defines the PageFields Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pageFields. + + + The following table lists the possible child types: + + <x:pageField> + + + + + + Initializes a new instance of the PageFields class. + + + + + Initializes a new instance of the PageFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PageFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PageFields class from outer XML. + + Specifies the outer XML of the element. + + + + Page Item Count + Represents the following attribute in the schema: count + + + + + + + + Defines the DataFields Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dataFields. + + + The following table lists the possible child types: + + <x:dataField> + + + + + + Initializes a new instance of the DataFields class. + + + + + Initializes a new instance of the DataFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataFields class from outer XML. + + Specifies the outer XML of the element. + + + + Data Items Count + Represents the following attribute in the schema: count + + + + + + + + Defines the Formats Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:formats. + + + The following table lists the possible child types: + + <x:format> + + + + + + Initializes a new instance of the Formats class. + + + + + Initializes a new instance of the Formats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Formats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Formats class from outer XML. + + Specifies the outer XML of the element. + + + + Formats Count + Represents the following attribute in the schema: count + + + + + + + + Defines the ConditionalFormats Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:conditionalFormats. + + + The following table lists the possible child types: + + <x:conditionalFormat> + + + + + + Initializes a new instance of the ConditionalFormats class. + + + + + Initializes a new instance of the ConditionalFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Conditional Format Count + Represents the following attribute in the schema: count + + + + + + + + Defines the ChartFormats Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:chartFormats. + + + The following table lists the possible child types: + + <x:chartFormat> + + + + + + Initializes a new instance of the ChartFormats class. + + + + + Initializes a new instance of the ChartFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Format Count + Represents the following attribute in the schema: count + + + + + + + + Defines the PivotHierarchies Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotHierarchies. + + + The following table lists the possible child types: + + <x:pivotHierarchy> + + + + + + Initializes a new instance of the PivotHierarchies class. + + + + + Initializes a new instance of the PivotHierarchies class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotHierarchies class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotHierarchies class from outer XML. + + Specifies the outer XML of the element. + + + + OLAP Hierarchy Count + Represents the following attribute in the schema: count + + + + + + + + Defines the PivotTableStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotTableStyleInfo. + + + + + Initializes a new instance of the PivotTableStyle class. + + + + + Table Style Name + Represents the following attribute in the schema: name + + + + + Show Row Header Formatting + Represents the following attribute in the schema: showRowHeaders + + + + + Show Table Style Column Header Formatting + Represents the following attribute in the schema: showColHeaders + + + + + Show Row Stripes + Represents the following attribute in the schema: showRowStripes + + + + + Show Column Stripes + Represents the following attribute in the schema: showColStripes + + + + + Show Last Column + Represents the following attribute in the schema: showLastColumn + + + + + + + + Defines the PivotFilters Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:filters. + + + The following table lists the possible child types: + + <x:filter> + + + + + + Initializes a new instance of the PivotFilters class. + + + + + Initializes a new instance of the PivotFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFilters class from outer XML. + + Specifies the outer XML of the element. + + + + Pivot Filter Count + Represents the following attribute in the schema: count + + + + + + + + Defines the RowHierarchiesUsage Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:rowHierarchiesUsage. + + + The following table lists the possible child types: + + <x:rowHierarchyUsage> + + + + + + Initializes a new instance of the RowHierarchiesUsage class. + + + + + Initializes a new instance of the RowHierarchiesUsage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowHierarchiesUsage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RowHierarchiesUsage class from outer XML. + + Specifies the outer XML of the element. + + + + Item Count + Represents the following attribute in the schema: count + + + + + + + + Defines the ColumnHierarchiesUsage Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:colHierarchiesUsage. + + + The following table lists the possible child types: + + <x:colHierarchyUsage> + + + + + + Initializes a new instance of the ColumnHierarchiesUsage class. + + + + + Initializes a new instance of the ColumnHierarchiesUsage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnHierarchiesUsage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColumnHierarchiesUsage class from outer XML. + + Specifies the outer XML of the element. + + + + Items Count + Represents the following attribute in the schema: count + + + + + + + + Defines the PivotTableDefinitionExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the PivotTableDefinitionExtensionList class. + + + + + Initializes a new instance of the PivotTableDefinitionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableDefinitionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableDefinitionExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotTableDefinitionExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:pivotTableDefinition> + <x15:pivotTableData> + <x15:pivotTableUISettings> + <xxpvi:pivotVersionInfo> + + + + + + Initializes a new instance of the PivotTableDefinitionExtension class. + + + + + Initializes a new instance of the PivotTableDefinitionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableDefinitionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableDefinitionExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the CacheSource Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cacheSource. + + + The following table lists the possible child types: + + <x:extLst> + <x:consolidation> + <x:worksheetSource> + + + + + + Initializes a new instance of the CacheSource class. + + + + + Initializes a new instance of the CacheSource class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheSource class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheSource class from outer XML. + + Specifies the outer XML of the element. + + + + type + Represents the following attribute in the schema: type + + + + + connectionId + Represents the following attribute in the schema: connectionId + + + + + WorksheetSource. + Represents the following element tag in the schema: x:worksheetSource. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Consolidation. + Represents the following element tag in the schema: x:consolidation. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + CacheSourceExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the CacheFields Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cacheFields. + + + The following table lists the possible child types: + + <x:cacheField> + + + + + + Initializes a new instance of the CacheFields class. + + + + + Initializes a new instance of the CacheFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheFields class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheFields class from outer XML. + + Specifies the outer XML of the element. + + + + Field Count + Represents the following attribute in the schema: count + + + + + + + + Defines the CacheHierarchies Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:cacheHierarchies. + + + The following table lists the possible child types: + + <x:cacheHierarchy> + + + + + + Initializes a new instance of the CacheHierarchies class. + + + + + Initializes a new instance of the CacheHierarchies class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchies class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchies class from outer XML. + + Specifies the outer XML of the element. + + + + Hierarchy Count + Represents the following attribute in the schema: count + + + + + + + + Defines the Kpis Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:kpis. + + + The following table lists the possible child types: + + <x:kpi> + + + + + + Initializes a new instance of the Kpis class. + + + + + Initializes a new instance of the Kpis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Kpis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Kpis class from outer XML. + + Specifies the outer XML of the element. + + + + KPI Count + Represents the following attribute in the schema: count + + + + + + + + Defines the TupleCache Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tupleCache. + + + The following table lists the possible child types: + + <x:extLst> + <x:entries> + <x:queryCache> + <x:serverFormats> + <x:sets> + + + + + + Initializes a new instance of the TupleCache class. + + + + + Initializes a new instance of the TupleCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleCache class from outer XML. + + Specifies the outer XML of the element. + + + + Entries. + Represents the following element tag in the schema: x:entries. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Sets. + Represents the following element tag in the schema: x:sets. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + OLAP Query Cache. + Represents the following element tag in the schema: x:queryCache. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Server Formats. + Represents the following element tag in the schema: x:serverFormats. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the CalculatedItems Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:calculatedItems. + + + The following table lists the possible child types: + + <x:calculatedItem> + + + + + + Initializes a new instance of the CalculatedItems class. + + + + + Initializes a new instance of the CalculatedItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedItems class from outer XML. + + Specifies the outer XML of the element. + + + + Calculated Item Formula Count + Represents the following attribute in the schema: count + + + + + + + + Defines the CalculatedMembers Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:calculatedMembers. + + + The following table lists the possible child types: + + <x:calculatedMember> + + + + + + Initializes a new instance of the CalculatedMembers class. + + + + + Initializes a new instance of the CalculatedMembers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMembers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMembers class from outer XML. + + Specifies the outer XML of the element. + + + + Calculated Members Count + Represents the following attribute in the schema: count + + + + + + + + Defines the Dimensions Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:dimensions. + + + The following table lists the possible child types: + + <x:dimension> + + + + + + Initializes a new instance of the Dimensions class. + + + + + Initializes a new instance of the Dimensions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Dimensions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Dimensions class from outer XML. + + Specifies the outer XML of the element. + + + + OLAP Dimensions Count + Represents the following attribute in the schema: count + + + + + + + + Defines the MeasureGroups Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:measureGroups. + + + The following table lists the possible child types: + + <x:measureGroup> + + + + + + Initializes a new instance of the MeasureGroups class. + + + + + Initializes a new instance of the MeasureGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MeasureGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MeasureGroups class from outer XML. + + Specifies the outer XML of the element. + + + + Measure Group Count + Represents the following attribute in the schema: count + + + + + + + + Defines the Maps Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:maps. + + + The following table lists the possible child types: + + <x:map> + + + + + + Initializes a new instance of the Maps class. + + + + + Initializes a new instance of the Maps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Maps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Maps class from outer XML. + + Specifies the outer XML of the element. + + + + Measure Group Count + Represents the following attribute in the schema: count + + + + + + + + Defines the PivotCacheDefinitionExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the PivotCacheDefinitionExtensionList class. + + + + + Initializes a new instance of the PivotCacheDefinitionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheDefinitionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheDefinitionExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotCacheDefinitionExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:pivotCacheDefinition> + <x15:pivotCacheDecoupled> + <x15:pivotCacheIdVersion> + <x15:timelinePivotCacheDefinition> + <xxpim:implicitMeasureSupport> + <xxpvi:cacheVersionInfo> + + + + + + Initializes a new instance of the PivotCacheDefinitionExtension class. + + + + + Initializes a new instance of the PivotCacheDefinitionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheDefinitionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCacheDefinitionExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Sheet names of supporting book. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetNames. + + + The following table lists the possible child types: + + <x:sheetName> + + + + + + Initializes a new instance of the SheetNames class. + + + + + Initializes a new instance of the SheetNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetNames class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defined names associated with supporting book.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:definedNames. + + + The following table lists the possible child types: + + <x:definedName> + + + + + + Initializes a new instance of the ExternalDefinedNames class. + + + + + Initializes a new instance of the ExternalDefinedNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalDefinedNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalDefinedNames class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Cached worksheet data associated with supporting book. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheetDataSet. + + + The following table lists the possible child types: + + <x:sheetData> + + + + + + Initializes a new instance of the SheetDataSet class. + + + + + Initializes a new instance of the SheetDataSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetDataSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SheetDataSet class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Table Columns. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tableColumns. + + + The following table lists the possible child types: + + <x:tableColumn> + + + + + + Initializes a new instance of the TableColumns class. + + + + + Initializes a new instance of the TableColumns class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableColumns class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableColumns class from outer XML. + + Specifies the outer XML of the element. + + + + Column Count + Represents the following attribute in the schema: count + + + + + + + + Table Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:tableStyleInfo. + + + + + Initializes a new instance of the TableStyleInfo class. + + + + + Style Name + Represents the following attribute in the schema: name + + + + + Show First Column + Represents the following attribute in the schema: showFirstColumn + + + + + Show Last Column + Represents the following attribute in the schema: showLastColumn + + + + + Show Row Stripes + Represents the following attribute in the schema: showRowStripes + + + + + Show Column Stripes + Represents the following attribute in the schema: showColumnStripes + + + + + + + + Future Feature Data Storage Area. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the TableExtensionList class. + + + + + Initializes a new instance of the TableExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:table> + <xlmsforms:msForm> + + + + + + Initializes a new instance of the TableExtension class. + + + + + Initializes a new instance of the TableExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the FileVersion Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fileVersion. + + + + + Initializes a new instance of the FileVersion class. + + + + + Application Name + Represents the following attribute in the schema: appName + + + + + Last Edited Version + Represents the following attribute in the schema: lastEdited + + + + + Lowest Edited Version + Represents the following attribute in the schema: lowestEdited + + + + + Build Version + Represents the following attribute in the schema: rupBuild + + + + + Code Name + Represents the following attribute in the schema: codeName + + + + + + + + Defines the FileSharing Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fileSharing. + + + + + Initializes a new instance of the FileSharing class. + + + + + Read Only Recommended + Represents the following attribute in the schema: readOnlyRecommended + + + + + User Name + Represents the following attribute in the schema: userName + + + + + Write Reservation Password + Represents the following attribute in the schema: reservationPassword + + + + + Password hash algorithm + Represents the following attribute in the schema: algorithmName + + + + + Password hash + Represents the following attribute in the schema: hashValue + + + + + Salt for password hash + Represents the following attribute in the schema: saltValue + + + + + Spin count for password hash + Represents the following attribute in the schema: spinCount + + + + + + + + Defines the WorkbookProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:workbookPr. + + + + + Initializes a new instance of the WorkbookProperties class. + + + + + Date 1904 + Represents the following attribute in the schema: date1904 + + + + + dateCompatibility, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dateCompatibility + + + + + Show Objects + Represents the following attribute in the schema: showObjects + + + + + Show Border Unselected Table + Represents the following attribute in the schema: showBorderUnselectedTables + + + + + Filter Privacy + Represents the following attribute in the schema: filterPrivacy + + + + + Prompted Solutions + Represents the following attribute in the schema: promptedSolutions + + + + + Show Ink Annotations + Represents the following attribute in the schema: showInkAnnotation + + + + + Create Backup File + Represents the following attribute in the schema: backupFile + + + + + Save External Link Values + Represents the following attribute in the schema: saveExternalLinkValues + + + + + Update Links Behavior + Represents the following attribute in the schema: updateLinks + + + + + Code Name + Represents the following attribute in the schema: codeName + + + + + Hide Pivot Field List + Represents the following attribute in the schema: hidePivotFieldList + + + + + Show Pivot Chart Filter + Represents the following attribute in the schema: showPivotChartFilter + + + + + Allow Refresh Query + Represents the following attribute in the schema: allowRefreshQuery + + + + + Publish Items + Represents the following attribute in the schema: publishItems + + + + + Check Compatibility On Save + Represents the following attribute in the schema: checkCompatibility + + + + + Auto Compress Pictures + Represents the following attribute in the schema: autoCompressPictures + + + + + Refresh all Connections on Open + Represents the following attribute in the schema: refreshAllConnections + + + + + Default Theme Version + Represents the following attribute in the schema: defaultThemeVersion + + + + + + + + Defines the WorkbookProtection Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:workbookProtection. + + + + + Initializes a new instance of the WorkbookProtection class. + + + + + Workbook Password + Represents the following attribute in the schema: workbookPassword + + + + + Revisions Password + Represents the following attribute in the schema: revisionsPassword + + + + + Lock Structure + Represents the following attribute in the schema: lockStructure + + + + + Lock Windows + Represents the following attribute in the schema: lockWindows + + + + + Lock Revisions + Represents the following attribute in the schema: lockRevision + + + + + Cryptographic Algorithm Name + Represents the following attribute in the schema: revisionsAlgorithmName + + + + + Password Hash Value + Represents the following attribute in the schema: revisionsHashValue + + + + + Salt Value for Password Verifier + Represents the following attribute in the schema: revisionsSaltValue + + + + + Iterations to Run Hashing Algorithm + Represents the following attribute in the schema: revisionsSpinCount + + + + + Cryptographic Algorithm Name + Represents the following attribute in the schema: workbookAlgorithmName + + + + + Password Hash Value + Represents the following attribute in the schema: workbookHashValue + + + + + Salt Value for Password Verifier + Represents the following attribute in the schema: workbookSaltValue + + + + + Iterations to Run Hashing Algorithm + Represents the following attribute in the schema: workbookSpinCount + + + + + + + + Defines the BookViews Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:bookViews. + + + The following table lists the possible child types: + + <x:workbookView> + + + + + + Initializes a new instance of the BookViews class. + + + + + Initializes a new instance of the BookViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BookViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BookViews class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Sheets Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:sheets. + + + The following table lists the possible child types: + + <x:sheet> + + + + + + Initializes a new instance of the Sheets class. + + + + + Initializes a new instance of the Sheets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sheets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sheets class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the FunctionGroups Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:functionGroups. + + + The following table lists the possible child types: + + <x:functionGroup> + + + + + + Initializes a new instance of the FunctionGroups class. + + + + + Initializes a new instance of the FunctionGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FunctionGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FunctionGroups class from outer XML. + + Specifies the outer XML of the element. + + + + Built-in Function Group Count + Represents the following attribute in the schema: builtInGroupCount + + + + + + + + Defines the ExternalReferences Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:externalReferences. + + + The following table lists the possible child types: + + <x:externalReference> + + + + + + Initializes a new instance of the ExternalReferences class. + + + + + Initializes a new instance of the ExternalReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalReferences class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DefinedNames Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:definedNames. + + + The following table lists the possible child types: + + <x:definedName> + + + + + + Initializes a new instance of the DefinedNames class. + + + + + Initializes a new instance of the DefinedNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefinedNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefinedNames class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CalculationProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:calcPr. + + + + + Initializes a new instance of the CalculationProperties class. + + + + + Calculation Id + Represents the following attribute in the schema: calcId + + + + + Calculation Mode + Represents the following attribute in the schema: calcMode + + + + + Full Calculation On Load + Represents the following attribute in the schema: fullCalcOnLoad + + + + + Reference Mode + Represents the following attribute in the schema: refMode + + + + + Calculation Iteration + Represents the following attribute in the schema: iterate + + + + + Iteration Count + Represents the following attribute in the schema: iterateCount + + + + + Iterative Calculation Delta + Represents the following attribute in the schema: iterateDelta + + + + + Full Precision Calculation + Represents the following attribute in the schema: fullPrecision + + + + + Calc Completed + Represents the following attribute in the schema: calcCompleted + + + + + Calculate On Save + Represents the following attribute in the schema: calcOnSave + + + + + Concurrent Calculations + Represents the following attribute in the schema: concurrentCalc + + + + + Concurrent Thread Manual Count + Represents the following attribute in the schema: concurrentManualCount + + + + + Force Full Calculation + Represents the following attribute in the schema: forceFullCalc + + + + + + + + Defines the OleSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:oleSize. + + + + + Initializes a new instance of the OleSize class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + + + + Defines the CustomWorkbookViews Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:customWorkbookViews. + + + The following table lists the possible child types: + + <x:customWorkbookView> + + + + + + Initializes a new instance of the CustomWorkbookViews class. + + + + + Initializes a new instance of the CustomWorkbookViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomWorkbookViews class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomWorkbookViews class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotCaches Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:pivotCaches. + + + The following table lists the possible child types: + + <x:pivotCache> + + + + + + Initializes a new instance of the PivotCaches class. + + + + + Initializes a new instance of the PivotCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCaches class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WebPublishing Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:webPublishing. + + + + + Initializes a new instance of the WebPublishing class. + + + + + css + Represents the following attribute in the schema: css + + + + + thicket + Represents the following attribute in the schema: thicket + + + + + longFileNames + Represents the following attribute in the schema: longFileNames + + + + + vml + Represents the following attribute in the schema: vml + + + + + allowPng + Represents the following attribute in the schema: allowPng + + + + + targetScreenSize + Represents the following attribute in the schema: targetScreenSize + + + + + dpi + Represents the following attribute in the schema: dpi + + + + + codePage + Represents the following attribute in the schema: codePage + + + + + characterSet + Represents the following attribute in the schema: characterSet + + + + + + + + Defines the FileRecoveryProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:fileRecoveryPr. + + + + + Initializes a new instance of the FileRecoveryProperties class. + + + + + Auto Recover + Represents the following attribute in the schema: autoRecover + + + + + Crash Save + Represents the following attribute in the schema: crashSave + + + + + Data Extract Load + Represents the following attribute in the schema: dataExtractLoad + + + + + Repair Load + Represents the following attribute in the schema: repairLoad + + + + + + + + Defines the WebPublishObjects Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:webPublishObjects. + + + The following table lists the possible child types: + + <x:webPublishObject> + + + + + + Initializes a new instance of the WebPublishObjects class. + + + + + Initializes a new instance of the WebPublishObjects class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebPublishObjects class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebPublishObjects class from outer XML. + + Specifies the outer XML of the element. + + + + Count + Represents the following attribute in the schema: count + + + + + + + + Defines the WorkbookExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the WorkbookExtensionList class. + + + + + Initializes a new instance of the WorkbookExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorkbookExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorkbookExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WorkbookExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is x:ext. + + + The following table lists the possible child types: + + <x14:pivotCaches> + <x15:pivotCaches> + <x15:timelineCachePivotCaches> + <x14:definedNames> + <x14:slicerCaches> + <x15:slicerCaches> + <x14:workbookPr> + <x15:dataModel> + <x15:pivotTableReferences> + <x15:timelineCacheRefs> + <x15:workbookPr> + <xlecs:externalCodeService> + + + + + + Initializes a new instance of the WorkbookExtension class. + + + + + Initializes a new instance of the WorkbookExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorkbookExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorkbookExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Filter Operator + + + + + Creates a new FilterOperatorValues enum instance + + + + + Equal. + When the item is serialized out as xml, its value is "equal". + + + + + Less Than. + When the item is serialized out as xml, its value is "lessThan". + + + + + Less Than Or Equal. + When the item is serialized out as xml, its value is "lessThanOrEqual". + + + + + Not Equal. + When the item is serialized out as xml, its value is "notEqual". + + + + + Greater Than Or Equal. + When the item is serialized out as xml, its value is "greaterThanOrEqual". + + + + + Greater Than. + When the item is serialized out as xml, its value is "greaterThan". + + + + + Dynamic Filter + + + + + Creates a new DynamicFilterValues enum instance + + + + + Null. + When the item is serialized out as xml, its value is "null". + + + + + Above Average. + When the item is serialized out as xml, its value is "aboveAverage". + + + + + Below Average. + When the item is serialized out as xml, its value is "belowAverage". + + + + + Tomorrow. + When the item is serialized out as xml, its value is "tomorrow". + + + + + Today. + When the item is serialized out as xml, its value is "today". + + + + + Yesterday. + When the item is serialized out as xml, its value is "yesterday". + + + + + Next Week. + When the item is serialized out as xml, its value is "nextWeek". + + + + + This Week. + When the item is serialized out as xml, its value is "thisWeek". + + + + + Last Week. + When the item is serialized out as xml, its value is "lastWeek". + + + + + Next Month. + When the item is serialized out as xml, its value is "nextMonth". + + + + + This Month. + When the item is serialized out as xml, its value is "thisMonth". + + + + + Last Month. + When the item is serialized out as xml, its value is "lastMonth". + + + + + Next Quarter. + When the item is serialized out as xml, its value is "nextQuarter". + + + + + This Quarter. + When the item is serialized out as xml, its value is "thisQuarter". + + + + + Last Quarter. + When the item is serialized out as xml, its value is "lastQuarter". + + + + + Next Year. + When the item is serialized out as xml, its value is "nextYear". + + + + + This Year. + When the item is serialized out as xml, its value is "thisYear". + + + + + Last Year. + When the item is serialized out as xml, its value is "lastYear". + + + + + Year To Date. + When the item is serialized out as xml, its value is "yearToDate". + + + + + 1st Quarter. + When the item is serialized out as xml, its value is "Q1". + + + + + 2nd Quarter. + When the item is serialized out as xml, its value is "Q2". + + + + + 3rd Quarter. + When the item is serialized out as xml, its value is "Q3". + + + + + 4th Quarter. + When the item is serialized out as xml, its value is "Q4". + + + + + 1st Month. + When the item is serialized out as xml, its value is "M1". + + + + + 2nd Month. + When the item is serialized out as xml, its value is "M2". + + + + + 3rd Month. + When the item is serialized out as xml, its value is "M3". + + + + + 4th Month. + When the item is serialized out as xml, its value is "M4". + + + + + 5th Month. + When the item is serialized out as xml, its value is "M5". + + + + + 6th Month. + When the item is serialized out as xml, its value is "M6". + + + + + 7th Month. + When the item is serialized out as xml, its value is "M7". + + + + + 8th Month. + When the item is serialized out as xml, its value is "M8". + + + + + 9th Month. + When the item is serialized out as xml, its value is "M9". + + + + + 10th Month. + When the item is serialized out as xml, its value is "M10". + + + + + 11th Month. + When the item is serialized out as xml, its value is "M11". + + + + + 12th Month. + When the item is serialized out as xml, its value is "M12". + + + + + Icon Set Type + + + + + Creates a new IconSetValues enum instance + + + + + 3 Arrows. + When the item is serialized out as xml, its value is "3Arrows". + + + + + 3 Arrows (Gray). + When the item is serialized out as xml, its value is "3ArrowsGray". + + + + + 3 Flags. + When the item is serialized out as xml, its value is "3Flags". + + + + + 3 Traffic Lights. + When the item is serialized out as xml, its value is "3TrafficLights1". + + + + + 3 Traffic Lights Black. + When the item is serialized out as xml, its value is "3TrafficLights2". + + + + + 3 Signs. + When the item is serialized out as xml, its value is "3Signs". + + + + + 3 Symbols Circled. + When the item is serialized out as xml, its value is "3Symbols". + + + + + 3 Symbols. + When the item is serialized out as xml, its value is "3Symbols2". + + + + + 4 Arrows. + When the item is serialized out as xml, its value is "4Arrows". + + + + + 4 Arrows (Gray). + When the item is serialized out as xml, its value is "4ArrowsGray". + + + + + 4 Red To Black. + When the item is serialized out as xml, its value is "4RedToBlack". + + + + + 4 Ratings. + When the item is serialized out as xml, its value is "4Rating". + + + + + 4 Traffic Lights. + When the item is serialized out as xml, its value is "4TrafficLights". + + + + + 5 Arrows. + When the item is serialized out as xml, its value is "5Arrows". + + + + + 5 Arrows (Gray). + When the item is serialized out as xml, its value is "5ArrowsGray". + + + + + 5 Ratings Icon Set. + When the item is serialized out as xml, its value is "5Rating". + + + + + 5 Quarters. + When the item is serialized out as xml, its value is "5Quarters". + + + + + Sort By + + + + + Creates a new SortByValues enum instance + + + + + Value. + When the item is serialized out as xml, its value is "value". + + + + + Sort by Cell Color. + When the item is serialized out as xml, its value is "cellColor". + + + + + Sort by Font Color. + When the item is serialized out as xml, its value is "fontColor". + + + + + Sort by Icon. + When the item is serialized out as xml, its value is "icon". + + + + + Sort Method + + + + + Creates a new SortMethodValues enum instance + + + + + Sort by Stroke. + When the item is serialized out as xml, its value is "stroke". + + + + + PinYin Sort. + When the item is serialized out as xml, its value is "pinYin". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Calendar Type + + + + + Creates a new CalendarValues enum instance + + + + + No Calendar Type. + When the item is serialized out as xml, its value is "none". + + + + + Gregorian. + When the item is serialized out as xml, its value is "gregorian". + + + + + Gregorian (U.S.) Calendar. + When the item is serialized out as xml, its value is "gregorianUs". + + + + + Japanese Emperor Era Calendar. + When the item is serialized out as xml, its value is "japan". + + + + + Taiwan Era Calendar. + When the item is serialized out as xml, its value is "taiwan". + + + + + Korean Tangun Era Calendar. + When the item is serialized out as xml, its value is "korea". + + + + + Hijri (Arabic Lunar) Calendar. + When the item is serialized out as xml, its value is "hijri". + + + + + Thai Calendar. + When the item is serialized out as xml, its value is "thai". + + + + + Hebrew (Lunar) Calendar. + When the item is serialized out as xml, its value is "hebrew". + + + + + Gregorian Middle East French Calendar. + When the item is serialized out as xml, its value is "gregorianMeFrench". + + + + + Gregorian Arabic Calendar. + When the item is serialized out as xml, its value is "gregorianArabic". + + + + + Gregorian Transliterated English Calendar. + When the item is serialized out as xml, its value is "gregorianXlitEnglish". + + + + + Gregorian Transliterated French Calendar. + When the item is serialized out as xml, its value is "gregorianXlitFrench". + + + + + Date Time Grouping + + + + + Creates a new DateTimeGroupingValues enum instance + + + + + Group by Year. + When the item is serialized out as xml, its value is "year". + + + + + Month. + When the item is serialized out as xml, its value is "month". + + + + + Day. + When the item is serialized out as xml, its value is "day". + + + + + Group by Hour. + When the item is serialized out as xml, its value is "hour". + + + + + Group by Minute. + When the item is serialized out as xml, its value is "minute". + + + + + Second. + When the item is serialized out as xml, its value is "second". + + + + + HTML Formatting Handling + + + + + Creates a new HtmlFormattingValues enum instance + + + + + No Formatting. + When the item is serialized out as xml, its value is "none". + + + + + Honor Rich Text. + When the item is serialized out as xml, its value is "rtf". + + + + + All. + When the item is serialized out as xml, its value is "all". + + + + + Parameter Type + + + + + Creates a new ParameterValues enum instance + + + + + Prompt on Refresh. + When the item is serialized out as xml, its value is "prompt". + + + + + Value. + When the item is serialized out as xml, its value is "value". + + + + + Parameter From Cell. + When the item is serialized out as xml, its value is "cell". + + + + + File Type + + + + + Creates a new FileTypeValues enum instance + + + + + Macintosh. + When the item is serialized out as xml, its value is "mac". + + + + + Windows (ANSI). + When the item is serialized out as xml, its value is "win". + + + + + DOS. + When the item is serialized out as xml, its value is "dos". + + + + + Qualifier + + + + + Creates a new QualifierValues enum instance + + + + + Double Quote. + When the item is serialized out as xml, its value is "doubleQuote". + + + + + Single Quote. + When the item is serialized out as xml, its value is "singleQuote". + + + + + No Text Qualifier. + When the item is serialized out as xml, its value is "none". + + + + + Text Field Data Type + + + + + Creates a new ExternalConnectionValues enum instance + + + + + General. + When the item is serialized out as xml, its value is "general". + + + + + Text. + When the item is serialized out as xml, its value is "text". + + + + + Month Day Year. + When the item is serialized out as xml, its value is "MDY". + + + + + Day Month Year. + When the item is serialized out as xml, its value is "DMY". + + + + + Year Month Day. + When the item is serialized out as xml, its value is "YMD". + + + + + Month Day Year. + When the item is serialized out as xml, its value is "MYD". + + + + + Day Year Month. + When the item is serialized out as xml, its value is "DYM". + + + + + Year Day Month. + When the item is serialized out as xml, its value is "YDM". + + + + + Skip Field. + When the item is serialized out as xml, its value is "skip". + + + + + East Asian Year Month Day. + When the item is serialized out as xml, its value is "EMD". + + + + + Credentials Method + + + + + Creates a new CredentialsMethodValues enum instance + + + + + Integrated Authentication. + When the item is serialized out as xml, its value is "integrated". + + + + + No Credentials. + When the item is serialized out as xml, its value is "none". + + + + + Stored Credentials. + When the item is serialized out as xml, its value is "stored". + + + + + PivotCache Type + + + + + Creates a new SourceValues enum instance + + + + + Worksheet. + When the item is serialized out as xml, its value is "worksheet". + + + + + External. + When the item is serialized out as xml, its value is "external". + + + + + Consolidation Ranges. + When the item is serialized out as xml, its value is "consolidation". + + + + + Scenario Summary Report. + When the item is serialized out as xml, its value is "scenario". + + + + + Values Group By + + + + + Creates a new GroupByValues enum instance + + + + + Group By Numeric Ranges. + When the item is serialized out as xml, its value is "range". + + + + + Seconds. + When the item is serialized out as xml, its value is "seconds". + + + + + Minutes. + When the item is serialized out as xml, its value is "minutes". + + + + + Hours. + When the item is serialized out as xml, its value is "hours". + + + + + Days. + When the item is serialized out as xml, its value is "days". + + + + + Months. + When the item is serialized out as xml, its value is "months". + + + + + Quarters. + When the item is serialized out as xml, its value is "quarters". + + + + + Years. + When the item is serialized out as xml, its value is "years". + + + + + Set Sort Order + + + + + Creates a new SortValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Ascending. + When the item is serialized out as xml, its value is "ascending". + + + + + Descending. + When the item is serialized out as xml, its value is "descending". + + + + + Ascending Alpha. + When the item is serialized out as xml, its value is "ascendingAlpha". + + + + + Alphabetic Order Descending. + When the item is serialized out as xml, its value is "descendingAlpha". + + + + + Ascending Natural. + When the item is serialized out as xml, its value is "ascendingNatural". + + + + + Natural Order Descending. + When the item is serialized out as xml, its value is "descendingNatural". + + + + + Conditional Formatting Scope + + + + + Creates a new ScopeValues enum instance + + + + + Selection. + When the item is serialized out as xml, its value is "selection". + + + + + Data Fields. + When the item is serialized out as xml, its value is "data". + + + + + Field Intersections. + When the item is serialized out as xml, its value is "field". + + + + + Top N Evaluation Type + + + + + Creates a new RuleValues enum instance + + + + + Top N None. + When the item is serialized out as xml, its value is "none". + + + + + All. + When the item is serialized out as xml, its value is "all". + + + + + Row Top N. + When the item is serialized out as xml, its value is "row". + + + + + Column Top N. + When the item is serialized out as xml, its value is "column". + + + + + Show Data As + + + + + Creates a new ShowDataAsValues enum instance + + + + + Normal Data Type. + When the item is serialized out as xml, its value is "normal". + + + + + Difference. + When the item is serialized out as xml, its value is "difference". + + + + + Percentage Of. + When the item is serialized out as xml, its value is "percent". + + + + + Percentage Difference. + When the item is serialized out as xml, its value is "percentDiff". + + + + + Running Total. + When the item is serialized out as xml, its value is "runTotal". + + + + + Percentage of Row. + When the item is serialized out as xml, its value is "percentOfRow". + + + + + Percent of Column. + When the item is serialized out as xml, its value is "percentOfCol". + + + + + Percentage of Total. + When the item is serialized out as xml, its value is "percentOfTotal". + + + + + Index. + When the item is serialized out as xml, its value is "index". + + + + + PivotItem Type + + + + + Creates a new ItemValues enum instance + + + + + Data. + When the item is serialized out as xml, its value is "data". + + + + + Default. + When the item is serialized out as xml, its value is "default". + + + + + Sum. + When the item is serialized out as xml, its value is "sum". + + + + + CountA. + When the item is serialized out as xml, its value is "countA". + + + + + Average. + When the item is serialized out as xml, its value is "avg". + + + + + Max. + When the item is serialized out as xml, its value is "max". + + + + + Min. + When the item is serialized out as xml, its value is "min". + + + + + Product. + When the item is serialized out as xml, its value is "product". + + + + + Count. + When the item is serialized out as xml, its value is "count". + + + + + stdDev. + When the item is serialized out as xml, its value is "stdDev". + + + + + StdDevP. + When the item is serialized out as xml, its value is "stdDevP". + + + + + Var. + When the item is serialized out as xml, its value is "var". + + + + + VarP. + When the item is serialized out as xml, its value is "varP". + + + + + Grand Total Item. + When the item is serialized out as xml, its value is "grand". + + + + + Blank Pivot Item. + When the item is serialized out as xml, its value is "blank". + + + + + Field Sort Type + + + + + Creates a new FieldSortValues enum instance + + + + + Manual Sort. + When the item is serialized out as xml, its value is "manual". + + + + + Ascending. + When the item is serialized out as xml, its value is "ascending". + + + + + Descending. + When the item is serialized out as xml, its value is "descending". + + + + + Pivot Filter Types + + + + + Creates a new PivotFilterValues enum instance + + + + + Unknown. + When the item is serialized out as xml, its value is "unknown". + + + + + Count. + When the item is serialized out as xml, its value is "count". + + + + + Percent. + When the item is serialized out as xml, its value is "percent". + + + + + Sum. + When the item is serialized out as xml, its value is "sum". + + + + + Caption Equals. + When the item is serialized out as xml, its value is "captionEqual". + + + + + Caption Not Equal. + When the item is serialized out as xml, its value is "captionNotEqual". + + + + + Caption Begins With. + When the item is serialized out as xml, its value is "captionBeginsWith". + + + + + Caption Does Not Begin With. + When the item is serialized out as xml, its value is "captionNotBeginsWith". + + + + + Caption Ends With. + When the item is serialized out as xml, its value is "captionEndsWith". + + + + + Caption Does Not End With. + When the item is serialized out as xml, its value is "captionNotEndsWith". + + + + + Caption Contains. + When the item is serialized out as xml, its value is "captionContains". + + + + + Caption Does Not Contain. + When the item is serialized out as xml, its value is "captionNotContains". + + + + + Caption Is Greater Than. + When the item is serialized out as xml, its value is "captionGreaterThan". + + + + + Caption Is Greater Than Or Equal To. + When the item is serialized out as xml, its value is "captionGreaterThanOrEqual". + + + + + Caption Is Less Than. + When the item is serialized out as xml, its value is "captionLessThan". + + + + + Caption Is Less Than Or Equal To. + When the item is serialized out as xml, its value is "captionLessThanOrEqual". + + + + + Caption Is Between. + When the item is serialized out as xml, its value is "captionBetween". + + + + + Caption Is Not Between. + When the item is serialized out as xml, its value is "captionNotBetween". + + + + + Value Equal. + When the item is serialized out as xml, its value is "valueEqual". + + + + + Value Not Equal. + When the item is serialized out as xml, its value is "valueNotEqual". + + + + + Value Greater Than. + When the item is serialized out as xml, its value is "valueGreaterThan". + + + + + Value Greater Than Or Equal To. + When the item is serialized out as xml, its value is "valueGreaterThanOrEqual". + + + + + Value Less Than. + When the item is serialized out as xml, its value is "valueLessThan". + + + + + Value Less Than Or Equal To. + When the item is serialized out as xml, its value is "valueLessThanOrEqual". + + + + + Value Between. + When the item is serialized out as xml, its value is "valueBetween". + + + + + Value Not Between. + When the item is serialized out as xml, its value is "valueNotBetween". + + + + + Date Equals. + When the item is serialized out as xml, its value is "dateEqual". + + + + + Date Does Not Equal. + When the item is serialized out as xml, its value is "dateNotEqual". + + + + + Date Older Than. + When the item is serialized out as xml, its value is "dateOlderThan". + + + + + Date Older Than Or Equal. + When the item is serialized out as xml, its value is "dateOlderThanOrEqual". + + + + + Date Newer Than. + When the item is serialized out as xml, its value is "dateNewerThan". + + + + + Date Newer Than or Equal To. + When the item is serialized out as xml, its value is "dateNewerThanOrEqual". + + + + + Date Between. + When the item is serialized out as xml, its value is "dateBetween". + + + + + Date Not Between. + When the item is serialized out as xml, its value is "dateNotBetween". + + + + + Tomorrow. + When the item is serialized out as xml, its value is "tomorrow". + + + + + Today. + When the item is serialized out as xml, its value is "today". + + + + + Yesterday. + When the item is serialized out as xml, its value is "yesterday". + + + + + Next Week. + When the item is serialized out as xml, its value is "nextWeek". + + + + + This Week. + When the item is serialized out as xml, its value is "thisWeek". + + + + + Last Week. + When the item is serialized out as xml, its value is "lastWeek". + + + + + Next Month. + When the item is serialized out as xml, its value is "nextMonth". + + + + + This Month. + When the item is serialized out as xml, its value is "thisMonth". + + + + + Last Month. + When the item is serialized out as xml, its value is "lastMonth". + + + + + Next Quarter. + When the item is serialized out as xml, its value is "nextQuarter". + + + + + This Quarter. + When the item is serialized out as xml, its value is "thisQuarter". + + + + + Last Quarter. + When the item is serialized out as xml, its value is "lastQuarter". + + + + + Next Year. + When the item is serialized out as xml, its value is "nextYear". + + + + + This Year. + When the item is serialized out as xml, its value is "thisYear". + + + + + Last Year. + When the item is serialized out as xml, its value is "lastYear". + + + + + Year-To-Date. + When the item is serialized out as xml, its value is "yearToDate". + + + + + First Quarter. + When the item is serialized out as xml, its value is "Q1". + + + + + Second Quarter. + When the item is serialized out as xml, its value is "Q2". + + + + + Third Quarter. + When the item is serialized out as xml, its value is "Q3". + + + + + Fourth Quarter. + When the item is serialized out as xml, its value is "Q4". + + + + + January. + When the item is serialized out as xml, its value is "M1". + + + + + Dates in February. + When the item is serialized out as xml, its value is "M2". + + + + + Dates in March. + When the item is serialized out as xml, its value is "M3". + + + + + Dates in April. + When the item is serialized out as xml, its value is "M4". + + + + + Dates in May. + When the item is serialized out as xml, its value is "M5". + + + + + Dates in June. + When the item is serialized out as xml, its value is "M6". + + + + + Dates in July. + When the item is serialized out as xml, its value is "M7". + + + + + Dates in August. + When the item is serialized out as xml, its value is "M8". + + + + + Dates in September. + When the item is serialized out as xml, its value is "M9". + + + + + Dates in October. + When the item is serialized out as xml, its value is "M10". + + + + + Dates in November. + When the item is serialized out as xml, its value is "M11". + + + + + Dates in December. + When the item is serialized out as xml, its value is "M12". + + + + + PivotTable Format Types + + + + + Creates a new FormatActionValues enum instance + + + + + Blank. + When the item is serialized out as xml, its value is "blank". + + + + + Formatting. + When the item is serialized out as xml, its value is "formatting". + + + + + PivotTable Axis + + + + + Creates a new PivotTableAxisValues enum instance + + + + + Row Axis. + When the item is serialized out as xml, its value is "axisRow". + + + + + Column Axis. + When the item is serialized out as xml, its value is "axisCol". + + + + + Include Count Filter. + When the item is serialized out as xml, its value is "axisPage". + + + + + Values Axis. + When the item is serialized out as xml, its value is "axisValues". + + + + + Grow Shrink Type + + + + + Creates a new GrowShrinkValues enum instance + + + + + Insert and Delete On Refresh. + When the item is serialized out as xml, its value is "insertDelete". + + + + + Insert and Clear On Refresh. + When the item is serialized out as xml, its value is "insertClear". + + + + + Overwrite and Clear On Refresh. + When the item is serialized out as xml, its value is "overwriteClear". + + + + + Phonetic Type + + + + + Creates a new PhoneticValues enum instance + + + + + Half-Width Katakana. + When the item is serialized out as xml, its value is "halfwidthKatakana". + + + + + Full-Width Katakana. + When the item is serialized out as xml, its value is "fullwidthKatakana". + + + + + Hiragana. + When the item is serialized out as xml, its value is "Hiragana". + + + + + No Conversion. + When the item is serialized out as xml, its value is "noConversion". + + + + + Phonetic Alignment Types + + + + + Creates a new PhoneticAlignmentValues enum instance + + + + + No Control. + When the item is serialized out as xml, its value is "noControl". + + + + + Left Alignment. + When the item is serialized out as xml, its value is "left". + + + + + Center Alignment. + When the item is serialized out as xml, its value is "center". + + + + + Distributed. + When the item is serialized out as xml, its value is "distributed". + + + + + Row Column Action Type + + + + + Creates a new RowColumnActionValues enum instance + + + + + Insert Row. + When the item is serialized out as xml, its value is "insertRow". + + + + + Delete Row. + When the item is serialized out as xml, its value is "deleteRow". + + + + + Column Insert. + When the item is serialized out as xml, its value is "insertCol". + + + + + Delete Column. + When the item is serialized out as xml, its value is "deleteCol". + + + + + Revision Action Types + + + + + Creates a new RevisionActionValues enum instance + + + + + Add. + When the item is serialized out as xml, its value is "add". + + + + + Delete. + When the item is serialized out as xml, its value is "delete". + + + + + Formula Expression Type + + + + + Creates a new FormulaExpressionValues enum instance + + + + + Reference. + When the item is serialized out as xml, its value is "ref". + + + + + Reference Is Error. + When the item is serialized out as xml, its value is "refError". + + + + + Area. + When the item is serialized out as xml, its value is "area". + + + + + Area Error. + When the item is serialized out as xml, its value is "areaError". + + + + + Computed Area. + When the item is serialized out as xml, its value is "computedArea". + + + + + Formula Type + + + + + Creates a new CellFormulaValues enum instance + + + + + Normal. + When the item is serialized out as xml, its value is "normal". + + + + + Array Entered. + When the item is serialized out as xml, its value is "array". + + + + + Table Formula. + When the item is serialized out as xml, its value is "dataTable". + + + + + Shared Formula. + When the item is serialized out as xml, its value is "shared". + + + + + Pane Types + + + + + Creates a new PaneValues enum instance + + + + + Bottom Right Pane. + When the item is serialized out as xml, its value is "bottomRight". + + + + + Top Right Pane. + When the item is serialized out as xml, its value is "topRight". + + + + + Bottom Left Pane. + When the item is serialized out as xml, its value is "bottomLeft". + + + + + Top Left Pane. + When the item is serialized out as xml, its value is "topLeft". + + + + + Sheet View Type + + + + + Creates a new SheetViewValues enum instance + + + + + Normal View. + When the item is serialized out as xml, its value is "normal". + + + + + Page Break Preview. + When the item is serialized out as xml, its value is "pageBreakPreview". + + + + + Page Layout View. + When the item is serialized out as xml, its value is "pageLayout". + + + + + Data Consolidation Functions + + + + + Creates a new DataConsolidateFunctionValues enum instance + + + + + Average. + When the item is serialized out as xml, its value is "average". + + + + + Count. + When the item is serialized out as xml, its value is "count". + + + + + CountNums. + When the item is serialized out as xml, its value is "countNums". + + + + + Maximum. + When the item is serialized out as xml, its value is "max". + + + + + Minimum. + When the item is serialized out as xml, its value is "min". + + + + + Product. + When the item is serialized out as xml, its value is "product". + + + + + StdDev. + When the item is serialized out as xml, its value is "stdDev". + + + + + StdDevP. + When the item is serialized out as xml, its value is "stdDevp". + + + + + Sum. + When the item is serialized out as xml, its value is "sum". + + + + + Variance. + When the item is serialized out as xml, its value is "var". + + + + + VarP. + When the item is serialized out as xml, its value is "varp". + + + + + Data Validation Type + + + + + Creates a new DataValidationValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Whole Number. + When the item is serialized out as xml, its value is "whole". + + + + + Decimal. + When the item is serialized out as xml, its value is "decimal". + + + + + List. + When the item is serialized out as xml, its value is "list". + + + + + Date. + When the item is serialized out as xml, its value is "date". + + + + + Time. + When the item is serialized out as xml, its value is "time". + + + + + Text Length. + When the item is serialized out as xml, its value is "textLength". + + + + + Custom. + When the item is serialized out as xml, its value is "custom". + + + + + Data Validation Operator + + + + + Creates a new DataValidationOperatorValues enum instance + + + + + Between. + When the item is serialized out as xml, its value is "between". + + + + + Not Between. + When the item is serialized out as xml, its value is "notBetween". + + + + + Equal. + When the item is serialized out as xml, its value is "equal". + + + + + Not Equal. + When the item is serialized out as xml, its value is "notEqual". + + + + + Less Than. + When the item is serialized out as xml, its value is "lessThan". + + + + + Less Than Or Equal. + When the item is serialized out as xml, its value is "lessThanOrEqual". + + + + + Greater Than. + When the item is serialized out as xml, its value is "greaterThan". + + + + + Greater Than Or Equal. + When the item is serialized out as xml, its value is "greaterThanOrEqual". + + + + + Data Validation Error Styles + + + + + Creates a new DataValidationErrorStyleValues enum instance + + + + + Stop Icon. + When the item is serialized out as xml, its value is "stop". + + + + + Warning Icon. + When the item is serialized out as xml, its value is "warning". + + + + + Information Icon. + When the item is serialized out as xml, its value is "information". + + + + + Data Validation IME Mode + + + + + Creates a new DataValidationImeModeValues enum instance + + + + + IME Mode Not Controlled. + When the item is serialized out as xml, its value is "noControl". + + + + + IME Off. + When the item is serialized out as xml, its value is "off". + + + + + IME On. + When the item is serialized out as xml, its value is "on". + + + + + Disabled IME Mode. + When the item is serialized out as xml, its value is "disabled". + + + + + Hiragana IME Mode. + When the item is serialized out as xml, its value is "hiragana". + + + + + Full Katakana IME Mode. + When the item is serialized out as xml, its value is "fullKatakana". + + + + + Half-Width Katakana. + When the item is serialized out as xml, its value is "halfKatakana". + + + + + Full-Width Alpha-Numeric IME Mode. + When the item is serialized out as xml, its value is "fullAlpha". + + + + + Half Alpha IME. + When the item is serialized out as xml, its value is "halfAlpha". + + + + + Full Width Hangul. + When the item is serialized out as xml, its value is "fullHangul". + + + + + Half-Width Hangul IME Mode. + When the item is serialized out as xml, its value is "halfHangul". + + + + + Conditional Format Type + + + + + Creates a new ConditionalFormatValues enum instance + + + + + Expression. + When the item is serialized out as xml, its value is "expression". + + + + + Cell Is. + When the item is serialized out as xml, its value is "cellIs". + + + + + Color Scale. + When the item is serialized out as xml, its value is "colorScale". + + + + + Data Bar. + When the item is serialized out as xml, its value is "dataBar". + + + + + Icon Set. + When the item is serialized out as xml, its value is "iconSet". + + + + + Top 10. + When the item is serialized out as xml, its value is "top10". + + + + + Unique Values. + When the item is serialized out as xml, its value is "uniqueValues". + + + + + Duplicate Values. + When the item is serialized out as xml, its value is "duplicateValues". + + + + + Contains Text. + When the item is serialized out as xml, its value is "containsText". + + + + + Does Not Contain Text. + When the item is serialized out as xml, its value is "notContainsText". + + + + + Begins With. + When the item is serialized out as xml, its value is "beginsWith". + + + + + Ends With. + When the item is serialized out as xml, its value is "endsWith". + + + + + Contains Blanks. + When the item is serialized out as xml, its value is "containsBlanks". + + + + + Contains No Blanks. + When the item is serialized out as xml, its value is "notContainsBlanks". + + + + + Contains Errors. + When the item is serialized out as xml, its value is "containsErrors". + + + + + Contains No Errors. + When the item is serialized out as xml, its value is "notContainsErrors". + + + + + Time Period. + When the item is serialized out as xml, its value is "timePeriod". + + + + + Above or Below Average. + When the item is serialized out as xml, its value is "aboveAverage". + + + + + Time Period Types + + + + + Creates a new TimePeriodValues enum instance + + + + + Today. + When the item is serialized out as xml, its value is "today". + + + + + Yesterday. + When the item is serialized out as xml, its value is "yesterday". + + + + + Tomorrow. + When the item is serialized out as xml, its value is "tomorrow". + + + + + Last 7 Days. + When the item is serialized out as xml, its value is "last7Days". + + + + + This Month. + When the item is serialized out as xml, its value is "thisMonth". + + + + + Last Month. + When the item is serialized out as xml, its value is "lastMonth". + + + + + Next Month. + When the item is serialized out as xml, its value is "nextMonth". + + + + + This Week. + When the item is serialized out as xml, its value is "thisWeek". + + + + + Last Week. + When the item is serialized out as xml, its value is "lastWeek". + + + + + Next Week. + When the item is serialized out as xml, its value is "nextWeek". + + + + + Conditional Format Operators + + + + + Creates a new ConditionalFormattingOperatorValues enum instance + + + + + Less Than. + When the item is serialized out as xml, its value is "lessThan". + + + + + Less Than Or Equal. + When the item is serialized out as xml, its value is "lessThanOrEqual". + + + + + Equal. + When the item is serialized out as xml, its value is "equal". + + + + + Not Equal. + When the item is serialized out as xml, its value is "notEqual". + + + + + Greater Than Or Equal. + When the item is serialized out as xml, its value is "greaterThanOrEqual". + + + + + Greater Than. + When the item is serialized out as xml, its value is "greaterThan". + + + + + Between. + When the item is serialized out as xml, its value is "between". + + + + + Not Between. + When the item is serialized out as xml, its value is "notBetween". + + + + + Contains. + When the item is serialized out as xml, its value is "containsText". + + + + + Does Not Contain. + When the item is serialized out as xml, its value is "notContains". + + + + + Begins With. + When the item is serialized out as xml, its value is "beginsWith". + + + + + Ends With. + When the item is serialized out as xml, its value is "endsWith". + + + + + Conditional Format Value Object Type + + + + + Creates a new ConditionalFormatValueObjectValues enum instance + + + + + Number. + When the item is serialized out as xml, its value is "num". + + + + + Percent. + When the item is serialized out as xml, its value is "percent". + + + + + Maximum. + When the item is serialized out as xml, its value is "max". + + + + + Minimum. + When the item is serialized out as xml, its value is "min". + + + + + Formula. + When the item is serialized out as xml, its value is "formula". + + + + + Percentile. + When the item is serialized out as xml, its value is "percentile". + + + + + Page Order + + + + + Creates a new PageOrderValues enum instance + + + + + Down Then Over. + When the item is serialized out as xml, its value is "downThenOver". + + + + + Over Then Down. + When the item is serialized out as xml, its value is "overThenDown". + + + + + Orientation + + + + + Creates a new OrientationValues enum instance + + + + + Default. + When the item is serialized out as xml, its value is "default". + + + + + Portrait. + When the item is serialized out as xml, its value is "portrait". + + + + + Landscape. + When the item is serialized out as xml, its value is "landscape". + + + + + Cell Comments + + + + + Creates a new CellCommentsValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Print Comments As Displayed. + When the item is serialized out as xml, its value is "asDisplayed". + + + + + Print At End. + When the item is serialized out as xml, its value is "atEnd". + + + + + Print Errors + + + + + Creates a new PrintErrorValues enum instance + + + + + Display Cell Errors. + When the item is serialized out as xml, its value is "displayed". + + + + + Show Cell Errors As Blank. + When the item is serialized out as xml, its value is "blank". + + + + + Dash Cell Errors. + When the item is serialized out as xml, its value is "dash". + + + + + NA. + When the item is serialized out as xml, its value is "NA". + + + + + Data View Aspect Type + + + + + Creates a new DataViewAspectValues enum instance + + + + + Object Display Content. + When the item is serialized out as xml, its value is "DVASPECT_CONTENT". + + + + + Object Display Icon. + When the item is serialized out as xml, its value is "DVASPECT_ICON". + + + + + OLE Update Types + + + + + Creates a new OleUpdateValues enum instance + + + + + Always Update OLE. + When the item is serialized out as xml, its value is "OLEUPDATE_ALWAYS". + + + + + Update OLE On Call. + When the item is serialized out as xml, its value is "OLEUPDATE_ONCALL". + + + + + Web Source Type + + + + + Creates a new WebSourceValues enum instance + + + + + All Sheet Content. + When the item is serialized out as xml, its value is "sheet". + + + + + Print Area. + When the item is serialized out as xml, its value is "printArea". + + + + + AutoFilter. + When the item is serialized out as xml, its value is "autoFilter". + + + + + Range. + When the item is serialized out as xml, its value is "range". + + + + + Chart. + When the item is serialized out as xml, its value is "chart". + + + + + PivotTable. + When the item is serialized out as xml, its value is "pivotTable". + + + + + QueryTable. + When the item is serialized out as xml, its value is "query". + + + + + Label. + When the item is serialized out as xml, its value is "label". + + + + + Pane State + + + + + Creates a new PaneStateValues enum instance + + + + + Split. + When the item is serialized out as xml, its value is "split". + + + + + Frozen. + When the item is serialized out as xml, its value is "frozen". + + + + + Frozen Split. + When the item is serialized out as xml, its value is "frozenSplit". + + + + + MDX Function Type + + + + + Creates a new MdxFunctionValues enum instance + + + + + Cube Member. + When the item is serialized out as xml, its value is "m". + + + + + Cube Value. + When the item is serialized out as xml, its value is "v". + + + + + Cube Set. + When the item is serialized out as xml, its value is "s". + + + + + Cube Set Count. + When the item is serialized out as xml, its value is "c". + + + + + Cube Ranked Member. + When the item is serialized out as xml, its value is "r". + + + + + Cube Member Property. + When the item is serialized out as xml, its value is "p". + + + + + Cube KPI Member. + When the item is serialized out as xml, its value is "k". + + + + + MDX Set Order + + + + + Creates a new MdxSetOrderValues enum instance + + + + + Unsorted. + When the item is serialized out as xml, its value is "u". + + + + + Ascending. + When the item is serialized out as xml, its value is "a". + + + + + Descending. + When the item is serialized out as xml, its value is "d". + + + + + Alpha Ascending Sort Order. + When the item is serialized out as xml, its value is "aa". + + + + + Alpha Descending Sort Order. + When the item is serialized out as xml, its value is "ad". + + + + + Natural Ascending. + When the item is serialized out as xml, its value is "na". + + + + + Natural Descending. + When the item is serialized out as xml, its value is "nd". + + + + + MDX KPI Property + + + + + Creates a new MdxKPIPropertyValues enum instance + + + + + Value. + When the item is serialized out as xml, its value is "v". + + + + + Goal. + When the item is serialized out as xml, its value is "g". + + + + + Status. + When the item is serialized out as xml, its value is "s". + + + + + Trend. + When the item is serialized out as xml, its value is "t". + + + + + Weight. + When the item is serialized out as xml, its value is "w". + + + + + Current Time Member. + When the item is serialized out as xml, its value is "m". + + + + + Border Line Styles + + + + + Creates a new BorderStyleValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Thin Border. + When the item is serialized out as xml, its value is "thin". + + + + + Medium Border. + When the item is serialized out as xml, its value is "medium". + + + + + Dashed. + When the item is serialized out as xml, its value is "dashed". + + + + + Dotted. + When the item is serialized out as xml, its value is "dotted". + + + + + Thick Line Border. + When the item is serialized out as xml, its value is "thick". + + + + + Double Line. + When the item is serialized out as xml, its value is "double". + + + + + Hairline Border. + When the item is serialized out as xml, its value is "hair". + + + + + Medium Dashed. + When the item is serialized out as xml, its value is "mediumDashed". + + + + + Dash Dot. + When the item is serialized out as xml, its value is "dashDot". + + + + + Medium Dash Dot. + When the item is serialized out as xml, its value is "mediumDashDot". + + + + + Dash Dot Dot. + When the item is serialized out as xml, its value is "dashDotDot". + + + + + Medium Dash Dot Dot. + When the item is serialized out as xml, its value is "mediumDashDotDot". + + + + + Slant Dash Dot. + When the item is serialized out as xml, its value is "slantDashDot". + + + + + Pattern Type + + + + + Creates a new PatternValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Solid. + When the item is serialized out as xml, its value is "solid". + + + + + Medium Gray. + When the item is serialized out as xml, its value is "mediumGray". + + + + + Dary Gray. + When the item is serialized out as xml, its value is "darkGray". + + + + + Light Gray. + When the item is serialized out as xml, its value is "lightGray". + + + + + Dark Horizontal. + When the item is serialized out as xml, its value is "darkHorizontal". + + + + + Dark Vertical. + When the item is serialized out as xml, its value is "darkVertical". + + + + + Dark Down. + When the item is serialized out as xml, its value is "darkDown". + + + + + Dark Up. + When the item is serialized out as xml, its value is "darkUp". + + + + + Dark Grid. + When the item is serialized out as xml, its value is "darkGrid". + + + + + Dark Trellis. + When the item is serialized out as xml, its value is "darkTrellis". + + + + + Light Horizontal. + When the item is serialized out as xml, its value is "lightHorizontal". + + + + + Light Vertical. + When the item is serialized out as xml, its value is "lightVertical". + + + + + Light Down. + When the item is serialized out as xml, its value is "lightDown". + + + + + Light Up. + When the item is serialized out as xml, its value is "lightUp". + + + + + Light Grid. + When the item is serialized out as xml, its value is "lightGrid". + + + + + Light Trellis. + When the item is serialized out as xml, its value is "lightTrellis". + + + + + Gray 0.125. + When the item is serialized out as xml, its value is "gray125". + + + + + Gray 0.0625. + When the item is serialized out as xml, its value is "gray0625". + + + + + Gradient Type + + + + + Creates a new GradientValues enum instance + + + + + Linear Gradient. + When the item is serialized out as xml, its value is "linear". + + + + + Path. + When the item is serialized out as xml, its value is "path". + + + + + Horizontal Alignment Type + + + + + Creates a new HorizontalAlignmentValues enum instance + + + + + General Horizontal Alignment. + When the item is serialized out as xml, its value is "general". + + + + + Left Horizontal Alignment. + When the item is serialized out as xml, its value is "left". + + + + + Centered Horizontal Alignment. + When the item is serialized out as xml, its value is "center". + + + + + Right Horizontal Alignment. + When the item is serialized out as xml, its value is "right". + + + + + Fill. + When the item is serialized out as xml, its value is "fill". + + + + + Justify. + When the item is serialized out as xml, its value is "justify". + + + + + Center Continuous Horizontal Alignment. + When the item is serialized out as xml, its value is "centerContinuous". + + + + + Distributed Horizontal Alignment. + When the item is serialized out as xml, its value is "distributed". + + + + + Vertical Alignment Types + + + + + Creates a new VerticalAlignmentValues enum instance + + + + + Align Top. + When the item is serialized out as xml, its value is "top". + + + + + Centered Vertical Alignment. + When the item is serialized out as xml, its value is "center". + + + + + Aligned To Bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + Justified Vertically. + When the item is serialized out as xml, its value is "justify". + + + + + Distributed Vertical Alignment. + When the item is serialized out as xml, its value is "distributed". + + + + + Table Style Type + + + + + Creates a new TableStyleValues enum instance + + + + + Whole Table Style. + When the item is serialized out as xml, its value is "wholeTable". + + + + + Header Row Style. + When the item is serialized out as xml, its value is "headerRow". + + + + + Total Row Style. + When the item is serialized out as xml, its value is "totalRow". + + + + + First Column Style. + When the item is serialized out as xml, its value is "firstColumn". + + + + + Last Column Style. + When the item is serialized out as xml, its value is "lastColumn". + + + + + First Row Stripe Style. + When the item is serialized out as xml, its value is "firstRowStripe". + + + + + Second Row Stripe Style. + When the item is serialized out as xml, its value is "secondRowStripe". + + + + + First Column Stripe Style. + When the item is serialized out as xml, its value is "firstColumnStripe". + + + + + Second Column Stripe Style. + When the item is serialized out as xml, its value is "secondColumnStripe". + + + + + First Header Row Style. + When the item is serialized out as xml, its value is "firstHeaderCell". + + + + + Last Header Style. + When the item is serialized out as xml, its value is "lastHeaderCell". + + + + + First Total Row Style. + When the item is serialized out as xml, its value is "firstTotalCell". + + + + + Last Total Row Style. + When the item is serialized out as xml, its value is "lastTotalCell". + + + + + First Subtotal Column Style. + When the item is serialized out as xml, its value is "firstSubtotalColumn". + + + + + Second Subtotal Column Style. + When the item is serialized out as xml, its value is "secondSubtotalColumn". + + + + + Third Subtotal Column Style. + When the item is serialized out as xml, its value is "thirdSubtotalColumn". + + + + + First Subtotal Row Style. + When the item is serialized out as xml, its value is "firstSubtotalRow". + + + + + Second Subtotal Row Style. + When the item is serialized out as xml, its value is "secondSubtotalRow". + + + + + Third Subtotal Row Style. + When the item is serialized out as xml, its value is "thirdSubtotalRow". + + + + + Blank Row Style. + When the item is serialized out as xml, its value is "blankRow". + + + + + First Column Subheading Style. + When the item is serialized out as xml, its value is "firstColumnSubheading". + + + + + Second Column Subheading Style. + When the item is serialized out as xml, its value is "secondColumnSubheading". + + + + + Third Column Subheading Style. + When the item is serialized out as xml, its value is "thirdColumnSubheading". + + + + + First Row Subheading Style. + When the item is serialized out as xml, its value is "firstRowSubheading". + + + + + Second Row Subheading Style. + When the item is serialized out as xml, its value is "secondRowSubheading". + + + + + Third Row Subheading Style. + When the item is serialized out as xml, its value is "thirdRowSubheading". + + + + + Page Field Labels Style. + When the item is serialized out as xml, its value is "pageFieldLabels". + + + + + Page Field Values Style. + When the item is serialized out as xml, its value is "pageFieldValues". + + + + + Vertical Alignment Run Types + + + + + Creates a new VerticalAlignmentRunValues enum instance + + + + + Baseline. + When the item is serialized out as xml, its value is "baseline". + + + + + Superscript. + When the item is serialized out as xml, its value is "superscript". + + + + + Subscript. + When the item is serialized out as xml, its value is "subscript". + + + + + Font scheme Styles + + + + + Creates a new FontSchemeValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Major Font. + When the item is serialized out as xml, its value is "major". + + + + + Minor Font. + When the item is serialized out as xml, its value is "minor". + + + + + Underline Types + + + + + Creates a new UnderlineValues enum instance + + + + + Single Underline. + When the item is serialized out as xml, its value is "single". + + + + + Double Underline. + When the item is serialized out as xml, its value is "double". + + + + + Accounting Single Underline. + When the item is serialized out as xml, its value is "singleAccounting". + + + + + Accounting Double Underline. + When the item is serialized out as xml, its value is "doubleAccounting". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + DDE Value Types + + + + + Creates a new DdeValues enum instance + + + + + Nil. + When the item is serialized out as xml, its value is "nil". + + + + + Boolean. + When the item is serialized out as xml, its value is "b". + + + + + Real Number. + When the item is serialized out as xml, its value is "n". + + + + + Error. + When the item is serialized out as xml, its value is "e". + + + + + String. + When the item is serialized out as xml, its value is "str". + + + + + Table Type + + + + + Creates a new TableValues enum instance + + + + + Worksheet. + When the item is serialized out as xml, its value is "worksheet". + + + + + XML. + When the item is serialized out as xml, its value is "xml". + + + + + Query Table. + When the item is serialized out as xml, its value is "queryTable". + + + + + Totals Row Function Types + + + + + Creates a new TotalsRowFunctionValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Sum. + When the item is serialized out as xml, its value is "sum". + + + + + Minimum. + When the item is serialized out as xml, its value is "min". + + + + + Maximum. + When the item is serialized out as xml, its value is "max". + + + + + Average. + When the item is serialized out as xml, its value is "average". + + + + + Non Empty Cell Count. + When the item is serialized out as xml, its value is "count". + + + + + Count Numbers. + When the item is serialized out as xml, its value is "countNums". + + + + + StdDev. + When the item is serialized out as xml, its value is "stdDev". + + + + + Var. + When the item is serialized out as xml, its value is "var". + + + + + Custom Formula. + When the item is serialized out as xml, its value is "custom". + + + + + XML Data Types + + + + + Creates a new XmlDataValues enum instance + + + + + String. + When the item is serialized out as xml, its value is "string". + + + + + Normalized String. + When the item is serialized out as xml, its value is "normalizedString". + + + + + Token. + When the item is serialized out as xml, its value is "token". + + + + + Byte. + When the item is serialized out as xml, its value is "byte". + + + + + Unsigned Byte. + When the item is serialized out as xml, its value is "unsignedByte". + + + + + Base 64 Encoded Binary. + When the item is serialized out as xml, its value is "base64Binary". + + + + + Hex Binary. + When the item is serialized out as xml, its value is "hexBinary". + + + + + Integer. + When the item is serialized out as xml, its value is "integer". + + + + + Positive Integer. + When the item is serialized out as xml, its value is "positiveInteger". + + + + + Negative Integer. + When the item is serialized out as xml, its value is "negativeInteger". + + + + + Non Positive Integer. + When the item is serialized out as xml, its value is "nonPositiveInteger". + + + + + Non Negative Integer. + When the item is serialized out as xml, its value is "nonNegativeInteger". + + + + + Integer. + When the item is serialized out as xml, its value is "int". + + + + + Unsigned Integer. + When the item is serialized out as xml, its value is "unsignedInt". + + + + + Long. + When the item is serialized out as xml, its value is "long". + + + + + Unsigned Long. + When the item is serialized out as xml, its value is "unsignedLong". + + + + + Short. + When the item is serialized out as xml, its value is "short". + + + + + Unsigned Short. + When the item is serialized out as xml, its value is "unsignedShort". + + + + + Decimal. + When the item is serialized out as xml, its value is "decimal". + + + + + Float. + When the item is serialized out as xml, its value is "float". + + + + + Double. + When the item is serialized out as xml, its value is "double". + + + + + Boolean. + When the item is serialized out as xml, its value is "boolean". + + + + + Time. + When the item is serialized out as xml, its value is "time". + + + + + Date Time. + When the item is serialized out as xml, its value is "dateTime". + + + + + Duration. + When the item is serialized out as xml, its value is "duration". + + + + + Date. + When the item is serialized out as xml, its value is "date". + + + + + gMonth. + When the item is serialized out as xml, its value is "gMonth". + + + + + gYear. + When the item is serialized out as xml, its value is "gYear". + + + + + gYearMonth. + When the item is serialized out as xml, its value is "gYearMonth". + + + + + gDay. + When the item is serialized out as xml, its value is "gDay". + + + + + gMonthDays. + When the item is serialized out as xml, its value is "gMonthDay". + + + + + Name. + When the item is serialized out as xml, its value is "Name". + + + + + Qname. + When the item is serialized out as xml, its value is "QName". + + + + + NCName. + When the item is serialized out as xml, its value is "NCName". + + + + + Any URI. + When the item is serialized out as xml, its value is "anyURI". + + + + + Language. + When the item is serialized out as xml, its value is "language". + + + + + ID. + When the item is serialized out as xml, its value is "ID". + + + + + IDREF. + When the item is serialized out as xml, its value is "IDREF". + + + + + IDREFS. + When the item is serialized out as xml, its value is "IDREFS". + + + + + ENTITY. + When the item is serialized out as xml, its value is "ENTITY". + + + + + ENTITIES. + When the item is serialized out as xml, its value is "ENTITIES". + + + + + Notation. + When the item is serialized out as xml, its value is "NOTATION". + + + + + NMTOKEN. + When the item is serialized out as xml, its value is "NMTOKEN". + + + + + NMTOKENS. + When the item is serialized out as xml, its value is "NMTOKENS". + + + + + Any Type. + When the item is serialized out as xml, its value is "anyType". + + + + + Volatile Dependency Types + + + + + Creates a new VolatileDependencyValues enum instance + + + + + Real Time Data. + When the item is serialized out as xml, its value is "realTimeData". + + + + + OLAP Formulas. + When the item is serialized out as xml, its value is "olapFunctions". + + + + + Volatile Dependency Value Types + + + + + Creates a new VolatileValues enum instance + + + + + Boolean. + When the item is serialized out as xml, its value is "b". + + + + + Real Number. + When the item is serialized out as xml, its value is "n". + + + + + Error. + When the item is serialized out as xml, its value is "e". + + + + + String. + When the item is serialized out as xml, its value is "s". + + + + + Visibility Types + + + + + Creates a new VisibilityValues enum instance + + + + + Visible. + When the item is serialized out as xml, its value is "visible". + + + + + Hidden. + When the item is serialized out as xml, its value is "hidden". + + + + + Very Hidden. + When the item is serialized out as xml, its value is "veryHidden". + + + + + Comment Display Types + + + + + Creates a new CommentsValues enum instance + + + + + No Comments. + When the item is serialized out as xml, its value is "commNone". + + + + + Show Comment Indicator. + When the item is serialized out as xml, its value is "commIndicator". + + + + + Show Comment and Indicator. + When the item is serialized out as xml, its value is "commIndAndComment". + + + + + Object Display Types + + + + + Creates a new ObjectDisplayValues enum instance + + + + + All. + When the item is serialized out as xml, its value is "all". + + + + + Show Placeholders. + When the item is serialized out as xml, its value is "placeholders". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Sheet Visibility Types + + + + + Creates a new SheetStateValues enum instance + + + + + Visible. + When the item is serialized out as xml, its value is "visible". + + + + + Hidden. + When the item is serialized out as xml, its value is "hidden". + + + + + Very Hidden. + When the item is serialized out as xml, its value is "veryHidden". + + + + + Update Links Behavior Types + + + + + Creates a new UpdateLinksBehaviorValues enum instance + + + + + User Set. + When the item is serialized out as xml, its value is "userSet". + + + + + Never Update Links. + When the item is serialized out as xml, its value is "never". + + + + + Always Update Links. + When the item is serialized out as xml, its value is "always". + + + + + Calculation Mode + + + + + Creates a new CalculateModeValues enum instance + + + + + Manual Calculation Mode. + When the item is serialized out as xml, its value is "manual". + + + + + Automatic. + When the item is serialized out as xml, its value is "auto". + + + + + Automatic Calculation (No Tables). + When the item is serialized out as xml, its value is "autoNoTable". + + + + + Reference Mode + + + + + Creates a new ReferenceModeValues enum instance + + + + + A1 Mode. + When the item is serialized out as xml, its value is "A1". + + + + + R1C1 Reference Mode. + When the item is serialized out as xml, its value is "R1C1". + + + + + Target Screen Size Types + + + + + Creates a new TargetScreenSizeValues enum instance + + + + + 544 x 376 Resolution. + When the item is serialized out as xml, its value is "544x376". + + + + + 640 x 480 Resolution. + When the item is serialized out as xml, its value is "640x480". + + + + + 720 x 512 Resolution. + When the item is serialized out as xml, its value is "720x512". + + + + + 800 x 600 Resolution. + When the item is serialized out as xml, its value is "800x600". + + + + + 1024 x 768 Resolution. + When the item is serialized out as xml, its value is "1024x768". + + + + + 1152 x 882 Resolution. + When the item is serialized out as xml, its value is "1152x882". + + + + + 1152 x 900 Resolution. + When the item is serialized out as xml, its value is "1152x900". + + + + + 1280 x 1024 Resolution. + When the item is serialized out as xml, its value is "1280x1024". + + + + + 1600 x 1200 Resolution. + When the item is serialized out as xml, its value is "1600x1200". + + + + + 1800 x 1440 Resolution. + When the item is serialized out as xml, its value is "1800x1440". + + + + + 1920 x 1200 Resolution. + When the item is serialized out as xml, its value is "1920x1200". + + + + + Defines the TextHorizontalAlignmentValues enumeration. + + + + + Creates a new TextHorizontalAlignmentValues enum instance + + + + + left. + When the item is serialized out as xml, its value is "left". + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + right. + When the item is serialized out as xml, its value is "right". + + + + + justify. + When the item is serialized out as xml, its value is "justify". + + + + + distributed. + When the item is serialized out as xml, its value is "distributed". + + + + + Defines the TextVerticalAlignmentValues enumeration. + + + + + Creates a new TextVerticalAlignmentValues enum instance + + + + + top. + When the item is serialized out as xml, its value is "top". + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + justify. + When the item is serialized out as xml, its value is "justify". + + + + + distributed. + When the item is serialized out as xml, its value is "distributed". + + + + + Cell Type + + + + + Creates a new CellValues enum instance + + + + + Boolean. + When the item is serialized out as xml, its value is "b". + + + + + Number. + When the item is serialized out as xml, its value is "n". + + + + + Error. + When the item is serialized out as xml, its value is "e". + + + + + Shared String. + When the item is serialized out as xml, its value is "s". + + + + + String. + When the item is serialized out as xml, its value is "str". + + + + + Inline String. + When the item is serialized out as xml, its value is "inlineStr". + + + + + d. + When the item is serialized out as xml, its value is "d". + This item is only available in Office 2010 and later. + + + + + Rule Type + + + + + Creates a new PivotAreaValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Normal. + When the item is serialized out as xml, its value is "normal". + + + + + Data. + When the item is serialized out as xml, its value is "data". + + + + + All. + When the item is serialized out as xml, its value is "all". + + + + + Origin. + When the item is serialized out as xml, its value is "origin". + + + + + Field Button. + When the item is serialized out as xml, its value is "button". + + + + + Top Right. + When the item is serialized out as xml, its value is "topRight". + + + + + topEnd. + When the item is serialized out as xml, its value is "topEnd". + This item is only available in Office 2010 and later. + + + + + Document Conformance Class Value + + + + + Creates a new ConformanceClass enum instance + + + + + Office Open XML Strict. + When the item is serialized out as xml, its value is "strict". + + + + + Office Open XML Transitional. + When the item is serialized out as xml, its value is "transitional". + + + + + Defines the ConditionalFormatStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cnfStyle. + + + + + See §14.4.9/§14.11.9 of ISO/IEC 29500-4 for details on this translation + + + + + §14.11.9 of ISO/IEC 29500-4 specifies that this must be 12 characters, so it is padded with 0 on the left + + + + + Initializes a new instance of the ConditionalFormatStyle class. + + + + + Conditional Formatting Bit Mask + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + firstRow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:firstRow + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + lastRow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:lastRow + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + firstColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:firstColumn + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + lastColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:lastColumn + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + oddVBand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:oddVBand + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + evenVBand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:evenVBand + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + oddHBand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:oddHBand + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + evenHBand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:evenHBand + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + firstRowFirstColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:firstRowFirstColumn + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + firstRowLastColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:firstRowLastColumn + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + lastRowFirstColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:lastRowFirstColumn + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + lastRowLastColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:lastRowLastColumn + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines CustomXmlElement - the base class for the customXml elements. + + + + + Initializes a new instance of the CustomXmlElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlBlock class from outer XML. + + Specifies the outer XML of the element. + + + + Gets or sets the custom XML Markup Namespace. + + + Represents the attribute in schema: w:uri. + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main. + + + + + Gets or sets the element name. + + + Represents the attribute in schema: w:element. + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main. + + + + + Gets or sets the CustomXmlProperties which represents the element tag in schema: w:customXmlPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main. + + + + + Document. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:document. + + + The following table lists the possible child types: + + <w:background> + <w:body> + + + + + + Initializes a new instance of the Document class. + + + + + Initializes a new instance of the Document class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Document class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Document class from outer XML. + + Specifies the outer XML of the element. + + + + conformance + Represents the following attribute in the schema: w:conformance + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Document Background. + Represents the following element tag in the schema: w:background. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Body. + Represents the following element tag in the schema: w:body. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Loads the DOM from the MainDocumentPart + + Specifies the part to be loaded. + + + + Saves the DOM into the MainDocumentPart. + + Specifies the part to save to. + + + + Gets the MainDocumentPart associated with this element. + + + + + Defines the Indentation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ind. + + + + + See §14.3.1.2 of ISO/IEC 29500-4 for details on this translation + + + + + Initializes a new instance of the Indentation class. + + + + + Left Indentation + Represents the following attribute in the schema: w:left + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + start, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:start + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Left Indentation in Character Units + Represents the following attribute in the schema: w:leftChars + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + startChars, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:startChars + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Right Indentation + Represents the following attribute in the schema: w:right + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + end, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:end + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Right Indentation in Character Units + Represents the following attribute in the schema: w:rightChars + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + endChars, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:endChars + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Indentation Removed from First Line + Represents the following attribute in the schema: w:hanging + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Indentation Removed From First Line in Character Units + Represents the following attribute in the schema: w:hangingChars + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Additional First Line Indentation + Represents the following attribute in the schema: w:firstLine + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Additional First Line Indentation in Character Units + Represents the following attribute in the schema: w:firstLineChars + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Justification Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:jc. + + + + + See §14.11.2 of ISO/IEC 29500-4 for details on this translation + + + + + Initializes a new instance of the Justification class. + + + + + Alignment Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines Recipients. + + + Inclusion/Exclusion Data for Data Source. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:recipients. + + + The following table lists the possible child types: + + <w:recipientData> + + + + + + Recipients constructor. + + The owner part of the Recipients. + + + + Loads the DOM from an OpenXML part. + + The part to be loaded. + + + + Saves the DOM into the OpenXML part. + + The part to be saved to. + + + + Initializes a new instance of the Recipients class. + + + + + Initializes a new instance of the Recipients class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Recipients class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Recipients class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines SdtElement - the base class for the sdt elements. + + + + + Initializes a new instance of the SdtElement class. + + Specifies the child elements. + + + + Initializes a new instance of the SdtElement class. + + Specifies the child elements. + + + + Initializes a new instance of the SdtElement class. + + Specifies the outer XML of the element. + + + + Gets or sets the SdtProperties. + + + + + Gets or sets the SdtEndCharProperties. + + + + + Suggested Sorting for List of Document Styles. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:stylePaneSortMethod. + + + + + See §14.11.5 of ISO/IEC 29500-4 for details on this translation + + + + + Initializes a new instance of the StylePaneSortMethods class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines Styles. + + + Style Definitions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:styles. + + + The following table lists the possible child types: + + <w:docDefaults> + <w:latentStyles> + <w:style> + + + + + + Styles constructor. + + The owner part of the Styles. + + + + Loads the DOM from an OpenXML part. + + The part to be loaded. + + + + Saves the DOM into the OpenXML part. + + The part to be saved to. + + + + Gets the StylesPart associated with this element, it could either be a StyleDefinitionsPart or a StylesWithEffectsPart. + + + + + Initializes a new instance of the Styles class. + + + + + Initializes a new instance of the Styles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Styles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Styles class from outer XML. + + Specifies the outer XML of the element. + + + + Document Default Paragraph and Run Properties. + Represents the following element tag in the schema: w:docDefaults. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Latent Style Information. + Represents the following element tag in the schema: w:latentStyles. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableJustification Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:jc. + + + + + See §14.11.3 of ISO/IEC 29500-4 for details on this translation + + + + + Initializes a new instance of the TableJustification class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableLook Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblLook. + + + + + See §14.4.11 of ISO/IEC 29500-4 for details on this translation + + + + + According to §14.4.11 of ISO/IEC 29500-4, the string representation of the value must conform to ST_ShortHexNumber as described in §17.18.79 of ISO/IEC 29500-1 + + + + + Initializes a new instance of the TableLook class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + firstRow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:firstRow + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + lastRow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:lastRow + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + firstColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:firstColumn + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + lastColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:lastColumn + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + noHBand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:noHBand + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + noVBand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:noVBand + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Custom Tab Stop. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tab. + + + + + See §14.11.6 of ISO/IEC 29500-4 for details on this translation + + + + + Initializes a new instance of the TabStop class. + + + + + Tab Stop Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tab Leader Character + Represents the following attribute in the schema: w:leader + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tab Stop Position + Represents the following attribute in the schema: w:pos + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TextDirection Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:textDirection. + + + + + See §14.11.7 of ISO/IEC 29500-4 for details on this translation + + + + + Initializes a new instance of the TextDirection class. + + + + + Direction of Text Flow + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Cell Insertion. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cellIns. + + + + + Initializes a new instance of the CellInsertion class. + + + + + + + + Table Cell Deletion. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cellDel. + + + + + Initializes a new instance of the CellDeletion class. + + + + + + + + Defines the CustomXmlInsRangeStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlInsRangeStart. + + + + + Initializes a new instance of the CustomXmlInsRangeStart class. + + + + + + + + Defines the CustomXmlDelRangeStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlDelRangeStart. + + + + + Initializes a new instance of the CustomXmlDelRangeStart class. + + + + + + + + Defines the CustomXmlMoveFromRangeStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlMoveFromRangeStart. + + + + + Initializes a new instance of the CustomXmlMoveFromRangeStart class. + + + + + + + + Defines the CustomXmlMoveToRangeStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlMoveToRangeStart. + + + + + Initializes a new instance of the CustomXmlMoveToRangeStart class. + + + + + + + + Inserted Paragraph. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ins. + + + + + Initializes a new instance of the Inserted class. + + + + + + + + Deleted Paragraph. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:del. + + + + + Initializes a new instance of the Deleted class. + + + + + + + + Move Source Paragraph. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveFrom. + + + + + Initializes a new instance of the MoveFrom class. + + + + + + + + Move Destination Paragraph. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveTo. + + + + + Initializes a new instance of the MoveTo class. + + + + + + + + Defines the TrackChangeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TrackChangeType class. + + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Vertically Merged/Split Table Cells. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cellMerge. + + + + + Initializes a new instance of the CellMerge class. + + + + + vMerge + Represents the following attribute in the schema: w:vMerge + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + vMergeOrig + Represents the following attribute in the schema: w:vMergeOrig + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the BookmarkStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bookmarkStart. + + + + + Initializes a new instance of the BookmarkStart class. + + + + + name + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + colFirst + Represents the following attribute in the schema: w:colFirst + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + colLast + Represents the following attribute in the schema: w:colLast + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + displacedByCustomXml + Represents the following attribute in the schema: w:displacedByCustomXml + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the BookmarkEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bookmarkEnd. + + + + + Initializes a new instance of the BookmarkEnd class. + + + + + + + + Defines the CommentRangeStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:commentRangeStart. + + + + + Initializes a new instance of the CommentRangeStart class. + + + + + + + + Defines the CommentRangeEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:commentRangeEnd. + + + + + Initializes a new instance of the CommentRangeEnd class. + + + + + + + + Defines the MoveFromRangeEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveFromRangeEnd. + + + + + Initializes a new instance of the MoveFromRangeEnd class. + + + + + + + + Defines the MoveToRangeEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveToRangeEnd. + + + + + Initializes a new instance of the MoveToRangeEnd class. + + + + + + + + Defines the MarkupRangeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the MarkupRangeType class. + + + + + displacedByCustomXml + Represents the following attribute in the schema: w:displacedByCustomXml + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the MoveFromRangeStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveFromRangeStart. + + + + + Initializes a new instance of the MoveFromRangeStart class. + + + + + + + + Defines the MoveToRangeStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveToRangeStart. + + + + + Initializes a new instance of the MoveToRangeStart class. + + + + + + + + Defines the MoveBookmarkType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the MoveBookmarkType class. + + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + name + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + colFirst + Represents the following attribute in the schema: w:colFirst + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + colLast + Represents the following attribute in the schema: w:colLast + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + displacedByCustomXml + Represents the following attribute in the schema: w:displacedByCustomXml + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the CustomXmlInsRangeEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlInsRangeEnd. + + + + + Initializes a new instance of the CustomXmlInsRangeEnd class. + + + + + + + + Defines the CustomXmlDelRangeEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlDelRangeEnd. + + + + + Initializes a new instance of the CustomXmlDelRangeEnd class. + + + + + + + + Defines the CustomXmlMoveFromRangeEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlMoveFromRangeEnd. + + + + + Initializes a new instance of the CustomXmlMoveFromRangeEnd class. + + + + + + + + Defines the CustomXmlMoveToRangeEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlMoveToRangeEnd. + + + + + Initializes a new instance of the CustomXmlMoveToRangeEnd class. + + + + + + + + Comment Content Reference Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:commentReference. + + + + + Initializes a new instance of the CommentReference class. + + + + + + + + Defines the MarkupType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the MarkupType class. + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the ParagraphStyleId Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pStyle. + + + + + Initializes a new instance of the ParagraphStyleId class. + + + + + + + + Date Display Mask. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dateFormat. + + + + + Initializes a new instance of the DateFormat class. + + + + + + + + Document Part Gallery Filter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPartGallery. + + + + + Initializes a new instance of the DocPartGallery class. + + + + + + + + Document Part Category Filter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPartCategory. + + + + + Initializes a new instance of the DocPartCategory class. + + + + + + + + Document Part Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPart. + + + + + Initializes a new instance of the DocPartReference class. + + + + + + + + Custom XML Element Placeholder Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:placeholder. + + + + + Initializes a new instance of the CustomXmlPlaceholder class. + + + + + + + + Defines the TableCaption Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:tblCaption. + + + + + Initializes a new instance of the TableCaption class. + + + + + + + + Defines the TableDescription Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:tblDescription. + + + + + Initializes a new instance of the TableDescription class. + + + + + + + + Data Source Name for Column. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:name. + + + + + Initializes a new instance of the Name class. + + + + + + + + Predefined Merge Field Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:mappedName. + + + + + Initializes a new instance of the MappedName class. + + + + + + + + UDL Connection String. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:udl. + + + + + Initializes a new instance of the UdlConnectionString class. + + + + + + + + Data Source Table Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:table. + + + + + Initializes a new instance of the DataSourceTableName class. + + + + + + + + Data Source Connection String. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:connectString. + + + + + Initializes a new instance of the ConnectString class. + + + + + + + + Query For Data Source Records To Merge. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:query. + + + + + Initializes a new instance of the Query class. + + + + + + + + Column Containing E-mail Address. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:addressFieldName. + + + + + Initializes a new instance of the AddressFieldName class. + + + + + + + + Merged E-mail or Fax Subject Line. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:mailSubject. + + + + + Initializes a new instance of the MailSubject class. + + + + + + + + Frame Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sz. + + + + + Initializes a new instance of the FrameSize class. + + + + + + + + Associated Paragraph Style Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:style. + + + + + Initializes a new instance of the StyleId class. + + + + + + + + Description for Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:description. + + + + + Initializes a new instance of the Description class. + + + + + + + + Defines the SdtAlias Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:alias. + + + + + Initializes a new instance of the SdtAlias class. + + + + + + + + Defines the Tag Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tag. + + + + + Initializes a new instance of the Tag class. + + + + + + + + Attached Custom XML Schema. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:attachedSchema. + + + + + Initializes a new instance of the AttachedSchema class. + + + + + + + + Radix Point for Field Code Evaluation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:decimalSymbol. + + + + + Initializes a new instance of the DecimalSymbol class. + + + + + + + + List Separator for Field Code Evaluation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:listSeparator. + + + + + Initializes a new instance of the ListSeparator class. + + + + + + + + Defines the WebPageEncoding Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:encoding. + + + + + Initializes a new instance of the WebPageEncoding class. + + + + + + + + Defines the AltName Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:altName. + + + + + Initializes a new instance of the AltName class. + + + + + + + + Defines the StringType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the StringType class. + + + + + String Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the KeepNext Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:keepNext. + + + + + Initializes a new instance of the KeepNext class. + + + + + + + + Defines the KeepLines Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:keepLines. + + + + + Initializes a new instance of the KeepLines class. + + + + + + + + Defines the PageBreakBefore Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pageBreakBefore. + + + + + Initializes a new instance of the PageBreakBefore class. + + + + + + + + Defines the WidowControl Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:widowControl. + + + + + Initializes a new instance of the WidowControl class. + + + + + + + + Defines the SuppressLineNumbers Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suppressLineNumbers. + + + + + Initializes a new instance of the SuppressLineNumbers class. + + + + + + + + Defines the SuppressAutoHyphens Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suppressAutoHyphens. + + + + + Initializes a new instance of the SuppressAutoHyphens class. + + + + + + + + Defines the Kinsoku Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:kinsoku. + + + + + Initializes a new instance of the Kinsoku class. + + + + + + + + Defines the WordWrap Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:wordWrap. + + + + + Initializes a new instance of the WordWrap class. + + + + + + + + Defines the OverflowPunctuation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:overflowPunct. + + + + + Initializes a new instance of the OverflowPunctuation class. + + + + + + + + Defines the TopLinePunctuation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:topLinePunct. + + + + + Initializes a new instance of the TopLinePunctuation class. + + + + + + + + Defines the AutoSpaceDE Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autoSpaceDE. + + + + + Initializes a new instance of the AutoSpaceDE class. + + + + + + + + Defines the AutoSpaceDN Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autoSpaceDN. + + + + + Initializes a new instance of the AutoSpaceDN class. + + + + + + + + Defines the BiDi Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bidi. + + + + + Initializes a new instance of the BiDi class. + + + + + + + + Defines the AdjustRightIndent Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:adjustRightInd. + + + + + Initializes a new instance of the AdjustRightIndent class. + + + + + + + + Defines the SnapToGrid Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:snapToGrid. + + + + + Initializes a new instance of the SnapToGrid class. + + + + + + + + Defines the ContextualSpacing Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:contextualSpacing. + + + + + Initializes a new instance of the ContextualSpacing class. + + + + + + + + Defines the MirrorIndents Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:mirrorIndents. + + + + + Initializes a new instance of the MirrorIndents class. + + + + + + + + Defines the SuppressOverlap Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suppressOverlap. + + + + + Initializes a new instance of the SuppressOverlap class. + + + + + + + + Defines the Bold Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:b. + + + + + Initializes a new instance of the Bold class. + + + + + + + + Defines the BoldComplexScript Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bCs. + + + + + Initializes a new instance of the BoldComplexScript class. + + + + + + + + Defines the Italic Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:i. + + + + + Initializes a new instance of the Italic class. + + + + + + + + Defines the ItalicComplexScript Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:iCs. + + + + + Initializes a new instance of the ItalicComplexScript class. + + + + + + + + Defines the Caps Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:caps. + + + + + Initializes a new instance of the Caps class. + + + + + + + + Defines the SmallCaps Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:smallCaps. + + + + + Initializes a new instance of the SmallCaps class. + + + + + + + + Defines the Strike Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:strike. + + + + + Initializes a new instance of the Strike class. + + + + + + + + Defines the DoubleStrike Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dstrike. + + + + + Initializes a new instance of the DoubleStrike class. + + + + + + + + Defines the Outline Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:outline. + + + + + Initializes a new instance of the Outline class. + + + + + + + + Defines the Shadow Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:shadow. + + + + + Initializes a new instance of the Shadow class. + + + + + + + + Defines the Emboss Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:emboss. + + + + + Initializes a new instance of the Emboss class. + + + + + + + + Defines the Imprint Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:imprint. + + + + + Initializes a new instance of the Imprint class. + + + + + + + + Defines the NoProof Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noProof. + + + + + Initializes a new instance of the NoProof class. + + + + + + + + Defines the Vanish Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:vanish. + + + + + Initializes a new instance of the Vanish class. + + + + + + + + Defines the WebHidden Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:webHidden. + + + + + Initializes a new instance of the WebHidden class. + + + + + + + + Defines the RightToLeftText Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rtl. + + + + + Initializes a new instance of the RightToLeftText class. + + + + + + + + Defines the ComplexScript Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cs. + + + + + Initializes a new instance of the ComplexScript class. + + + + + + + + Defines the SpecVanish Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:specVanish. + + + + + Initializes a new instance of the SpecVanish class. + + + + + + + + Defines the OfficeMath Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:oMath. + + + + + Initializes a new instance of the OfficeMath class. + + + + + + + + Defines the Hidden Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hidden. + + + + + Initializes a new instance of the Hidden class. + + + + + + + + Defines the FormProtection Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:formProt. + + + + + Initializes a new instance of the FormProtection class. + + + + + + + + Defines the NoEndnote Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noEndnote. + + + + + Initializes a new instance of the NoEndnote class. + + + + + + + + Defines the TitlePage Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:titlePg. + + + + + Initializes a new instance of the TitlePage class. + + + + + + + + Defines the GutterOnRight Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rtlGutter. + + + + + Initializes a new instance of the GutterOnRight class. + + + + + + + + Form Field Enabled. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:enabled. + + + + + Initializes a new instance of the Enabled class. + + + + + + + + Recalculate Fields When Current Field Is Modified. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:calcOnExit. + + + + + Initializes a new instance of the CalculateOnExit class. + + + + + + + + Automatically Size Form Field. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sizeAuto. + + + + + Initializes a new instance of the AutomaticallySizeFormField class. + + + + + + + + Default Checkbox Form Field State. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:default. + + + + + Initializes a new instance of the DefaultCheckBoxFormFieldState class. + + + + + + + + Checkbox Form Field State. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:checked. + + + + + Initializes a new instance of the Checked class. + + + + + + + + Keep Source Formatting on Import. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:matchSrc. + + + + + Initializes a new instance of the MatchSource class. + + + + + + + + Invalidated Field Cache. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dirty. + + + + + Initializes a new instance of the Dirty class. + + + + + + + + Built-In Document Part. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPartUnique. + + + + + Initializes a new instance of the DocPartUnique class. + + + + + + + + Record Is Included in Mail Merge. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:active. + + + + + Initializes a new instance of the Active class. + + + + + + + + Use Country/Region-Based Address Field Ordering. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dynamicAddress. + + + + + Initializes a new instance of the DynamicAddress class. + + + + + + + + First Row of Data Source Contains Column Names. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:fHdr. + + + + + Initializes a new instance of the FirstRowHeader class. + + + + + + + + Query Contains Link to External Query File. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:linkToQuery. + + + + + Initializes a new instance of the LinkToQuery class. + + + + + + + + Remove Blank Lines from Merged Documents. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotSuppressBlankLines. + + + + + Initializes a new instance of the DoNotSuppressBlankLines class. + + + + + + + + Merged Document To E-Mail Attachment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:mailAsAttachment. + + + + + Initializes a new instance of the MailAsAttachment class. + + + + + + + + View Merged Data Within Document. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:viewMergedData. + + + + + Initializes a new instance of the ViewMergedData class. + + + + + + + + Display All Levels Using Arabic Numerals. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:isLgl. + + + + + Initializes a new instance of the IsLegalNumberingStyle class. + + + + + + + + Data for HTML blockquote Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:blockQuote. + + + + + Initializes a new instance of the BlockQuote class. + + + + + + + + Data for HTML body Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bodyDiv. + + + + + Initializes a new instance of the BodyDiv class. + + + + + + + + Use Simplified Rules For Table Border Conflicts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:useSingleBorderforContiguousCells. + + + + + Initializes a new instance of the UseSingleBorderForContiguousCells class. + + + + + + + + Emulate WordPerfect 6.x Paragraph Justification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:wpJustification. + + + + + Initializes a new instance of the WordPerfectJustification class. + + + + + + + + Do Not Create Custom Tab Stop for Hanging Indent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noTabHangInd. + + + + + Initializes a new instance of the NoTabHangIndent class. + + + + + + + + Do Not Add Leading Between Lines of Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noLeading. + + + + + Initializes a new instance of the NoLeading class. + + + + + + + + Add Additional Space Below Baseline For Underlined East Asian Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:spaceForUL. + + + + + Initializes a new instance of the SpaceForUnderline class. + + + + + + + + Do Not Balance Text Columns within a Section. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noColumnBalance. + + + + + Initializes a new instance of the NoColumnBalance class. + + + + + + + + Balance Single Byte and Double Byte Characters. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:balanceSingleByteDoubleByteWidth. + + + + + Initializes a new instance of the BalanceSingleByteDoubleByteWidth class. + + + + + + + + Do Not Center Content on Lines With Exact Line Height. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noExtraLineSpacing. + + + + + Initializes a new instance of the NoExtraLineSpacing class. + + + + + + + + Convert Backslash To Yen Sign When Entered. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotLeaveBackslashAlone. + + + + + Initializes a new instance of the DoNotLeaveBackslashAlone class. + + + + + + + + Underline All Trailing Spaces. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ulTrailSpace. + + + + + Initializes a new instance of the UnderlineTrailingSpaces class. + + + + + + + + Don't Justify Lines Ending in Soft Line Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotExpandShiftReturn. + + + + + Initializes a new instance of the DoNotExpandShiftReturn class. + + + + + + + + Only Expand/Condense Text By Whole Points. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:spacingInWholePoints. + + + + + Initializes a new instance of the SpacingInWholePoints class. + + + + + + + + Emulate Word 6.0 Line Wrapping for East Asian Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lineWrapLikeWord6. + + + + + Initializes a new instance of the LineWrapLikeWord6 class. + + + + + + + + Print Body Text before Header/Footer Contents. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:printBodyTextBeforeHeader. + + + + + Initializes a new instance of the PrintBodyTextBeforeHeader class. + + + + + + + + Print Colors as Black And White without Dithering. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:printColBlack. + + + + + Initializes a new instance of the PrintColorBlackWhite class. + + + + + + + + Space width. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:wpSpaceWidth. + + + + + Initializes a new instance of the WordPerfectSpaceWidth class. + + + + + + + + Display Page/Column Breaks Present in Frames. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:showBreaksInFrames. + + + + + Initializes a new instance of the ShowBreaksInFrames class. + + + + + + + + Increase Priority Of Font Size During Font Substitution. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:subFontBySize. + + + + + Initializes a new instance of the SubFontBySize class. + + + + + + + + Ignore Exact Line Height for Last Line on Page. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suppressBottomSpacing. + + + + + Initializes a new instance of the SuppressBottomSpacing class. + + + + + + + + Ignore Minimum and Exact Line Height for First Line on Page. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suppressTopSpacing. + + + + + Initializes a new instance of the SuppressTopSpacing class. + + + + + + + + Ignore Minimum Line Height for First Line on Page. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suppressSpacingAtTopOfPage. + + + + + Initializes a new instance of the SuppressSpacingAtTopOfPage class. + + + + + + + + Emulate WordPerfect 5.x Line Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suppressTopSpacingWP. + + + + + Initializes a new instance of the SuppressTopSpacingWordPerfect class. + + + + + + + + Do Not Use Space Before On First Line After a Page Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suppressSpBfAfterPgBrk. + + + + + Initializes a new instance of the SuppressSpacingBeforeAfterPageBreak class. + + + + + + + + Swap Paragraph Borders on Odd Numbered Pages. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:swapBordersFacingPages. + + + + + Initializes a new instance of the SwapBordersFacingPages class. + + + + + + + + Treat Backslash Quotation Delimiter as Two Quotation Marks. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:convMailMergeEsc. + + + + + Initializes a new instance of the ConvertMailMergeEscape class. + + + + + + + + Emulate WordPerfect 6.x Font Height Calculation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:truncateFontHeightsLikeWP6. + + + + + Initializes a new instance of the TruncateFontHeightsLikeWordPerfect class. + + + + + + + + Emulate Word 5.x for the Macintosh Small Caps Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:mwSmallCaps. + + + + + Initializes a new instance of the MacWordSmallCaps class. + + + + + + + + Use Printer Metrics To Display Documents. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:usePrinterMetrics. + + + + + Initializes a new instance of the UsePrinterMetrics class. + + + + + + + + Do Not Suppress Paragraph Borders Next To Frames. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotSuppressParagraphBorders. + + + + + Initializes a new instance of the DoNotSuppressParagraphBorders class. + + + + + + + + Line Wrap Trailing Spaces. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:wrapTrailSpaces. + + + + + Initializes a new instance of the WrapTrailSpaces class. + + + + + + + + Emulate Word 6.x/95/97 Footnote Placement. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footnoteLayoutLikeWW8. + + + + + Initializes a new instance of the FootnoteLayoutLikeWord8 class. + + + + + + + + Emulate Word 97 Text Wrapping Around Floating Objects. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:shapeLayoutLikeWW8. + + + + + Initializes a new instance of the ShapeLayoutLikeWord8 class. + + + + + + + + Align Table Rows Independently. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:alignTablesRowByRow. + + + + + Initializes a new instance of the AlignTablesRowByRow class. + + + + + + + + Ignore Width of Last Tab Stop When Aligning Paragraph If It Is Not Left Aligned. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:forgetLastTabAlignment. + + + + + Initializes a new instance of the ForgetLastTabAlignment class. + + + + + + + + Add Document Grid Line Pitch To Lines in Table Cells. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:adjustLineHeightInTable. + + + + + Initializes a new instance of the AdjustLineHeightInTable class. + + + + + + + + Emulate Word 95 Full-Width Character Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autoSpaceLikeWord95. + + + + + Initializes a new instance of the AutoSpaceLikeWord95 class. + + + + + + + + Do Not Increase Line Height for Raised/Lowered Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noSpaceRaiseLower. + + + + + Initializes a new instance of the NoSpaceRaiseLower class. + + + + + + + + Use Fixed Paragraph Spacing for HTML Auto Setting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotUseHTMLParagraphAutoSpacing. + + + + + Initializes a new instance of the DoNotUseHTMLParagraphAutoSpacing class. + + + + + + + + Ignore Space Before Table When Deciding If Table Should Wrap Floating Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:layoutRawTableWidth. + + + + + Initializes a new instance of the LayoutRawTableWidth class. + + + + + + + + Allow Table Rows to Wrap Inline Objects Independently. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:layoutTableRowsApart. + + + + + Initializes a new instance of the LayoutTableRowsApart class. + + + + + + + + Emulate Word 97 East Asian Line Breaking. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:useWord97LineBreakRules. + + + + + Initializes a new instance of the UseWord97LineBreakRules class. + + + + + + + + Do Not Allow Floating Tables To Break Across Pages. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotBreakWrappedTables. + + + + + Initializes a new instance of the DoNotBreakWrappedTables class. + + + + + + + + Do Not Snap to Document Grid in Table Cells with Objects. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotSnapToGridInCell. + + + + + Initializes a new instance of the DoNotSnapToGridInCell class. + + + + + + + + Select Field When First or Last Character Is Selected. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:selectFldWithFirstOrLastChar. + + + + + Initializes a new instance of the SelectFieldWithFirstOrLastChar class. + + + + + + + + Use Legacy Ethiopic and Amharic Line Breaking Rules. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:applyBreakingRules. + + + + + Initializes a new instance of the ApplyBreakingRules class. + + + + + + + + Do Not Allow Hanging Punctuation With Character Grid. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotWrapTextWithPunct. + + + + + Initializes a new instance of the DoNotWrapTextWithPunctuation class. + + + + + + + + Do Not Compress Compressible Characters When Using Document Grid. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotUseEastAsianBreakRules. + + + + + Initializes a new instance of the DoNotUseEastAsianBreakRules class. + + + + + + + + Emulate Word 2002 Table Style Rules. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:useWord2002TableStyleRules. + + + + + Initializes a new instance of the UseWord2002TableStyleRules class. + + + + + + + + Allow Tables to AutoFit Into Page Margins. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:growAutofit. + + + + + Initializes a new instance of the GrowAutofit class. + + + + + + + + Do Not Bypass East Asian/Complex Script Layout Code. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:useFELayout. + + + + + Initializes a new instance of the UseFarEastLayout class. + + + + + + + + Do Not Automatically Apply List Paragraph Style To Bulleted/Numbered Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:useNormalStyleForList. + + + + + Initializes a new instance of the UseNormalStyleForList class. + + + + + + + + Ignore Hanging Indent When Creating Tab Stop After Numbering. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotUseIndentAsNumberingTabStop. + + + + + Initializes a new instance of the DoNotUseIndentAsNumberingTabStop class. + + + + + + + + Use Alternate Set of East Asian Line Breaking Rules. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:useAltKinsokuLineBreakRules. + + + + + Initializes a new instance of the UseAltKinsokuLineBreakRules class. + + + + + + + + Allow Contextual Spacing of Paragraphs in Tables. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:allowSpaceOfSameStyleInTable. + + + + + Initializes a new instance of the AllowSpaceOfSameStyleInTable class. + + + + + + + + Do Not Ignore Floating Objects When Calculating Paragraph Indentation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotSuppressIndentation. + + + + + Initializes a new instance of the DoNotSuppressIndentation class. + + + + + + + + Do Not AutoFit Tables To Fit Next To Wrapped Objects. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotAutofitConstrainedTables. + + + + + Initializes a new instance of the DoNotAutofitConstrainedTables class. + + + + + + + + Allow Table Columns To Exceed Preferred Widths of Constituent Cells. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autofitToFirstFixedWidthCell. + + + + + Initializes a new instance of the AutofitToFirstFixedWidthCell class. + + + + + + + + Underline Following Character Following Numbering. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:underlineTabInNumList. + + + + + Initializes a new instance of the UnderlineTabInNumberingList class. + + + + + + + + Always Use Fixed Width for Hangul Characters. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:displayHangulFixedWidth. + + + + + Initializes a new instance of the DisplayHangulFixedWidth class. + + + + + + + + Always Move Paragraph Mark to Page after a Page Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:splitPgBreakAndParaMark. + + + + + Initializes a new instance of the SplitPageBreakAndParagraphMark class. + + + + + + + + Don't Vertically Align Cells Containing Floating Objects. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotVertAlignCellWithSp. + + + + + Initializes a new instance of the DoNotVerticallyAlignCellWithShape class. + + + + + + + + Don't Break Table Rows Around Floating Tables. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotBreakConstrainedForcedTable. + + + + + Initializes a new instance of the DoNotBreakConstrainedForcedTable class. + + + + + + + + Ignore Vertical Alignment in Textboxes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotVertAlignInTxbx. + + + + + Initializes a new instance of the DoNotVerticallyAlignInTextBox class. + + + + + + + + Use ANSI Kerning Pairs from Fonts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:useAnsiKerningPairs. + + + + + Initializes a new instance of the UseAnsiKerningPairs class. + + + + + + + + Use Cached Paragraph Information for Column Balancing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cachedColBalance. + + + + + Initializes a new instance of the CachedColumnBalance class. + + + + + + + + Defines the ShowingPlaceholder Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:showingPlcHdr. + + + + + Initializes a new instance of the ShowingPlaceholder class. + + + + + + + + Defines the TemporarySdt Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:temporary. + + + + + Initializes a new instance of the TemporarySdt class. + + + + + + + + Remove Personal Information from Document Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:removePersonalInformation. + + + + + Initializes a new instance of the RemovePersonalInformation class. + + + + + + + + Remove Date and Time from Annotations. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:removeDateAndTime. + + + + + Initializes a new instance of the RemoveDateAndTime class. + + + + + + + + Do Not Display Visual Boundary For Header/Footer or Between Pages. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotDisplayPageBoundaries. + + + + + Initializes a new instance of the DoNotDisplayPageBoundaries class. + + + + + + + + Display Background Objects When Displaying Document. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:displayBackgroundShape. + + + + + Initializes a new instance of the DisplayBackgroundShape class. + + + + + + + + Print PostScript Codes With Document Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:printPostScriptOverText. + + + + + Initializes a new instance of the PrintPostScriptOverText class. + + + + + + + + Print Fractional Character Widths. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:printFractionalCharacterWidth. + + + + + Initializes a new instance of the PrintFractionalCharacterWidth class. + + + + + + + + Only Print Form Field Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:printFormsData. + + + + + Initializes a new instance of the PrintFormsData class. + + + + + + + + Embed TrueType Fonts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:embedTrueTypeFonts. + + + + + Initializes a new instance of the EmbedTrueTypeFonts class. + + + + + + + + Embed Common System Fonts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:embedSystemFonts. + + + + + Initializes a new instance of the EmbedSystemFonts class. + + + + + + + + Subset Fonts When Embedding. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:saveSubsetFonts. + + + + + Initializes a new instance of the SaveSubsetFonts class. + + + + + + + + Only Save Form Field Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:saveFormsData. + + + + + Initializes a new instance of the SaveFormsData class. + + + + + + + + Mirror Page Margins. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:mirrorMargins. + + + + + Initializes a new instance of the MirrorMargins class. + + + + + + + + Align Paragraph and Table Borders with Page Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:alignBordersAndEdges. + + + + + Initializes a new instance of the AlignBorderAndEdges class. + + + + + + + + Page Border Excludes Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bordersDoNotSurroundHeader. + + + + + Initializes a new instance of the BordersDoNotSurroundHeader class. + + + + + + + + Page Border Excludes Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bordersDoNotSurroundFooter. + + + + + Initializes a new instance of the BordersDoNotSurroundFooter class. + + + + + + + + Position Gutter At Top of Page. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:gutterAtTop. + + + + + Initializes a new instance of the GutterAtTop class. + + + + + + + + Do Not Display Visual Indication of Spelling Errors. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hideSpellingErrors. + + + + + Initializes a new instance of the HideSpellingErrors class. + + + + + + + + Do Not Display Visual Indication of Grammatical Errors. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hideGrammaticalErrors. + + + + + Initializes a new instance of the HideGrammaticalErrors class. + + + + + + + + Structured Document Tag Placeholder Text Should be Resaved. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:formsDesign. + + + + + Initializes a new instance of the FormsDesign class. + + + + + + + + Automatically Update Styles From Document Template. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:linkStyles. + + + + + Initializes a new instance of the LinkStyles class. + + + + + + + + Track Revisions to Document. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:trackRevisions. + + + + + Initializes a new instance of the TrackRevisions class. + + + + + + + + Do Not Use Move Syntax When Tracking Revisions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotTrackMoves. + + + + + Initializes a new instance of the DoNotTrackMoves class. + + + + + + + + Do Not Track Formatting Revisions When Tracking Revisions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotTrackFormatting. + + + + + Initializes a new instance of the DoNotTrackFormatting class. + + + + + + + + Allow Automatic Formatting to Override Formatting Protection Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autoFormatOverride. + + + + + Initializes a new instance of the AutoFormatOverride class. + + + + + + + + Prevent Modification of Themes Part. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:styleLockTheme. + + + + + Initializes a new instance of the StyleLockThemesPart class. + + + + + + + + Prevent Replacement of Styles Part. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:styleLockQFSet. + + + + + Initializes a new instance of the StyleLockStylesPart class. + + + + + + + + Automatically Hyphenate Document Contents When Displayed. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autoHyphenation. + + + + + Initializes a new instance of the AutoHyphenation class. + + + + + + + + Do Not Hyphenate Words in ALL CAPITAL LETTERS. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotHyphenateCaps. + + + + + Initializes a new instance of the DoNotHyphenateCaps class. + + + + + + + + Show E-Mail Message Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:showEnvelope. + + + + + Initializes a new instance of the ShowEnvelope class. + + + + + + + + Different Even/Odd Page Headers and Footers. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:evenAndOddHeaders. + + + + + Initializes a new instance of the EvenAndOddHeaders class. + + + + + + + + Reverse Book Fold Printing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bookFoldRevPrinting. + + + + + Initializes a new instance of the BookFoldReversePrinting class. + + + + + + + + Book Fold Printing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bookFoldPrinting. + + + + + Initializes a new instance of the BookFoldPrinting class. + + + + + + + + Do Not Use Margins for Drawing Grid Origin. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotUseMarginsForDrawingGridOrigin. + + + + + Initializes a new instance of the DoNotUseMarginsForDrawingGridOrigin class. + + + + + + + + Do Not Show Visual Indicator For Form Fields. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotShadeFormData. + + + + + Initializes a new instance of the DoNotShadeFormData class. + + + + + + + + Never Kern Punctuation Characters. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noPunctuationKerning. + + + + + Initializes a new instance of the NoPunctuationKerning class. + + + + + + + + Print Two Pages Per Sheet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:printTwoOnOne. + + + + + Initializes a new instance of the PrintTwoOnOne class. + + + + + + + + Use Strict Kinsoku Rules for Japanese Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:strictFirstAndLastChars. + + + + + Initializes a new instance of the StrictFirstAndLastChars class. + + + + + + + + Generate Thumbnail For Document On Save. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:savePreviewPicture. + + + + + Initializes a new instance of the SavePreviewPicture class. + + + + + + + + Do Not Validate Custom XML Markup Against Schemas. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotValidateAgainstSchema. + + + + + Initializes a new instance of the DoNotValidateAgainstSchema class. + + + + + + + + Allow Saving Document As XML File When Custom XML Markup Is Invalid. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:saveInvalidXml. + + + + + Initializes a new instance of the SaveInvalidXml class. + + + + + + + + Ignore Mixed Content When Validating Custom XML Markup. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ignoreMixedContent. + + + + + Initializes a new instance of the IgnoreMixedContent class. + + + + + + + + Use Custom XML Element Names as Default Placeholder Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:alwaysShowPlaceholderText. + + + + + Initializes a new instance of the AlwaysShowPlaceholderText class. + + + + + + + + Do Not Show Visual Indicator For Invalid Custom XML Markup. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotDemarcateInvalidXml. + + + + + Initializes a new instance of the DoNotDemarcateInvalidXml class. + + + + + + + + Only Save Custom XML Markup. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:saveXmlDataOnly. + + + + + Initializes a new instance of the SaveXmlDataOnly class. + + + + + + + + Save Document as XML File through Custom XSL Transform. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:useXSLTWhenSaving. + + + + + Initializes a new instance of the UseXsltWhenSaving class. + + + + + + + + Show Visual Indicators for Custom XML Markup Start/End Locations. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:showXMLTags. + + + + + Initializes a new instance of the ShowXmlTags class. + + + + + + + + Do Not Mark Custom XML Elements With No Namespace As Invalid. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:alwaysMergeEmptyNamespace. + + + + + Initializes a new instance of the AlwaysMergeEmptyNamespace class. + + + + + + + + Automatically Recalculate Fields on Open. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:updateFields. + + + + + Initializes a new instance of the UpdateFieldsOnOpen class. + + + + + + + + Disable Features Incompatible With Earlier Word Processing Formats. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:uiCompat97To2003. + + + + + Initializes a new instance of the UICompatibleWith97To2003 class. + + + + + + + + Do Not Include Content in Text Boxes, Footnotes, and Endnotes in Document Statistics. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotIncludeSubdocsInStats. + + + + + Initializes a new instance of the DoNotIncludeSubdocsInStats class. + + + + + + + + Do Not Automatically Compress Images. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotAutoCompressPictures. + + + + + Initializes a new instance of the DoNotAutoCompressPictures class. + + + + + + + + Defines the OptimizeForBrowser Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:optimizeForBrowser. + + + + + Initializes a new instance of the OptimizeForBrowser class. + + + + + + + + Defines the RelyOnVML Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:relyOnVML. + + + + + Initializes a new instance of the RelyOnVML class. + + + + + + + + Defines the AllowPNG Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:allowPNG. + + + + + Initializes a new instance of the AllowPNG class. + + + + + + + + Defines the DoNotRelyOnCSS Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotRelyOnCSS. + + + + + Initializes a new instance of the DoNotRelyOnCSS class. + + + + + + + + Defines the DoNotSaveAsSingleFile Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotSaveAsSingleFile. + + + + + Initializes a new instance of the DoNotSaveAsSingleFile class. + + + + + + + + Defines the DoNotOrganizeInFolder Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotOrganizeInFolder. + + + + + Initializes a new instance of the DoNotOrganizeInFolder class. + + + + + + + + Defines the DoNotUseLongFileNames Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:doNotUseLongFileNames. + + + + + Initializes a new instance of the DoNotUseLongFileNames class. + + + + + + + + Defines the NotTrueType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:notTrueType. + + + + + Initializes a new instance of the NotTrueType class. + + + + + + + + Defines the OnOffType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OnOffType class. + + + + + On/Off Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the FrameProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:framePr. + + + + + Initializes a new instance of the FrameProperties class. + + + + + Drop Cap Frame + Represents the following attribute in the schema: w:dropCap + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Drop Cap Vertical Height in Lines + Represents the following attribute in the schema: w:lines + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frame Width + Represents the following attribute in the schema: w:w + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frame Height + Represents the following attribute in the schema: w:h + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Vertical Frame Padding + Represents the following attribute in the schema: w:vSpace + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Horizontal Frame Padding + Represents the following attribute in the schema: w:hSpace + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Text Wrapping Around Frame + Represents the following attribute in the schema: w:wrap + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frame Horizontal Positioning Base + Represents the following attribute in the schema: w:hAnchor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frame Vertical Positioning Base + Represents the following attribute in the schema: w:vAnchor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Absolute Horizontal Position + Represents the following attribute in the schema: w:x + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Relative Horizontal Position + Represents the following attribute in the schema: w:xAlign + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Absolute Vertical Position + Represents the following attribute in the schema: w:y + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Relative Vertical Position + Represents the following attribute in the schema: w:yAlign + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frame Height Type + Represents the following attribute in the schema: w:hRule + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Lock Frame Anchor to Paragraph + Represents the following attribute in the schema: w:anchorLock + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the NumberingProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numPr. + + + The following table lists the possible child types: + + <w:numId> + <w:ilvl> + <w:ins> + <w:numberingChange> + + + + + + Initializes a new instance of the NumberingProperties class. + + + + + Initializes a new instance of the NumberingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Numbering Level Reference. + Represents the following element tag in the schema: w:ilvl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Definition Instance Reference. + Represents the following element tag in the schema: w:numId. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Paragraph Numbering Properties. + Represents the following element tag in the schema: w:numberingChange. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Inserted Numbering Properties. + Represents the following element tag in the schema: w:ins. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the ParagraphBorders Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pBdr. + + + The following table lists the possible child types: + + <w:top> + <w:left> + <w:bottom> + <w:right> + <w:between> + <w:bar> + + + + + + Initializes a new instance of the ParagraphBorders class. + + + + + Initializes a new instance of the ParagraphBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphBorders class from outer XML. + + Specifies the outer XML of the element. + + + + Paragraph Border Above Identical Paragraphs. + Represents the following element tag in the schema: w:top. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Left Paragraph Border. + Represents the following element tag in the schema: w:left. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Paragraph Border Between Identical Paragraphs. + Represents the following element tag in the schema: w:bottom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Right Paragraph Border. + Represents the following element tag in the schema: w:right. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Paragraph Border Between Identical Paragraphs. + Represents the following element tag in the schema: w:between. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Paragraph Border Between Facing Pages. + Represents the following element tag in the schema: w:bar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Shading Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:shd. + + + + + Initializes a new instance of the Shading class. + + + + + Shading Pattern + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading Pattern Color + Represents the following attribute in the schema: w:color + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading Pattern Theme Color + Represents the following attribute in the schema: w:themeColor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading Pattern Theme Color Tint + Represents the following attribute in the schema: w:themeTint + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading Pattern Theme Color Shade + Represents the following attribute in the schema: w:themeShade + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading Background Color + Represents the following attribute in the schema: w:fill + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading Background Theme Color + Represents the following attribute in the schema: w:themeFill + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading Background Theme Color Tint + Represents the following attribute in the schema: w:themeFillTint + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading Background Theme Color Shade + Represents the following attribute in the schema: w:themeFillShade + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Tabs Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tabs. + + + The following table lists the possible child types: + + <w:tab> + + + + + + Initializes a new instance of the Tabs class. + + + + + Initializes a new instance of the Tabs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tabs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tabs class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SpacingBetweenLines Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:spacing. + + + + + Initializes a new instance of the SpacingBetweenLines class. + + + + + Spacing Above Paragraph + Represents the following attribute in the schema: w:before + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing Above Paragraph IN Line Units + Represents the following attribute in the schema: w:beforeLines + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Automatically Determine Spacing Above Paragraph + Represents the following attribute in the schema: w:beforeAutospacing + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing Below Paragraph + Represents the following attribute in the schema: w:after + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing Below Paragraph in Line Units + Represents the following attribute in the schema: w:afterLines + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Automatically Determine Spacing Below Paragraph + Represents the following attribute in the schema: w:afterAutospacing + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing Between Lines in Paragraph + Represents the following attribute in the schema: w:line + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Type of Spacing Between Lines + Represents the following attribute in the schema: w:lineRule + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TextAlignment Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:textAlignment. + + + + + Initializes a new instance of the TextAlignment class. + + + + + Vertical Character Alignment Position + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TextBoxTightWrap Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:textboxTightWrap. + + + + + Initializes a new instance of the TextBoxTightWrap class. + + + + + Lines to Tight Wrap to Paragraph Extents + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the OutlineLevel Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:outlineLvl. + + + + + Initializes a new instance of the OutlineLevel class. + + + + + + + + Defines the GridSpan Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:gridSpan. + + + + + Initializes a new instance of the GridSpan class. + + + + + + + + Defines the GridBefore Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:gridBefore. + + + + + Initializes a new instance of the GridBefore class. + + + + + + + + Defines the GridAfter Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:gridAfter. + + + + + Initializes a new instance of the GridAfter class. + + + + + + + + Drop-Down List Selection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:result. + + + + + Initializes a new instance of the DropDownListSelection class. + + + + + + + + Record Currently Displayed In Merged Document. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:activeRecord. + + + + + Initializes a new instance of the ActiveRecord class. + + + + + + + + Mail Merge Error Reporting Setting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:checkErrors. + + + + + Initializes a new instance of the CheckErrors class. + + + + + + + + Restart Numbering Level Symbol. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lvlRestart. + + + + + Initializes a new instance of the LevelRestart class. + + + + + + + + Picture Numbering Symbol Definition Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lvlPicBulletId. + + + + + Initializes a new instance of the LevelPictureBulletId class. + + + + + + + + Numbering Level Starting Value Override. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:startOverride. + + + + + Initializes a new instance of the StartOverrideNumberingValue class. + + + + + + + + Last Reviewed Abstract Numbering Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numIdMacAtCleanup. + + + + + Initializes a new instance of the NumberingIdMacAtCleanup class. + + + + + + + + Defines the SdtId Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:id. + + + + + Initializes a new instance of the SdtId class. + + + + + + + + Defines the PixelsPerInch Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pixelsPerInch. + + + + + Initializes a new instance of the PixelsPerInch class. + + + + + + + + Defines the DecimalNumberType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the DecimalNumberType class. + + + + + Decimal Number Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the ParagraphPropertiesChange Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pPrChange. + + + The following table lists the possible child types: + + <w:pPr> + + + + + + Initializes a new instance of the ParagraphPropertiesChange class. + + + + + Initializes a new instance of the ParagraphPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphPropertiesChange class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Paragraph Properties. + Represents the following element tag in the schema: w:pPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Header Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:headerReference. + + + + + Initializes a new instance of the HeaderReference class. + + + + + + + + Footer Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footerReference. + + + + + Initializes a new instance of the FooterReference class. + + + + + + + + Defines the HeaderFooterReferenceType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the HeaderFooterReferenceType class. + + + + + type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Relationship to Part + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:br. + + + + + Initializes a new instance of the Break class. + + + + + Break Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Restart Location For Text Wrapping Break + Represents the following attribute in the schema: w:clear + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:t. + + + + + Initializes a new instance of the Text class. + + + + + Initializes a new instance of the Text class with the specified text content. + + Specifies the text content of the element. + + + + + + + Deleted Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:delText. + + + + + Initializes a new instance of the DeletedText class. + + + + + Initializes a new instance of the DeletedText class with the specified text content. + + Specifies the text content of the element. + + + + + + + Field Code. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:instrText. + + + + + Initializes a new instance of the FieldCode class. + + + + + Initializes a new instance of the FieldCode class with the specified text content. + + Specifies the text content of the element. + + + + + + + Deleted Field Code. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:delInstrText. + + + + + Initializes a new instance of the DeletedFieldCode class. + + + + + Initializes a new instance of the DeletedFieldCode class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the TextType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TextType class. + + + + + Initializes a new instance of the TextType class with the specified text content. + + Specifies the text content of the element. + + + + space + Represents the following attribute in the schema: xml:space + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + Non Breaking Hyphen Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noBreakHyphen. + + + + + Initializes a new instance of the NoBreakHyphen class. + + + + + + + + Optional Hyphen Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:softHyphen. + + + + + Initializes a new instance of the SoftHyphen class. + + + + + + + + Date Block - Short Day Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dayShort. + + + + + Initializes a new instance of the DayShort class. + + + + + + + + Date Block - Short Month Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:monthShort. + + + + + Initializes a new instance of the MonthShort class. + + + + + + + + Date Block - Short Year Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:yearShort. + + + + + Initializes a new instance of the YearShort class. + + + + + + + + Date Block - Long Day Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dayLong. + + + + + Initializes a new instance of the DayLong class. + + + + + + + + Date Block - Long Month Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:monthLong. + + + + + Initializes a new instance of the MonthLong class. + + + + + + + + Date Block - Long Year Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:yearLong. + + + + + Initializes a new instance of the YearLong class. + + + + + + + + Comment Information Block. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:annotationRef. + + + + + Initializes a new instance of the AnnotationReferenceMark class. + + + + + + + + Footnote Reference Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footnoteRef. + + + + + Initializes a new instance of the FootnoteReferenceMark class. + + + + + + + + Endnote Reference Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:endnoteRef. + + + + + Initializes a new instance of the EndnoteReferenceMark class. + + + + + + + + Footnote/Endnote Separator Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:separator. + + + + + Initializes a new instance of the SeparatorMark class. + + + + + + + + Continuation Separator Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:continuationSeparator. + + + + + Initializes a new instance of the ContinuationSeparatorMark class. + + + + + + + + Page Number Block. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pgNum. + + + + + Initializes a new instance of the PageNumber class. + + + + + + + + Carriage Return. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cr. + + + + + Initializes a new instance of the CarriageReturn class. + + + + + + + + Tab Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tab. + + + + + Initializes a new instance of the TabChar class. + + + + + + + + Position of Last Calculated Page Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lastRenderedPageBreak. + + + + + Initializes a new instance of the LastRenderedPageBreak class. + + + + + + + + Defines the SdtContentEquation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:equation. + + + + + Initializes a new instance of the SdtContentEquation class. + + + + + + + + Defines the SdtContentPicture Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:picture. + + + + + Initializes a new instance of the SdtContentPicture class. + + + + + + + + Defines the SdtContentRichText Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:richText. + + + + + Initializes a new instance of the SdtContentRichText class. + + + + + + + + Defines the SdtContentCitation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:citation. + + + + + Initializes a new instance of the SdtContentCitation class. + + + + + + + + Defines the SdtContentGroup Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:group. + + + + + Initializes a new instance of the SdtContentGroup class. + + + + + + + + Defines the SdtContentBibliography Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bibliography. + + + + + Initializes a new instance of the SdtContentBibliography class. + + + + + + + + Upgrade Document on Open. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:forceUpgrade. + + + + + Initializes a new instance of the ForceUpgrade class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Symbol Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sym. + + + + + Initializes a new instance of the SymbolChar class. + + + + + Symbol Character Font + Represents the following attribute in the schema: w:font + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Symbol Character Code + Represents the following attribute in the schema: w:char + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Inline Embedded Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:object. + + + The following table lists the possible child types: + + <o:OLEObject> + <v:arc> + <v:curve> + <v:group> + <v:image> + <v:line> + <v:oval> + <v:polyline> + <v:rect> + <v:roundrect> + <v:shape> + <v:shapetype> + <w:control> + <w:drawing> + <w:objectEmbed> + <w:objectLink> + + + + + + Initializes a new instance of the EmbeddedObject class. + + + + + Initializes a new instance of the EmbeddedObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedObject class from outer XML. + + Specifies the outer XML of the element. + + + + dxaOrig + Represents the following attribute in the schema: w:dxaOrig + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dyaOrig + Represents the following attribute in the schema: w:dyaOrig + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + anchorId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:anchorId + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + VML Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pict. + + + The following table lists the possible child types: + + <o:OLEObject> + <v:arc> + <v:curve> + <v:group> + <v:image> + <v:line> + <v:oval> + <v:polyline> + <v:rect> + <v:roundrect> + <v:shape> + <v:shapetype> + <w:control> + <w:movie> + + + + + + Initializes a new instance of the Picture class. + + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class from outer XML. + + Specifies the outer XML of the element. + + + + anchorId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:anchorId + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Complex Field Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:fldChar. + + + The following table lists the possible child types: + + <w:fldData> + <w:ffData> + <w:numberingChange> + + + + + + Initializes a new instance of the FieldChar class. + + + + + Initializes a new instance of the FieldChar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FieldChar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FieldChar class from outer XML. + + Specifies the outer XML of the element. + + + + Field Character Type + Represents the following attribute in the schema: w:fldCharType + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Field Should Not Be Recalculated + Represents the following attribute in the schema: w:fldLock + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Field Result Invalidated + Represents the following attribute in the schema: w:dirty + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Custom Field Data. + Represents the following element tag in the schema: w:fldData. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Form Field Properties. + Represents the following element tag in the schema: w:ffData. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Numbering Field Properties. + Represents the following element tag in the schema: w:numberingChange. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Phonetic Guide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ruby. + + + The following table lists the possible child types: + + <w:rt> + <w:rubyBase> + <w:rubyPr> + + + + + + Initializes a new instance of the Ruby class. + + + + + Initializes a new instance of the Ruby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Ruby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Ruby class from outer XML. + + Specifies the outer XML of the element. + + + + Phonetic Guide Properties. + Represents the following element tag in the schema: w:rubyPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Phonetic Guide Text. + Represents the following element tag in the schema: w:rt. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Phonetic Guide Base Text. + Represents the following element tag in the schema: w:rubyBase. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Footnote Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footnoteReference. + + + + + Initializes a new instance of the FootnoteReference class. + + + + + + + + Endnote Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:endnoteReference. + + + + + Initializes a new instance of the EndnoteReference class. + + + + + + + + Defines the FootnoteEndnoteReferenceType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the FootnoteEndnoteReferenceType class. + + + + + Suppress Footnote/Endnote Reference Mark + Represents the following attribute in the schema: w:customMarkFollows + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote/Endnote ID Reference + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DrawingML Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:drawing. + + + The following table lists the possible child types: + + <wp:anchor> + <wp:inline> + + + + + + Initializes a new instance of the Drawing class. + + + + + Initializes a new instance of the Drawing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Drawing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Drawing class from outer XML. + + Specifies the outer XML of the element. + + + + Drawing Element Anchor. + Represents the following element tag in the schema: wp:anchor. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Inline Drawing Object. + Represents the following element tag in the schema: wp:inline. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + + + + Absolute Position Tab Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ptab. + + + + + Initializes a new instance of the PositionalTab class. + + + + + Positional Tab Stop Alignment + Represents the following attribute in the schema: w:alignment + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Positional Tab Base + Represents the following attribute in the schema: w:relativeTo + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tab Leader Character + Represents the following attribute in the schema: w:leader + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the RunStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rStyle. + + + + + Initializes a new instance of the RunStyle class. + + + + + + + + Defines the TableStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblStyle. + + + + + Initializes a new instance of the TableStyle class. + + + + + + + + Paragraph Style's Associated Numbering Level. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pStyle. + + + + + Initializes a new instance of the ParagraphStyleIdInLevel class. + + + + + + + + Abstract Numbering Definition Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:name. + + + + + Initializes a new instance of the AbstractNumDefinitionName class. + + + + + + + + Numbering Style Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:styleLink. + + + + + Initializes a new instance of the StyleLink class. + + + + + + + + Numbering Style Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numStyleLink. + + + + + Initializes a new instance of the NumberingStyleLink class. + + + + + + + + Alternate Style Names. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:aliases. + + + + + Initializes a new instance of the Aliases class. + + + + + + + + Parent Style ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:basedOn. + + + + + Initializes a new instance of the BasedOn class. + + + + + + + + Style For Next Paragraph. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:next. + + + + + Initializes a new instance of the NextParagraphStyle class. + + + + + + + + Linked Style Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:link. + + + + + Initializes a new instance of the LinkedStyle class. + + + + + + + + Paragraph Style Applied to Automatically Generated Paragraphs. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:clickAndTypeStyle. + + + + + Initializes a new instance of the ClickAndTypeStyle class. + + + + + + + + Default Table Style for Newly Inserted Tables. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:defaultTableStyle. + + + + + Initializes a new instance of the DefaultTableStyle class. + + + + + + + + Defines the String253Type Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the String253Type class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the RunFonts Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rFonts. + + + + + Initializes a new instance of the RunFonts class. + + + + + Font Content Type + Represents the following attribute in the schema: w:hint + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ASCII Font + Represents the following attribute in the schema: w:ascii + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + High ANSI Font + Represents the following attribute in the schema: w:hAnsi + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + East Asian Font + Represents the following attribute in the schema: w:eastAsia + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Complex Script Font + Represents the following attribute in the schema: w:cs + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ASCII Theme Font + Represents the following attribute in the schema: w:asciiTheme + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + High ANSI Theme Font + Represents the following attribute in the schema: w:hAnsiTheme + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + East Asian Theme Font + Represents the following attribute in the schema: w:eastAsiaTheme + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Complex Script Theme Font + Represents the following attribute in the schema: w:cstheme + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Color Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:color. + + + + + Initializes a new instance of the Color class. + + + + + Run Content Color + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Content Theme Color + Represents the following attribute in the schema: w:themeColor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Content Theme Color Tint + Represents the following attribute in the schema: w:themeTint + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Content Theme Color Shade + Represents the following attribute in the schema: w:themeShade + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Spacing Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:spacing. + + + + + Initializes a new instance of the Spacing class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the CharacterScale Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:w. + + + + + Initializes a new instance of the CharacterScale class. + + + + + Text Expansion/Compression Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Kern Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:kern. + + + + + Initializes a new instance of the Kern class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Position Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:position. + + + + + Initializes a new instance of the Position class. + + + + + Signed Half-Point Measurement + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the FontSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sz. + + + + + Initializes a new instance of the FontSize class. + + + + + + + + Defines the FontSizeComplexScript Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:szCs. + + + + + Initializes a new instance of the FontSizeComplexScript class. + + + + + + + + Checkbox Form Field Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:size. + + + + + Initializes a new instance of the FormFieldSize class. + + + + + + + + Phonetic Guide Text Font Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hps. + + + + + Initializes a new instance of the PhoneticGuideTextFontSize class. + + + + + + + + Phonetic Guide Base Text Font Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hpsBaseText. + + + + + Initializes a new instance of the PhoneticGuideBaseTextSize class. + + + + + + + + Defines the HpsMeasureType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the HpsMeasureType class. + + + + + Half Point Measurement + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the Highlight Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:highlight. + + + + + Initializes a new instance of the Highlight class. + + + + + Highlighting Color + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Underline Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:u. + + + + + Initializes a new instance of the Underline class. + + + + + Underline Style + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline Color + Represents the following attribute in the schema: w:color + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline Theme Color + Represents the following attribute in the schema: w:themeColor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline Theme Color Tint + Represents the following attribute in the schema: w:themeTint + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline Theme Color Shade + Represents the following attribute in the schema: w:themeShade + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TextEffect Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:effect. + + + + + Initializes a new instance of the TextEffect class. + + + + + Animated Text Effect Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Border Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bdr. + + + + + Initializes a new instance of the Border class. + + + + + + + + Paragraph Border Above Identical Paragraphs. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:top. + + + + + Initializes a new instance of the TopBorder class. + + + + + + + + Left Paragraph Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:left. + + + + + Initializes a new instance of the LeftBorder class. + + + + + + + + Paragraph Border Between Identical Paragraphs. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bottom. + + + + + Initializes a new instance of the BottomBorder class. + + + + + + + + Right Paragraph Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:right. + + + + + Initializes a new instance of the RightBorder class. + + + + + + + + Paragraph Border Between Identical Paragraphs. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:between. + + + + + Initializes a new instance of the BetweenBorder class. + + + + + + + + Paragraph Border Between Facing Pages. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bar. + + + + + Initializes a new instance of the BarBorder class. + + + + + + + + Defines the StartBorder Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:start. + + + + + Initializes a new instance of the StartBorder class. + + + + + + + + Defines the EndBorder Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:end. + + + + + Initializes a new instance of the EndBorder class. + + + + + + + + Table Inside Horizontal Edges Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:insideH. + + + + + Initializes a new instance of the InsideHorizontalBorder class. + + + + + + + + Table Inside Vertical Edges Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:insideV. + + + + + Initializes a new instance of the InsideVerticalBorder class. + + + + + + + + Table Cell Top Left to Bottom Right Diagonal Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tl2br. + + + + + Initializes a new instance of the TopLeftToBottomRightCellBorder class. + + + + + + + + Table Cell Top Right to Bottom Left Diagonal Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tr2bl. + + + + + Initializes a new instance of the TopRightToBottomLeftCellBorder class. + + + + + + + + Defines the BorderType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BorderType class. + + + + + Border Style + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border Color + Represents the following attribute in the schema: w:color + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border Theme Color + Represents the following attribute in the schema: w:themeColor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border Theme Color Tint + Represents the following attribute in the schema: w:themeTint + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border Theme Color Shade + Represents the following attribute in the schema: w:themeShade + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border Width + Represents the following attribute in the schema: w:sz + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border Spacing Measurement + Represents the following attribute in the schema: w:space + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border Shadow + Represents the following attribute in the schema: w:shadow + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Create Frame Effect + Represents the following attribute in the schema: w:frame + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the FitText Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:fitText. + + + + + Initializes a new instance of the FitText class. + + + + + Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Fit Text Run ID + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the VerticalTextAlignment Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:vertAlign. + + + + + Initializes a new instance of the VerticalTextAlignment class. + + + + + Subscript/Superscript Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Emphasis Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:em. + + + + + Initializes a new instance of the Emphasis class. + + + + + Emphasis Mark Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Languages Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lang. + + + + + Initializes a new instance of the Languages class. + + + + + + + + Theme Font Languages. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:themeFontLang. + + + + + Initializes a new instance of the ThemeFontLanguages class. + + + + + + + + Defines the LanguageType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the LanguageType class. + + + + + Latin Language + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + East Asian Language + Represents the following attribute in the schema: w:eastAsia + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Complex Script Language + Represents the following attribute in the schema: w:bidi + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the EastAsianLayout Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:eastAsianLayout. + + + + + Initializes a new instance of the EastAsianLayout class. + + + + + East Asian Typography Run ID + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Two Lines in One + Represents the following attribute in the schema: w:combine + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Display Brackets Around Two Lines in One + Represents the following attribute in the schema: w:combineBrackets + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Horizontal in Vertical (Rotate Text) + Represents the following attribute in the schema: w:vert + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Compress Rotated Text to Line Height + Represents the following attribute in the schema: w:vertCompress + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the RunPropertiesChange Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPrChange. + + + The following table lists the possible child types: + + <w:rPr> + + + + + + Initializes a new instance of the RunPropertiesChange class. + + + + + Initializes a new instance of the RunPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunPropertiesChange class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Run Properties. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPr. + + + The following table lists the possible child types: + + <w:bdr> + <w:color> + <w:eastAsianLayout> + <w:em> + <w:fitText> + <w:rFonts> + <w:highlight> + <w:kern> + <w:sz> + <w:szCs> + <w:lang> + <w:b> + <w:bCs> + <w:i> + <w:iCs> + <w:caps> + <w:smallCaps> + <w:strike> + <w:dstrike> + <w:outline> + <w:shadow> + <w:emboss> + <w:imprint> + <w:noProof> + <w:snapToGrid> + <w:vanish> + <w:webHidden> + <w:rtl> + <w:cs> + <w:specVanish> + <w:rPrChange> + <w:shd> + <w:spacing> + <w:position> + <w:rStyle> + <w:effect> + <w:w> + <w:u> + <w:vertAlign> + <w14:textFill> + <w14:glow> + <w14:ligatures> + <w14:numForm> + <w14:numSpacing> + <w14:cntxtAlts> + <w14:props3d> + <w14:reflection> + <w14:scene3d> + <w14:shadow> + <w14:stylisticSets> + <w14:textOutline> + + + + + + Initializes a new instance of the RunProperties class. + + + + + Initializes a new instance of the RunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + RunStyle. + Represents the following element tag in the schema: w:rStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + RunFonts. + Represents the following element tag in the schema: w:rFonts. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Bold. + Represents the following element tag in the schema: w:b. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BoldComplexScript. + Represents the following element tag in the schema: w:bCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Italic. + Represents the following element tag in the schema: w:i. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ItalicComplexScript. + Represents the following element tag in the schema: w:iCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Caps. + Represents the following element tag in the schema: w:caps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SmallCaps. + Represents the following element tag in the schema: w:smallCaps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Strike. + Represents the following element tag in the schema: w:strike. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DoubleStrike. + Represents the following element tag in the schema: w:dstrike. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Outline. + Represents the following element tag in the schema: w:outline. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shadow. + Represents the following element tag in the schema: w:shadow. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emboss. + Represents the following element tag in the schema: w:emboss. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Imprint. + Represents the following element tag in the schema: w:imprint. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoProof. + Represents the following element tag in the schema: w:noProof. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Vanish. + Represents the following element tag in the schema: w:vanish. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WebHidden. + Represents the following element tag in the schema: w:webHidden. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Color. + Represents the following element tag in the schema: w:color. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + CharacterScale. + Represents the following element tag in the schema: w:w. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kern. + Represents the following element tag in the schema: w:kern. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Position. + Represents the following element tag in the schema: w:position. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSize. + Represents the following element tag in the schema: w:sz. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSizeComplexScript. + Represents the following element tag in the schema: w:szCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Highlight. + Represents the following element tag in the schema: w:highlight. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline. + Represents the following element tag in the schema: w:u. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextEffect. + Represents the following element tag in the schema: w:effect. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border. + Represents the following element tag in the schema: w:bdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FitText. + Represents the following element tag in the schema: w:fitText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + VerticalTextAlignment. + Represents the following element tag in the schema: w:vertAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + RightToLeftText. + Represents the following element tag in the schema: w:rtl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ComplexScript. + Represents the following element tag in the schema: w:cs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emphasis. + Represents the following element tag in the schema: w:em. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Languages. + Represents the following element tag in the schema: w:lang. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EastAsianLayout. + Represents the following element tag in the schema: w:eastAsianLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpecVanish. + Represents the following element tag in the schema: w:specVanish. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Glow, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:glow. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + Shadow14, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:shadow. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + Reflection, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:reflection. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + TextOutlineEffect, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:textOutline. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + FillTextEffect, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:textFill. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + Scene3D, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:scene3d. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + Properties3D, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:props3d. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + Ligatures, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:ligatures. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + NumberingFormat, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:numForm. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + NumberSpacing, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:numSpacing. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + StylisticSets, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:stylisticSets. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + ContextualAlternatives, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w14:cntxtAlts. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + RunPropertiesChange. + Represents the following element tag in the schema: w:rPrChange. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the InsertedMathControl Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ins. + + + The following table lists the possible child types: + + <w:del> + <w:rPr> + + + + + + Initializes a new instance of the InsertedMathControl class. + + + + + Initializes a new instance of the InsertedMathControl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InsertedMathControl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InsertedMathControl class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the DeletedMathControl Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:del. + + + The following table lists the possible child types: + + <w:rPr> + + + + + + Initializes a new instance of the DeletedMathControl class. + + + + + Initializes a new instance of the DeletedMathControl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeletedMathControl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeletedMathControl class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the MoveFromMathControl Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveFrom. + + + The following table lists the possible child types: + + <w:del> + <w:ins> + <w:rPr> + + + + + + Initializes a new instance of the MoveFromMathControl class. + + + + + Initializes a new instance of the MoveFromMathControl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveFromMathControl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveFromMathControl class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MoveToMathControl Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveTo. + + + The following table lists the possible child types: + + <w:del> + <w:ins> + <w:rPr> + + + + + + Initializes a new instance of the MoveToMathControl class. + + + + + Initializes a new instance of the MoveToMathControl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveToMathControl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveToMathControl class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MathControlMoveType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <w:del> + <w:ins> + <w:rPr> + + + + + + Initializes a new instance of the MathControlMoveType class. + + + + + Initializes a new instance of the MathControlMoveType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MathControlMoveType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MathControlMoveType class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the CustomXmlRuby Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXml. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXmlPr> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the CustomXmlRuby class. + + + + + Initializes a new instance of the CustomXmlRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlRuby class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SimpleFieldRuby Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:fldSimple. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:fldData> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SimpleFieldRuby class. + + + + + Initializes a new instance of the SimpleFieldRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SimpleFieldRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SimpleFieldRuby class from outer XML. + + Specifies the outer XML of the element. + + + + instr + Represents the following attribute in the schema: w:instr + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + fldLock + Represents the following attribute in the schema: w:fldLock + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dirty + Represents the following attribute in the schema: w:dirty + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FieldData. + Represents the following element tag in the schema: w:fldData. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the HyperlinkRuby Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hyperlink. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the HyperlinkRuby class. + + + + + Initializes a new instance of the HyperlinkRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkRuby class from outer XML. + + Specifies the outer XML of the element. + + + + tgtFrame + Represents the following attribute in the schema: w:tgtFrame + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + tooltip + Represents the following attribute in the schema: w:tooltip + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + docLocation + Represents the following attribute in the schema: w:docLocation + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + history + Represents the following attribute in the schema: w:history + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + anchor + Represents the following attribute in the schema: w:anchor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Phonetic Guide Text Run. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:r. + + + The following table lists the possible child types: + + <w:br> + <w:drawing> + <w:noBreakHyphen> + <w:softHyphen> + <w:dayShort> + <w:monthShort> + <w:yearShort> + <w:dayLong> + <w:monthLong> + <w:yearLong> + <w:annotationRef> + <w:footnoteRef> + <w:endnoteRef> + <w:separator> + <w:continuationSeparator> + <w:pgNum> + <w:cr> + <w:tab> + <w:lastRenderedPageBreak> + <w:fldChar> + <w:footnoteReference> + <w:endnoteReference> + <w:commentReference> + <w:object> + <w:pict> + <w:ptab> + <w:rPr> + <w:ruby> + <w:sym> + <w:t> + <w:delText> + <w:instrText> + <w:delInstrText> + + + + + + Initializes a new instance of the Run class. + + + + + Initializes a new instance of the Run class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Run class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Run class from outer XML. + + Specifies the outer XML of the element. + + + + Revision Identifier for Run Properties + Represents the following attribute in the schema: w:rsidRPr + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Run Deletion + Represents the following attribute in the schema: w:rsidDel + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Run + Represents the following attribute in the schema: w:rsidR + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Properties. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the SdtRunRuby Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdt. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:sdtContent> + <w:sdtEndPr> + <w:sdtPr> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtRunRuby class. + + + + + Initializes a new instance of the SdtRunRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtRunRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtRunRuby class from outer XML. + + Specifies the outer XML of the element. + + + + SdtContentRunRuby. + Represents the following element tag in the schema: w:sdtContent. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the ProofError Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:proofErr. + + + + + Initializes a new instance of the ProofError class. + + + + + Proofing Error Anchor Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the PermStart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:permStart. + + + + + Initializes a new instance of the PermStart class. + + + + + edGrp + Represents the following attribute in the schema: w:edGrp + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ed + Represents the following attribute in the schema: w:ed + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + colFirst + Represents the following attribute in the schema: w:colFirst + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + colLast + Represents the following attribute in the schema: w:colLast + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Annotation ID + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Annotation Displaced By Custom XML Markup + Represents the following attribute in the schema: w:displacedByCustomXml + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the PermEnd Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:permEnd. + + + + + Initializes a new instance of the PermEnd class. + + + + + Annotation ID + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Annotation Displaced By Custom XML Markup + Represents the following attribute in the schema: w:displacedByCustomXml + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Inserted Run Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ins. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:dir> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the InsertedRun class. + + + + + Initializes a new instance of the InsertedRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InsertedRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InsertedRun class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Deleted Run Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:del. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:dir> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the DeletedRun class. + + + + + Initializes a new instance of the DeletedRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeletedRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeletedRun class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Move Source Run Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveFrom. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:dir> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the MoveFromRun class. + + + + + Initializes a new instance of the MoveFromRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveFromRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveFromRun class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Move Destination Run Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:moveTo. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:dir> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the MoveToRun class. + + + + + Initializes a new instance of the MoveToRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveToRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveToRun class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RunTrackChangeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:dir> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the RunTrackChangeType class. + + + + + Initializes a new instance of the RunTrackChangeType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunTrackChangeType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunTrackChangeType class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the ContentPart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:contentPart. + + + + + Initializes a new instance of the ContentPart class. + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the SdtRun Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdt. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:sdtContent> + <w:sdtEndPr> + <w:sdtPr> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtRun class. + + + + + Initializes a new instance of the SdtRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtRun class from outer XML. + + Specifies the outer XML of the element. + + + + Inline-Level Structured Document Tag Content. + Represents the following element tag in the schema: w:sdtContent. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the CustomXmlBlock Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXml. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlPr> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the CustomXmlBlock class. + + + + + Initializes a new instance of the CustomXmlBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlBlock class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SdtBlock Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdt. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:sdtContent> + <w:sdtEndPr> + <w:sdtPr> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtBlock class. + + + + + Initializes a new instance of the SdtBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtBlock class from outer XML. + + Specifies the outer XML of the element. + + + + Block-Level Structured Document Tag Content. + Represents the following element tag in the schema: w:sdtContent. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Paragraph Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:p. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:dir> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:pPr> + <w:proofErr> + <w:r> + <w:subDoc> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Paragraph class. + + + + + Initializes a new instance of the Paragraph class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Paragraph class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Paragraph class from outer XML. + + Specifies the outer XML of the element. + + + + Revision Identifier for Paragraph Glyph Formatting + Represents the following attribute in the schema: w:rsidRPr + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Paragraph + Represents the following attribute in the schema: w:rsidR + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Paragraph Deletion + Represents the following attribute in the schema: w:rsidDel + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Paragraph Properties + Represents the following attribute in the schema: w:rsidP + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default Revision Identifier for Runs + Represents the following attribute in the schema: w:rsidRDefault + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + paraId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:paraId + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + textId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:textId + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + noSpellErr, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:noSpellErr + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + Paragraph Properties. + Represents the following element tag in the schema: w:pPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Table Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tbl. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:tr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tblGrid> + <w:tblPr> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Table class. + + + + + Initializes a new instance of the Table class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Table class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Table class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Table Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tr. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tblPrEx> + <w:tc> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + <w:trPr> + + + + + + Initializes a new instance of the TableRow class. + + + + + Initializes a new instance of the TableRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRow class from outer XML. + + Specifies the outer XML of the element. + + + + Revision Identifier for Table Row Glyph Formatting + Represents the following attribute in the schema: w:rsidRPr + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Table Row + Represents the following attribute in the schema: w:rsidR + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Table Row Deletion + Represents the following attribute in the schema: w:rsidDel + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Table Row Properties + Represents the following attribute in the schema: w:rsidTr + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + paraId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:paraId + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + textId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:textId + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + Table-Level Property Exceptions. + Represents the following element tag in the schema: w:tblPrEx. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Row Properties. + Represents the following element tag in the schema: w:trPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Row-Level Custom XML Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXml. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:contentPart> + <w:customXmlPr> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:tr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the CustomXmlRow class. + + + + + Initializes a new instance of the CustomXmlRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlRow class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Row-Level Structured Document Tag. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdt. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:sdtContent> + <w:sdtEndPr> + <w:sdtPr> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtRow class. + + + + + Initializes a new instance of the SdtRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtRow class from outer XML. + + Specifies the outer XML of the element. + + + + Row-Level Structured Document Tag Content. + Represents the following element tag in the schema: w:sdtContent. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tc. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:tcPr> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the TableCell class. + + + + + Initializes a new instance of the TableCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCell class from outer XML. + + Specifies the outer XML of the element. + + + + Table Cell Properties. + Represents the following element tag in the schema: w:tcPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Cell-Level Custom XML Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXml. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlPr> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tc> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the CustomXmlCell class. + + + + + Initializes a new instance of the CustomXmlCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlCell class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Cell-Level Structured Document Tag. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdt. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:sdtContent> + <w:sdtEndPr> + <w:sdtPr> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtCell class. + + + + + Initializes a new instance of the SdtCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtCell class from outer XML. + + Specifies the outer XML of the element. + + + + Cell-Level Structured Document Tag Content. + Represents the following element tag in the schema: w:sdtContent. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the CustomXmlRun Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXml. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:customXmlPr> + <w:customXml> + <w:dir> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:subDoc> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the CustomXmlRun class. + + + + + Initializes a new instance of the CustomXmlRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlRun class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SimpleField Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:fldSimple. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:fldData> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:dir> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:subDoc> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SimpleField class. + + + + + Initializes a new instance of the SimpleField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SimpleField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SimpleField class from outer XML. + + Specifies the outer XML of the element. + + + + Field Codes + Represents the following attribute in the schema: w:instr + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Field Should Not Be Recalculated + Represents the following attribute in the schema: w:fldLock + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Field Result Invalidated + Represents the following attribute in the schema: w:dirty + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Custom Field Data. + Represents the following element tag in the schema: w:fldData. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Hyperlink Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hyperlink. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:dir> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:subDoc> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Hyperlink class. + + + + + Initializes a new instance of the Hyperlink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Hyperlink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Hyperlink class from outer XML. + + Specifies the outer XML of the element. + + + + Hyperlink Target Frame + Represents the following attribute in the schema: w:tgtFrame + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Associated String + Represents the following attribute in the schema: w:tooltip + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Location in Target Document + Represents the following attribute in the schema: w:docLocation + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Add To Viewed Hyperlinks + Represents the following attribute in the schema: w:history + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Hyperlink Anchor + Represents the following attribute in the schema: w:anchor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Hyperlink Target + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the BidirectionalOverride Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:bdo. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:dir> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:subDoc> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the BidirectionalOverride class. + + + + + Initializes a new instance of the BidirectionalOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BidirectionalOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BidirectionalOverride class from outer XML. + + Specifies the outer XML of the element. + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the BidirectionalEmbedding Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:dir. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:dir> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:subDoc> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the BidirectionalEmbedding class. + + + + + Initializes a new instance of the BidirectionalEmbedding class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BidirectionalEmbedding class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BidirectionalEmbedding class from outer XML. + + Specifies the outer XML of the element. + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Anchor for Subdocument Location. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:subDoc. + + + + + Initializes a new instance of the SubDocumentReference class. + + + + + + + + Defines the PrinterSettingsReference Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:printerSettings. + + + + + Initializes a new instance of the PrinterSettingsReference class. + + + + + + + + ODSO Data Source File Path. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:src. + + + + + Initializes a new instance of the SourceReference class. + + + + + + + + Reference to Inclusion/Exclusion Data for Data Source. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:recipientData. + + + + + Initializes a new instance of the RecipientDataReference class. + + + + + + + + Data Source File Path. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dataSource. + + + + + Initializes a new instance of the DataSourceReference class. + + + + + + + + Header Definition File Path. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:headerSource. + + + + + Initializes a new instance of the HeaderSource class. + + + + + + + + Source File for Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sourceFileName. + + + + + Initializes a new instance of the SourceFileReference class. + + + + + + + + Defines the MovieReference Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:movie. + + + + + Initializes a new instance of the MovieReference class. + + + + + + + + Attached Document Template. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:attachedTemplate. + + + + + Initializes a new instance of the AttachedTemplate class. + + + + + + + + Defines the RelationshipType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the RelationshipType class. + + + + + Relationship to Part + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Defines the TableCellWidth Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcW. + + + + + Initializes a new instance of the TableCellWidth class. + + + + + + + + Defines the WidthBeforeTableRow Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:wBefore. + + + + + Initializes a new instance of the WidthBeforeTableRow class. + + + + + + + + Defines the WidthAfterTableRow Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:wAfter. + + + + + Initializes a new instance of the WidthAfterTableRow class. + + + + + + + + Defines the TableCellSpacing Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblCellSpacing. + + + + + Initializes a new instance of the TableCellSpacing class. + + + + + + + + Defines the TableWidth Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblW. + + + + + Initializes a new instance of the TableWidth class. + + + + + + + + Table Cell Top Margin Default. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:top. + + + + + Initializes a new instance of the TopMargin class. + + + + + + + + Defines the StartMargin Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:start. + + + + + Initializes a new instance of the StartMargin class. + + + + + + + + Table Cell Bottom Margin Default. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bottom. + + + + + Initializes a new instance of the BottomMargin class. + + + + + + + + Defines the EndMargin Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w:end. + + + + + Initializes a new instance of the EndMargin class. + + + + + + + + Table Cell Left Margin Exception. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:left. + + + + + Initializes a new instance of the LeftMargin class. + + + + + + + + Table Cell Right Margin Exception. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:right. + + + + + Initializes a new instance of the RightMargin class. + + + + + + + + Defines the TableWidthType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TableWidthType class. + + + + + Table Width Value + Represents the following attribute in the schema: w:w + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Width Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the HorizontalMerge Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hMerge. + + + + + Initializes a new instance of the HorizontalMerge class. + + + + + Horizontal Merge Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the VerticalMerge Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:vMerge. + + + + + Initializes a new instance of the VerticalMerge class. + + + + + Vertical Merge Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableCellBorders Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcBorders. + + + The following table lists the possible child types: + + <w:top> + <w:left> + <w:start> + <w:bottom> + <w:right> + <w:end> + <w:insideH> + <w:insideV> + <w:tl2br> + <w:tr2bl> + + + + + + Initializes a new instance of the TableCellBorders class. + + + + + Initializes a new instance of the TableCellBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellBorders class from outer XML. + + Specifies the outer XML of the element. + + + + Table Cell Top Border. + Represents the following element tag in the schema: w:top. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Left Border. + Represents the following element tag in the schema: w:left. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + StartBorder, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:start. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Bottom Border. + Represents the following element tag in the schema: w:bottom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Right Border. + Represents the following element tag in the schema: w:right. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EndBorder, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:end. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Inside Horizontal Edges Border. + Represents the following element tag in the schema: w:insideH. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Inside Vertical Edges Border. + Represents the following element tag in the schema: w:insideV. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Top Left to Bottom Right Diagonal Border. + Represents the following element tag in the schema: w:tl2br. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Top Right to Bottom Left Diagonal Border. + Represents the following element tag in the schema: w:tr2bl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the NoWrap Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noWrap. + + + + + Initializes a new instance of the NoWrap class. + + + + + + + + Defines the TableCellFitText Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcFitText. + + + + + Initializes a new instance of the TableCellFitText class. + + + + + + + + Defines the HideMark Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hideMark. + + + + + Initializes a new instance of the HideMark class. + + + + + + + + Defines the CantSplit Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cantSplit. + + + + + Initializes a new instance of the CantSplit class. + + + + + + + + Defines the TableHeader Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblHeader. + + + + + Initializes a new instance of the TableHeader class. + + + + + + + + Defines the BiDiVisual Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bidiVisual. + + + + + Initializes a new instance of the BiDiVisual class. + + + + + + + + Frame Cannot Be Resized. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noResizeAllowed. + + + + + Initializes a new instance of the NoResizeAllowed class. + + + + + + + + Maintain Link to Existing File. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:linkedToFile. + + + + + Initializes a new instance of the LinkedToFile class. + + + + + + + + Do Not Display Frameset Splitters. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noBorder. + + + + + Initializes a new instance of the NoBorder class. + + + + + + + + Frameset Splitter Border Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:flatBorders. + + + + + Initializes a new instance of the FlatBorders class. + + + + + + + + Automatically Merge User Formatting Into Style Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autoRedefine. + + + + + Initializes a new instance of the AutoRedefine class. + + + + + + + + Hide Style From User Interface. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hidden. + + + + + Initializes a new instance of the StyleHidden class. + + + + + + + + Hide Style From Main User Interface. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:semiHidden. + + + + + Initializes a new instance of the SemiHidden class. + + + + + + + + Remove Semi-Hidden Property When Style Is Used. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:unhideWhenUsed. + + + + + Initializes a new instance of the UnhideWhenUsed class. + + + + + + + + Primary Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:qFormat. + + + + + Initializes a new instance of the PrimaryStyle class. + + + + + + + + Style Cannot Be Applied. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:locked. + + + + + Initializes a new instance of the Locked class. + + + + + + + + E-Mail Message Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:personal. + + + + + Initializes a new instance of the Personal class. + + + + + + + + E-Mail Message Composition Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:personalCompose. + + + + + Initializes a new instance of the PersonalCompose class. + + + + + + + + E-Mail Message Reply Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:personalReply. + + + + + Initializes a new instance of the PersonalReply class. + + + + + + + + Defines the OnOffOnlyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OnOffOnlyType class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the TableCellMargin Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcMar. + + + The following table lists the possible child types: + + <w:top> + <w:left> + <w:start> + <w:bottom> + <w:right> + <w:end> + + + + + + Initializes a new instance of the TableCellMargin class. + + + + + Initializes a new instance of the TableCellMargin class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellMargin class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellMargin class from outer XML. + + Specifies the outer XML of the element. + + + + Table Cell Top Margin Exception. + Represents the following element tag in the schema: w:top. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Left Margin Exception. + Represents the following element tag in the schema: w:left. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + StartMargin, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:start. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Bottom Margin Exception. + Represents the following element tag in the schema: w:bottom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Right Margin Exception. + Represents the following element tag in the schema: w:right. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EndMargin, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:end. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableCellVerticalAlignment Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:vAlign. + + + + + Initializes a new instance of the TableCellVerticalAlignment class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the DivId Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:divId. + + + + + Initializes a new instance of the DivId class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableRowHeight Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:trHeight. + + + + + Initializes a new instance of the TableRowHeight class. + + + + + Table Row Height + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Row Height Type + Represents the following attribute in the schema: w:hRule + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TablePositionProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblpPr. + + + + + Initializes a new instance of the TablePositionProperties class. + + + + + Distance From Left of Table to Text + Represents the following attribute in the schema: w:leftFromText + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + (Distance From Right of Table to Text + Represents the following attribute in the schema: w:rightFromText + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Distance From Top of Table to Text + Represents the following attribute in the schema: w:topFromText + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Distance From Bottom of Table to Text + Represents the following attribute in the schema: w:bottomFromText + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Vertical Anchor + Represents the following attribute in the schema: w:vertAnchor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Horizontal Anchor + Represents the following attribute in the schema: w:horzAnchor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Relative Horizontal Alignment From Anchor + Represents the following attribute in the schema: w:tblpXSpec + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Absolute Horizontal Distance From Anchor + Represents the following attribute in the schema: w:tblpX + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Relative Vertical Alignment from Anchor + Represents the following attribute in the schema: w:tblpYSpec + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Absolute Vertical Distance From Anchor + Represents the following attribute in the schema: w:tblpY + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableOverlap Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblOverlap. + + + + + Initializes a new instance of the TableOverlap class. + + + + + Floating Table Overlap Setting + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableStyleRowBandSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblStyleRowBandSize. + + + + + Initializes a new instance of the TableStyleRowBandSize class. + + + + + + + + Defines the TableStyleColumnBandSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblStyleColBandSize. + + + + + Initializes a new instance of the TableStyleColumnBandSize class. + + + + + + + + Defines the UnsignedDecimalNumberMax3Type Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the UnsignedDecimalNumberMax3Type class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the TableIndentation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblInd. + + + + + Initializes a new instance of the TableIndentation class. + + + + + w + Represents the following attribute in the schema: w:w + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableBorders Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblBorders. + + + The following table lists the possible child types: + + <w:top> + <w:left> + <w:start> + <w:bottom> + <w:right> + <w:end> + <w:insideH> + <w:insideV> + + + + + + Initializes a new instance of the TableBorders class. + + + + + Initializes a new instance of the TableBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableBorders class from outer XML. + + Specifies the outer XML of the element. + + + + Table Top Border. + Represents the following element tag in the schema: w:top. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Left Border. + Represents the following element tag in the schema: w:left. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + StartBorder, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:start. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Bottom Border. + Represents the following element tag in the schema: w:bottom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Right Border. + Represents the following element tag in the schema: w:right. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EndBorder, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:end. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Inside Horizontal Edges Border. + Represents the following element tag in the schema: w:insideH. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Inside Vertical Edges Border. + Represents the following element tag in the schema: w:insideV. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableLayout Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblLayout. + + + + + Initializes a new instance of the TableLayout class. + + + + + Table Layout Setting + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TableCellMarginDefault Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblCellMar. + + + The following table lists the possible child types: + + <w:top> + <w:start> + <w:bottom> + <w:end> + <w:left> + <w:right> + + + + + + Initializes a new instance of the TableCellMarginDefault class. + + + + + Initializes a new instance of the TableCellMarginDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellMarginDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellMarginDefault class from outer XML. + + Specifies the outer XML of the element. + + + + Table Cell Top Margin Default. + Represents the following element tag in the schema: w:top. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Left Margin Default. + Represents the following element tag in the schema: w:left. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + StartMargin, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:start. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Bottom Margin Default. + Represents the following element tag in the schema: w:bottom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Right Margin Default. + Represents the following element tag in the schema: w:right. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EndMargin, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:end. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Footnote and Endnote Numbering Starting Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numStart. + + + + + Initializes a new instance of the NumberingStart class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Footnote and Endnote Numbering Restart Location. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numRestart. + + + + + Initializes a new instance of the NumberingRestart class. + + + + + Automatic Numbering Restart Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the AltChunk Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:altChunk. + + + The following table lists the possible child types: + + <w:altChunkPr> + + + + + + Initializes a new instance of the AltChunk class. + + + + + Initializes a new instance of the AltChunk class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AltChunk class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AltChunk class from outer XML. + + Specifies the outer XML of the element. + + + + Relationship to Part + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + External Content Import Properties. + Represents the following element tag in the schema: w:altChunkPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the FootnoteProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footnotePr. + + + The following table lists the possible child types: + + <w:numStart> + <w:pos> + <w:numFmt> + <w:numRestart> + + + + + + Initializes a new instance of the FootnoteProperties class. + + + + + Initializes a new instance of the FootnoteProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FootnoteProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FootnoteProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Footnote Placement. + Represents the following element tag in the schema: w:pos. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote Numbering Format. + Represents the following element tag in the schema: w:numFmt. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote and Endnote Numbering Starting Value. + Represents the following element tag in the schema: w:numStart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote and Endnote Numbering Restart Location. + Represents the following element tag in the schema: w:numRestart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the EndnoteProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:endnotePr. + + + The following table lists the possible child types: + + <w:pos> + <w:numStart> + <w:numFmt> + <w:numRestart> + + + + + + Initializes a new instance of the EndnoteProperties class. + + + + + Initializes a new instance of the EndnoteProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndnoteProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndnoteProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Endnote Placement. + Represents the following element tag in the schema: w:pos. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Endnote Numbering Format. + Represents the following element tag in the schema: w:numFmt. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote and Endnote Numbering Starting Value. + Represents the following element tag in the schema: w:numStart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote and Endnote Numbering Restart Location. + Represents the following element tag in the schema: w:numRestart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the SectionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:type. + + + + + Initializes a new instance of the SectionType class. + + + + + Section Type Setting + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the PageSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pgSz. + + + + + Initializes a new instance of the PageSize class. + + + + + Page Width + Represents the following attribute in the schema: w:w + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Page Height + Represents the following attribute in the schema: w:h + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Page Orientation + Represents the following attribute in the schema: w:orient + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Printer Paper Code + Represents the following attribute in the schema: w:code + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the PageMargin Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pgMar. + + + + + Initializes a new instance of the PageMargin class. + + + + + Top Margin Spacing + Represents the following attribute in the schema: w:top + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Right Margin Spacing + Represents the following attribute in the schema: w:right + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Page Bottom Spacing + Represents the following attribute in the schema: w:bottom + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Left Margin Spacing + Represents the following attribute in the schema: w:left + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing to Top of Header + Represents the following attribute in the schema: w:header + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing to Bottom of Footer + Represents the following attribute in the schema: w:footer + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Page Gutter Spacing + Represents the following attribute in the schema: w:gutter + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the PaperSource Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:paperSrc. + + + + + Initializes a new instance of the PaperSource class. + + + + + First Page Printer Tray Code + Represents the following attribute in the schema: w:first + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Non-First Page Printer Tray Code + Represents the following attribute in the schema: w:other + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the PageBorders Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pgBorders. + + + The following table lists the possible child types: + + <w:top> + <w:left> + <w:bottom> + <w:right> + + + + + + Initializes a new instance of the PageBorders class. + + + + + Initializes a new instance of the PageBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PageBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PageBorders class from outer XML. + + Specifies the outer XML of the element. + + + + Z-Ordering of Page Border + Represents the following attribute in the schema: w:zOrder + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Pages to Display Page Borders + Represents the following attribute in the schema: w:display + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Page Border Positioning + Represents the following attribute in the schema: w:offsetFrom + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Top Border. + Represents the following element tag in the schema: w:top. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Left Border. + Represents the following element tag in the schema: w:left. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Bottom Border. + Represents the following element tag in the schema: w:bottom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Right Border. + Represents the following element tag in the schema: w:right. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the LineNumberType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lnNumType. + + + + + Initializes a new instance of the LineNumberType class. + + + + + Line Number Increments to Display + Represents the following attribute in the schema: w:countBy + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Line Numbering Starting Value + Represents the following attribute in the schema: w:start + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Distance Between Text and Line Numbering + Represents the following attribute in the schema: w:distance + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Line Numbering Restart Setting + Represents the following attribute in the schema: w:restart + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the PageNumberType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pgNumType. + + + + + Initializes a new instance of the PageNumberType class. + + + + + Page Number Format + Represents the following attribute in the schema: w:fmt + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Starting Page Number + Represents the following attribute in the schema: w:start + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Chapter Heading Style + Represents the following attribute in the schema: w:chapStyle + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Chapter Separator Character + Represents the following attribute in the schema: w:chapSep + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Columns Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:cols. + + + The following table lists the possible child types: + + <w:col> + + + + + + Initializes a new instance of the Columns class. + + + + + Initializes a new instance of the Columns class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Columns class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Columns class from outer XML. + + Specifies the outer XML of the element. + + + + Equal Column Widths + Represents the following attribute in the schema: w:equalWidth + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing Between Equal Width Columns + Represents the following attribute in the schema: w:space + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Number of Equal Width Columns + Represents the following attribute in the schema: w:num + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Draw Line Between Columns + Represents the following attribute in the schema: w:sep + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the VerticalTextAlignmentOnPage Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:vAlign. + + + + + Initializes a new instance of the VerticalTextAlignmentOnPage class. + + + + + Vertical Alignment Setting + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the DocGrid Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docGrid. + + + + + Initializes a new instance of the DocGrid class. + + + + + Document Grid Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Document Grid Line Pitch + Represents the following attribute in the schema: w:linePitch + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Document Grid Character Pitch + Represents the following attribute in the schema: w:charSpace + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Rich Text Box Content Container. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:txbxContent. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the TextBoxContent class. + + + + + Initializes a new instance of the TextBoxContent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBoxContent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBoxContent class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Comments Collection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:comments. + + + The following table lists the possible child types: + + <w:comment> + + + + + + Initializes a new instance of the Comments class. + + + + + Initializes a new instance of the Comments class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comments class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comments class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WordprocessingCommentsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WordprocessingCommentsPart. + + Specifies the part to save to. + + + + Gets the WordprocessingCommentsPart associated with this element. + + + + + Document Footnotes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footnotes. + + + The following table lists the possible child types: + + <w:footnote> + + + + + + Initializes a new instance of the Footnotes class. + + + + + Initializes a new instance of the Footnotes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Footnotes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Footnotes class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the FootnotesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the FootnotesPart. + + Specifies the part to save to. + + + + Gets the FootnotesPart associated with this element. + + + + + Document Endnotes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:endnotes. + + + The following table lists the possible child types: + + <w:endnote> + + + + + + Initializes a new instance of the Endnotes class. + + + + + Initializes a new instance of the Endnotes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Endnotes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Endnotes class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the EndnotesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the EndnotesPart. + + Specifies the part to save to. + + + + Gets the EndnotesPart associated with this element. + + + + + Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hdr. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Header class. + + + + + Initializes a new instance of the Header class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Header class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Header class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the HeaderPart + + Specifies the part to be loaded. + + + + Saves the DOM into the HeaderPart. + + Specifies the part to save to. + + + + Gets the HeaderPart associated with this element. + + + + + Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ftr. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Footer class. + + + + + Initializes a new instance of the Footer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Footer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Footer class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the FooterPart + + Specifies the part to be loaded. + + + + Saves the DOM into the FooterPart. + + Specifies the part to save to. + + + + Gets the FooterPart associated with this element. + + + + + Defines the HeaderFooterType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the HeaderFooterType class. + + + + + Initializes a new instance of the HeaderFooterType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooterType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooterType class from outer XML. + + Specifies the outer XML of the element. + + + + Document Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:settings. + + + The following table lists the possible child types: + + <m:mathPr> + <sl:schemaLibrary> + <w:captions> + <w:characterSpacingControl> + <w:clrSchemeMapping> + <w:compat> + <w:documentProtection> + <w:rsids> + <w:documentType> + <w:docVars> + <w:endnotePr> + <w:forceUpgrade> + <w:footnotePr> + <w:noLineBreaksAfter> + <w:noLineBreaksBefore> + <w:themeFontLang> + <w:mailMerge> + <w:defaultTabStop> + <w:bookFoldPrintingSheets> + <w:removePersonalInformation> + <w:removeDateAndTime> + <w:doNotDisplayPageBoundaries> + <w:displayBackgroundShape> + <w:printPostScriptOverText> + <w:printFractionalCharacterWidth> + <w:printFormsData> + <w:embedTrueTypeFonts> + <w:embedSystemFonts> + <w:saveSubsetFonts> + <w:saveFormsData> + <w:mirrorMargins> + <w:alignBordersAndEdges> + <w:bordersDoNotSurroundHeader> + <w:bordersDoNotSurroundFooter> + <w:gutterAtTop> + <w:hideSpellingErrors> + <w:hideGrammaticalErrors> + <w:formsDesign> + <w:linkStyles> + <w:trackRevisions> + <w:doNotTrackMoves> + <w:doNotTrackFormatting> + <w:autoFormatOverride> + <w:styleLockTheme> + <w:styleLockQFSet> + <w:autoHyphenation> + <w:doNotHyphenateCaps> + <w:showEnvelope> + <w:evenAndOddHeaders> + <w:bookFoldRevPrinting> + <w:bookFoldPrinting> + <w:doNotUseMarginsForDrawingGridOrigin> + <w:doNotShadeFormData> + <w:noPunctuationKerning> + <w:printTwoOnOne> + <w:strictFirstAndLastChars> + <w:savePreviewPicture> + <w:doNotValidateAgainstSchema> + <w:saveInvalidXml> + <w:ignoreMixedContent> + <w:alwaysShowPlaceholderText> + <w:doNotDemarcateInvalidXml> + <w:saveXmlDataOnly> + <w:useXSLTWhenSaving> + <w:showXMLTags> + <w:alwaysMergeEmptyNamespace> + <w:updateFields> + <w:uiCompat97To2003> + <w:doNotIncludeSubdocsInStats> + <w:doNotAutoCompressPictures> + <w15:chartTrackingRefBased> + <w:proofState> + <w:readModeInkLockDown> + <w:attachedTemplate> + <w:saveThroughXslt> + <w:hdrShapeDefaults> + <w:shapeDefaults> + <w:attachedSchema> + <w:decimalSymbol> + <w:listSeparator> + <w:clickAndTypeStyle> + <w:defaultTableStyle> + <w:stylePaneFormatFilter> + <w:stylePaneSortMethod> + <w:revisionView> + <w:hyphenationZone> + <w:drawingGridHorizontalSpacing> + <w:drawingGridVerticalSpacing> + <w:drawingGridHorizontalOrigin> + <w:drawingGridVerticalOrigin> + <w:summaryLength> + <w:displayHorizontalDrawingGridEvery> + <w:displayVerticalDrawingGridEvery> + <w:consecutiveHyphenLimit> + <w:view> + <w:writeProtection> + <w:activeWritingStyle> + <w:zoom> + <w14:defaultImageDpi> + <w14:docId> + <w14:discardImageEditingData> + <w14:conflictMode> + <w15:docId> + + + + + + Initializes a new instance of the Settings class. + + + + + Initializes a new instance of the Settings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Settings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Settings class from outer XML. + + Specifies the outer XML of the element. + + + + Write Protection. + Represents the following element tag in the schema: w:writeProtection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Document View Setting. + Represents the following element tag in the schema: w:view. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Magnification Setting. + Represents the following element tag in the schema: w:zoom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Remove Personal Information from Document Properties. + Represents the following element tag in the schema: w:removePersonalInformation. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Remove Date and Time from Annotations. + Represents the following element tag in the schema: w:removeDateAndTime. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Display Visual Boundary For Header/Footer or Between Pages. + Represents the following element tag in the schema: w:doNotDisplayPageBoundaries. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Display Background Objects When Displaying Document. + Represents the following element tag in the schema: w:displayBackgroundShape. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Print PostScript Codes With Document Text. + Represents the following element tag in the schema: w:printPostScriptOverText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Print Fractional Character Widths. + Represents the following element tag in the schema: w:printFractionalCharacterWidth. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Only Print Form Field Content. + Represents the following element tag in the schema: w:printFormsData. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Embed TrueType Fonts. + Represents the following element tag in the schema: w:embedTrueTypeFonts. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Embed Common System Fonts. + Represents the following element tag in the schema: w:embedSystemFonts. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Subset Fonts When Embedding. + Represents the following element tag in the schema: w:saveSubsetFonts. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Only Save Form Field Content. + Represents the following element tag in the schema: w:saveFormsData. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Mirror Page Margins. + Represents the following element tag in the schema: w:mirrorMargins. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Align Paragraph and Table Borders with Page Border. + Represents the following element tag in the schema: w:alignBordersAndEdges. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Page Border Excludes Header. + Represents the following element tag in the schema: w:bordersDoNotSurroundHeader. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Page Border Excludes Footer. + Represents the following element tag in the schema: w:bordersDoNotSurroundFooter. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Position Gutter At Top of Page. + Represents the following element tag in the schema: w:gutterAtTop. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Display Visual Indication of Spelling Errors. + Represents the following element tag in the schema: w:hideSpellingErrors. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Display Visual Indication of Grammatical Errors. + Represents the following element tag in the schema: w:hideGrammaticalErrors. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Loads the DOM from the DocumentSettingsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the DocumentSettingsPart. + + Specifies the part to save to. + + + + Gets the DocumentSettingsPart associated with this element. + + + + + Web Page Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:webSettings. + + + The following table lists the possible child types: + + <w:pixelsPerInch> + <w:divs> + <w:frameset> + <w:optimizeForBrowser> + <w:relyOnVML> + <w:allowPNG> + <w:doNotRelyOnCSS> + <w:doNotSaveAsSingleFile> + <w:doNotOrganizeInFolder> + <w:doNotUseLongFileNames> + <w:encoding> + <w:targetScreenSz> + + + + + + Initializes a new instance of the WebSettings class. + + + + + Initializes a new instance of the WebSettings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebSettings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebSettings class from outer XML. + + Specifies the outer XML of the element. + + + + Frameset. + Represents the following element tag in the schema: w:frameset. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Divs. + Represents the following element tag in the schema: w:divs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WebPageEncoding. + Represents the following element tag in the schema: w:encoding. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OptimizeForBrowser. + Represents the following element tag in the schema: w:optimizeForBrowser. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + RelyOnVML. + Represents the following element tag in the schema: w:relyOnVML. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AllowPNG. + Represents the following element tag in the schema: w:allowPNG. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DoNotRelyOnCSS. + Represents the following element tag in the schema: w:doNotRelyOnCSS. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DoNotSaveAsSingleFile. + Represents the following element tag in the schema: w:doNotSaveAsSingleFile. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DoNotOrganizeInFolder. + Represents the following element tag in the schema: w:doNotOrganizeInFolder. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DoNotUseLongFileNames. + Represents the following element tag in the schema: w:doNotUseLongFileNames. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PixelsPerInch. + Represents the following element tag in the schema: w:pixelsPerInch. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TargetScreenSize. + Represents the following element tag in the schema: w:targetScreenSz. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Loads the DOM from the WebSettingsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WebSettingsPart. + + Specifies the part to save to. + + + + Gets the WebSettingsPart associated with this element. + + + + + Font Table Root Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:fonts. + + + The following table lists the possible child types: + + <w:font> + + + + + + Initializes a new instance of the Fonts class. + + + + + Initializes a new instance of the Fonts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fonts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fonts class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the FontTablePart + + Specifies the part to be loaded. + + + + Saves the DOM into the FontTablePart. + + Specifies the part to save to. + + + + Gets the FontTablePart associated with this element. + + + + + Numbering Definitions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numbering. + + + The following table lists the possible child types: + + <w:abstractNum> + <w:numIdMacAtCleanup> + <w:num> + <w:numPicBullet> + + + + + + Initializes a new instance of the Numbering class. + + + + + Initializes a new instance of the Numbering class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Numbering class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Numbering class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the NumberingDefinitionsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the NumberingDefinitionsPart. + + Specifies the part to save to. + + + + Gets the NumberingDefinitionsPart associated with this element. + + + + + Glossary Document Root Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:glossaryDocument. + + + The following table lists the possible child types: + + <w:background> + <w:docParts> + + + + + + Initializes a new instance of the GlossaryDocument class. + + + + + Initializes a new instance of the GlossaryDocument class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GlossaryDocument class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GlossaryDocument class from outer XML. + + Specifies the outer XML of the element. + + + + Document Background. + Represents the following element tag in the schema: w:background. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + List of Glossary Document Entries. + Represents the following element tag in the schema: w:docParts. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Loads the DOM from the GlossaryDocumentPart + + Specifies the part to be loaded. + + + + Saves the DOM into the GlossaryDocumentPart. + + Specifies the part to save to. + + + + Gets the GlossaryDocumentPart associated with this element. + + + + + Previous Table-Level Property Exceptions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblPrEx. + + + The following table lists the possible child types: + + <w:shd> + <w:tblBorders> + <w:tblCellMar> + <w:jc> + <w:tblLayout> + <w:tblLook> + <w:tblW> + <w:tblCellSpacing> + <w:tblInd> + + + + + + Initializes a new instance of the PreviousTablePropertyExceptions class. + + + + + Initializes a new instance of the PreviousTablePropertyExceptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTablePropertyExceptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTablePropertyExceptions class from outer XML. + + Specifies the outer XML of the element. + + + + Preferred Table Width Exception. + Represents the following element tag in the schema: w:tblW. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Alignment Exception. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Spacing Exception. + Represents the following element tag in the schema: w:tblCellSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Indent from Leading Margin Exception. + Represents the following element tag in the schema: w:tblInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Borders Exceptions. + Represents the following element tag in the schema: w:tblBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Shading Exception. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Layout Exception. + Represents the following element tag in the schema: w:tblLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Margin Exceptions. + Represents the following element tag in the schema: w:tblCellMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Style Conditional Formatting Settings Exception. + Represents the following element tag in the schema: w:tblLook. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Previous Table Cell Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcPr. + + + The following table lists the possible child types: + + <w:cellMerge> + <w:cnfStyle> + <w:gridSpan> + <w:hMerge> + <w:noWrap> + <w:tcFitText> + <w:hideMark> + <w:shd> + <w:tcW> + <w:tcBorders> + <w:tcMar> + <w:textDirection> + <w:cellIns> + <w:cellDel> + <w:vAlign> + <w:vMerge> + + + + + + Initializes a new instance of the PreviousTableCellProperties class. + + + + + Initializes a new instance of the PreviousTableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTableCellProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ConditionalFormatStyle. + Represents the following element tag in the schema: w:cnfStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellWidth. + Represents the following element tag in the schema: w:tcW. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + GridSpan. + Represents the following element tag in the schema: w:gridSpan. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + HorizontalMerge. + Represents the following element tag in the schema: w:hMerge. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + VerticalMerge. + Represents the following element tag in the schema: w:vMerge. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellBorders. + Represents the following element tag in the schema: w:tcBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoWrap. + Represents the following element tag in the schema: w:noWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellMargin. + Represents the following element tag in the schema: w:tcMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextDirection. + Represents the following element tag in the schema: w:textDirection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellFitText. + Represents the following element tag in the schema: w:tcFitText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellVerticalAlignment. + Represents the following element tag in the schema: w:vAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + HideMark. + Represents the following element tag in the schema: w:hideMark. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Previous Table Row Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:trPr. + + + The following table lists the possible child types: + + <w:cnfStyle> + <w:gridBefore> + <w:gridAfter> + <w:trHeight> + <w:divId> + <w:hidden> + <w:cantSplit> + <w:tblHeader> + <w:jc> + <w:wBefore> + <w:wAfter> + <w:tblCellSpacing> + + + + + + Initializes a new instance of the PreviousTableRowProperties class. + + + + + Initializes a new instance of the PreviousTableRowProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTableRowProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTableRowProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Previous Table Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblPr. + + + The following table lists the possible child types: + + <w:bidiVisual> + <w:shd> + <w:tblCaption> + <w:tblDescription> + <w:tblStyle> + <w:tblBorders> + <w:tblCellMar> + <w:jc> + <w:tblLayout> + <w:tblLook> + <w:tblOverlap> + <w:tblpPr> + <w:tblW> + <w:tblCellSpacing> + <w:tblInd> + + + + + + Initializes a new instance of the PreviousTableProperties class. + + + + + Initializes a new instance of the PreviousTableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTableProperties class from outer XML. + + Specifies the outer XML of the element. + + + + TableStyle. + Represents the following element tag in the schema: w:tblStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TablePositionProperties. + Represents the following element tag in the schema: w:tblpPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableOverlap. + Represents the following element tag in the schema: w:tblOverlap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BiDiVisual. + Represents the following element tag in the schema: w:bidiVisual. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableWidth. + Represents the following element tag in the schema: w:tblW. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableJustification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellSpacing. + Represents the following element tag in the schema: w:tblCellSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableIndentation. + Represents the following element tag in the schema: w:tblInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableBorders. + Represents the following element tag in the schema: w:tblBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableLayout. + Represents the following element tag in the schema: w:tblLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellMarginDefault. + Represents the following element tag in the schema: w:tblCellMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableLook. + Represents the following element tag in the schema: w:tblLook. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCaption, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:tblCaption. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableDescription, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:tblDescription. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Previous Section Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sectPr. + + + The following table lists the possible child types: + + <w:cols> + <w15:footnoteColumns> + <w:docGrid> + <w:endnotePr> + <w:footnotePr> + <w:lnNumType> + <w:formProt> + <w:noEndnote> + <w:titlePg> + <w:bidi> + <w:rtlGutter> + <w:pgBorders> + <w:pgMar> + <w:pgNumType> + <w:pgSz> + <w:paperSrc> + <w:printerSettings> + <w:type> + <w:textDirection> + <w:vAlign> + + + + + + Initializes a new instance of the PreviousSectionProperties class. + + + + + Initializes a new instance of the PreviousSectionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousSectionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousSectionProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Physical Section Mark Character Revision ID + Represents the following attribute in the schema: w:rsidRPr + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Section Deletion Revision ID + Represents the following attribute in the schema: w:rsidDel + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Section Addition Revision ID + Represents the following attribute in the schema: w:rsidR + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Section Properties Revision ID + Represents the following attribute in the schema: w:rsidSect + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FootnoteProperties. + Represents the following element tag in the schema: w:footnotePr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EndnoteProperties. + Represents the following element tag in the schema: w:endnotePr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SectionType. + Represents the following element tag in the schema: w:type. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageSize. + Represents the following element tag in the schema: w:pgSz. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageMargin. + Represents the following element tag in the schema: w:pgMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PaperSource. + Represents the following element tag in the schema: w:paperSrc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageBorders. + Represents the following element tag in the schema: w:pgBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + LineNumberType. + Represents the following element tag in the schema: w:lnNumType. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageNumberType. + Represents the following element tag in the schema: w:pgNumType. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Columns. + Represents the following element tag in the schema: w:cols. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FormProtection. + Represents the following element tag in the schema: w:formProt. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + VerticalTextAlignmentOnPage. + Represents the following element tag in the schema: w:vAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoEndnote. + Represents the following element tag in the schema: w:noEndnote. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TitlePage. + Represents the following element tag in the schema: w:titlePg. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextDirection. + Represents the following element tag in the schema: w:textDirection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BiDi. + Represents the following element tag in the schema: w:bidi. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + GutterOnRight. + Represents the following element tag in the schema: w:rtlGutter. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DocGrid. + Represents the following element tag in the schema: w:docGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PrinterSettingsReference. + Represents the following element tag in the schema: w:printerSettings. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FootnoteColumns, this property is only available in Office 2013 and later.. + Represents the following element tag in the schema: w15:footnoteColumns. + + + xmlns:w15 = http://schemas.microsoft.com/office/word/2012/wordml + + + + + + + + Previous Paragraph Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pPr. + + + The following table lists the possible child types: + + <w:cnfStyle> + <w:outlineLvl> + <w:framePr> + <w:ind> + <w:jc> + <w:divId> + <w:numPr> + <w:keepNext> + <w:keepLines> + <w:pageBreakBefore> + <w:widowControl> + <w:suppressLineNumbers> + <w:suppressAutoHyphens> + <w:kinsoku> + <w:wordWrap> + <w:overflowPunct> + <w:topLinePunct> + <w:autoSpaceDE> + <w:autoSpaceDN> + <w:bidi> + <w:adjustRightInd> + <w:snapToGrid> + <w:contextualSpacing> + <w:mirrorIndents> + <w:suppressOverlap> + <w:pBdr> + <w:shd> + <w:spacing> + <w:pStyle> + <w:tabs> + <w:textAlignment> + <w:textboxTightWrap> + <w:textDirection> + + + + + + Initializes a new instance of the ParagraphPropertiesExtended class. + + + + + Initializes a new instance of the ParagraphPropertiesExtended class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphPropertiesExtended class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphPropertiesExtended class from outer XML. + + Specifies the outer XML of the element. + + + + ParagraphStyleId. + Represents the following element tag in the schema: w:pStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + KeepNext. + Represents the following element tag in the schema: w:keepNext. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + KeepLines. + Represents the following element tag in the schema: w:keepLines. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageBreakBefore. + Represents the following element tag in the schema: w:pageBreakBefore. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FrameProperties. + Represents the following element tag in the schema: w:framePr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WidowControl. + Represents the following element tag in the schema: w:widowControl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NumberingProperties. + Represents the following element tag in the schema: w:numPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressLineNumbers. + Represents the following element tag in the schema: w:suppressLineNumbers. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ParagraphBorders. + Represents the following element tag in the schema: w:pBdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tabs. + Represents the following element tag in the schema: w:tabs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressAutoHyphens. + Represents the following element tag in the schema: w:suppressAutoHyphens. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kinsoku. + Represents the following element tag in the schema: w:kinsoku. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WordWrap. + Represents the following element tag in the schema: w:wordWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OverflowPunctuation. + Represents the following element tag in the schema: w:overflowPunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TopLinePunctuation. + Represents the following element tag in the schema: w:topLinePunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDE. + Represents the following element tag in the schema: w:autoSpaceDE. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDN. + Represents the following element tag in the schema: w:autoSpaceDN. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BiDi. + Represents the following element tag in the schema: w:bidi. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AdjustRightIndent. + Represents the following element tag in the schema: w:adjustRightInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpacingBetweenLines. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Indentation. + Represents the following element tag in the schema: w:ind. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ContextualSpacing. + Represents the following element tag in the schema: w:contextualSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + MirrorIndents. + Represents the following element tag in the schema: w:mirrorIndents. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressOverlap. + Represents the following element tag in the schema: w:suppressOverlap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Justification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextDirection. + Represents the following element tag in the schema: w:textDirection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextAlignment. + Represents the following element tag in the schema: w:textAlignment. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextBoxTightWrap. + Represents the following element tag in the schema: w:textboxTightWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OutlineLevel. + Represents the following element tag in the schema: w:outlineLvl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DivId. + Represents the following element tag in the schema: w:divId. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ConditionalFormatStyle. + Represents the following element tag in the schema: w:cnfStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Previous Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPr. + + + The following table lists the possible child types: + + <w:bdr> + <w:color> + <w:eastAsianLayout> + <w:em> + <w:fitText> + <w:rFonts> + <w:highlight> + <w:kern> + <w:sz> + <w:szCs> + <w:lang> + <w:b> + <w:bCs> + <w:i> + <w:iCs> + <w:caps> + <w:smallCaps> + <w:strike> + <w:dstrike> + <w:outline> + <w:shadow> + <w:emboss> + <w:imprint> + <w:noProof> + <w:snapToGrid> + <w:vanish> + <w:webHidden> + <w:rtl> + <w:cs> + <w:specVanish> + <w:shd> + <w:spacing> + <w:position> + <w:rStyle> + <w:effect> + <w:w> + <w:u> + <w:vertAlign> + <w14:textFill> + <w14:glow> + <w14:ligatures> + <w14:numForm> + <w14:numSpacing> + <w14:cntxtAlts> + <w14:props3d> + <w14:reflection> + <w14:scene3d> + <w14:shadow> + <w14:stylisticSets> + <w14:textOutline> + + + + + + Initializes a new instance of the PreviousRunProperties class. + + + + + Initializes a new instance of the PreviousRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousRunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Previous Run Properties for the Paragraph Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPr. + + + The following table lists the possible child types: + + <w:bdr> + <w:color> + <w:eastAsianLayout> + <w:em> + <w:fitText> + <w:rFonts> + <w:highlight> + <w:kern> + <w:sz> + <w:szCs> + <w:lang> + <w:b> + <w:bCs> + <w:i> + <w:iCs> + <w:caps> + <w:smallCaps> + <w:strike> + <w:dstrike> + <w:outline> + <w:shadow> + <w:emboss> + <w:imprint> + <w:noProof> + <w:snapToGrid> + <w:vanish> + <w:webHidden> + <w:rtl> + <w:cs> + <w:specVanish> + <w:oMath> + <w:shd> + <w:spacing> + <w:position> + <w:rStyle> + <w:effect> + <w:w> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:u> + <w:vertAlign> + <w14:textFill> + <w14:glow> + <w14:ligatures> + <w14:numForm> + <w14:numSpacing> + <w14:cntxtAlts> + <w14:props3d> + <w14:reflection> + <w14:scene3d> + <w14:shadow> + <w14:stylisticSets> + <w14:textOutline> + + + + + + Initializes a new instance of the PreviousParagraphMarkRunProperties class. + + + + + Initializes a new instance of the PreviousParagraphMarkRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousParagraphMarkRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousParagraphMarkRunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Inserted Paragraph. + Represents the following element tag in the schema: w:ins. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Deleted Paragraph. + Represents the following element tag in the schema: w:del. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Move Source Paragraph. + Represents the following element tag in the schema: w:moveFrom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Move Destination Paragraph. + Represents the following element tag in the schema: w:moveTo. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Numbering Level Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ilvl. + + + + + Initializes a new instance of the NumberingLevelReference class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Numbering Definition Instance Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numId. + + + + + Initializes a new instance of the NumberingId class. + + + + + + + + Starting Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:start. + + + + + Initializes a new instance of the StartNumberingValue class. + + + + + + + + Defines the AbstractNumId Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:abstractNumId. + + + + + Initializes a new instance of the AbstractNumId class. + + + + + + + + Defines the NonNegativeDecimalNumberType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the NonNegativeDecimalNumberType class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Paragraph Numbering Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numberingChange. + + + + + Initializes a new instance of the NumberingChange class. + + + + + original + Represents the following attribute in the schema: w:original + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Run Properties for the Paragraph Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPr. + + + The following table lists the possible child types: + + <w:bdr> + <w:color> + <w:eastAsianLayout> + <w:em> + <w:fitText> + <w:rFonts> + <w:highlight> + <w:kern> + <w:sz> + <w:szCs> + <w:lang> + <w:b> + <w:bCs> + <w:i> + <w:iCs> + <w:caps> + <w:smallCaps> + <w:strike> + <w:dstrike> + <w:outline> + <w:shadow> + <w:emboss> + <w:imprint> + <w:noProof> + <w:snapToGrid> + <w:vanish> + <w:webHidden> + <w:rtl> + <w:cs> + <w:specVanish> + <w:oMath> + <w:rPrChange> + <w:shd> + <w:spacing> + <w:position> + <w:rStyle> + <w:effect> + <w:w> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:u> + <w:vertAlign> + <w14:textFill> + <w14:glow> + <w14:ligatures> + <w14:numForm> + <w14:numSpacing> + <w14:cntxtAlts> + <w14:props3d> + <w14:reflection> + <w14:scene3d> + <w14:shadow> + <w14:stylisticSets> + <w14:textOutline> + + + + + + Initializes a new instance of the ParagraphMarkRunProperties class. + + + + + Initializes a new instance of the ParagraphMarkRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphMarkRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphMarkRunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Inserted Paragraph. + Represents the following element tag in the schema: w:ins. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Deleted Paragraph. + Represents the following element tag in the schema: w:del. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Move Source Paragraph. + Represents the following element tag in the schema: w:moveFrom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Move Destination Paragraph. + Represents the following element tag in the schema: w:moveTo. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Section Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sectPr. + + + The following table lists the possible child types: + + <w:cols> + <w15:footnoteColumns> + <w:docGrid> + <w:endnotePr> + <w:footnotePr> + <w:headerReference> + <w:footerReference> + <w:lnNumType> + <w:formProt> + <w:noEndnote> + <w:titlePg> + <w:bidi> + <w:rtlGutter> + <w:pgBorders> + <w:pgMar> + <w:pgNumType> + <w:pgSz> + <w:paperSrc> + <w:printerSettings> + <w:sectPrChange> + <w:type> + <w:textDirection> + <w:vAlign> + + + + + + Initializes a new instance of the SectionProperties class. + + + + + Initializes a new instance of the SectionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Physical Section Mark Character Revision ID + Represents the following attribute in the schema: w:rsidRPr + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Section Deletion Revision ID + Represents the following attribute in the schema: w:rsidDel + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Section Addition Revision ID + Represents the following attribute in the schema: w:rsidR + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Section Properties Revision ID + Represents the following attribute in the schema: w:rsidSect + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Custom Field Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:fldData. + + + + + Initializes a new instance of the FieldData class. + + + + + Initializes a new instance of the FieldData class with the specified text content. + + Specifies the text content of the element. + + + + + + + Form Field Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ffData. + + + The following table lists the possible child types: + + <w:checkBox> + <w:ddList> + <w:helpText> + <w:name> + <w:statusText> + <w:textInput> + <w:entryMacro> + <w:exitMacro> + <w:enabled> + <w:calcOnExit> + + + + + + Initializes a new instance of the FormFieldData class. + + + + + Initializes a new instance of the FormFieldData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormFieldData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormFieldData class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Form Field Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:name. + + + + + Initializes a new instance of the FormFieldName class. + + + + + Form Field Name Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Script Function to Execute on Form Field Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:entryMacro. + + + + + Initializes a new instance of the EntryMacro class. + + + + + + + + Script Function to Execute on Form Field Exit. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:exitMacro. + + + + + Initializes a new instance of the ExitMacro class. + + + + + + + + Defines the MacroNameType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the MacroNameType class. + + + + + Name of Script Function + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Associated Help Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:helpText. + + + + + Initializes a new instance of the HelpText class. + + + + + Help Text Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Help Text Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Associated Status Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:statusText. + + + + + Initializes a new instance of the StatusText class. + + + + + Status Text Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Status Text Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Checkbox Form Field Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:checkBox. + + + The following table lists the possible child types: + + <w:size> + <w:sizeAuto> + <w:default> + <w:checked> + + + + + + Initializes a new instance of the CheckBox class. + + + + + Initializes a new instance of the CheckBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CheckBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CheckBox class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Drop-Down List Form Field Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:ddList. + + + The following table lists the possible child types: + + <w:result> + <w:listEntry> + <w:default> + + + + + + Initializes a new instance of the DropDownListFormField class. + + + + + Initializes a new instance of the DropDownListFormField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropDownListFormField class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropDownListFormField class from outer XML. + + Specifies the outer XML of the element. + + + + Drop-Down List Selection. + Represents the following element tag in the schema: w:result. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default Drop-Down List Item Index. + Represents the following element tag in the schema: w:default. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Text Box Form Field Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:textInput. + + + The following table lists the possible child types: + + <w:type> + <w:maxLength> + <w:default> + <w:format> + + + + + + Initializes a new instance of the TextInput class. + + + + + Initializes a new instance of the TextInput class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextInput class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextInput class from outer XML. + + Specifies the outer XML of the element. + + + + Text Box Form Field Type. + Represents the following element tag in the schema: w:type. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default Text Box Form Field String. + Represents the following element tag in the schema: w:default. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Text Box Form Field Maximum Length. + Represents the following element tag in the schema: w:maxLength. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Text Box Form Field Formatting. + Represents the following element tag in the schema: w:format. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Default Drop-Down List Item Index. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:default. + + + + + Initializes a new instance of the DefaultDropDownListItemIndex class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Drop-Down List Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:listEntry. + + + + + Initializes a new instance of the ListEntryFormField class. + + + + + + + + Default Text Box Form Field String. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:default. + + + + + Initializes a new instance of the DefaultTextBoxFormFieldString class. + + + + + + + + Frame Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:name. + + + + + Initializes a new instance of the FrameName class. + + + + + + + + Defines the String255Type Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the String255Type class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Text Box Form Field Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:type. + + + + + Initializes a new instance of the TextBoxFormFieldType class. + + + + + Text Box Form Field Type Values + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Text Box Form Field Maximum Length. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:maxLength. + + + + + Initializes a new instance of the MaxLength class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Text Box Form Field Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:format. + + + + + Initializes a new instance of the Format class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Single Column Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:col. + + + + + Initializes a new instance of the Column class. + + + + + Column Width + Represents the following attribute in the schema: w:w + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Space Before Following Column + Represents the following attribute in the schema: w:space + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Revision Information for Section Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sectPrChange. + + + The following table lists the possible child types: + + <w:sectPr> + + + + + + Initializes a new instance of the SectionPropertiesChange class. + + + + + Initializes a new instance of the SectionPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionPropertiesChange class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Section Properties. + Represents the following element tag in the schema: w:sectPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Revision Information for Run Properties on the Paragraph Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPrChange. + + + The following table lists the possible child types: + + <w:rPr> + + + + + + Initializes a new instance of the ParagraphMarkRunPropertiesChange class. + + + + + Initializes a new instance of the ParagraphMarkRunPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphMarkRunPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphMarkRunPropertiesChange class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Run Properties for the Paragraph Mark. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + External Content Import Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:altChunkPr. + + + The following table lists the possible child types: + + <w:matchSrc> + + + + + + Initializes a new instance of the AltChunkProperties class. + + + + + Initializes a new instance of the AltChunkProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AltChunkProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AltChunkProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Keep Source Formatting on Import. + Represents the following element tag in the schema: w:matchSrc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Phonetic Guide Text Alignment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rubyAlign. + + + + + Initializes a new instance of the RubyAlign class. + + + + + Phonetic Guide Text Alignment Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Distance Between Phonetic Guide Text and Phonetic Guide Base Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hpsRaise. + + + + + Initializes a new instance of the PhoneticGuideRaise class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Language ID for Phonetic Guide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lid. + + + + + Initializes a new instance of the LanguageId class. + + + + + Language Code + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Phonetic Guide Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rubyPr. + + + The following table lists the possible child types: + + <w:hps> + <w:hpsBaseText> + <w:hpsRaise> + <w:lid> + <w:dirty> + <w:rubyAlign> + + + + + + Initializes a new instance of the RubyProperties class. + + + + + Initializes a new instance of the RubyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RubyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RubyProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Phonetic Guide Text Alignment. + Represents the following element tag in the schema: w:rubyAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Phonetic Guide Text Font Size. + Represents the following element tag in the schema: w:hps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Distance Between Phonetic Guide Text and Phonetic Guide Base Text. + Represents the following element tag in the schema: w:hpsRaise. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Phonetic Guide Base Text Font Size. + Represents the following element tag in the schema: w:hpsBaseText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Language ID for Phonetic Guide. + Represents the following element tag in the schema: w:lid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Invalidated Field Cache. + Represents the following element tag in the schema: w:dirty. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Phonetic Guide Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rt. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the RubyContent class. + + + + + Initializes a new instance of the RubyContent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RubyContent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RubyContent class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Phonetic Guide Base Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rubyBase. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the RubyBase class. + + + + + Initializes a new instance of the RubyBase class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RubyBase class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RubyBase class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RubyContentType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the RubyContentType class. + + + + + Initializes a new instance of the RubyContentType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RubyContentType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RubyContentType class from outer XML. + + Specifies the outer XML of the element. + + + + Custom XML Data Date Storage Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:storeMappedDataAs. + + + + + Initializes a new instance of the SdtDateMappingType class. + + + + + Date Storage Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Date Picker Calendar Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:calendar. + + + + + Initializes a new instance of the Calendar class. + + + + + Calendar Type Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Combo Box List Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:listItem. + + + + + Initializes a new instance of the ListItem class. + + + + + List Entry Display Text + Represents the following attribute in the schema: w:displayText + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + List Entry Value + Represents the following attribute in the schema: w:value + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Structured Document Tag Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdtPr. + + + The following table lists the possible child types: + + <w15:color> + <w:dataBinding> + <w15:dataBinding> + <w:id> + <w:equation> + <w:picture> + <w:richText> + <w:citation> + <w:group> + <w:bibliography> + <w14:entityPicker> + <w15:repeatingSectionItem> + <w:lock> + <w:showingPlcHdr> + <w:temporary> + <w15:webExtensionLinked> + <w15:webExtensionCreated> + <w:placeholder> + <w:rPr> + <w:comboBox> + <w:date> + <w:docPartObj> + <w:docPartList> + <w:dropDownList> + <w:text> + <w:alias> + <w:tag> + <w14:checkbox> + <w15:appearance> + <w15:repeatingSection> + + + + + + Initializes a new instance of the SdtProperties class. + + + + + Initializes a new instance of the SdtProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Structured Document Tag End Character Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdtEndPr. + + + The following table lists the possible child types: + + <w:rPr> + + + + + + Initializes a new instance of the SdtEndCharProperties class. + + + + + Initializes a new instance of the SdtEndCharProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtEndCharProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtEndCharProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Block-Level Structured Document Tag Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdtContent. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtContentBlock class. + + + + + Initializes a new instance of the SdtContentBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentBlock class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentBlock class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Inline-Level Structured Document Tag Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdtContent. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:dir> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:subDoc> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtContentRun class. + + + + + Initializes a new instance of the SdtContentRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentRun class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentRun class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SdtContentRunRuby Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdtContent. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtContentRunRuby class. + + + + + Initializes a new instance of the SdtContentRunRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentRunRuby class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentRunRuby class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Cell-Level Structured Document Tag Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdtContent. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tc> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtContentCell class. + + + + + Initializes a new instance of the SdtContentCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentCell class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Row-Level Structured Document Tag Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sdtContent. + + + The following table lists the possible child types: + + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:tr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SdtContentRow class. + + + + + Initializes a new instance of the SdtContentRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentRow class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Custom XML Element Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:customXmlPr. + + + The following table lists the possible child types: + + <w:placeholder> + <w:attr> + + + + + + Initializes a new instance of the CustomXmlProperties class. + + + + + Initializes a new instance of the CustomXmlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Custom XML Element Placeholder Text. + Represents the following element tag in the schema: w:placeholder. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Custom XML Attribute. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:attr. + + + + + Initializes a new instance of the CustomXmlAttribute class. + + + + + uri + Represents the following attribute in the schema: w:uri + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + name + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Grid Column Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:gridCol. + + + + + Initializes a new instance of the GridColumn class. + + + + + Grid Column Width + Represents the following attribute in the schema: w:w + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Revision Information for Table Grid Column Definitions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblGridChange. + + + The following table lists the possible child types: + + <w:tblGrid> + + + + + + Initializes a new instance of the TableGridChange class. + + + + + Initializes a new instance of the TableGridChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableGridChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableGridChange class from outer XML. + + Specifies the outer XML of the element. + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Table Grid. + Represents the following element tag in the schema: w:tblGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Revision Information for Table Cell Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcPrChange. + + + The following table lists the possible child types: + + <w:tcPr> + + + + + + Initializes a new instance of the TableCellPropertiesChange class. + + + + + Initializes a new instance of the TableCellPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellPropertiesChange class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Table Cell Properties. + Represents the following element tag in the schema: w:tcPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Cell Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcPr. + + + The following table lists the possible child types: + + <w:cellMerge> + <w:cnfStyle> + <w:gridSpan> + <w:hMerge> + <w:noWrap> + <w:tcFitText> + <w:hideMark> + <w:shd> + <w:tcW> + <w:tcBorders> + <w:tcMar> + <w:tcPrChange> + <w:textDirection> + <w:cellIns> + <w:cellDel> + <w:vAlign> + <w:vMerge> + + + + + + Initializes a new instance of the TableCellProperties class. + + + + + Initializes a new instance of the TableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ConditionalFormatStyle. + Represents the following element tag in the schema: w:cnfStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellWidth. + Represents the following element tag in the schema: w:tcW. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + GridSpan. + Represents the following element tag in the schema: w:gridSpan. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + HorizontalMerge. + Represents the following element tag in the schema: w:hMerge. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + VerticalMerge. + Represents the following element tag in the schema: w:vMerge. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellBorders. + Represents the following element tag in the schema: w:tcBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoWrap. + Represents the following element tag in the schema: w:noWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellMargin. + Represents the following element tag in the schema: w:tcMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextDirection. + Represents the following element tag in the schema: w:textDirection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellFitText. + Represents the following element tag in the schema: w:tcFitText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellVerticalAlignment. + Represents the following element tag in the schema: w:vAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + HideMark. + Represents the following element tag in the schema: w:hideMark. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Revision Information for Table Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblPrChange. + + + The following table lists the possible child types: + + <w:tblPr> + + + + + + Initializes a new instance of the TablePropertiesChange class. + + + + + Initializes a new instance of the TablePropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TablePropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TablePropertiesChange class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Table Properties. + Represents the following element tag in the schema: w:tblPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Revision Information for Table-Level Property Exceptions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblPrExChange. + + + The following table lists the possible child types: + + <w:tblPrEx> + + + + + + Initializes a new instance of the TablePropertyExceptionsChange class. + + + + + Initializes a new instance of the TablePropertyExceptionsChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TablePropertyExceptionsChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TablePropertyExceptionsChange class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Table-Level Property Exceptions. + Represents the following element tag in the schema: w:tblPrEx. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblPr. + + + The following table lists the possible child types: + + <w:bidiVisual> + <w:shd> + <w:tblCaption> + <w:tblDescription> + <w:tblStyle> + <w:tblBorders> + <w:tblCellMar> + <w:jc> + <w:tblLayout> + <w:tblLook> + <w:tblOverlap> + <w:tblpPr> + <w:tblPrChange> + <w:tblW> + <w:tblCellSpacing> + <w:tblInd> + + + + + + Initializes a new instance of the TableProperties class. + + + + + Initializes a new instance of the TableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableProperties class from outer XML. + + Specifies the outer XML of the element. + + + + TableStyle. + Represents the following element tag in the schema: w:tblStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TablePositionProperties. + Represents the following element tag in the schema: w:tblpPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableOverlap. + Represents the following element tag in the schema: w:tblOverlap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BiDiVisual. + Represents the following element tag in the schema: w:bidiVisual. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableWidth. + Represents the following element tag in the schema: w:tblW. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableJustification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellSpacing. + Represents the following element tag in the schema: w:tblCellSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableIndentation. + Represents the following element tag in the schema: w:tblInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableBorders. + Represents the following element tag in the schema: w:tblBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableLayout. + Represents the following element tag in the schema: w:tblLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellMarginDefault. + Represents the following element tag in the schema: w:tblCellMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableLook. + Represents the following element tag in the schema: w:tblLook. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCaption, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:tblCaption. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableDescription, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: w:tblDescription. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Information for Table Properties. + Represents the following element tag in the schema: w:tblPrChange. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Grid. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblGrid. + + + The following table lists the possible child types: + + <w:tblGridChange> + <w:gridCol> + + + + + + Initializes a new instance of the TableGrid class. + + + + + Initializes a new instance of the TableGrid class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableGrid class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableGrid class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Footnote Placement. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pos. + + + + + Initializes a new instance of the FootnotePosition class. + + + + + Footnote Position Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Footnote Numbering Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numFmt. + + + + + Initializes a new instance of the NumberingFormat class. + + + + + Numbering Format Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + format, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:format + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Endnote Placement. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pos. + + + + + Initializes a new instance of the EndnotePosition class. + + + + + Endnote Position Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Special Footnote List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footnote. + + + + + Initializes a new instance of the FootnoteSpecialReference class. + + + + + + + + Special Endnote List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:endnote. + + + + + Initializes a new instance of the EndnoteSpecialReference class. + + + + + + + + Defines the FootnoteEndnoteSeparatorReferenceType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the FootnoteEndnoteSeparatorReferenceType class. + + + + + Footnote/Endnote ID + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Index of Column Containing Unique Values for Record. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:column. + + + + + Initializes a new instance of the ColumnIndex class. + + + + + + + + Column Delimiter for Data Source. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:colDelim. + + + + + Initializes a new instance of the ColumnDelimiter class. + + + + + + + + Defines the UnsignedDecimalNumberType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the UnsignedDecimalNumberType class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Unique Value for Record. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:uniqueTag. + + + + + Initializes a new instance of the UniqueTag class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Data About Single Data Source Record. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:recipientData. + + + The following table lists the possible child types: + + <w:uniqueTag> + <w:active> + <w:column> + + + + + + Initializes a new instance of the RecipientData class. + + + + + Initializes a new instance of the RecipientData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RecipientData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RecipientData class from outer XML. + + Specifies the outer XML of the element. + + + + Record Is Included in Mail Merge. + Represents the following element tag in the schema: w:active. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Index of Column Containing Unique Values for Record. + Represents the following element tag in the schema: w:column. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Unique Value for Record. + Represents the following element tag in the schema: w:uniqueTag. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Merge Field Mapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:type. + + + + + Initializes a new instance of the MailMergeFieldType class. + + + + + Merge Field Mapping Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + ODSO Data Source Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:type. + + + + + Initializes a new instance of the MailMergeSource class. + + + + + Data Source Type Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + External Data Source to Merge Field Mapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:fieldMapData. + + + The following table lists the possible child types: + + <w:lid> + <w:type> + <w:dynamicAddress> + <w:name> + <w:mappedName> + <w:column> + + + + + + Initializes a new instance of the FieldMapData class. + + + + + Initializes a new instance of the FieldMapData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FieldMapData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FieldMapData class from outer XML. + + Specifies the outer XML of the element. + + + + Merge Field Mapping. + Represents the following element tag in the schema: w:type. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Data Source Name for Column. + Represents the following element tag in the schema: w:name. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Predefined Merge Field Name. + Represents the following element tag in the schema: w:mappedName. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Index of Column Being Mapped. + Represents the following element tag in the schema: w:column. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Merge Field Name Language ID. + Represents the following element tag in the schema: w:lid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Use Country/Region-Based Address Field Ordering. + Represents the following element tag in the schema: w:dynamicAddress. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Source Document Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:mainDocumentType. + + + + + Initializes a new instance of the MainDocumentType class. + + + + + Mail Merge Source Document Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Data Source Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dataType. + + + + + Initializes a new instance of the DataType class. + + + + + Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Merged Document Destination. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:destination. + + + + + Initializes a new instance of the Destination class. + + + + + Mail Merge Merged Document Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Office Data Source Object Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:odso. + + + The following table lists the possible child types: + + <w:type> + <w:fieldMapData> + <w:fHdr> + <w:src> + <w:recipientData> + <w:udl> + <w:table> + <w:colDelim> + + + + + + Initializes a new instance of the DataSourceObject class. + + + + + Initializes a new instance of the DataSourceObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataSourceObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataSourceObject class from outer XML. + + Specifies the outer XML of the element. + + + + UDL Connection String. + Represents the following element tag in the schema: w:udl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Data Source Table Name. + Represents the following element tag in the schema: w:table. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ODSO Data Source File Path. + Represents the following element tag in the schema: w:src. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Column Delimiter for Data Source. + Represents the following element tag in the schema: w:colDelim. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ODSO Data Source Type. + Represents the following element tag in the schema: w:type. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + First Row of Data Source Contains Column Names. + Represents the following element tag in the schema: w:fHdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Single Document Variable. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docVar. + + + + + Initializes a new instance of the DocumentVariable class. + + + + + Document Variable Name + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Document Variable Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Original Document Revision Save ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rsidRoot. + + + + + Initializes a new instance of the RsidRoot class. + + + + + + + + Single Session Revision Save ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rsid. + + + + + Initializes a new instance of the Rsid class. + + + + + + + + Abstract Numbering Definition Identifier. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:nsid. + + + + + Initializes a new instance of the Nsid class. + + + + + + + + Numbering Template Code. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tmpl. + + + + + Initializes a new instance of the TemplateCode class. + + + + + + + + Defines the LongHexNumberType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the LongHexNumberType class. + + + + + Long Hexadecimal Number Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPr. + + + The following table lists the possible child types: + + <w:bdr> + <w:color> + <w:eastAsianLayout> + <w:em> + <w:fitText> + <w:rFonts> + <w:kern> + <w:sz> + <w:szCs> + <w:lang> + <w:b> + <w:bCs> + <w:i> + <w:iCs> + <w:caps> + <w:smallCaps> + <w:strike> + <w:dstrike> + <w:outline> + <w:shadow> + <w:emboss> + <w:imprint> + <w:noProof> + <w:snapToGrid> + <w:vanish> + <w:webHidden> + <w:specVanish> + <w:shd> + <w:spacing> + <w:position> + <w:effect> + <w:w> + <w:u> + <w:vertAlign> + + + + + + Initializes a new instance of the RunPropertiesBaseStyle class. + + + + + Initializes a new instance of the RunPropertiesBaseStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunPropertiesBaseStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunPropertiesBaseStyle class from outer XML. + + Specifies the outer XML of the element. + + + + RunFonts. + Represents the following element tag in the schema: w:rFonts. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Bold. + Represents the following element tag in the schema: w:b. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BoldComplexScript. + Represents the following element tag in the schema: w:bCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Italic. + Represents the following element tag in the schema: w:i. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ItalicComplexScript. + Represents the following element tag in the schema: w:iCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Caps. + Represents the following element tag in the schema: w:caps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SmallCaps. + Represents the following element tag in the schema: w:smallCaps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Strike. + Represents the following element tag in the schema: w:strike. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DoubleStrike. + Represents the following element tag in the schema: w:dstrike. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Outline. + Represents the following element tag in the schema: w:outline. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shadow. + Represents the following element tag in the schema: w:shadow. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emboss. + Represents the following element tag in the schema: w:emboss. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Imprint. + Represents the following element tag in the schema: w:imprint. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoProof. + Represents the following element tag in the schema: w:noProof. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Vanish. + Represents the following element tag in the schema: w:vanish. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WebHidden. + Represents the following element tag in the schema: w:webHidden. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Color. + Represents the following element tag in the schema: w:color. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + CharacterScale. + Represents the following element tag in the schema: w:w. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kern. + Represents the following element tag in the schema: w:kern. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Position. + Represents the following element tag in the schema: w:position. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSize. + Represents the following element tag in the schema: w:sz. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSizeComplexScript. + Represents the following element tag in the schema: w:szCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline. + Represents the following element tag in the schema: w:u. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextEffect. + Represents the following element tag in the schema: w:effect. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border. + Represents the following element tag in the schema: w:bdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FitText. + Represents the following element tag in the schema: w:fitText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + VerticalTextAlignment. + Represents the following element tag in the schema: w:vertAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emphasis. + Represents the following element tag in the schema: w:em. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Languages. + Represents the following element tag in the schema: w:lang. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EastAsianLayout. + Represents the following element tag in the schema: w:eastAsianLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpecVanish. + Represents the following element tag in the schema: w:specVanish. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Paragraph Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pPr. + + + The following table lists the possible child types: + + <w:outlineLvl> + <w:framePr> + <w:ind> + <w:jc> + <w:numPr> + <w:keepNext> + <w:keepLines> + <w:pageBreakBefore> + <w:widowControl> + <w:suppressLineNumbers> + <w:suppressAutoHyphens> + <w:kinsoku> + <w:wordWrap> + <w:overflowPunct> + <w:topLinePunct> + <w:autoSpaceDE> + <w:autoSpaceDN> + <w:bidi> + <w:adjustRightInd> + <w:snapToGrid> + <w:contextualSpacing> + <w:mirrorIndents> + <w:suppressOverlap> + <w:pBdr> + <w:shd> + <w:spacing> + <w:tabs> + <w:textAlignment> + <w:textboxTightWrap> + <w:textDirection> + + + + + + Initializes a new instance of the ParagraphPropertiesBaseStyle class. + + + + + Initializes a new instance of the ParagraphPropertiesBaseStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphPropertiesBaseStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphPropertiesBaseStyle class from outer XML. + + Specifies the outer XML of the element. + + + + KeepNext. + Represents the following element tag in the schema: w:keepNext. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + KeepLines. + Represents the following element tag in the schema: w:keepLines. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageBreakBefore. + Represents the following element tag in the schema: w:pageBreakBefore. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FrameProperties. + Represents the following element tag in the schema: w:framePr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WidowControl. + Represents the following element tag in the schema: w:widowControl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NumberingProperties. + Represents the following element tag in the schema: w:numPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressLineNumbers. + Represents the following element tag in the schema: w:suppressLineNumbers. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ParagraphBorders. + Represents the following element tag in the schema: w:pBdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tabs. + Represents the following element tag in the schema: w:tabs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressAutoHyphens. + Represents the following element tag in the schema: w:suppressAutoHyphens. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kinsoku. + Represents the following element tag in the schema: w:kinsoku. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WordWrap. + Represents the following element tag in the schema: w:wordWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OverflowPunctuation. + Represents the following element tag in the schema: w:overflowPunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TopLinePunctuation. + Represents the following element tag in the schema: w:topLinePunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDE. + Represents the following element tag in the schema: w:autoSpaceDE. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDN. + Represents the following element tag in the schema: w:autoSpaceDN. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BiDi. + Represents the following element tag in the schema: w:bidi. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AdjustRightIndent. + Represents the following element tag in the schema: w:adjustRightInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpacingBetweenLines. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Indentation. + Represents the following element tag in the schema: w:ind. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ContextualSpacing. + Represents the following element tag in the schema: w:contextualSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + MirrorIndents. + Represents the following element tag in the schema: w:mirrorIndents. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressOverlap. + Represents the following element tag in the schema: w:suppressOverlap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Justification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextDirection. + Represents the following element tag in the schema: w:textDirection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextAlignment. + Represents the following element tag in the schema: w:textAlignment. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextBoxTightWrap. + Represents the following element tag in the schema: w:textboxTightWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OutlineLevel. + Represents the following element tag in the schema: w:outlineLvl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Default Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPrDefault. + + + The following table lists the possible child types: + + <w:rPr> + + + + + + Initializes a new instance of the RunPropertiesDefault class. + + + + + Initializes a new instance of the RunPropertiesDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunPropertiesDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunPropertiesDefault class from outer XML. + + Specifies the outer XML of the element. + + + + Run Properties. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Default Paragraph Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pPrDefault. + + + The following table lists the possible child types: + + <w:pPr> + + + + + + Initializes a new instance of the ParagraphPropertiesDefault class. + + + + + Initializes a new instance of the ParagraphPropertiesDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphPropertiesDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphPropertiesDefault class from outer XML. + + Specifies the outer XML of the element. + + + + Paragraph Properties. + Represents the following element tag in the schema: w:pPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Left and Right Margin for Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:marW. + + + + + Initializes a new instance of the MarginWidth class. + + + + + + + + Top and Bottom Margin for Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:marH. + + + + + Initializes a new instance of the MarginHeight class. + + + + + + + + Defines the PixelsMeasureType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the PixelsMeasureType class. + + + + + Measurement in Pixels + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Scrollbar Display Option. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:scrollbar. + + + + + Initializes a new instance of the ScrollbarVisibility class. + + + + + Scrollbar Display Option Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Frameset Splitter Width. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:w. + + + + + Initializes a new instance of the Width class. + + + + + + + + Hyphenation Zone. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hyphenationZone. + + + + + Initializes a new instance of the HyphenationZone class. + + + + + + + + Drawing Grid Horizontal Grid Unit Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:drawingGridHorizontalSpacing. + + + + + Initializes a new instance of the DrawingGridHorizontalSpacing class. + + + + + + + + Drawing Grid Vertical Grid Unit Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:drawingGridVerticalSpacing. + + + + + Initializes a new instance of the DrawingGridVerticalSpacing class. + + + + + + + + Drawing Grid Horizontal Origin Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:drawingGridHorizontalOrigin. + + + + + Initializes a new instance of the DrawingGridHorizontalOrigin class. + + + + + + + + Drawing Grid Vertical Origin Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:drawingGridVerticalOrigin. + + + + + Initializes a new instance of the DrawingGridVerticalOrigin class. + + + + + + + + Defines the TwipsMeasureType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TwipsMeasureType class. + + + + + Measurement in Twentieths of a Point + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frameset Splitter Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:framesetSplitbar. + + + The following table lists the possible child types: + + <w:color> + <w:noBorder> + <w:flatBorders> + <w:w> + + + + + + Initializes a new instance of the FramesetSplitbar class. + + + + + Initializes a new instance of the FramesetSplitbar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FramesetSplitbar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FramesetSplitbar class from outer XML. + + Specifies the outer XML of the element. + + + + Frameset Splitter Width. + Represents the following element tag in the schema: w:w. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frameset Splitter Color. + Represents the following element tag in the schema: w:color. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Display Frameset Splitters. + Represents the following element tag in the schema: w:noBorder. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frameset Splitter Border Style. + Represents the following element tag in the schema: w:flatBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Frameset Layout. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:frameLayout. + + + + + Initializes a new instance of the FrameLayout class. + + + + + Frameset Layout Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Nested Frameset Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:frameset. + + + The following table lists the possible child types: + + <w:frame> + <w:frameLayout> + <w:frameset> + <w:framesetSplitbar> + <w:sz> + + + + + + Initializes a new instance of the Frameset class. + + + + + Initializes a new instance of the Frameset class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Frameset class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Frameset class from outer XML. + + Specifies the outer XML of the element. + + + + Nested Frameset Size. + Represents the following element tag in the schema: w:sz. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frameset Splitter Properties. + Represents the following element tag in the schema: w:framesetSplitbar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frameset Layout. + Represents the following element tag in the schema: w:frameLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Single Frame Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:frame. + + + The following table lists the possible child types: + + <w:scrollbar> + <w:noResizeAllowed> + <w:linkedToFile> + <w:marW> + <w:marH> + <w:sourceFileName> + <w:sz> + <w:name> + + + + + + Initializes a new instance of the Frame class. + + + + + Initializes a new instance of the Frame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Frame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Frame class from outer XML. + + Specifies the outer XML of the element. + + + + Frame Size. + Represents the following element tag in the schema: w:sz. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frame Name. + Represents the following element tag in the schema: w:name. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Source File for Frame. + Represents the following element tag in the schema: w:sourceFileName. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Left and Right Margin for Frame. + Represents the following element tag in the schema: w:marW. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Top and Bottom Margin for Frame. + Represents the following element tag in the schema: w:marH. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Scrollbar Display Option. + Represents the following element tag in the schema: w:scrollbar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Frame Cannot Be Resized. + Represents the following element tag in the schema: w:noResizeAllowed. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Maintain Link to Existing File. + Represents the following element tag in the schema: w:linkedToFile. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Content Between Numbering Symbol and Paragraph Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:suff. + + + + + Initializes a new instance of the LevelSuffix class. + + + + + Character Type Between Numbering and Text + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Numbering Level Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lvlText. + + + + + Initializes a new instance of the LevelText class. + + + + + Level Text + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Level Text Is Null Character + Represents the following attribute in the schema: w:null + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Legacy Numbering Level Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:legacy. + + + + + Initializes a new instance of the LegacyNumbering class. + + + + + Use Legacy Numbering Properties + Represents the following attribute in the schema: w:legacy + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Legacy Spacing + Represents the following attribute in the schema: w:legacySpace + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Legacy Indent + Represents the following attribute in the schema: w:legacyIndent + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Justification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lvlJc. + + + + + Initializes a new instance of the LevelJustification class. + + + + + Alignment Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Numbering Level Associated Paragraph Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pPr. + + + The following table lists the possible child types: + + <w:outlineLvl> + <w:framePr> + <w:ind> + <w:jc> + <w:numPr> + <w:keepNext> + <w:keepLines> + <w:pageBreakBefore> + <w:widowControl> + <w:suppressLineNumbers> + <w:suppressAutoHyphens> + <w:kinsoku> + <w:wordWrap> + <w:overflowPunct> + <w:topLinePunct> + <w:autoSpaceDE> + <w:autoSpaceDN> + <w:bidi> + <w:adjustRightInd> + <w:snapToGrid> + <w:contextualSpacing> + <w:mirrorIndents> + <w:suppressOverlap> + <w:pBdr> + <w:shd> + <w:spacing> + <w:pStyle> + <w:tabs> + <w:textAlignment> + <w:textboxTightWrap> + <w:textDirection> + + + + + + Initializes a new instance of the PreviousParagraphProperties class. + + + + + Initializes a new instance of the PreviousParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ParagraphStyleId. + Represents the following element tag in the schema: w:pStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + KeepNext. + Represents the following element tag in the schema: w:keepNext. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + KeepLines. + Represents the following element tag in the schema: w:keepLines. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageBreakBefore. + Represents the following element tag in the schema: w:pageBreakBefore. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FrameProperties. + Represents the following element tag in the schema: w:framePr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WidowControl. + Represents the following element tag in the schema: w:widowControl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NumberingProperties. + Represents the following element tag in the schema: w:numPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressLineNumbers. + Represents the following element tag in the schema: w:suppressLineNumbers. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ParagraphBorders. + Represents the following element tag in the schema: w:pBdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tabs. + Represents the following element tag in the schema: w:tabs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressAutoHyphens. + Represents the following element tag in the schema: w:suppressAutoHyphens. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kinsoku. + Represents the following element tag in the schema: w:kinsoku. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WordWrap. + Represents the following element tag in the schema: w:wordWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OverflowPunctuation. + Represents the following element tag in the schema: w:overflowPunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TopLinePunctuation. + Represents the following element tag in the schema: w:topLinePunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDE. + Represents the following element tag in the schema: w:autoSpaceDE. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDN. + Represents the following element tag in the schema: w:autoSpaceDN. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BiDi. + Represents the following element tag in the schema: w:bidi. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AdjustRightIndent. + Represents the following element tag in the schema: w:adjustRightInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpacingBetweenLines. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Indentation. + Represents the following element tag in the schema: w:ind. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ContextualSpacing. + Represents the following element tag in the schema: w:contextualSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + MirrorIndents. + Represents the following element tag in the schema: w:mirrorIndents. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressOverlap. + Represents the following element tag in the schema: w:suppressOverlap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Justification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextDirection. + Represents the following element tag in the schema: w:textDirection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextAlignment. + Represents the following element tag in the schema: w:textAlignment. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextBoxTightWrap. + Represents the following element tag in the schema: w:textboxTightWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OutlineLevel. + Represents the following element tag in the schema: w:outlineLvl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Numbering Symbol Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPr. + + + The following table lists the possible child types: + + <w:bdr> + <w:color> + <w:eastAsianLayout> + <w:em> + <w:fitText> + <w:rFonts> + <w:kern> + <w:sz> + <w:szCs> + <w:lang> + <w:b> + <w:bCs> + <w:i> + <w:iCs> + <w:caps> + <w:smallCaps> + <w:strike> + <w:dstrike> + <w:outline> + <w:shadow> + <w:emboss> + <w:imprint> + <w:noProof> + <w:snapToGrid> + <w:vanish> + <w:webHidden> + <w:rtl> + <w:cs> + <w:specVanish> + <w:shd> + <w:spacing> + <w:position> + <w:effect> + <w:w> + <w:u> + <w:vertAlign> + + + + + + Initializes a new instance of the NumberingSymbolRunProperties class. + + + + + Initializes a new instance of the NumberingSymbolRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingSymbolRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingSymbolRunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + RunFonts. + Represents the following element tag in the schema: w:rFonts. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Bold. + Represents the following element tag in the schema: w:b. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BoldComplexScript. + Represents the following element tag in the schema: w:bCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Italic. + Represents the following element tag in the schema: w:i. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ItalicComplexScript. + Represents the following element tag in the schema: w:iCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Caps. + Represents the following element tag in the schema: w:caps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SmallCaps. + Represents the following element tag in the schema: w:smallCaps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Strike. + Represents the following element tag in the schema: w:strike. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DoubleStrike. + Represents the following element tag in the schema: w:dstrike. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Outline. + Represents the following element tag in the schema: w:outline. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shadow. + Represents the following element tag in the schema: w:shadow. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emboss. + Represents the following element tag in the schema: w:emboss. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Imprint. + Represents the following element tag in the schema: w:imprint. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoProof. + Represents the following element tag in the schema: w:noProof. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Vanish. + Represents the following element tag in the schema: w:vanish. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WebHidden. + Represents the following element tag in the schema: w:webHidden. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Color. + Represents the following element tag in the schema: w:color. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + CharacterScale. + Represents the following element tag in the schema: w:w. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kern. + Represents the following element tag in the schema: w:kern. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Position. + Represents the following element tag in the schema: w:position. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSize. + Represents the following element tag in the schema: w:sz. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSizeComplexScript. + Represents the following element tag in the schema: w:szCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline. + Represents the following element tag in the schema: w:u. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextEffect. + Represents the following element tag in the schema: w:effect. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border. + Represents the following element tag in the schema: w:bdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FitText. + Represents the following element tag in the schema: w:fitText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + VerticalTextAlignment. + Represents the following element tag in the schema: w:vertAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + RightToLeftText. + Represents the following element tag in the schema: w:rtl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ComplexScript. + Represents the following element tag in the schema: w:cs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emphasis. + Represents the following element tag in the schema: w:em. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Languages. + Represents the following element tag in the schema: w:lang. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EastAsianLayout. + Represents the following element tag in the schema: w:eastAsianLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpecVanish. + Represents the following element tag in the schema: w:specVanish. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Abstract Numbering Definition Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:multiLevelType. + + + + + Initializes a new instance of the MultiLevelType class. + + + + + Abstract Numbering Definition Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Numbering Level Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lvl. + + + The following table lists the possible child types: + + <w:lvlRestart> + <w:lvlPicBulletId> + <w:lvlJc> + <w:suff> + <w:lvlText> + <w:legacy> + <w:start> + <w:numFmt> + <w:isLgl> + <w:pPr> + <w:rPr> + <w:pStyle> + + + + + + Initializes a new instance of the Level class. + + + + + Initializes a new instance of the Level class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level class from outer XML. + + Specifies the outer XML of the element. + + + + Numbering Level + Represents the following attribute in the schema: w:ilvl + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Template Code + Represents the following attribute in the schema: w:tplc + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tentative Numbering + Represents the following attribute in the schema: w:tentative + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Starting Value. + Represents the following element tag in the schema: w:start. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Format. + Represents the following element tag in the schema: w:numFmt. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Restart Numbering Level Symbol. + Represents the following element tag in the schema: w:lvlRestart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Paragraph Style's Associated Numbering Level. + Represents the following element tag in the schema: w:pStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Display All Levels Using Arabic Numerals. + Represents the following element tag in the schema: w:isLgl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Content Between Numbering Symbol and Paragraph Text. + Represents the following element tag in the schema: w:suff. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Level Text. + Represents the following element tag in the schema: w:lvlText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Picture Numbering Symbol Definition Reference. + Represents the following element tag in the schema: w:lvlPicBulletId. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Legacy Numbering Level Properties. + Represents the following element tag in the schema: w:legacy. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Justification. + Represents the following element tag in the schema: w:lvlJc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Level Associated Paragraph Properties. + Represents the following element tag in the schema: w:pPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Symbol Run Properties. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Picture Numbering Symbol Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:numPicBullet. + + + The following table lists the possible child types: + + <w:drawing> + <w:pict> + + + + + + Initializes a new instance of the NumberingPictureBullet class. + + + + + Initializes a new instance of the NumberingPictureBullet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingPictureBullet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingPictureBullet class from outer XML. + + Specifies the outer XML of the element. + + + + numPicBulletId + Represents the following attribute in the schema: w:numPicBulletId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PictureBulletBase. + Represents the following element tag in the schema: w:pict. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Drawing. + Represents the following element tag in the schema: w:drawing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Abstract Numbering Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:abstractNum. + + + The following table lists the possible child types: + + <w:nsid> + <w:tmpl> + <w:lvl> + <w:multiLevelType> + <w:name> + <w:styleLink> + <w:numStyleLink> + + + + + + Initializes a new instance of the AbstractNum class. + + + + + Initializes a new instance of the AbstractNum class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AbstractNum class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AbstractNum class from outer XML. + + Specifies the outer XML of the element. + + + + Abstract Numbering Definition ID + Represents the following attribute in the schema: w:abstractNumId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Abstract Numbering Definition Identifier. + Represents the following element tag in the schema: w:nsid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Abstract Numbering Definition Type. + Represents the following element tag in the schema: w:multiLevelType. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Template Code. + Represents the following element tag in the schema: w:tmpl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Abstract Numbering Definition Name. + Represents the following element tag in the schema: w:name. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Style Definition. + Represents the following element tag in the schema: w:styleLink. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Style Reference. + Represents the following element tag in the schema: w:numStyleLink. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Numbering Definition Instance. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:num. + + + The following table lists the possible child types: + + <w:abstractNumId> + <w:lvlOverride> + + + + + + Initializes a new instance of the NumberingInstance class. + + + + + Initializes a new instance of the NumberingInstance class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingInstance class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingInstance class from outer XML. + + Specifies the outer XML of the element. + + + + numId + Represents the following attribute in the schema: w:numId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + durableId + Represents the following attribute in the schema: w:durableId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AbstractNumId. + Represents the following element tag in the schema: w:abstractNumId. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Style Conditional Formatting Paragraph Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pPr. + + + The following table lists the possible child types: + + <w:outlineLvl> + <w:framePr> + <w:ind> + <w:jc> + <w:numPr> + <w:keepNext> + <w:keepLines> + <w:pageBreakBefore> + <w:widowControl> + <w:suppressLineNumbers> + <w:suppressAutoHyphens> + <w:kinsoku> + <w:wordWrap> + <w:overflowPunct> + <w:topLinePunct> + <w:autoSpaceDE> + <w:autoSpaceDN> + <w:bidi> + <w:adjustRightInd> + <w:snapToGrid> + <w:contextualSpacing> + <w:mirrorIndents> + <w:suppressOverlap> + <w:pBdr> + <w:pPrChange> + <w:shd> + <w:spacing> + <w:tabs> + <w:textAlignment> + <w:textboxTightWrap> + <w:textDirection> + + + + + + Initializes a new instance of the StyleParagraphProperties class. + + + + + Initializes a new instance of the StyleParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + KeepNext. + Represents the following element tag in the schema: w:keepNext. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + KeepLines. + Represents the following element tag in the schema: w:keepLines. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageBreakBefore. + Represents the following element tag in the schema: w:pageBreakBefore. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FrameProperties. + Represents the following element tag in the schema: w:framePr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WidowControl. + Represents the following element tag in the schema: w:widowControl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NumberingProperties. + Represents the following element tag in the schema: w:numPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressLineNumbers. + Represents the following element tag in the schema: w:suppressLineNumbers. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ParagraphBorders. + Represents the following element tag in the schema: w:pBdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tabs. + Represents the following element tag in the schema: w:tabs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressAutoHyphens. + Represents the following element tag in the schema: w:suppressAutoHyphens. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kinsoku. + Represents the following element tag in the schema: w:kinsoku. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WordWrap. + Represents the following element tag in the schema: w:wordWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OverflowPunctuation. + Represents the following element tag in the schema: w:overflowPunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TopLinePunctuation. + Represents the following element tag in the schema: w:topLinePunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDE. + Represents the following element tag in the schema: w:autoSpaceDE. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDN. + Represents the following element tag in the schema: w:autoSpaceDN. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BiDi. + Represents the following element tag in the schema: w:bidi. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AdjustRightIndent. + Represents the following element tag in the schema: w:adjustRightInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpacingBetweenLines. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Indentation. + Represents the following element tag in the schema: w:ind. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ContextualSpacing. + Represents the following element tag in the schema: w:contextualSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + MirrorIndents. + Represents the following element tag in the schema: w:mirrorIndents. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressOverlap. + Represents the following element tag in the schema: w:suppressOverlap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Justification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextDirection. + Represents the following element tag in the schema: w:textDirection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextAlignment. + Represents the following element tag in the schema: w:textAlignment. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextBoxTightWrap. + Represents the following element tag in the schema: w:textboxTightWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OutlineLevel. + Represents the following element tag in the schema: w:outlineLvl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ParagraphPropertiesChange. + Represents the following element tag in the schema: w:pPrChange. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Style Conditional Formatting Table Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblPr. + + + The following table lists the possible child types: + + <w:shd> + <w:tblBorders> + <w:tblCellMar> + <w:jc> + <w:tblCellSpacing> + <w:tblInd> + + + + + + Initializes a new instance of the TableStyleConditionalFormattingTableProperties class. + + + + + Initializes a new instance of the TableStyleConditionalFormattingTableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleConditionalFormattingTableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleConditionalFormattingTableProperties class from outer XML. + + Specifies the outer XML of the element. + + + + TableJustification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellSpacing. + Represents the following element tag in the schema: w:tblCellSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableIndentation. + Represents the following element tag in the schema: w:tblInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableBorders. + Represents the following element tag in the schema: w:tblBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellMarginDefault. + Represents the following element tag in the schema: w:tblCellMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Style Conditional Formatting Table Row Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:trPr. + + + The following table lists the possible child types: + + <w:hidden> + <w:cantSplit> + <w:tblHeader> + <w:jc> + <w:tblCellSpacing> + + + + + + Initializes a new instance of the TableStyleConditionalFormattingTableRowProperties class. + + + + + Initializes a new instance of the TableStyleConditionalFormattingTableRowProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleConditionalFormattingTableRowProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleConditionalFormattingTableRowProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Table Style Conditional Formatting Table Cell Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcPr. + + + The following table lists the possible child types: + + <w:noWrap> + <w:shd> + <w:tcBorders> + <w:tcMar> + <w:vAlign> + + + + + + Initializes a new instance of the TableStyleConditionalFormattingTableCellProperties class. + + + + + Initializes a new instance of the TableStyleConditionalFormattingTableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleConditionalFormattingTableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleConditionalFormattingTableCellProperties class from outer XML. + + Specifies the outer XML of the element. + + + + TableCellBorders. + Represents the following element tag in the schema: w:tcBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoWrap. + Represents the following element tag in the schema: w:noWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellMargin. + Represents the following element tag in the schema: w:tcMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellVerticalAlignment. + Represents the following element tag in the schema: w:vAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Primary Style Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:name. + + + + + Initializes a new instance of the StyleName class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Optional User Interface Sorting Order. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:uiPriority. + + + + + Initializes a new instance of the UIPriority class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rPr. + + + The following table lists the possible child types: + + <w:bdr> + <w:color> + <w:eastAsianLayout> + <w:em> + <w:fitText> + <w:rFonts> + <w:kern> + <w:sz> + <w:szCs> + <w:lang> + <w:b> + <w:bCs> + <w:i> + <w:iCs> + <w:caps> + <w:smallCaps> + <w:strike> + <w:dstrike> + <w:outline> + <w:shadow> + <w:emboss> + <w:imprint> + <w:noProof> + <w:snapToGrid> + <w:vanish> + <w:webHidden> + <w:specVanish> + <w:rPrChange> + <w:shd> + <w:spacing> + <w:position> + <w:effect> + <w:w> + <w:u> + <w:vertAlign> + + + + + + Initializes a new instance of the StyleRunProperties class. + + + + + Initializes a new instance of the StyleRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleRunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + RunFonts. + Represents the following element tag in the schema: w:rFonts. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Bold. + Represents the following element tag in the schema: w:b. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BoldComplexScript. + Represents the following element tag in the schema: w:bCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Italic. + Represents the following element tag in the schema: w:i. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ItalicComplexScript. + Represents the following element tag in the schema: w:iCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Caps. + Represents the following element tag in the schema: w:caps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SmallCaps. + Represents the following element tag in the schema: w:smallCaps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Strike. + Represents the following element tag in the schema: w:strike. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DoubleStrike. + Represents the following element tag in the schema: w:dstrike. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Outline. + Represents the following element tag in the schema: w:outline. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shadow. + Represents the following element tag in the schema: w:shadow. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emboss. + Represents the following element tag in the schema: w:emboss. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Imprint. + Represents the following element tag in the schema: w:imprint. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoProof. + Represents the following element tag in the schema: w:noProof. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Vanish. + Represents the following element tag in the schema: w:vanish. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WebHidden. + Represents the following element tag in the schema: w:webHidden. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Color. + Represents the following element tag in the schema: w:color. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Spacing. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + CharacterScale. + Represents the following element tag in the schema: w:w. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kern. + Represents the following element tag in the schema: w:kern. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Position. + Represents the following element tag in the schema: w:position. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSize. + Represents the following element tag in the schema: w:sz. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSizeComplexScript. + Represents the following element tag in the schema: w:szCs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline. + Represents the following element tag in the schema: w:u. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextEffect. + Represents the following element tag in the schema: w:effect. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Border. + Represents the following element tag in the schema: w:bdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FitText. + Represents the following element tag in the schema: w:fitText. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + VerticalTextAlignment. + Represents the following element tag in the schema: w:vertAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emphasis. + Represents the following element tag in the schema: w:em. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Languages. + Represents the following element tag in the schema: w:lang. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EastAsianLayout. + Represents the following element tag in the schema: w:eastAsianLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpecVanish. + Represents the following element tag in the schema: w:specVanish. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + RunPropertiesChange. + Represents the following element tag in the schema: w:rPrChange. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Style Table Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblPr. + + + The following table lists the possible child types: + + <w:shd> + <w:tblBorders> + <w:tblCellMar> + <w:jc> + <w:tblCellSpacing> + <w:tblInd> + <w:tblStyleRowBandSize> + <w:tblStyleColBandSize> + + + + + + Initializes a new instance of the StyleTableProperties class. + + + + + Initializes a new instance of the StyleTableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleTableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleTableProperties class from outer XML. + + Specifies the outer XML of the element. + + + + TableStyleRowBandSize. + Represents the following element tag in the schema: w:tblStyleRowBandSize. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableStyleColumnBandSize. + Represents the following element tag in the schema: w:tblStyleColBandSize. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableJustification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellSpacing. + Represents the following element tag in the schema: w:tblCellSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableIndentation. + Represents the following element tag in the schema: w:tblInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableBorders. + Represents the following element tag in the schema: w:tblBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellMarginDefault. + Represents the following element tag in the schema: w:tblCellMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Style Table Cell Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tcPr. + + + The following table lists the possible child types: + + <w:noWrap> + <w:shd> + <w:tcMar> + <w:vAlign> + + + + + + Initializes a new instance of the StyleTableCellProperties class. + + + + + Initializes a new instance of the StyleTableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleTableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleTableCellProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NoWrap. + Represents the following element tag in the schema: w:noWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellMargin. + Represents the following element tag in the schema: w:tcMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TableCellVerticalAlignment. + Represents the following element tag in the schema: w:vAlign. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Style Conditional Table Formatting Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblStylePr. + + + The following table lists the possible child types: + + <w:pPr> + <w:rPr> + <w:tblPr> + <w:tcPr> + <w:trPr> + + + + + + Initializes a new instance of the TableStyleProperties class. + + + + + Initializes a new instance of the TableStyleProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Table Style Conditional Formatting Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Style Conditional Formatting Paragraph Properties. + Represents the following element tag in the schema: w:pPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Style Conditional Formatting Run Properties. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Style Conditional Formatting Table Properties. + Represents the following element tag in the schema: w:tblPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Style Conditional Formatting Table Row Properties. + Represents the following element tag in the schema: w:trPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Style Conditional Formatting Table Cell Properties. + Represents the following element tag in the schema: w:tcPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Latent Style Exception. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lsdException. + + + + + Initializes a new instance of the LatentStyleExceptionInfo class. + + + + + Primary Style Name + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Latent Style Locking Setting + Represents the following attribute in the schema: w:locked + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Override default sorting order + Represents the following attribute in the schema: w:uiPriority + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Semi hidden text override + Represents the following attribute in the schema: w:semiHidden + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Unhide when used + Represents the following attribute in the schema: w:unhideWhenUsed + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Latent Style Primary Style Setting + Represents the following attribute in the schema: w:qFormat + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Document Default Paragraph and Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docDefaults. + + + The following table lists the possible child types: + + <w:pPrDefault> + <w:rPrDefault> + + + + + + Initializes a new instance of the DocDefaults class. + + + + + Initializes a new instance of the DocDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocDefaults class from outer XML. + + Specifies the outer XML of the element. + + + + Default Run Properties. + Represents the following element tag in the schema: w:rPrDefault. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default Paragraph Properties. + Represents the following element tag in the schema: w:pPrDefault. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Latent Style Information. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:latentStyles. + + + The following table lists the possible child types: + + <w:lsdException> + + + + + + Initializes a new instance of the LatentStyles class. + + + + + Initializes a new instance of the LatentStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LatentStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LatentStyles class from outer XML. + + Specifies the outer XML of the element. + + + + Default Style Locking Setting + Represents the following attribute in the schema: w:defLockedState + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default User Interface Priority Setting + Represents the following attribute in the schema: w:defUIPriority + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default Semi-Hidden Setting + Represents the following attribute in the schema: w:defSemiHidden + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default Hidden Until Used Setting + Represents the following attribute in the schema: w:defUnhideWhenUsed + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default Primary Style Setting + Represents the following attribute in the schema: w:defQFormat + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Latent Style Count + Represents the following attribute in the schema: w:count + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Style Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:style. + + + The following table lists the possible child types: + + <w:rsid> + <w:autoRedefine> + <w:hidden> + <w:semiHidden> + <w:unhideWhenUsed> + <w:qFormat> + <w:locked> + <w:personal> + <w:personalCompose> + <w:personalReply> + <w:pPr> + <w:rPr> + <w:aliases> + <w:basedOn> + <w:next> + <w:link> + <w:name> + <w:tblPr> + <w:tblStylePr> + <w:tcPr> + <w:trPr> + <w:uiPriority> + + + + + + Initializes a new instance of the Style class. + + + + + Initializes a new instance of the Style class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Style class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Style class from outer XML. + + Specifies the outer XML of the element. + + + + Style Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Style ID + Represents the following attribute in the schema: w:styleId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Default Style + Represents the following attribute in the schema: w:default + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + User-Defined Style + Represents the following attribute in the schema: w:customStyle + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Primary Style Name. + Represents the following element tag in the schema: w:name. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Alternate Style Names. + Represents the following element tag in the schema: w:aliases. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Parent Style ID. + Represents the following element tag in the schema: w:basedOn. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Style For Next Paragraph. + Represents the following element tag in the schema: w:next. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Linked Style Reference. + Represents the following element tag in the schema: w:link. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Automatically Merge User Formatting Into Style Definition. + Represents the following element tag in the schema: w:autoRedefine. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Hide Style From User Interface. + Represents the following element tag in the schema: w:hidden. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Optional User Interface Sorting Order. + Represents the following element tag in the schema: w:uiPriority. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Hide Style From Main User Interface. + Represents the following element tag in the schema: w:semiHidden. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Remove Semi-Hidden Property When Style Is Used. + Represents the following element tag in the schema: w:unhideWhenUsed. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Primary Style. + Represents the following element tag in the schema: w:qFormat. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Style Cannot Be Applied. + Represents the following element tag in the schema: w:locked. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + E-Mail Message Text Style. + Represents the following element tag in the schema: w:personal. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + E-Mail Message Composition Style. + Represents the following element tag in the schema: w:personalCompose. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + E-Mail Message Reply Style. + Represents the following element tag in the schema: w:personalReply. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Identifier for Style Definition. + Represents the following element tag in the schema: w:rsid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Style Paragraph Properties. + Represents the following element tag in the schema: w:pPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Properties. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Style Table Properties. + Represents the following element tag in the schema: w:tblPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Style Table Row Properties. + Represents the following element tag in the schema: w:trPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Style Table Cell Properties. + Represents the following element tag in the schema: w:tcPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Properties for a Single Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:font. + + + The following table lists the possible child types: + + <w:charset> + <w:family> + <w:embedRegular> + <w:embedBold> + <w:embedItalic> + <w:embedBoldItalic> + <w:sig> + <w:notTrueType> + <w:panose1> + <w:pitch> + <w:altName> + + + + + + Initializes a new instance of the Font class. + + + + + Initializes a new instance of the Font class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Font class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Font class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AltName. + Represents the following element tag in the schema: w:altName. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Panose1Number. + Represents the following element tag in the schema: w:panose1. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontCharSet. + Represents the following element tag in the schema: w:charset. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontFamily. + Represents the following element tag in the schema: w:family. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NotTrueType. + Represents the following element tag in the schema: w:notTrueType. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Pitch. + Represents the following element tag in the schema: w:pitch. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FontSignature. + Represents the following element tag in the schema: w:sig. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EmbedRegularFont. + Represents the following element tag in the schema: w:embedRegular. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EmbedBoldFont. + Represents the following element tag in the schema: w:embedBold. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EmbedItalicFont. + Represents the following element tag in the schema: w:embedItalic. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + EmbedBoldItalicFont. + Represents the following element tag in the schema: w:embedBoldItalic. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Left Margin for HTML div. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:marLeft. + + + + + Initializes a new instance of the LeftMarginDiv class. + + + + + + + + Right Margin for HTML div. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:marRight. + + + + + Initializes a new instance of the RightMarginDiv class. + + + + + + + + Top Margin for HTML div. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:marTop. + + + + + Initializes a new instance of the TopMarginDiv class. + + + + + + + + Bottom Margin for HTML div. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:marBottom. + + + + + Initializes a new instance of the BottomMarginDiv class. + + + + + + + + Defines the SignedTwipsMeasureType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the SignedTwipsMeasureType class. + + + + + Positive or Negative Value in Twentieths of a Point + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Set of Borders for HTML div. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:divBdr. + + + The following table lists the possible child types: + + <w:top> + <w:left> + <w:bottom> + <w:right> + + + + + + Initializes a new instance of the DivBorder class. + + + + + Initializes a new instance of the DivBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DivBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DivBorder class from outer XML. + + Specifies the outer XML of the element. + + + + Top Border for HTML div. + Represents the following element tag in the schema: w:top. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Left Border for HTML div. + Represents the following element tag in the schema: w:left. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Bottom Border for HTML div. + Represents the following element tag in the schema: w:bottom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Right Border for HTML div. + Represents the following element tag in the schema: w:right. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Child div Elements Contained within Current div. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:divsChild. + + + The following table lists the possible child types: + + <w:div> + + + + + + Initializes a new instance of the DivsChild class. + + + + + Initializes a new instance of the DivsChild class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DivsChild class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DivsChild class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Divs Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:divs. + + + The following table lists the possible child types: + + <w:div> + + + + + + Initializes a new instance of the Divs class. + + + + + Initializes a new instance of the Divs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Divs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Divs class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DivsType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <w:div> + + + + + + Initializes a new instance of the DivsType class. + + + + + Initializes a new instance of the DivsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DivsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DivsType class from outer XML. + + Specifies the outer XML of the element. + + + + Information About Single HTML div Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:div. + + + The following table lists the possible child types: + + <w:divBdr> + <w:divsChild> + <w:blockQuote> + <w:bodyDiv> + <w:marLeft> + <w:marRight> + <w:marTop> + <w:marBottom> + + + + + + Initializes a new instance of the Div class. + + + + + Initializes a new instance of the Div class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Div class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Div class from outer XML. + + Specifies the outer XML of the element. + + + + div Data ID + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Data for HTML blockquote Element. + Represents the following element tag in the schema: w:blockQuote. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Data for HTML body Element. + Represents the following element tag in the schema: w:bodyDiv. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Left Margin for HTML div. + Represents the following element tag in the schema: w:marLeft. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Right Margin for HTML div. + Represents the following element tag in the schema: w:marRight. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Top Margin for HTML div. + Represents the following element tag in the schema: w:marTop. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Bottom Margin for HTML div. + Represents the following element tag in the schema: w:marBottom. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Set of Borders for HTML div. + Represents the following element tag in the schema: w:divBdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Comment Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:comment. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:customXml> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:sdt> + <w:tbl> + + + + + + Initializes a new instance of the Comment class. + + + + + Initializes a new instance of the Comment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comment class from outer XML. + + Specifies the outer XML of the element. + + + + initials + Represents the following attribute in the schema: w:initials + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Footnote Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footnote. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Footnote class. + + + + + Initializes a new instance of the Footnote class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Footnote class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Footnote class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Endnote Content. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:endnote. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Endnote class. + + + + + Initializes a new instance of the Endnote class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Endnote class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Endnote class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the FootnoteEndnoteType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the FootnoteEndnoteType class. + + + + + Initializes a new instance of the FootnoteEndnoteType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FootnoteEndnoteType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FootnoteEndnoteType class from outer XML. + + Specifies the outer XML of the element. + + + + Footnote/Endnote Type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote/Endnote ID + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Entry Insertion Behavior. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:behavior. + + + + + Initializes a new instance of the Behavior class. + + + + + Insertion Behavior Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Entry Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:type. + + + + + Initializes a new instance of the DocPartType class. + + + + + Type Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Gallery Associated With Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:gallery. + + + + + Initializes a new instance of the Gallery class. + + + + + Gallery Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Single Automatic Captioning Setting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autoCaption. + + + + + Initializes a new instance of the AutoCaption class. + + + + + Identifier of Object to be Automatically Captioned + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Caption Used for Automatic Captioning + Represents the following attribute in the schema: w:caption + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Single Caption Type Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:caption. + + + + + Initializes a new instance of the Caption class. + + + + + Caption Type Name + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Automatic Caption Placement + Represents the following attribute in the schema: w:pos + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Include Chapter Number in Field for Caption + Represents the following attribute in the schema: w:chapNum + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Style for Chapter Headings + Represents the following attribute in the schema: w:heading + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Include Name In Caption + Represents the following attribute in the schema: w:noLabel + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Caption Numbering Format + Represents the following attribute in the schema: w:numFmt + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Chapter Number/Item Index Separator + Represents the following attribute in the schema: w:sep + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Automatic Captioning Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:autoCaptions. + + + The following table lists the possible child types: + + <w:autoCaption> + + + + + + Initializes a new instance of the AutoCaptions class. + + + + + Initializes a new instance of the AutoCaptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoCaptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoCaptions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Document Background. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:background. + + + The following table lists the possible child types: + + <v:background> + + + + + + Initializes a new instance of the DocumentBackground class. + + + + + Initializes a new instance of the DocumentBackground class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentBackground class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentBackground class from outer XML. + + Specifies the outer XML of the element. + + + + color + Represents the following attribute in the schema: w:color + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + themeColor + Represents the following attribute in the schema: w:themeColor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + themeTint + Represents the following attribute in the schema: w:themeTint + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + themeShade + Represents the following attribute in the schema: w:themeShade + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Background. + Represents the following element tag in the schema: v:background. + + + xmlns:v = urn:schemas-microsoft-com:vml + + + + + + + + List of Glossary Document Entries. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docParts. + + + The following table lists the possible child types: + + <w:docPart> + + + + + + Initializes a new instance of the DocParts class. + + + + + Initializes a new instance of the DocParts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocParts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocParts class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Entry Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:name. + + + + + Initializes a new instance of the DocPartName class. + + + + + Name Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Built-In Entry + Represents the following attribute in the schema: w:decorated + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Entry Categorization. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:category. + + + The following table lists the possible child types: + + <w:gallery> + <w:name> + + + + + + Initializes a new instance of the Category class. + + + + + Initializes a new instance of the Category class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Category class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Category class from outer XML. + + Specifies the outer XML of the element. + + + + Category Associated With Entry. + Represents the following element tag in the schema: w:name. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Gallery Associated With Entry. + Represents the following element tag in the schema: w:gallery. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Entry Types. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:types. + + + The following table lists the possible child types: + + <w:type> + + + + + + Initializes a new instance of the DocPartTypes class. + + + + + Initializes a new instance of the DocPartTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocPartTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocPartTypes class from outer XML. + + Specifies the outer XML of the element. + + + + Entry Is Of All Types + Represents the following attribute in the schema: w:all + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Entry Insertion Behaviors. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:behaviors. + + + The following table lists the possible child types: + + <w:behavior> + + + + + + Initializes a new instance of the Behaviors class. + + + + + Initializes a new instance of the Behaviors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Behaviors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Behaviors class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Entry ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:guid. + + + + + Initializes a new instance of the DocPartId class. + + + + + GUID Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Glossary Document Entry Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPartPr. + + + The following table lists the possible child types: + + <w:behaviors> + <w:category> + <w:name> + <w:types> + <w:guid> + <w:style> + <w:description> + + + + + + Initializes a new instance of the DocPartProperties class. + + + + + Initializes a new instance of the DocPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Entry Name. + Represents the following element tag in the schema: w:name. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Associated Paragraph Style Name. + Represents the following element tag in the schema: w:style. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Entry Categorization. + Represents the following element tag in the schema: w:category. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Entry Types. + Represents the following element tag in the schema: w:types. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Entry Insertion Behaviors. + Represents the following element tag in the schema: w:behaviors. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Description for Entry. + Represents the following element tag in the schema: w:description. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Entry ID. + Represents the following element tag in the schema: w:guid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Contents of Glossary Document Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPartBody. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:sectPr> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the DocPartBody class. + + + + + Initializes a new instance of the DocPartBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocPartBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocPartBody class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Body Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:body. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:sectPr> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Body class. + + + + + Initializes a new instance of the Body class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Body class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Body class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BodyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <w:altChunk> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:p> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:sectPr> + <w:tbl> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the BodyType class. + + + + + Initializes a new instance of the BodyType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BodyType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BodyType class from outer XML. + + Specifies the outer XML of the element. + + + + Glossary Document Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPart. + + + The following table lists the possible child types: + + <w:docPartBody> + <w:docPartPr> + + + + + + Initializes a new instance of the DocPart class. + + + + + Initializes a new instance of the DocPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocPart class from outer XML. + + Specifies the outer XML of the element. + + + + Glossary Document Entry Properties. + Represents the following element tag in the schema: w:docPartPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Contents of Glossary Document Entry. + Represents the following element tag in the schema: w:docPartBody. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the CompatibilitySetting Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:compatSetting. + + + + + Initializes a new instance of the CompatibilitySetting class. + + + + + name + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + uri + Represents the following attribute in the schema: w:uri + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Cell Left Margin Default. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:left. + + + + + Initializes a new instance of the TableCellLeftMargin class. + + + + + + + + Table Cell Right Margin Default. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:right. + + + + + Initializes a new instance of the TableCellRightMargin class. + + + + + + + + Defines the TableWidthDxaNilType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TableWidthDxaNilType class. + + + + + w + Represents the following attribute in the schema: w:w + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + type + Represents the following attribute in the schema: w:type + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table-Level Property Exceptions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblPrEx. + + + The following table lists the possible child types: + + <w:shd> + <w:tblBorders> + <w:tblCellMar> + <w:jc> + <w:tblLayout> + <w:tblLook> + <w:tblPrExChange> + <w:tblW> + <w:tblCellSpacing> + <w:tblInd> + + + + + + Initializes a new instance of the TablePropertyExceptions class. + + + + + Initializes a new instance of the TablePropertyExceptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TablePropertyExceptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TablePropertyExceptions class from outer XML. + + Specifies the outer XML of the element. + + + + Preferred Table Width Exception. + Represents the following element tag in the schema: w:tblW. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Alignment Exception. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Spacing Exception. + Represents the following element tag in the schema: w:tblCellSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Indent from Leading Margin Exception. + Represents the following element tag in the schema: w:tblInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Borders Exceptions. + Represents the following element tag in the schema: w:tblBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Shading Exception. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Layout Exception. + Represents the following element tag in the schema: w:tblLayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Cell Margin Exceptions. + Represents the following element tag in the schema: w:tblCellMar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Table Style Conditional Formatting Settings Exception. + Represents the following element tag in the schema: w:tblLook. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Revision Information for Table-Level Property Exceptions. + Represents the following element tag in the schema: w:tblPrExChange. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Table Row Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:trPr. + + + The following table lists the possible child types: + + <w:cnfStyle> + <w:gridBefore> + <w:gridAfter> + <w:trHeight> + <w:divId> + <w:hidden> + <w:cantSplit> + <w:tblHeader> + <w:jc> + <w:wBefore> + <w:wAfter> + <w:tblCellSpacing> + <w:ins> + <w:del> + <w14:conflictIns> + <w14:conflictDel> + <w:trPrChange> + + + + + + Initializes a new instance of the TableRowProperties class. + + + + + Initializes a new instance of the TableRowProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRowProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRowProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Revision Information for Table Row Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:trPrChange. + + + The following table lists the possible child types: + + <w:trPr> + + + + + + Initializes a new instance of the TableRowPropertiesChange class. + + + + + Initializes a new instance of the TableRowPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRowPropertiesChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRowPropertiesChange class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Previous Table Row Properties. + Represents the following element tag in the schema: w:trPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Paragraph Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pPr. + + + The following table lists the possible child types: + + <w:cnfStyle> + <w:outlineLvl> + <w:framePr> + <w:ind> + <w:jc> + <w:divId> + <w:numPr> + <w:keepNext> + <w:keepLines> + <w:pageBreakBefore> + <w:widowControl> + <w:suppressLineNumbers> + <w:suppressAutoHyphens> + <w:kinsoku> + <w:wordWrap> + <w:overflowPunct> + <w:topLinePunct> + <w:autoSpaceDE> + <w:autoSpaceDN> + <w:bidi> + <w:adjustRightInd> + <w:snapToGrid> + <w:contextualSpacing> + <w:mirrorIndents> + <w:suppressOverlap> + <w:rPr> + <w:pBdr> + <w:pPrChange> + <w:sectPr> + <w:shd> + <w:spacing> + <w:pStyle> + <w:tabs> + <w:textAlignment> + <w:textboxTightWrap> + <w:textDirection> + + + + + + Initializes a new instance of the ParagraphProperties class. + + + + + Initializes a new instance of the ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ParagraphStyleId. + Represents the following element tag in the schema: w:pStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + KeepNext. + Represents the following element tag in the schema: w:keepNext. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + KeepLines. + Represents the following element tag in the schema: w:keepLines. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + PageBreakBefore. + Represents the following element tag in the schema: w:pageBreakBefore. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + FrameProperties. + Represents the following element tag in the schema: w:framePr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WidowControl. + Represents the following element tag in the schema: w:widowControl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + NumberingProperties. + Represents the following element tag in the schema: w:numPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressLineNumbers. + Represents the following element tag in the schema: w:suppressLineNumbers. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ParagraphBorders. + Represents the following element tag in the schema: w:pBdr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Shading. + Represents the following element tag in the schema: w:shd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Tabs. + Represents the following element tag in the schema: w:tabs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressAutoHyphens. + Represents the following element tag in the schema: w:suppressAutoHyphens. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Kinsoku. + Represents the following element tag in the schema: w:kinsoku. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + WordWrap. + Represents the following element tag in the schema: w:wordWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OverflowPunctuation. + Represents the following element tag in the schema: w:overflowPunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TopLinePunctuation. + Represents the following element tag in the schema: w:topLinePunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDE. + Represents the following element tag in the schema: w:autoSpaceDE. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AutoSpaceDN. + Represents the following element tag in the schema: w:autoSpaceDN. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + BiDi. + Represents the following element tag in the schema: w:bidi. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + AdjustRightIndent. + Represents the following element tag in the schema: w:adjustRightInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SnapToGrid. + Represents the following element tag in the schema: w:snapToGrid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SpacingBetweenLines. + Represents the following element tag in the schema: w:spacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Indentation. + Represents the following element tag in the schema: w:ind. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ContextualSpacing. + Represents the following element tag in the schema: w:contextualSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + MirrorIndents. + Represents the following element tag in the schema: w:mirrorIndents. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + SuppressOverlap. + Represents the following element tag in the schema: w:suppressOverlap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Justification. + Represents the following element tag in the schema: w:jc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextDirection. + Represents the following element tag in the schema: w:textDirection. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextAlignment. + Represents the following element tag in the schema: w:textAlignment. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + TextBoxTightWrap. + Represents the following element tag in the schema: w:textboxTightWrap. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OutlineLevel. + Represents the following element tag in the schema: w:outlineLvl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + DivId. + Represents the following element tag in the schema: w:divId. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ConditionalFormatStyle. + Represents the following element tag in the schema: w:cnfStyle. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Properties for the Paragraph Mark. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Section Properties. + Represents the following element tag in the schema: w:sectPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + ParagraphPropertiesChange. + Represents the following element tag in the schema: w:pPrChange. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Control Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:control. + + + + + Initializes a new instance of the Control class. + + + + + Unique Name for Embedded Control + Represents the following attribute in the schema: w:name + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Associated VML Data Reference + Represents the following attribute in the schema: w:shapeid + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Embedded Control Properties Relationship Reference + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Previous Table Grid. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:tblGrid. + + + The following table lists the possible child types: + + <w:gridCol> + + + + + + Initializes a new instance of the PreviousTableGrid class. + + + + + Initializes a new instance of the PreviousTableGrid class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTableGrid class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousTableGrid class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ObjectEmbed Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:objectEmbed. + + + + + Initializes a new instance of the ObjectEmbed class. + + + + + drawAspect + Represents the following attribute in the schema: w:drawAspect + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + progId + Represents the following attribute in the schema: w:progId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + shapeId + Represents the following attribute in the schema: w:shapeId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + fieldCodes + Represents the following attribute in the schema: w:fieldCodes + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the ObjectLink Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:objectLink. + + + + + Initializes a new instance of the ObjectLink class. + + + + + updateMode + Represents the following attribute in the schema: w:updateMode + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + lockedField + Represents the following attribute in the schema: w:lockedField + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + drawAspect + Represents the following attribute in the schema: w:drawAspect + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + progId + Represents the following attribute in the schema: w:progId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + shapeId + Represents the following attribute in the schema: w:shapeId + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + fieldCodes + Represents the following attribute in the schema: w:fieldCodes + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Lock Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lock. + + + + + Initializes a new instance of the Lock class. + + + + + Locking Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the SdtPlaceholder Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:placeholder. + + + The following table lists the possible child types: + + <w:docPart> + + + + + + Initializes a new instance of the SdtPlaceholder class. + + + + + Initializes a new instance of the SdtPlaceholder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtPlaceholder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtPlaceholder class from outer XML. + + Specifies the outer XML of the element. + + + + Document Part Reference. + Represents the following element tag in the schema: w:docPart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the DataBinding Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dataBinding. + + + + + Initializes a new instance of the DataBinding class. + + + + + XML Namespace Prefix Mappings + Represents the following attribute in the schema: w:prefixMappings + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + XPath + Represents the following attribute in the schema: w:xpath + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Custom XML Data Storage ID + Represents the following attribute in the schema: w:storeItemID + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the SdtContentComboBox Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:comboBox. + + + The following table lists the possible child types: + + <w:listItem> + + + + + + Initializes a new instance of the SdtContentComboBox class. + + + + + Initializes a new instance of the SdtContentComboBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentComboBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentComboBox class from outer XML. + + Specifies the outer XML of the element. + + + + Combo Box Last Saved Value + Represents the following attribute in the schema: w:lastValue + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the SdtContentDate Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:date. + + + The following table lists the possible child types: + + <w:calendar> + <w:lid> + <w:storeMappedDataAs> + <w:dateFormat> + + + + + + Initializes a new instance of the SdtContentDate class. + + + + + Initializes a new instance of the SdtContentDate class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentDate class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentDate class from outer XML. + + Specifies the outer XML of the element. + + + + Last Known Date in XML Schema DateTime Format + Represents the following attribute in the schema: w:fullDate + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Date Display Mask. + Represents the following element tag in the schema: w:dateFormat. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Date Picker Language ID. + Represents the following element tag in the schema: w:lid. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Custom XML Data Date Storage Format. + Represents the following element tag in the schema: w:storeMappedDataAs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Date Picker Calendar Type. + Represents the following element tag in the schema: w:calendar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the SdtContentDocPartObject Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPartObj. + + + The following table lists the possible child types: + + <w:docPartUnique> + <w:docPartGallery> + <w:docPartCategory> + + + + + + Initializes a new instance of the SdtContentDocPartObject class. + + + + + Initializes a new instance of the SdtContentDocPartObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentDocPartObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentDocPartObject class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SdtContentDocPartList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docPartList. + + + The following table lists the possible child types: + + <w:docPartUnique> + <w:docPartGallery> + <w:docPartCategory> + + + + + + Initializes a new instance of the SdtContentDocPartList class. + + + + + Initializes a new instance of the SdtContentDocPartList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentDocPartList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentDocPartList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SdtDocPartType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <w:docPartUnique> + <w:docPartGallery> + <w:docPartCategory> + + + + + + Initializes a new instance of the SdtDocPartType class. + + + + + Initializes a new instance of the SdtDocPartType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtDocPartType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtDocPartType class from outer XML. + + Specifies the outer XML of the element. + + + + Document Part Gallery Filter. + Represents the following element tag in the schema: w:docPartGallery. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Document Part Category Filter. + Represents the following element tag in the schema: w:docPartCategory. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Built-In Document Part. + Represents the following element tag in the schema: w:docPartUnique. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the SdtContentDropDownList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:dropDownList. + + + The following table lists the possible child types: + + <w:listItem> + + + + + + Initializes a new instance of the SdtContentDropDownList class. + + + + + Initializes a new instance of the SdtContentDropDownList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentDropDownList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentDropDownList class from outer XML. + + Specifies the outer XML of the element. + + + + Drop-down List Last Saved Value + Represents the following attribute in the schema: w:lastValue + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the SdtContentText Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:text. + + + + + Initializes a new instance of the SdtContentText class. + + + + + Allow Soft Line Breaks + Represents the following attribute in the schema: w:multiLine + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Write Protection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:writeProtection. + + + + + Initializes a new instance of the WriteProtection class. + + + + + Recommend Write Protection in User Interface + Represents the following attribute in the schema: w:recommended + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Provider Type + Represents the following attribute in the schema: w:cryptProviderType + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Algorithm Class + Represents the following attribute in the schema: w:cryptAlgorithmClass + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Algorithm Type + Represents the following attribute in the schema: w:cryptAlgorithmType + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Hashing Algorithm + Represents the following attribute in the schema: w:cryptAlgorithmSid + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Iterations to Run Hashing Algorithm + Represents the following attribute in the schema: w:cryptSpinCount + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Provider + Represents the following attribute in the schema: w:cryptProvider + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Algorithm Extensibility + Represents the following attribute in the schema: w:algIdExt + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Algorithm Extensibility Source + Represents the following attribute in the schema: w:algIdExtSource + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Provider Type Extensibility + Represents the following attribute in the schema: w:cryptProviderTypeExt + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Provider Type Extensibility Source + Represents the following attribute in the schema: w:cryptProviderTypeExtSource + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Password Hash + Represents the following attribute in the schema: w:hash + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Salt for Password Verifier + Represents the following attribute in the schema: w:salt + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + algorithmName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:algorithmName + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + hashValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:hashValue + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + saltValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:saltValue + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + spinCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:spinCount + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Document View Setting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:view. + + + + + Initializes a new instance of the View class. + + + + + Document View Setting Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Magnification Setting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:zoom. + + + + + Initializes a new instance of the Zoom class. + + + + + Zoom Type + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Zoom Percentage + Represents the following attribute in the schema: w:percent + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Grammar Checking Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:activeWritingStyle. + + + + + Initializes a new instance of the ActiveWritingStyle class. + + + + + Writing Style Language + Represents the following attribute in the schema: w:lang + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Grammatical Engine ID + Represents the following attribute in the schema: w:vendorID + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Grammatical Check Engine Version + Represents the following attribute in the schema: w:dllVersion + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Natural Language Grammar Check + Represents the following attribute in the schema: w:nlCheck + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Check Stylistic Rules With Grammar + Represents the following attribute in the schema: w:checkStyle + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Application Name + Represents the following attribute in the schema: w:appName + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Spelling and Grammatical Checking State. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:proofState. + + + + + Initializes a new instance of the ProofState class. + + + + + Spell Checking State + Represents the following attribute in the schema: w:spelling + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Grammatical Checking State + Represents the following attribute in the schema: w:grammar + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Suggested Filtering for List of Document Styles. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:stylePaneFormatFilter. + + + + + Initializes a new instance of the StylePaneFormatFilter class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + allStyles, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:allStyles + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + customStyles, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:customStyles + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + latentStyles, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:latentStyles + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + stylesInUse, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:stylesInUse + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + headingStyles, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:headingStyles + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + numberingStyles, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:numberingStyles + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + tableStyles, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:tableStyles + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + directFormattingOnRuns, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:directFormattingOnRuns + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + directFormattingOnParagraphs, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:directFormattingOnParagraphs + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + directFormattingOnNumbering, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:directFormattingOnNumbering + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + directFormattingOnTables, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:directFormattingOnTables + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + clearFormatting, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:clearFormatting + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + top3HeadingStyles, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:top3HeadingStyles + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + visibleStyles, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:visibleStyles + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + alternateStyleNames, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:alternateStyleNames + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Document Classification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:documentType. + + + + + Initializes a new instance of the DocumentType class. + + + + + Document Classification Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Mail Merge Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:mailMerge. + + + The following table lists the possible child types: + + <w:activeRecord> + <w:checkErrors> + <w:dataType> + <w:destination> + <w:mainDocumentType> + <w:odso> + <w:linkToQuery> + <w:doNotSuppressBlankLines> + <w:mailAsAttachment> + <w:viewMergedData> + <w:dataSource> + <w:headerSource> + <w:connectString> + <w:query> + <w:addressFieldName> + <w:mailSubject> + + + + + + Initializes a new instance of the MailMerge class. + + + + + Initializes a new instance of the MailMerge class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MailMerge class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MailMerge class from outer XML. + + Specifies the outer XML of the element. + + + + Source Document Type. + Represents the following element tag in the schema: w:mainDocumentType. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Query Contains Link to External Query File. + Represents the following element tag in the schema: w:linkToQuery. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Data Source Type. + Represents the following element tag in the schema: w:dataType. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Data Source Connection String. + Represents the following element tag in the schema: w:connectString. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Query For Data Source Records To Merge. + Represents the following element tag in the schema: w:query. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Data Source File Path. + Represents the following element tag in the schema: w:dataSource. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Header Definition File Path. + Represents the following element tag in the schema: w:headerSource. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Remove Blank Lines from Merged Documents. + Represents the following element tag in the schema: w:doNotSuppressBlankLines. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Merged Document Destination. + Represents the following element tag in the schema: w:destination. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Column Containing E-mail Address. + Represents the following element tag in the schema: w:addressFieldName. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Merged E-mail or Fax Subject Line. + Represents the following element tag in the schema: w:mailSubject. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Merged Document To E-Mail Attachment. + Represents the following element tag in the schema: w:mailAsAttachment. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + View Merged Data Within Document. + Represents the following element tag in the schema: w:viewMergedData. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Record Currently Displayed In Merged Document. + Represents the following element tag in the schema: w:activeRecord. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Mail Merge Error Reporting Setting. + Represents the following element tag in the schema: w:checkErrors. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Office Data Source Object Settings. + Represents the following element tag in the schema: w:odso. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Visibility of Annotation Types. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:revisionView. + + + + + Initializes a new instance of the RevisionView class. + + + + + Display Visual Indicator Of Markup Area + Represents the following attribute in the schema: w:markup + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Display Comments + Represents the following attribute in the schema: w:comments + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Display Content Revisions + Represents the following attribute in the schema: w:insDel + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Display Formatting Revisions + Represents the following attribute in the schema: w:formatting + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Display Ink Annotations + Represents the following attribute in the schema: w:inkAnnotations + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Document Editing Restrictions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:documentProtection. + + + + + Initializes a new instance of the DocumentProtection class. + + + + + Document Editing Restrictions + Represents the following attribute in the schema: w:edit + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Only Allow Formatting With Unlocked Styles + Represents the following attribute in the schema: w:formatting + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Enforce Document Protection Settings + Represents the following attribute in the schema: w:enforcement + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Provider Type + Represents the following attribute in the schema: w:cryptProviderType + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Algorithm Class + Represents the following attribute in the schema: w:cryptAlgorithmClass + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Algorithm Type + Represents the following attribute in the schema: w:cryptAlgorithmType + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Hashing Algorithm + Represents the following attribute in the schema: w:cryptAlgorithmSid + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Iterations to Run Hashing Algorithm + Represents the following attribute in the schema: w:cryptSpinCount + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Provider + Represents the following attribute in the schema: w:cryptProvider + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Algorithm Extensibility + Represents the following attribute in the schema: w:algIdExt + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Algorithm Extensibility Source + Represents the following attribute in the schema: w:algIdExtSource + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Cryptographic Provider Type Extensibility + Represents the following attribute in the schema: w:cryptProviderTypeExt + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Provider Type Extensibility Source + Represents the following attribute in the schema: w:cryptProviderTypeExtSource + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Password Hash + Represents the following attribute in the schema: w:hash + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Salt for Password Verifier + Represents the following attribute in the schema: w:salt + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + algorithmName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:algorithmName + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + hashValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:hashValue + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + saltValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:saltValue + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + spinCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w:spinCount + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Distance Between Automatic Tab Stops. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:defaultTabStop. + + + + + Initializes a new instance of the DefaultTabStop class. + + + + + + + + Number of Pages Per Booklet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:bookFoldPrintingSheets. + + + + + Initializes a new instance of the BookFoldPrintingSheets class. + + + + + + + + Defines the NonNegativeShortType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the NonNegativeShortType class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Maximum Number of Consecutively Hyphenated Lines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:consecutiveHyphenLimit. + + + + + Initializes a new instance of the ConsecutiveHyphenLimit class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Percentage of Document to Use When Generating Summary. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:summaryLength. + + + + + Initializes a new instance of the SummaryLength class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Distance between Horizontal Gridlines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:displayHorizontalDrawingGridEvery. + + + + + Initializes a new instance of the DisplayHorizontalDrawingGrid class. + + + + + + + + Distance between Vertical Gridlines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:displayVerticalDrawingGridEvery. + + + + + Initializes a new instance of the DisplayVerticalDrawingGrid class. + + + + + + + + Defines the UnsignedInt7Type Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the UnsignedInt7Type class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Character-Level Whitespace Compression. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:characterSpacingControl. + + + + + Initializes a new instance of the CharacterSpacingControl class. + + + + + Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Custom Set of Characters Which Cannot End a Line. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noLineBreaksAfter. + + + + + Initializes a new instance of the NoLineBreaksAfterKinsoku class. + + + + + lang + Represents the following attribute in the schema: w:lang + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Custom Set Of Characters Which Cannot Begin A Line. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:noLineBreaksBefore. + + + + + Initializes a new instance of the NoLineBreaksBeforeKinsoku class. + + + + + lang + Represents the following attribute in the schema: w:lang + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Custom XSL Transform To Use When Saving As XML File. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:saveThroughXslt. + + + + + Initializes a new instance of the SaveThroughXslt class. + + + + + XSL Transformation Location + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Local Identifier for XSL Transform + Represents the following attribute in the schema: w:solutionID + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Default Properties for VML Objects in Header and Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:hdrShapeDefaults. + + + The following table lists the possible child types: + + <o:shapedefaults> + <o:shapelayout> + + + + + + Initializes a new instance of the HeaderShapeDefaults class. + + + + + Initializes a new instance of the HeaderShapeDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderShapeDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderShapeDefaults class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Default Properties for VML Objects in Main Document. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:shapeDefaults. + + + The following table lists the possible child types: + + <o:shapedefaults> + <o:shapelayout> + + + + + + Initializes a new instance of the ShapeDefaults class. + + + + + Initializes a new instance of the ShapeDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeDefaults class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ShapeDefaultsType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <o:shapedefaults> + <o:shapelayout> + + + + + + Initializes a new instance of the ShapeDefaultsType class. + + + + + Initializes a new instance of the ShapeDefaultsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeDefaultsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeDefaultsType class from outer XML. + + Specifies the outer XML of the element. + + + + Document-Wide Footnote Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:footnotePr. + + + The following table lists the possible child types: + + <w:numStart> + <w:footnote> + <w:pos> + <w:numFmt> + <w:numRestart> + + + + + + Initializes a new instance of the FootnoteDocumentWideProperties class. + + + + + Initializes a new instance of the FootnoteDocumentWideProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FootnoteDocumentWideProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FootnoteDocumentWideProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Footnote Placement. + Represents the following element tag in the schema: w:pos. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote Numbering Format. + Represents the following element tag in the schema: w:numFmt. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote and Endnote Numbering Starting Value. + Represents the following element tag in the schema: w:numStart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote and Endnote Numbering Restart Location. + Represents the following element tag in the schema: w:numRestart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Document-Wide Endnote Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:endnotePr. + + + The following table lists the possible child types: + + <w:pos> + <w:numStart> + <w:endnote> + <w:numFmt> + <w:numRestart> + + + + + + Initializes a new instance of the EndnoteDocumentWideProperties class. + + + + + Initializes a new instance of the EndnoteDocumentWideProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndnoteDocumentWideProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndnoteDocumentWideProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Endnote Placement. + Represents the following element tag in the schema: w:pos. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Endnote Numbering Format. + Represents the following element tag in the schema: w:numFmt. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote and Endnote Numbering Starting Value. + Represents the following element tag in the schema: w:numStart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Footnote and Endnote Numbering Restart Location. + Represents the following element tag in the schema: w:numRestart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Compatibility Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:compat. + + + The following table lists the possible child types: + + <w:compatSetting> + <w:useSingleBorderforContiguousCells> + <w:wpJustification> + <w:noTabHangInd> + <w:noLeading> + <w:spaceForUL> + <w:noColumnBalance> + <w:balanceSingleByteDoubleByteWidth> + <w:noExtraLineSpacing> + <w:doNotLeaveBackslashAlone> + <w:ulTrailSpace> + <w:doNotExpandShiftReturn> + <w:spacingInWholePoints> + <w:lineWrapLikeWord6> + <w:printBodyTextBeforeHeader> + <w:printColBlack> + <w:wpSpaceWidth> + <w:showBreaksInFrames> + <w:subFontBySize> + <w:suppressBottomSpacing> + <w:suppressTopSpacing> + <w:suppressSpacingAtTopOfPage> + <w:suppressTopSpacingWP> + <w:suppressSpBfAfterPgBrk> + <w:swapBordersFacingPages> + <w:convMailMergeEsc> + <w:truncateFontHeightsLikeWP6> + <w:mwSmallCaps> + <w:usePrinterMetrics> + <w:doNotSuppressParagraphBorders> + <w:wrapTrailSpaces> + <w:footnoteLayoutLikeWW8> + <w:shapeLayoutLikeWW8> + <w:alignTablesRowByRow> + <w:forgetLastTabAlignment> + <w:adjustLineHeightInTable> + <w:autoSpaceLikeWord95> + <w:noSpaceRaiseLower> + <w:doNotUseHTMLParagraphAutoSpacing> + <w:layoutRawTableWidth> + <w:layoutTableRowsApart> + <w:useWord97LineBreakRules> + <w:doNotBreakWrappedTables> + <w:doNotSnapToGridInCell> + <w:selectFldWithFirstOrLastChar> + <w:applyBreakingRules> + <w:doNotWrapTextWithPunct> + <w:doNotUseEastAsianBreakRules> + <w:useWord2002TableStyleRules> + <w:growAutofit> + <w:useFELayout> + <w:useNormalStyleForList> + <w:doNotUseIndentAsNumberingTabStop> + <w:useAltKinsokuLineBreakRules> + <w:allowSpaceOfSameStyleInTable> + <w:doNotSuppressIndentation> + <w:doNotAutofitConstrainedTables> + <w:autofitToFirstFixedWidthCell> + <w:underlineTabInNumList> + <w:displayHangulFixedWidth> + <w:splitPgBreakAndParaMark> + <w:doNotVertAlignCellWithSp> + <w:doNotBreakConstrainedForcedTable> + <w:doNotVertAlignInTxbx> + <w:useAnsiKerningPairs> + <w:cachedColBalance> + + + + + + Initializes a new instance of the Compatibility class. + + + + + Initializes a new instance of the Compatibility class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Compatibility class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Compatibility class from outer XML. + + Specifies the outer XML of the element. + + + + Use Simplified Rules For Table Border Conflicts. + Represents the following element tag in the schema: w:useSingleBorderforContiguousCells. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate WordPerfect 6.x Paragraph Justification. + Represents the following element tag in the schema: w:wpJustification. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Create Custom Tab Stop for Hanging Indent. + Represents the following element tag in the schema: w:noTabHangInd. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Add Leading Between Lines of Text. + Represents the following element tag in the schema: w:noLeading. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Add Additional Space Below Baseline For Underlined East Asian Text. + Represents the following element tag in the schema: w:spaceForUL. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Balance Text Columns within a Section. + Represents the following element tag in the schema: w:noColumnBalance. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Balance Single Byte and Double Byte Characters. + Represents the following element tag in the schema: w:balanceSingleByteDoubleByteWidth. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Center Content on Lines With Exact Line Height. + Represents the following element tag in the schema: w:noExtraLineSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Convert Backslash To Yen Sign When Entered. + Represents the following element tag in the schema: w:doNotLeaveBackslashAlone. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline All Trailing Spaces. + Represents the following element tag in the schema: w:ulTrailSpace. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Don't Justify Lines Ending in Soft Line Break. + Represents the following element tag in the schema: w:doNotExpandShiftReturn. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Only Expand/Condense Text By Whole Points. + Represents the following element tag in the schema: w:spacingInWholePoints. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate Word 6.0 Line Wrapping for East Asian Text. + Represents the following element tag in the schema: w:lineWrapLikeWord6. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Print Body Text before Header/Footer Contents. + Represents the following element tag in the schema: w:printBodyTextBeforeHeader. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Print Colors as Black And White without Dithering. + Represents the following element tag in the schema: w:printColBlack. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Space width. + Represents the following element tag in the schema: w:wpSpaceWidth. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Display Page/Column Breaks Present in Frames. + Represents the following element tag in the schema: w:showBreaksInFrames. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Increase Priority Of Font Size During Font Substitution. + Represents the following element tag in the schema: w:subFontBySize. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Ignore Exact Line Height for Last Line on Page. + Represents the following element tag in the schema: w:suppressBottomSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Ignore Minimum and Exact Line Height for First Line on Page. + Represents the following element tag in the schema: w:suppressTopSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Ignore Minimum Line Height for First Line on Page. + Represents the following element tag in the schema: w:suppressSpacingAtTopOfPage. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate WordPerfect 5.x Line Spacing. + Represents the following element tag in the schema: w:suppressTopSpacingWP. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Use Space Before On First Line After a Page Break. + Represents the following element tag in the schema: w:suppressSpBfAfterPgBrk. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Swap Paragraph Borders on Odd Numbered Pages. + Represents the following element tag in the schema: w:swapBordersFacingPages. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Treat Backslash Quotation Delimiter as Two Quotation Marks. + Represents the following element tag in the schema: w:convMailMergeEsc. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate WordPerfect 6.x Font Height Calculation. + Represents the following element tag in the schema: w:truncateFontHeightsLikeWP6. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate Word 5.x for the Macintosh Small Caps Formatting. + Represents the following element tag in the schema: w:mwSmallCaps. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Use Printer Metrics To Display Documents. + Represents the following element tag in the schema: w:usePrinterMetrics. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Suppress Paragraph Borders Next To Frames. + Represents the following element tag in the schema: w:doNotSuppressParagraphBorders. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Line Wrap Trailing Spaces. + Represents the following element tag in the schema: w:wrapTrailSpaces. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate Word 6.x/95/97 Footnote Placement. + Represents the following element tag in the schema: w:footnoteLayoutLikeWW8. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate Word 97 Text Wrapping Around Floating Objects. + Represents the following element tag in the schema: w:shapeLayoutLikeWW8. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Align Table Rows Independently. + Represents the following element tag in the schema: w:alignTablesRowByRow. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Ignore Width of Last Tab Stop When Aligning Paragraph If It Is Not Left Aligned. + Represents the following element tag in the schema: w:forgetLastTabAlignment. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Add Document Grid Line Pitch To Lines in Table Cells. + Represents the following element tag in the schema: w:adjustLineHeightInTable. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate Word 95 Full-Width Character Spacing. + Represents the following element tag in the schema: w:autoSpaceLikeWord95. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Increase Line Height for Raised/Lowered Text. + Represents the following element tag in the schema: w:noSpaceRaiseLower. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Use Fixed Paragraph Spacing for HTML Auto Setting. + Represents the following element tag in the schema: w:doNotUseHTMLParagraphAutoSpacing. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Ignore Space Before Table When Deciding If Table Should Wrap Floating Object. + Represents the following element tag in the schema: w:layoutRawTableWidth. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Allow Table Rows to Wrap Inline Objects Independently. + Represents the following element tag in the schema: w:layoutTableRowsApart. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate Word 97 East Asian Line Breaking. + Represents the following element tag in the schema: w:useWord97LineBreakRules. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Allow Floating Tables To Break Across Pages. + Represents the following element tag in the schema: w:doNotBreakWrappedTables. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Snap to Document Grid in Table Cells with Objects. + Represents the following element tag in the schema: w:doNotSnapToGridInCell. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Select Field When First or Last Character Is Selected. + Represents the following element tag in the schema: w:selectFldWithFirstOrLastChar. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Use Legacy Ethiopic and Amharic Line Breaking Rules. + Represents the following element tag in the schema: w:applyBreakingRules. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Allow Hanging Punctuation With Character Grid. + Represents the following element tag in the schema: w:doNotWrapTextWithPunct. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Compress Compressible Characters When Using Document Grid. + Represents the following element tag in the schema: w:doNotUseEastAsianBreakRules. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Emulate Word 2002 Table Style Rules. + Represents the following element tag in the schema: w:useWord2002TableStyleRules. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Allow Tables to AutoFit Into Page Margins. + Represents the following element tag in the schema: w:growAutofit. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Bypass East Asian/Complex Script Layout Code. + Represents the following element tag in the schema: w:useFELayout. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Automatically Apply List Paragraph Style To Bulleted/Numbered Text. + Represents the following element tag in the schema: w:useNormalStyleForList. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Ignore Hanging Indent When Creating Tab Stop After Numbering. + Represents the following element tag in the schema: w:doNotUseIndentAsNumberingTabStop. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Use Alternate Set of East Asian Line Breaking Rules. + Represents the following element tag in the schema: w:useAltKinsokuLineBreakRules. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Allow Contextual Spacing of Paragraphs in Tables. + Represents the following element tag in the schema: w:allowSpaceOfSameStyleInTable. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not Ignore Floating Objects When Calculating Paragraph Indentation. + Represents the following element tag in the schema: w:doNotSuppressIndentation. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Do Not AutoFit Tables To Fit Next To Wrapped Objects. + Represents the following element tag in the schema: w:doNotAutofitConstrainedTables. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Allow Table Columns To Exceed Preferred Widths of Constituent Cells. + Represents the following element tag in the schema: w:autofitToFirstFixedWidthCell. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Underline Following Character Following Numbering. + Represents the following element tag in the schema: w:underlineTabInNumList. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Always Use Fixed Width for Hangul Characters. + Represents the following element tag in the schema: w:displayHangulFixedWidth. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Always Move Paragraph Mark to Page after a Page Break. + Represents the following element tag in the schema: w:splitPgBreakAndParaMark. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Don't Vertically Align Cells Containing Floating Objects. + Represents the following element tag in the schema: w:doNotVertAlignCellWithSp. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Don't Break Table Rows Around Floating Tables. + Represents the following element tag in the schema: w:doNotBreakConstrainedForcedTable. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Ignore Vertical Alignment in Textboxes. + Represents the following element tag in the schema: w:doNotVertAlignInTxbx. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Use ANSI Kerning Pairs from Fonts. + Represents the following element tag in the schema: w:useAnsiKerningPairs. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Use Cached Paragraph Information for Column Balancing. + Represents the following element tag in the schema: w:cachedColBalance. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Document Variables. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:docVars. + + + The following table lists the possible child types: + + <w:docVar> + + + + + + Initializes a new instance of the DocumentVariables class. + + + + + Initializes a new instance of the DocumentVariables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentVariables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentVariables class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Listing of All Revision Save ID Values. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:rsids. + + + The following table lists the possible child types: + + <w:rsidRoot> + <w:rsid> + + + + + + Initializes a new instance of the Rsids class. + + + + + Initializes a new instance of the Rsids class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rsids class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rsids class from outer XML. + + Specifies the outer XML of the element. + + + + Original Document Revision Save ID. + Represents the following element tag in the schema: w:rsidRoot. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Theme Color Mappings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:clrSchemeMapping. + + + + + Initializes a new instance of the ColorSchemeMapping class. + + + + + Background 1 Theme Color Mapping + Represents the following attribute in the schema: w:bg1 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Text 1 Theme Color Mapping + Represents the following attribute in the schema: w:t1 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Background 2 Theme Color Mapping + Represents the following attribute in the schema: w:bg2 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Text 2 Theme Color Mapping + Represents the following attribute in the schema: w:t2 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Accent 1 Theme Color Mapping + Represents the following attribute in the schema: w:accent1 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Accent 2 Theme Color Mapping + Represents the following attribute in the schema: w:accent2 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Accent3 Theme Color Mapping + Represents the following attribute in the schema: w:accent3 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Accent4 Theme Color Mapping + Represents the following attribute in the schema: w:accent4 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Accent5 Theme Color Mapping + Represents the following attribute in the schema: w:accent5 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Accent6 Theme Color Mapping + Represents the following attribute in the schema: w:accent6 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Hyperlink Theme Color Mapping + Represents the following attribute in the schema: w:hyperlink + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Followed Hyperlink Theme Color Mapping + Represents the following attribute in the schema: w:followedHyperlink + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Caption Settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:captions. + + + The following table lists the possible child types: + + <w:autoCaptions> + <w:caption> + + + + + + Initializes a new instance of the Captions class. + + + + + Initializes a new instance of the Captions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Captions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Captions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Freeze Document Layout. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:readModeInkLockDown. + + + + + Initializes a new instance of the ReadModeInkLockDown class. + + + + + Use Actual Pages, Not Virtual Pages + Represents the following attribute in the schema: w:actualPg + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Virtual Page Width + Represents the following attribute in the schema: w:w + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Virtual Page Height + Represents the following attribute in the schema: w:h + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Font Size Scaling + Represents the following attribute in the schema: w:fontSz + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the TargetScreenSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:targetScreenSz. + + + + + Initializes a new instance of the TargetScreenSize class. + + + + + Target Screen Size Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the PictureBulletBase Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pict. + + + The following table lists the possible child types: + + <v:group> + <v:image> + <v:line> + <v:oval> + <v:polyline> + <v:rect> + <v:roundrect> + <v:shape> + <v:shapetype> + + + + + + Initializes a new instance of the PictureBulletBase class. + + + + + Initializes a new instance of the PictureBulletBase class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureBulletBase class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureBulletBase class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Panose1Number Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:panose1. + + + + + Initializes a new instance of the Panose1Number class. + + + + + Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the FontCharSet Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:charset. + + + + + Initializes a new instance of the FontCharSet class. + + + + + val + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + characterSet + Represents the following attribute in the schema: w:characterSet + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the FontFamily Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:family. + + + + + Initializes a new instance of the FontFamily class. + + + + + Font Family Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Pitch Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:pitch. + + + + + Initializes a new instance of the Pitch class. + + + + + Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the FontSignature Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:sig. + + + + + Initializes a new instance of the FontSignature class. + + + + + First 32 Bits of Unicode Subset Bitfield + Represents the following attribute in the schema: w:usb0 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Second 32 Bits of Unicode Subset Bitfield + Represents the following attribute in the schema: w:usb1 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Third 32 Bits of Unicode Subset Bitfield + Represents the following attribute in the schema: w:usb2 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Fourth 32 Bits of Unicode Subset Bitfield + Represents the following attribute in the schema: w:usb3 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Lower 32 Bits of Code Page Bit Field + Represents the following attribute in the schema: w:csb0 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Upper 32 Bits of Code Page Bit Field + Represents the following attribute in the schema: w:csb1 + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the EmbedRegularFont Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:embedRegular. + + + + + Initializes a new instance of the EmbedRegularFont class. + + + + + + + + Defines the EmbedBoldFont Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:embedBold. + + + + + Initializes a new instance of the EmbedBoldFont class. + + + + + + + + Defines the EmbedItalicFont Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:embedItalic. + + + + + Initializes a new instance of the EmbedItalicFont class. + + + + + + + + Defines the EmbedBoldItalicFont Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:embedBoldItalic. + + + + + Initializes a new instance of the EmbedBoldItalicFont class. + + + + + + + + Defines the FontRelationshipType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the FontRelationshipType class. + + + + + fontKey + Represents the following attribute in the schema: w:fontKey + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + subsetted + Represents the following attribute in the schema: w:subsetted + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Relationship to Part + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Defines the LevelOverride Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w:lvlOverride. + + + The following table lists the possible child types: + + <w:startOverride> + <w:lvl> + + + + + + Initializes a new instance of the LevelOverride class. + + + + + Initializes a new instance of the LevelOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LevelOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LevelOverride class from outer XML. + + Specifies the outer XML of the element. + + + + Numbering Level ID + Represents the following attribute in the schema: w:ilvl + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Level Starting Value Override. + Represents the following element tag in the schema: w:startOverride. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Numbering Level Override Definition. + Represents the following element tag in the schema: w:lvl. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the OnOffOnlyValues enumeration. + + + + + Creates a new OnOffOnlyValues enum instance + + + + + on. + When the item is serialized out as xml, its value is "on". + + + + + off. + When the item is serialized out as xml, its value is "off". + + + + + Defines the HighlightColorValues enumeration. + + + + + Creates a new HighlightColorValues enum instance + + + + + Black Highlighting Color. + When the item is serialized out as xml, its value is "black". + + + + + Blue Highlighting Color. + When the item is serialized out as xml, its value is "blue". + + + + + Cyan Highlighting Color. + When the item is serialized out as xml, its value is "cyan". + + + + + Green Highlighting Color. + When the item is serialized out as xml, its value is "green". + + + + + Magenta Highlighting Color. + When the item is serialized out as xml, its value is "magenta". + + + + + Red Highlighting Color. + When the item is serialized out as xml, its value is "red". + + + + + Yellow Highlighting Color. + When the item is serialized out as xml, its value is "yellow". + + + + + White Highlighting Color. + When the item is serialized out as xml, its value is "white". + + + + + Dark Blue Highlighting Color. + When the item is serialized out as xml, its value is "darkBlue". + + + + + Dark Cyan Highlighting Color. + When the item is serialized out as xml, its value is "darkCyan". + + + + + Dark Green Highlighting Color. + When the item is serialized out as xml, its value is "darkGreen". + + + + + Dark Magenta Highlighting Color. + When the item is serialized out as xml, its value is "darkMagenta". + + + + + Dark Red Highlighting Color. + When the item is serialized out as xml, its value is "darkRed". + + + + + Dark Yellow Highlighting Color. + When the item is serialized out as xml, its value is "darkYellow". + + + + + Dark Gray Highlighting Color. + When the item is serialized out as xml, its value is "darkGray". + + + + + Light Gray Highlighting Color. + When the item is serialized out as xml, its value is "lightGray". + + + + + No Text Highlighting. + When the item is serialized out as xml, its value is "none". + + + + + Defines the AutomaticColorValues enumeration. + + + + + Creates a new AutomaticColorValues enum instance + + + + + Automatically Determined Color. + When the item is serialized out as xml, its value is "auto". + + + + + Defines the UnderlineValues enumeration. + + + + + Creates a new UnderlineValues enum instance + + + + + Single Underline. + When the item is serialized out as xml, its value is "single". + + + + + Underline Non-Space Characters Only. + When the item is serialized out as xml, its value is "words". + + + + + Double Underline. + When the item is serialized out as xml, its value is "double". + + + + + Thick Underline. + When the item is serialized out as xml, its value is "thick". + + + + + Dotted Underline. + When the item is serialized out as xml, its value is "dotted". + + + + + Thick Dotted Underline. + When the item is serialized out as xml, its value is "dottedHeavy". + + + + + Dashed Underline. + When the item is serialized out as xml, its value is "dash". + + + + + Thick Dashed Underline. + When the item is serialized out as xml, its value is "dashedHeavy". + + + + + Long Dashed Underline. + When the item is serialized out as xml, its value is "dashLong". + + + + + Thick Long Dashed Underline. + When the item is serialized out as xml, its value is "dashLongHeavy". + + + + + Dash-Dot Underline. + When the item is serialized out as xml, its value is "dotDash". + + + + + Thick Dash-Dot Underline. + When the item is serialized out as xml, its value is "dashDotHeavy". + + + + + Dash-Dot-Dot Underline. + When the item is serialized out as xml, its value is "dotDotDash". + + + + + Thick Dash-Dot-Dot Underline. + When the item is serialized out as xml, its value is "dashDotDotHeavy". + + + + + Wave Underline. + When the item is serialized out as xml, its value is "wave". + + + + + Heavy Wave Underline. + When the item is serialized out as xml, its value is "wavyHeavy". + + + + + Double Wave Underline. + When the item is serialized out as xml, its value is "wavyDouble". + + + + + No Underline. + When the item is serialized out as xml, its value is "none". + + + + + Defines the TextEffectValues enumeration. + + + + + Creates a new TextEffectValues enum instance + + + + + Blinking Background Animation. + When the item is serialized out as xml, its value is "blinkBackground". + + + + + Colored Lights Animation. + When the item is serialized out as xml, its value is "lights". + + + + + Black Dashed Line Animation. + When the item is serialized out as xml, its value is "antsBlack". + + + + + Marching Red Ants. + When the item is serialized out as xml, its value is "antsRed". + + + + + Shimmer Animation. + When the item is serialized out as xml, its value is "shimmer". + + + + + Sparkling Lights Animation. + When the item is serialized out as xml, its value is "sparkle". + + + + + No Animation. + When the item is serialized out as xml, its value is "none". + + + + + Defines the VerticalPositionValues enumeration. + + + + + Creates a new VerticalPositionValues enum instance + + + + + Regular Vertical Positioning. + When the item is serialized out as xml, its value is "baseline". + + + + + Superscript. + When the item is serialized out as xml, its value is "superscript". + + + + + Subscript. + When the item is serialized out as xml, its value is "subscript". + + + + + Defines the EmphasisMarkValues enumeration. + + + + + Creates a new EmphasisMarkValues enum instance + + + + + No Emphasis Mark. + When the item is serialized out as xml, its value is "none". + + + + + Dot Emphasis Mark Above Characters. + When the item is serialized out as xml, its value is "dot". + + + + + Comma Emphasis Mark Above Characters. + When the item is serialized out as xml, its value is "comma". + + + + + Circle Emphasis Mark Above Characters. + When the item is serialized out as xml, its value is "circle". + + + + + Dot Emphasis Mark Below Characters. + When the item is serialized out as xml, its value is "underDot". + + + + + Defines the CombineBracketValues enumeration. + + + + + Creates a new CombineBracketValues enum instance + + + + + No Enclosing Brackets. + When the item is serialized out as xml, its value is "none". + + + + + Round Brackets. + When the item is serialized out as xml, its value is "round". + + + + + Square Brackets. + When the item is serialized out as xml, its value is "square". + + + + + Angle Brackets. + When the item is serialized out as xml, its value is "angle". + + + + + Curly Brackets. + When the item is serialized out as xml, its value is "curly". + + + + + Defines the HorizontalAlignmentValues enumeration. + + + + + Creates a new HorizontalAlignmentValues enum instance + + + + + Left Aligned Horizontally. + When the item is serialized out as xml, its value is "left". + + + + + Centered Horizontally. + When the item is serialized out as xml, its value is "center". + + + + + Right Aligned Horizontally. + When the item is serialized out as xml, its value is "right". + + + + + Inside. + When the item is serialized out as xml, its value is "inside". + + + + + Outside. + When the item is serialized out as xml, its value is "outside". + + + + + Defines the VerticalAlignmentValues enumeration. + + + + + Creates a new VerticalAlignmentValues enum instance + + + + + In line With Text. + When the item is serialized out as xml, its value is "inline". + + + + + Top. + When the item is serialized out as xml, its value is "top". + + + + + Centered Vertically. + When the item is serialized out as xml, its value is "center". + + + + + Bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + Inside Anchor Extents. + When the item is serialized out as xml, its value is "inside". + + + + + Outside Anchor Extents. + When the item is serialized out as xml, its value is "outside". + + + + + Defines the HeightRuleValues enumeration. + + + + + Creates a new HeightRuleValues enum instance + + + + + Determine Height Based On Contents. + When the item is serialized out as xml, its value is "auto". + + + + + Exact Height. + When the item is serialized out as xml, its value is "exact". + + + + + Minimum Height. + When the item is serialized out as xml, its value is "atLeast". + + + + + Defines the TextWrappingValues enumeration. + + + + + Creates a new TextWrappingValues enum instance + + + + + Default Text Wrapping Around Frame. + When the item is serialized out as xml, its value is "auto". + + + + + No Text Wrapping Beside Frame. + When the item is serialized out as xml, its value is "notBeside". + + + + + Allow Text Wrapping Around Frame. + When the item is serialized out as xml, its value is "around". + + + + + Tight Text Wrapping Around Frame. + When the item is serialized out as xml, its value is "tight". + + + + + Through Text Wrapping Around Frame. + When the item is serialized out as xml, its value is "through". + + + + + No Text Wrapping Around Frame. + When the item is serialized out as xml, its value is "none". + + + + + Defines the VerticalAnchorValues enumeration. + + + + + Creates a new VerticalAnchorValues enum instance + + + + + Relative To Vertical Text Extents. + When the item is serialized out as xml, its value is "text". + + + + + Relative To Margin. + When the item is serialized out as xml, its value is "margin". + + + + + Relative To Page. + When the item is serialized out as xml, its value is "page". + + + + + Defines the HorizontalAnchorValues enumeration. + + + + + Creates a new HorizontalAnchorValues enum instance + + + + + Relative to Text Extents. + When the item is serialized out as xml, its value is "text". + + + + + Relative To Margin. + When the item is serialized out as xml, its value is "margin". + + + + + Relative to Page. + When the item is serialized out as xml, its value is "page". + + + + + Defines the DropCapLocationValues enumeration. + + + + + Creates a new DropCapLocationValues enum instance + + + + + Not Drop Cap. + When the item is serialized out as xml, its value is "none". + + + + + Drop Cap Inside Margin. + When the item is serialized out as xml, its value is "drop". + + + + + Drop Cap Outside Margin. + When the item is serialized out as xml, its value is "margin". + + + + + Defines the TabStopLeaderCharValues enumeration. + + + + + Creates a new TabStopLeaderCharValues enum instance + + + + + No tab stop leader. + When the item is serialized out as xml, its value is "none". + + + + + Dotted leader line. + When the item is serialized out as xml, its value is "dot". + + + + + Dashed tab stop leader line. + When the item is serialized out as xml, its value is "hyphen". + + + + + Solid leader line. + When the item is serialized out as xml, its value is "underscore". + + + + + Heavy solid leader line. + When the item is serialized out as xml, its value is "heavy". + + + + + Middle dot leader line. + When the item is serialized out as xml, its value is "middleDot". + + + + + Defines the LineSpacingRuleValues enumeration. + + + + + Creates a new LineSpacingRuleValues enum instance + + + + + Automatically Determined Line Height. + When the item is serialized out as xml, its value is "auto". + + + + + Exact Line Height. + When the item is serialized out as xml, its value is "exact". + + + + + Minimum Line Height. + When the item is serialized out as xml, its value is "atLeast". + + + + + Defines the TableRowAlignmentValues enumeration. + + + + + Creates a new TableRowAlignmentValues enum instance + + + + + left. + When the item is serialized out as xml, its value is "left". + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + right. + When the item is serialized out as xml, its value is "right". + + + + + Defines the ViewValues enumeration. + + + + + Creates a new ViewValues enum instance + + + + + Default View. + When the item is serialized out as xml, its value is "none". + + + + + Print Layout View. + When the item is serialized out as xml, its value is "print". + + + + + Outline View. + When the item is serialized out as xml, its value is "outline". + + + + + Master Document View. + When the item is serialized out as xml, its value is "masterPages". + + + + + Draft View. + When the item is serialized out as xml, its value is "normal". + + + + + Web Page View. + When the item is serialized out as xml, its value is "web". + + + + + Defines the PresetZoomValues enumeration. + + + + + Creates a new PresetZoomValues enum instance + + + + + No Preset Magnification. + When the item is serialized out as xml, its value is "none". + + + + + Display One Full Page. + When the item is serialized out as xml, its value is "fullPage". + + + + + Display Page Width. + When the item is serialized out as xml, its value is "bestFit". + + + + + Display Text Width. + When the item is serialized out as xml, its value is "textFit". + + + + + Defines the ProofingStateValues enumeration. + + + + + Creates a new ProofingStateValues enum instance + + + + + Check Completed. + When the item is serialized out as xml, its value is "clean". + + + + + Check Not Completed. + When the item is serialized out as xml, its value is "dirty". + + + + + Defines the DocumentTypeValues enumeration. + + + + + Creates a new DocumentTypeValues enum instance + + + + + Default Document. + When the item is serialized out as xml, its value is "notSpecified". + + + + + Letter. + When the item is serialized out as xml, its value is "letter". + + + + + E-Mail Message. + When the item is serialized out as xml, its value is "eMail". + + + + + Defines the DocumentProtectionValues enumeration. + + + + + Creates a new DocumentProtectionValues enum instance + + + + + No Editing Restrictions. + When the item is serialized out as xml, its value is "none". + + + + + Allow No Editing. + When the item is serialized out as xml, its value is "readOnly". + + + + + Allow Editing of Comments. + When the item is serialized out as xml, its value is "comments". + + + + + Allow Editing With Revision Tracking. + When the item is serialized out as xml, its value is "trackedChanges". + + + + + Allow Editing of Form Fields. + When the item is serialized out as xml, its value is "forms". + + + + + Defines the MailMergeDocumentValues enumeration. + + + + + Creates a new MailMergeDocumentValues enum instance + + + + + Catalog Source Document. + When the item is serialized out as xml, its value is "catalog". + + + + + Envelope Source Document. + When the item is serialized out as xml, its value is "envelopes". + + + + + Mailing Label Source Document. + When the item is serialized out as xml, its value is "mailingLabels". + + + + + Form Letter Source Document. + When the item is serialized out as xml, its value is "formLetters". + + + + + E-Mail Source Document. + When the item is serialized out as xml, its value is "email". + + + + + Fax Source Document. + When the item is serialized out as xml, its value is "fax". + + + + + Defines the MailMergeDataValues enumeration. + + + + + Creates a new MailMergeDataValues enum instance + + + + + Text File Data Source. + When the item is serialized out as xml, its value is "textFile". + + + + + Database Data Source. + When the item is serialized out as xml, its value is "database". + + + + + Spreadsheet Data Source. + When the item is serialized out as xml, its value is "spreadsheet". + + + + + Query Data Source. + When the item is serialized out as xml, its value is "query". + + + + + Open Database Connectivity Data Source. + When the item is serialized out as xml, its value is "odbc". + + + + + Office Data Source Object Data Source. + When the item is serialized out as xml, its value is "native". + + + + + Defines the MailMergeDestinationValues enumeration. + + + + + Creates a new MailMergeDestinationValues enum instance + + + + + Send Merged Documents to New Documents. + When the item is serialized out as xml, its value is "newDocument". + + + + + Send Merged Documents to Printer. + When the item is serialized out as xml, its value is "printer". + + + + + Send Merged Documents as E-mail Messages. + When the item is serialized out as xml, its value is "email". + + + + + Send Merged Documents as Faxes. + When the item is serialized out as xml, its value is "fax". + + + + + Defines the MailMergeOdsoFieldValues enumeration. + + + + + Creates a new MailMergeOdsoFieldValues enum instance + + + + + Field Not Mapped. + When the item is serialized out as xml, its value is "null". + + + + + Field Mapping to Data Source Column. + When the item is serialized out as xml, its value is "dbColumn". + + + + + Defines the VerticalTextAlignmentValues enumeration. + + + + + Creates a new VerticalTextAlignmentValues enum instance + + + + + Align Text at Top. + When the item is serialized out as xml, its value is "top". + + + + + Align Text at Center. + When the item is serialized out as xml, its value is "center". + + + + + Align Text at Baseline. + When the item is serialized out as xml, its value is "baseline". + + + + + Align Text at Bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + Automatically Determine Alignment. + When the item is serialized out as xml, its value is "auto". + + + + + Defines the DisplacedByCustomXmlValues enumeration. + + + + + Creates a new DisplacedByCustomXmlValues enum instance + + + + + Displaced by Next Custom XML Markup Tag. + When the item is serialized out as xml, its value is "next". + + + + + Displaced by Previous Custom XML Markup Tag. + When the item is serialized out as xml, its value is "prev". + + + + + Defines the VerticalMergeRevisionValues enumeration. + + + + + Creates a new VerticalMergeRevisionValues enum instance + + + + + Vertically Merged Cell. + When the item is serialized out as xml, its value is "cont". + + + + + Vertically Split Cell. + When the item is serialized out as xml, its value is "rest". + + + + + Defines the TextBoxTightWrapValues enumeration. + + + + + Creates a new TextBoxTightWrapValues enum instance + + + + + Do Not Tight Wrap. + When the item is serialized out as xml, its value is "none". + + + + + Tight Wrap All Lines. + When the item is serialized out as xml, its value is "allLines". + + + + + Tight Wrap First and Last Lines. + When the item is serialized out as xml, its value is "firstAndLastLine". + + + + + Tight Wrap First Line. + When the item is serialized out as xml, its value is "firstLineOnly". + + + + + Tight Wrap Last Line. + When the item is serialized out as xml, its value is "lastLineOnly". + + + + + Defines the FieldCharValues enumeration. + + + + + Creates a new FieldCharValues enum instance + + + + + Start Character. + When the item is serialized out as xml, its value is "begin". + + + + + Separator Character. + When the item is serialized out as xml, its value is "separate". + + + + + End Character. + When the item is serialized out as xml, its value is "end". + + + + + Defines the InfoTextValues enumeration. + + + + + Creates a new InfoTextValues enum instance + + + + + Literal Text. + When the item is serialized out as xml, its value is "text". + + + + + Glossary Document Entry. + When the item is serialized out as xml, its value is "autoText". + + + + + Defines the TextBoxFormFieldValues enumeration. + + + + + Creates a new TextBoxFormFieldValues enum instance + + + + + Text Box. + When the item is serialized out as xml, its value is "regular". + + + + + Number. + When the item is serialized out as xml, its value is "number". + + + + + Date. + When the item is serialized out as xml, its value is "date". + + + + + Current Time Display. + When the item is serialized out as xml, its value is "currentTime". + + + + + Current Date Display. + When the item is serialized out as xml, its value is "currentDate". + + + + + Field Calculation. + When the item is serialized out as xml, its value is "calculated". + + + + + Defines the SectionMarkValues enumeration. + + + + + Creates a new SectionMarkValues enum instance + + + + + Next Page Section Break. + When the item is serialized out as xml, its value is "nextPage". + + + + + Column Section Break. + When the item is serialized out as xml, its value is "nextColumn". + + + + + Continuous Section Break. + When the item is serialized out as xml, its value is "continuous". + + + + + Even Page Section Break. + When the item is serialized out as xml, its value is "evenPage". + + + + + Odd Page Section Break. + When the item is serialized out as xml, its value is "oddPage". + + + + + Defines the PageOrientationValues enumeration. + + + + + Creates a new PageOrientationValues enum instance + + + + + Portrait Mode. + When the item is serialized out as xml, its value is "portrait". + + + + + Landscape Mode. + When the item is serialized out as xml, its value is "landscape". + + + + + Defines the PageBorderZOrderValues enumeration. + + + + + Creates a new PageBorderZOrderValues enum instance + + + + + Page Border Ahead of Text. + When the item is serialized out as xml, its value is "front". + + + + + Page Border Behind Text. + When the item is serialized out as xml, its value is "back". + + + + + Defines the PageBorderDisplayValues enumeration. + + + + + Creates a new PageBorderDisplayValues enum instance + + + + + Display Page Border on All Pages. + When the item is serialized out as xml, its value is "allPages". + + + + + Display Page Border on First Page. + When the item is serialized out as xml, its value is "firstPage". + + + + + Display Page Border on All Pages Except First. + When the item is serialized out as xml, its value is "notFirstPage". + + + + + Defines the PageBorderOffsetValues enumeration. + + + + + Creates a new PageBorderOffsetValues enum instance + + + + + Page Border Is Positioned Relative to Page Edges. + When the item is serialized out as xml, its value is "page". + + + + + Page Border Is Positioned Relative to Text Extents. + When the item is serialized out as xml, its value is "text". + + + + + Defines the ChapterSeparatorValues enumeration. + + + + + Creates a new ChapterSeparatorValues enum instance + + + + + Hyphen Chapter Separator. + When the item is serialized out as xml, its value is "hyphen". + + + + + Period Chapter Separator. + When the item is serialized out as xml, its value is "period". + + + + + Colon Chapter Separator. + When the item is serialized out as xml, its value is "colon". + + + + + Em Dash Chapter Separator. + When the item is serialized out as xml, its value is "emDash". + + + + + En Dash Chapter Separator. + When the item is serialized out as xml, its value is "enDash". + + + + + Defines the LineNumberRestartValues enumeration. + + + + + Creates a new LineNumberRestartValues enum instance + + + + + Restart Line Numbering on Each Page. + When the item is serialized out as xml, its value is "newPage". + + + + + Restart Line Numbering for Each Section. + When the item is serialized out as xml, its value is "newSection". + + + + + Continue Line Numbering From Previous Section. + When the item is serialized out as xml, its value is "continuous". + + + + + Defines the VerticalJustificationValues enumeration. + + + + + Creates a new VerticalJustificationValues enum instance + + + + + Align Top. + When the item is serialized out as xml, its value is "top". + + + + + Align Center. + When the item is serialized out as xml, its value is "center". + + + + + Vertical Justification. + When the item is serialized out as xml, its value is "both". + + + + + Align Bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + Defines the TableVerticalAlignmentValues enumeration. + + + + + Creates a new TableVerticalAlignmentValues enum instance + + + + + top. + When the item is serialized out as xml, its value is "top". + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + Defines the DocGridValues enumeration. + + + + + Creates a new DocGridValues enum instance + + + + + No Document Grid. + When the item is serialized out as xml, its value is "default". + + + + + Line Grid Only. + When the item is serialized out as xml, its value is "lines". + + + + + Line and Character Grid. + When the item is serialized out as xml, its value is "linesAndChars". + + + + + Character Grid Only. + When the item is serialized out as xml, its value is "snapToChars". + + + + + Defines the HeaderFooterValues enumeration. + + + + + Creates a new HeaderFooterValues enum instance + + + + + Even Numbered Pages Only. + When the item is serialized out as xml, its value is "even". + + + + + Default Header or Footer. + When the item is serialized out as xml, its value is "default". + + + + + First Page Only. + When the item is serialized out as xml, its value is "first". + + + + + Defines the FootnoteEndnoteValues enumeration. + + + + + Creates a new FootnoteEndnoteValues enum instance + + + + + Normal Footnote/Endnote. + When the item is serialized out as xml, its value is "normal". + + + + + Separator. + When the item is serialized out as xml, its value is "separator". + + + + + Continuation Separator. + When the item is serialized out as xml, its value is "continuationSeparator". + + + + + Continuation Notice Separator. + When the item is serialized out as xml, its value is "continuationNotice". + + + + + Defines the BreakValues enumeration. + + + + + Creates a new BreakValues enum instance + + + + + Page Break. + When the item is serialized out as xml, its value is "page". + + + + + Column Break. + When the item is serialized out as xml, its value is "column". + + + + + Line Break. + When the item is serialized out as xml, its value is "textWrapping". + + + + + Defines the BreakTextRestartLocationValues enumeration. + + + + + Creates a new BreakTextRestartLocationValues enum instance + + + + + Restart On Next Line. + When the item is serialized out as xml, its value is "none". + + + + + Restart In Next Text Region When In Leftmost Position. + When the item is serialized out as xml, its value is "left". + + + + + Restart In Next Text Region When In Rightmost Position. + When the item is serialized out as xml, its value is "right". + + + + + Restart On Next Full Line. + When the item is serialized out as xml, its value is "all". + + + + + Defines the AbsolutePositionTabAlignmentValues enumeration. + + + + + Creates a new AbsolutePositionTabAlignmentValues enum instance + + + + + Left. + When the item is serialized out as xml, its value is "left". + + + + + Center. + When the item is serialized out as xml, its value is "center". + + + + + Right. + When the item is serialized out as xml, its value is "right". + + + + + Defines the AbsolutePositionTabPositioningBaseValues enumeration. + + + + + Creates a new AbsolutePositionTabPositioningBaseValues enum instance + + + + + Relative To Text Margins. + When the item is serialized out as xml, its value is "margin". + + + + + Relative To Indents. + When the item is serialized out as xml, its value is "indent". + + + + + Defines the AbsolutePositionTabLeaderCharValues enumeration. + + + + + Creates a new AbsolutePositionTabLeaderCharValues enum instance + + + + + No Leader Character. + When the item is serialized out as xml, its value is "none". + + + + + Dot Leader Character. + When the item is serialized out as xml, its value is "dot". + + + + + Hyphen Leader Character. + When the item is serialized out as xml, its value is "hyphen". + + + + + Underscore Leader Character. + When the item is serialized out as xml, its value is "underscore". + + + + + Centered Dot Leader Character. + When the item is serialized out as xml, its value is "middleDot". + + + + + Defines the ProofingErrorValues enumeration. + + + + + Creates a new ProofingErrorValues enum instance + + + + + Start of Region Marked as Spelling Error. + When the item is serialized out as xml, its value is "spellStart". + + + + + End of Region Marked as Spelling Error. + When the item is serialized out as xml, its value is "spellEnd". + + + + + Start of Region Marked as Grammatical Error. + When the item is serialized out as xml, its value is "gramStart". + + + + + End of Region Marked as Grammatical Error. + When the item is serialized out as xml, its value is "gramEnd". + + + + + Defines the RangePermissionEditingGroupValues enumeration. + + + + + Creates a new RangePermissionEditingGroupValues enum instance + + + + + No Users Have Editing Permissions. + When the item is serialized out as xml, its value is "none". + + + + + All Users Have Editing Permissions. + When the item is serialized out as xml, its value is "everyone". + + + + + Administrator Group. + When the item is serialized out as xml, its value is "administrators". + + + + + Contributors Group. + When the item is serialized out as xml, its value is "contributors". + + + + + Editors Group. + When the item is serialized out as xml, its value is "editors". + + + + + Owners Group. + When the item is serialized out as xml, its value is "owners". + + + + + Current Group. + When the item is serialized out as xml, its value is "current". + + + + + Defines the FontTypeHintValues enumeration. + + + + + Creates a new FontTypeHintValues enum instance + + + + + High ANSI Font. + When the item is serialized out as xml, its value is "default". + + + + + East Asian Font. + When the item is serialized out as xml, its value is "eastAsia". + + + + + Complex Script Font. + When the item is serialized out as xml, its value is "cs". + + + + + Defines the ThemeFontValues enumeration. + + + + + Creates a new ThemeFontValues enum instance + + + + + Major East Asian Theme Font. + When the item is serialized out as xml, its value is "majorEastAsia". + + + + + Major Complex Script Theme Font. + When the item is serialized out as xml, its value is "majorBidi". + + + + + Major ASCII Theme Font. + When the item is serialized out as xml, its value is "majorAscii". + + + + + Major High ANSI Theme Font. + When the item is serialized out as xml, its value is "majorHAnsi". + + + + + Minor East Asian Theme Font. + When the item is serialized out as xml, its value is "minorEastAsia". + + + + + Minor Complex Script Theme Font. + When the item is serialized out as xml, its value is "minorBidi". + + + + + Minor ASCII Theme Font. + When the item is serialized out as xml, its value is "minorAscii". + + + + + Minor High ANSI Theme Font. + When the item is serialized out as xml, its value is "minorHAnsi". + + + + + Defines the RubyAlignValues enumeration. + + + + + Creates a new RubyAlignValues enum instance + + + + + Center. + When the item is serialized out as xml, its value is "center". + + + + + Distribute All Characters. + When the item is serialized out as xml, its value is "distributeLetter". + + + + + Distribute all Characters w/ Additional Space On Either Side. + When the item is serialized out as xml, its value is "distributeSpace". + + + + + Left Aligned. + When the item is serialized out as xml, its value is "left". + + + + + Right Aligned. + When the item is serialized out as xml, its value is "right". + + + + + Vertically Aligned to Right of Base Text. + When the item is serialized out as xml, its value is "rightVertical". + + + + + Defines the LockingValues enumeration. + + + + + Creates a new LockingValues enum instance + + + + + SDT Cannot Be Deleted. + When the item is serialized out as xml, its value is "sdtLocked". + + + + + Contents Cannot Be Edited At Runtime. + When the item is serialized out as xml, its value is "contentLocked". + + + + + No Locking. + When the item is serialized out as xml, its value is "unlocked". + + + + + Contents Cannot Be Edited At Runtime And SDT Cannot Be Deleted. + When the item is serialized out as xml, its value is "sdtContentLocked". + + + + + Defines the DateFormatValues enumeration. + + + + + Creates a new DateFormatValues enum instance + + + + + Same As Display. + When the item is serialized out as xml, its value is "text". + + + + + XML Schema Date Format. + When the item is serialized out as xml, its value is "date". + + + + + XML Schema DateTime Format. + When the item is serialized out as xml, its value is "dateTime". + + + + + Defines the TableWidthUnitValues enumeration. + + + + + Creates a new TableWidthUnitValues enum instance + + + + + No Width. + When the item is serialized out as xml, its value is "nil". + + + + + Width in Fiftieths of a Percent. + When the item is serialized out as xml, its value is "pct". + + + + + Width in Twentieths of a Point. + When the item is serialized out as xml, its value is "dxa". + + + + + Automatically Determined Width. + When the item is serialized out as xml, its value is "auto". + + + + + Defines the TableWidthValues enumeration. + + + + + Creates a new TableWidthValues enum instance + + + + + nil. + When the item is serialized out as xml, its value is "nil". + + + + + dxa. + When the item is serialized out as xml, its value is "dxa". + + + + + Defines the MergedCellValues enumeration. + + + + + Creates a new MergedCellValues enum instance + + + + + Continue Merged Region. + When the item is serialized out as xml, its value is "continue". + + + + + Start/Restart Merged Region. + When the item is serialized out as xml, its value is "restart". + + + + + Defines the TableLayoutValues enumeration. + + + + + Creates a new TableLayoutValues enum instance + + + + + Fixed Width Table Layout. + When the item is serialized out as xml, its value is "fixed". + + + + + AutoFit Table Layout. + When the item is serialized out as xml, its value is "autofit". + + + + + Defines the TableOverlapValues enumeration. + + + + + Creates a new TableOverlapValues enum instance + + + + + Floating Table Cannot Overlap. + When the item is serialized out as xml, its value is "never". + + + + + Floating Table Can Overlap. + When the item is serialized out as xml, its value is "overlap". + + + + + Defines the FootnotePositionValues enumeration. + + + + + Creates a new FootnotePositionValues enum instance + + + + + Footnotes Positioned at Page Bottom. + When the item is serialized out as xml, its value is "pageBottom". + + + + + Footnotes Positioned Beneath Text. + When the item is serialized out as xml, its value is "beneathText". + + + + + Footnotes Positioned At End of Section. + When the item is serialized out as xml, its value is "sectEnd". + + + + + Defines the EndnotePositionValues enumeration. + + + + + Creates a new EndnotePositionValues enum instance + + + + + Endnotes Positioned at End of Section. + When the item is serialized out as xml, its value is "sectEnd". + + + + + Endnotes Positioned at End of Document. + When the item is serialized out as xml, its value is "docEnd". + + + + + Defines the RestartNumberValues enumeration. + + + + + Creates a new RestartNumberValues enum instance + + + + + Continue Numbering From Previous Section. + When the item is serialized out as xml, its value is "continuous". + + + + + Restart Numbering For Each Section. + When the item is serialized out as xml, its value is "eachSect". + + + + + Restart Numbering On Each Page. + When the item is serialized out as xml, its value is "eachPage". + + + + + Defines the MailMergeSourceValues enumeration. + + + + + Creates a new MailMergeSourceValues enum instance + + + + + Database Data Source. + When the item is serialized out as xml, its value is "database". + + + + + Address Book Data Source. + When the item is serialized out as xml, its value is "addressBook". + + + + + Alternate Document Format Data Source. + When the item is serialized out as xml, its value is "document1". + + + + + Alternate Document Format Data Source Two. + When the item is serialized out as xml, its value is "document2". + + + + + Text File Data Source. + When the item is serialized out as xml, its value is "text". + + + + + E-Mail Program Data Source. + When the item is serialized out as xml, its value is "email". + + + + + Native Data Source. + When the item is serialized out as xml, its value is "native". + + + + + Legacy Document Format Data Source. + When the item is serialized out as xml, its value is "legacy". + + + + + Aggregate Data Source. + When the item is serialized out as xml, its value is "master". + + + + + Defines the TargetScreenSizeValues enumeration. + + + + + Creates a new TargetScreenSizeValues enum instance + + + + + Optimize for 544x376. + When the item is serialized out as xml, its value is "544x376". + + + + + Optimize for 640x480. + When the item is serialized out as xml, its value is "640x480". + + + + + Optimize for 720x512. + When the item is serialized out as xml, its value is "720x512". + + + + + Optimize for 800x600. + When the item is serialized out as xml, its value is "800x600". + + + + + Optimize for 1024x768. + When the item is serialized out as xml, its value is "1024x768". + + + + + Optimize for 1152x882. + When the item is serialized out as xml, its value is "1152x882". + + + + + Optimize for 1152x900. + When the item is serialized out as xml, its value is "1152x900". + + + + + Optimize for 1280x1024. + When the item is serialized out as xml, its value is "1280x1024". + + + + + Optimize for 1600x1200. + When the item is serialized out as xml, its value is "1600x1200". + + + + + Optimize for 1800x1440. + When the item is serialized out as xml, its value is "1800x1440". + + + + + Optimize for 1920x1200. + When the item is serialized out as xml, its value is "1920x1200". + + + + + Defines the CharacterSpacingValues enumeration. + + + + + Creates a new CharacterSpacingValues enum instance + + + + + Do Not Compress Whitespace. + When the item is serialized out as xml, its value is "doNotCompress". + + + + + Compress Whitespace From Punctuation Characters. + When the item is serialized out as xml, its value is "compressPunctuation". + + + + + Compress Whitespace From Both Japanese Kana And Punctuation Characters. + When the item is serialized out as xml, its value is "compressPunctuationAndJapaneseKana". + + + + + Defines the ColorSchemeIndexValues enumeration. + + + + + Creates a new ColorSchemeIndexValues enum instance + + + + + Dark 1 Theme Color Reference. + When the item is serialized out as xml, its value is "dark1". + + + + + Light 1 Theme Color Reference. + When the item is serialized out as xml, its value is "light1". + + + + + Dark 2 Theme Color Reference. + When the item is serialized out as xml, its value is "dark2". + + + + + Light 2 Theme Color Reference. + When the item is serialized out as xml, its value is "light2". + + + + + Accent 1 Theme Color Reference. + When the item is serialized out as xml, its value is "accent1". + + + + + Accent 2 Theme Color Reference. + When the item is serialized out as xml, its value is "accent2". + + + + + Accent 3 Theme Color Reference. + When the item is serialized out as xml, its value is "accent3". + + + + + Accent4 Theme Color Reference. + When the item is serialized out as xml, its value is "accent4". + + + + + Accent5 Theme Color Reference. + When the item is serialized out as xml, its value is "accent5". + + + + + Accent 6 Theme Color Reference. + When the item is serialized out as xml, its value is "accent6". + + + + + Hyperlink Theme Color Reference. + When the item is serialized out as xml, its value is "hyperlink". + + + + + Followed Hyperlink Theme Color Reference. + When the item is serialized out as xml, its value is "followedHyperlink". + + + + + Defines the FrameScrollbarVisibilityValues enumeration. + + + + + Creates a new FrameScrollbarVisibilityValues enum instance + + + + + Always Show Scrollbar. + When the item is serialized out as xml, its value is "on". + + + + + Never Show Scrollbar. + When the item is serialized out as xml, its value is "off". + + + + + Automatically Show Scrollbar As Needed. + When the item is serialized out as xml, its value is "auto". + + + + + Defines the FrameLayoutValues enumeration. + + + + + Creates a new FrameLayoutValues enum instance + + + + + Stack Frames Vertically. + When the item is serialized out as xml, its value is "rows". + + + + + Stack Frames Horizontally. + When the item is serialized out as xml, its value is "cols". + + + + + Do Not Stack Frames. + When the item is serialized out as xml, its value is "none". + + + + + Defines the LevelSuffixValues enumeration. + + + + + Creates a new LevelSuffixValues enum instance + + + + + Tab Between Numbering and Text. + When the item is serialized out as xml, its value is "tab". + + + + + Space Between Numbering and Text. + When the item is serialized out as xml, its value is "space". + + + + + Nothing Between Numbering and Text. + When the item is serialized out as xml, its value is "nothing". + + + + + Defines the MultiLevelValues enumeration. + + + + + Creates a new MultiLevelValues enum instance + + + + + Single Level Numbering Definition. + When the item is serialized out as xml, its value is "singleLevel". + + + + + Multilevel Numbering Definition. + When the item is serialized out as xml, its value is "multilevel". + + + + + Hybrid Multilevel Numbering Definition. + When the item is serialized out as xml, its value is "hybridMultilevel". + + + + + Defines the TableStyleOverrideValues enumeration. + + + + + Creates a new TableStyleOverrideValues enum instance + + + + + Whole table formatting. + When the item is serialized out as xml, its value is "wholeTable". + + + + + First Row Conditional Formatting. + When the item is serialized out as xml, its value is "firstRow". + + + + + Last table row formatting. + When the item is serialized out as xml, its value is "lastRow". + + + + + First Column Conditional Formatting. + When the item is serialized out as xml, its value is "firstCol". + + + + + Last table column formatting. + When the item is serialized out as xml, its value is "lastCol". + + + + + Banded Column Conditional Formatting. + When the item is serialized out as xml, its value is "band1Vert". + + + + + Even Column Stripe Conditional Formatting. + When the item is serialized out as xml, its value is "band2Vert". + + + + + Banded Row Conditional Formatting. + When the item is serialized out as xml, its value is "band1Horz". + + + + + Even Row Stripe Conditional Formatting. + When the item is serialized out as xml, its value is "band2Horz". + + + + + Top right table cell formatting. + When the item is serialized out as xml, its value is "neCell". + + + + + Top left table cell formatting. + When the item is serialized out as xml, its value is "nwCell". + + + + + Bottom right table cell formatting. + When the item is serialized out as xml, its value is "seCell". + + + + + Bottom left table cell formatting. + When the item is serialized out as xml, its value is "swCell". + + + + + Defines the StyleValues enumeration. + + + + + Creates a new StyleValues enum instance + + + + + Paragraph Style. + When the item is serialized out as xml, its value is "paragraph". + + + + + Character Style. + When the item is serialized out as xml, its value is "character". + + + + + Table Style. + When the item is serialized out as xml, its value is "table". + + + + + Numbering Style. + When the item is serialized out as xml, its value is "numbering". + + + + + Defines the FontFamilyValues enumeration. + + + + + Creates a new FontFamilyValues enum instance + + + + + Novelty Font. + When the item is serialized out as xml, its value is "decorative". + + + + + Monospace Font. + When the item is serialized out as xml, its value is "modern". + + + + + Proportional Font With Serifs. + When the item is serialized out as xml, its value is "roman". + + + + + Script Font. + When the item is serialized out as xml, its value is "script". + + + + + Proportional Font Without Serifs. + When the item is serialized out as xml, its value is "swiss". + + + + + No Font Family. + When the item is serialized out as xml, its value is "auto". + + + + + Defines the FontPitchValues enumeration. + + + + + Creates a new FontPitchValues enum instance + + + + + Fixed Width. + When the item is serialized out as xml, its value is "fixed". + + + + + Proportional Width. + When the item is serialized out as xml, its value is "variable". + + + + + Default. + When the item is serialized out as xml, its value is "default". + + + + + Defines the ThemeColorValues enumeration. + + + + + Creates a new ThemeColorValues enum instance + + + + + Dark 1 Theme Color. + When the item is serialized out as xml, its value is "dark1". + + + + + Light 1 Theme Color. + When the item is serialized out as xml, its value is "light1". + + + + + Dark 2 Theme Color. + When the item is serialized out as xml, its value is "dark2". + + + + + Light 2 Theme Color. + When the item is serialized out as xml, its value is "light2". + + + + + Accent 1 Theme Color. + When the item is serialized out as xml, its value is "accent1". + + + + + Accent 2 Theme Color. + When the item is serialized out as xml, its value is "accent2". + + + + + Accent 3 Theme Color. + When the item is serialized out as xml, its value is "accent3". + + + + + Accent 4 Theme Color. + When the item is serialized out as xml, its value is "accent4". + + + + + Accent 5 Theme Color. + When the item is serialized out as xml, its value is "accent5". + + + + + Accent 6 Theme Color. + When the item is serialized out as xml, its value is "accent6". + + + + + Hyperlink Theme Color. + When the item is serialized out as xml, its value is "hyperlink". + + + + + Followed Hyperlink Theme Color. + When the item is serialized out as xml, its value is "followedHyperlink". + + + + + No Theme Color. + When the item is serialized out as xml, its value is "none". + + + + + Background 1 Theme Color. + When the item is serialized out as xml, its value is "background1". + + + + + Text 1 Theme Color. + When the item is serialized out as xml, its value is "text1". + + + + + Background 2 Theme Color. + When the item is serialized out as xml, its value is "background2". + + + + + Text 2 Theme Color. + When the item is serialized out as xml, its value is "text2". + + + + + Defines the DocPartBehaviorValues enumeration. + + + + + Creates a new DocPartBehaviorValues enum instance + + + + + Insert Content At Specified Location. + When the item is serialized out as xml, its value is "content". + + + + + Ensure Entry Is In New Paragraph. + When the item is serialized out as xml, its value is "p". + + + + + Ensure Entry Is On New Page. + When the item is serialized out as xml, its value is "pg". + + + + + Defines the DocPartValues enumeration. + + + + + Creates a new DocPartValues enum instance + + + + + No Type. + When the item is serialized out as xml, its value is "none". + + + + + Normal. + When the item is serialized out as xml, its value is "normal". + + + + + Automatically Replace Name With Content. + When the item is serialized out as xml, its value is "autoExp". + + + + + AutoText User Interface Entry. + When the item is serialized out as xml, its value is "toolbar". + + + + + AutoCorrect Entry. + When the item is serialized out as xml, its value is "speller". + + + + + Form Field Help Text. + When the item is serialized out as xml, its value is "formFld". + + + + + Structured Document Tag Placeholder Text. + When the item is serialized out as xml, its value is "bbPlcHdr". + + + + + Defines the DocPartGalleryValues enumeration. + + + + + Creates a new DocPartGalleryValues enum instance + + + + + Structured Document Tag Placeholder Text Gallery. + When the item is serialized out as xml, its value is "placeholder". + + + + + All Galleries. + When the item is serialized out as xml, its value is "any". + + + + + No Gallery Classification. + When the item is serialized out as xml, its value is "default". + + + + + Document Parts Gallery. + When the item is serialized out as xml, its value is "docParts". + + + + + Cover Page Gallery. + When the item is serialized out as xml, its value is "coverPg". + + + + + Equations Gallery. + When the item is serialized out as xml, its value is "eq". + + + + + Footers Gallery. + When the item is serialized out as xml, its value is "ftrs". + + + + + Headers Gallery. + When the item is serialized out as xml, its value is "hdrs". + + + + + Page Numbers Gallery. + When the item is serialized out as xml, its value is "pgNum". + + + + + Table Gallery. + When the item is serialized out as xml, its value is "tbls". + + + + + Watermark Gallery. + When the item is serialized out as xml, its value is "watermarks". + + + + + AutoText Gallery. + When the item is serialized out as xml, its value is "autoTxt". + + + + + Text Box Gallery. + When the item is serialized out as xml, its value is "txtBox". + + + + + Page Numbers At Top Gallery. + When the item is serialized out as xml, its value is "pgNumT". + + + + + Page Numbers At Bottom Gallery. + When the item is serialized out as xml, its value is "pgNumB". + + + + + Page Numbers At Margins Gallery. + When the item is serialized out as xml, its value is "pgNumMargins". + + + + + Table of Contents Gallery. + When the item is serialized out as xml, its value is "tblOfContents". + + + + + Bibliography Gallery. + When the item is serialized out as xml, its value is "bib". + + + + + Custom Quick Parts Gallery. + When the item is serialized out as xml, its value is "custQuickParts". + + + + + Custom Cover Page Gallery. + When the item is serialized out as xml, its value is "custCoverPg". + + + + + Custom Equation Gallery. + When the item is serialized out as xml, its value is "custEq". + + + + + Custom Footer Gallery. + When the item is serialized out as xml, its value is "custFtrs". + + + + + Custom Header Gallery. + When the item is serialized out as xml, its value is "custHdrs". + + + + + Custom Page Number Gallery. + When the item is serialized out as xml, its value is "custPgNum". + + + + + Custom Table Gallery. + When the item is serialized out as xml, its value is "custTbls". + + + + + Custom Watermark Gallery. + When the item is serialized out as xml, its value is "custWatermarks". + + + + + Custom AutoText Gallery. + When the item is serialized out as xml, its value is "custAutoTxt". + + + + + Custom Text Box Gallery. + When the item is serialized out as xml, its value is "custTxtBox". + + + + + Custom Page Number At Top Gallery. + When the item is serialized out as xml, its value is "custPgNumT". + + + + + Custom Page Number At Bottom Gallery. + When the item is serialized out as xml, its value is "custPgNumB". + + + + + Custom Page Number At Margins Gallery. + When the item is serialized out as xml, its value is "custPgNumMargins". + + + + + Custom Table of Contents Gallery. + When the item is serialized out as xml, its value is "custTblOfContents". + + + + + Custom Bibliography Gallery. + When the item is serialized out as xml, its value is "custBib". + + + + + Custom 1 Gallery. + When the item is serialized out as xml, its value is "custom1". + + + + + Custom 2 Gallery. + When the item is serialized out as xml, its value is "custom2". + + + + + Custom 3 Gallery. + When the item is serialized out as xml, its value is "custom3". + + + + + Custom 4 Gallery. + When the item is serialized out as xml, its value is "custom4". + + + + + Custom 5 Gallery. + When the item is serialized out as xml, its value is "custom5". + + + + + Automatic Caption Positioning Values + + + + + Creates a new CaptionPositionValues enum instance + + + + + Position Caption Above Object. + When the item is serialized out as xml, its value is "above". + + + + + Position Caption Below Object. + When the item is serialized out as xml, its value is "below". + + + + + Horizontal Alignment Type + + + + + Creates a new LevelJustificationValues enum instance + + + + + Align Left. + When the item is serialized out as xml, its value is "left". + + + + + Align Center. + When the item is serialized out as xml, its value is "center". + + + + + Align Right. + When the item is serialized out as xml, its value is "right". + + + + + Defines the ShadingPatternValues enumeration. + + + + + Creates a new ShadingPatternValues enum instance + + + + + No Pattern. + When the item is serialized out as xml, its value is "nil". + + + + + No Pattern. + When the item is serialized out as xml, its value is "clear". + + + + + 100% Fill Pattern. + When the item is serialized out as xml, its value is "solid". + + + + + Horizontal Stripe Pattern. + When the item is serialized out as xml, its value is "horzStripe". + + + + + Vertical Stripe Pattern. + When the item is serialized out as xml, its value is "vertStripe". + + + + + Reverse Diagonal Stripe Pattern. + When the item is serialized out as xml, its value is "reverseDiagStripe". + + + + + Diagonal Stripe Pattern. + When the item is serialized out as xml, its value is "diagStripe". + + + + + Horizontal Cross Pattern. + When the item is serialized out as xml, its value is "horzCross". + + + + + Diagonal Cross Pattern. + When the item is serialized out as xml, its value is "diagCross". + + + + + Thin Horizontal Stripe Pattern. + When the item is serialized out as xml, its value is "thinHorzStripe". + + + + + Thin Vertical Stripe Pattern. + When the item is serialized out as xml, its value is "thinVertStripe". + + + + + Thin Reverse Diagonal Stripe Pattern. + When the item is serialized out as xml, its value is "thinReverseDiagStripe". + + + + + Thin Diagonal Stripe Pattern. + When the item is serialized out as xml, its value is "thinDiagStripe". + + + + + Thin Horizontal Cross Pattern. + When the item is serialized out as xml, its value is "thinHorzCross". + + + + + Thin Diagonal Cross Pattern. + When the item is serialized out as xml, its value is "thinDiagCross". + + + + + 5% Fill Pattern. + When the item is serialized out as xml, its value is "pct5". + + + + + 10% Fill Pattern. + When the item is serialized out as xml, its value is "pct10". + + + + + 12.5% Fill Pattern. + When the item is serialized out as xml, its value is "pct12". + + + + + 15% Fill Pattern. + When the item is serialized out as xml, its value is "pct15". + + + + + 20% Fill Pattern. + When the item is serialized out as xml, its value is "pct20". + + + + + 25% Fill Pattern. + When the item is serialized out as xml, its value is "pct25". + + + + + 30% Fill Pattern. + When the item is serialized out as xml, its value is "pct30". + + + + + 35% Fill Pattern. + When the item is serialized out as xml, its value is "pct35". + + + + + 37.5% Fill Pattern. + When the item is serialized out as xml, its value is "pct37". + + + + + 40% Fill Pattern. + When the item is serialized out as xml, its value is "pct40". + + + + + 45% Fill Pattern. + When the item is serialized out as xml, its value is "pct45". + + + + + 50% Fill Pattern. + When the item is serialized out as xml, its value is "pct50". + + + + + 55% Fill Pattern. + When the item is serialized out as xml, its value is "pct55". + + + + + 60% Fill Pattern. + When the item is serialized out as xml, its value is "pct60". + + + + + 62.5% Fill Pattern. + When the item is serialized out as xml, its value is "pct62". + + + + + 65% Fill Pattern. + When the item is serialized out as xml, its value is "pct65". + + + + + 70% Fill Pattern. + When the item is serialized out as xml, its value is "pct70". + + + + + 75% Fill Pattern. + When the item is serialized out as xml, its value is "pct75". + + + + + 80% Fill Pattern. + When the item is serialized out as xml, its value is "pct80". + + + + + 85% Fill Pattern. + When the item is serialized out as xml, its value is "pct85". + + + + + 87.5% Fill Pattern. + When the item is serialized out as xml, its value is "pct87". + + + + + 90% Fill Pattern. + When the item is serialized out as xml, its value is "pct90". + + + + + 95% Fill Pattern. + When the item is serialized out as xml, its value is "pct95". + + + + + Defines the StylePaneSortMethodsValues enumeration. + + + + + Creates a new StylePaneSortMethodsValues enum instance + + + + + 0000. + When the item is serialized out as xml, its value is "0000". + + + + + name. + When the item is serialized out as xml, its value is "name". + + + + + 0001. + When the item is serialized out as xml, its value is "0001". + + + + + priority. + When the item is serialized out as xml, its value is "priority". + + + + + 0002. + When the item is serialized out as xml, its value is "0002". + + + + + font. + When the item is serialized out as xml, its value is "font". + + + + + 0003. + When the item is serialized out as xml, its value is "0003". + + + + + basedOn. + When the item is serialized out as xml, its value is "basedOn". + + + + + 0004. + When the item is serialized out as xml, its value is "0004". + + + + + type. + When the item is serialized out as xml, its value is "type". + + + + + 0005. + When the item is serialized out as xml, its value is "0005". + + + + + default. + When the item is serialized out as xml, its value is "default". + + + + + Defines the DirectionValues enumeration. + + + + + Creates a new DirectionValues enum instance + + + + + ltr. + When the item is serialized out as xml, its value is "ltr". + + + + + rtl. + When the item is serialized out as xml, its value is "rtl". + + + + + Defines the CalendarValues enumeration. + + + + + Creates a new CalendarValues enum instance + + + + + Gregorian. + When the item is serialized out as xml, its value is "gregorian". + + + + + Hijri. + When the item is serialized out as xml, its value is "hijri". + + + + + umalqura. + When the item is serialized out as xml, its value is "umalqura". + This item is only available in Office 2010 and later. + + + + + Hebrew. + When the item is serialized out as xml, its value is "hebrew". + + + + + Taiwan. + When the item is serialized out as xml, its value is "taiwan". + + + + + Japanese Emperor Era. + When the item is serialized out as xml, its value is "japan". + + + + + Thai. + When the item is serialized out as xml, its value is "thai". + + + + + Korean Tangun Era. + When the item is serialized out as xml, its value is "korea". + + + + + Saka Era. + When the item is serialized out as xml, its value is "saka". + + + + + Gregorian transliterated English. + When the item is serialized out as xml, its value is "gregorianXlitEnglish". + + + + + Gregorian transliterated French. + When the item is serialized out as xml, its value is "gregorianXlitFrench". + + + + + gregorianUs. + When the item is serialized out as xml, its value is "gregorianUs". + This item is only available in Office 2010 and later. + + + + + gregorianMeFrench. + When the item is serialized out as xml, its value is "gregorianMeFrench". + This item is only available in Office 2010 and later. + + + + + gregorianArabic. + When the item is serialized out as xml, its value is "gregorianArabic". + This item is only available in Office 2010 and later. + + + + + none. + When the item is serialized out as xml, its value is "none". + This item is only available in Office 2010 and later. + + + + + Defines the NumberFormatValues enumeration. + + + + + Creates a new NumberFormatValues enum instance + + + + + Decimal Numbers. + When the item is serialized out as xml, its value is "decimal". + + + + + Uppercase Roman Numerals. + When the item is serialized out as xml, its value is "upperRoman". + + + + + Lowercase Roman Numerals. + When the item is serialized out as xml, its value is "lowerRoman". + + + + + Uppercase Latin Alphabet. + When the item is serialized out as xml, its value is "upperLetter". + + + + + Lowercase Latin Alphabet. + When the item is serialized out as xml, its value is "lowerLetter". + + + + + Ordinal. + When the item is serialized out as xml, its value is "ordinal". + + + + + Cardinal Text. + When the item is serialized out as xml, its value is "cardinalText". + + + + + Ordinal Text. + When the item is serialized out as xml, its value is "ordinalText". + + + + + Hexadecimal Numbering. + When the item is serialized out as xml, its value is "hex". + + + + + Chicago Manual of Style. + When the item is serialized out as xml, its value is "chicago". + + + + + Ideographs. + When the item is serialized out as xml, its value is "ideographDigital". + + + + + Japanese Counting System. + When the item is serialized out as xml, its value is "japaneseCounting". + + + + + AIUEO Order Hiragana. + When the item is serialized out as xml, its value is "aiueo". + + + + + Iroha Ordered Katakana. + When the item is serialized out as xml, its value is "iroha". + + + + + Double Byte Arabic Numerals. + When the item is serialized out as xml, its value is "decimalFullWidth". + + + + + Single Byte Arabic Numerals. + When the item is serialized out as xml, its value is "decimalHalfWidth". + + + + + Japanese Legal Numbering. + When the item is serialized out as xml, its value is "japaneseLegal". + + + + + Japanese Digital Ten Thousand Counting System. + When the item is serialized out as xml, its value is "japaneseDigitalTenThousand". + + + + + Decimal Numbers Enclosed in a Circle. + When the item is serialized out as xml, its value is "decimalEnclosedCircle". + + + + + Double Byte Arabic Numerals Alternate. + When the item is serialized out as xml, its value is "decimalFullWidth2". + + + + + Full-Width AIUEO Order Hiragana. + When the item is serialized out as xml, its value is "aiueoFullWidth". + + + + + Full-Width Iroha Ordered Katakana. + When the item is serialized out as xml, its value is "irohaFullWidth". + + + + + Initial Zero Arabic Numerals. + When the item is serialized out as xml, its value is "decimalZero". + + + + + Bullet. + When the item is serialized out as xml, its value is "bullet". + + + + + Korean Ganada Numbering. + When the item is serialized out as xml, its value is "ganada". + + + + + Korean Chosung Numbering. + When the item is serialized out as xml, its value is "chosung". + + + + + Decimal Numbers Followed by a Period. + When the item is serialized out as xml, its value is "decimalEnclosedFullstop". + + + + + Decimal Numbers Enclosed in Parenthesis. + When the item is serialized out as xml, its value is "decimalEnclosedParen". + + + + + Decimal Numbers Enclosed in a Circle. + When the item is serialized out as xml, its value is "decimalEnclosedCircleChinese". + + + + + Ideographs Enclosed in a Circle. + When the item is serialized out as xml, its value is "ideographEnclosedCircle". + + + + + Traditional Ideograph Format. + When the item is serialized out as xml, its value is "ideographTraditional". + + + + + Zodiac Ideograph Format. + When the item is serialized out as xml, its value is "ideographZodiac". + + + + + Traditional Zodiac Ideograph Format. + When the item is serialized out as xml, its value is "ideographZodiacTraditional". + + + + + Taiwanese Counting System. + When the item is serialized out as xml, its value is "taiwaneseCounting". + + + + + Traditional Legal Ideograph Format. + When the item is serialized out as xml, its value is "ideographLegalTraditional". + + + + + Taiwanese Counting Thousand System. + When the item is serialized out as xml, its value is "taiwaneseCountingThousand". + + + + + Taiwanese Digital Counting System. + When the item is serialized out as xml, its value is "taiwaneseDigital". + + + + + Chinese Counting System. + When the item is serialized out as xml, its value is "chineseCounting". + + + + + Chinese Legal Simplified Format. + When the item is serialized out as xml, its value is "chineseLegalSimplified". + + + + + Chinese Counting Thousand System. + When the item is serialized out as xml, its value is "chineseCountingThousand". + + + + + Korean Digital Counting System. + When the item is serialized out as xml, its value is "koreanDigital". + + + + + Korean Counting System. + When the item is serialized out as xml, its value is "koreanCounting". + + + + + Korean Legal Numbering. + When the item is serialized out as xml, its value is "koreanLegal". + + + + + Korean Digital Counting System Alternate. + When the item is serialized out as xml, its value is "koreanDigital2". + + + + + Vietnamese Numerals. + When the item is serialized out as xml, its value is "vietnameseCounting". + + + + + Lowercase Russian Alphabet. + When the item is serialized out as xml, its value is "russianLower". + + + + + Uppercase Russian Alphabet. + When the item is serialized out as xml, its value is "russianUpper". + + + + + No Numbering. + When the item is serialized out as xml, its value is "none". + + + + + Number With Dashes. + When the item is serialized out as xml, its value is "numberInDash". + + + + + Hebrew Numerals. + When the item is serialized out as xml, its value is "hebrew1". + + + + + Hebrew Alphabet. + When the item is serialized out as xml, its value is "hebrew2". + + + + + Arabic Alphabet. + When the item is serialized out as xml, its value is "arabicAlpha". + + + + + Arabic Abjad Numerals. + When the item is serialized out as xml, its value is "arabicAbjad". + + + + + Hindi Vowels. + When the item is serialized out as xml, its value is "hindiVowels". + + + + + Hindi Consonants. + When the item is serialized out as xml, its value is "hindiConsonants". + + + + + Hindi Numbers. + When the item is serialized out as xml, its value is "hindiNumbers". + + + + + Hindi Counting System. + When the item is serialized out as xml, its value is "hindiCounting". + + + + + Thai Letters. + When the item is serialized out as xml, its value is "thaiLetters". + + + + + Thai Numerals. + When the item is serialized out as xml, its value is "thaiNumbers". + + + + + Thai Counting System. + When the item is serialized out as xml, its value is "thaiCounting". + + + + + bahtText. + When the item is serialized out as xml, its value is "bahtText". + This item is only available in Office 2010 and later. + + + + + dollarText. + When the item is serialized out as xml, its value is "dollarText". + This item is only available in Office 2010 and later. + + + + + custom. + When the item is serialized out as xml, its value is "custom". + This item is only available in Office 2010 and later. + + + + + Defines the TextDirectionValues enumeration. + + + + + Creates a new TextDirectionValues enum instance + + + + + Left to Right, Top to Bottom. + When the item is serialized out as xml, its value is "lrTb". + + + + + tb. + When the item is serialized out as xml, its value is "tb". + This item is only available in Office 2010 and later. + + + + + Top to Bottom, Right to Left. + When the item is serialized out as xml, its value is "tbRl". + + + + + rl. + When the item is serialized out as xml, its value is "rl". + This item is only available in Office 2010 and later. + + + + + Bottom to Top, Left to Right. + When the item is serialized out as xml, its value is "btLr". + + + + + lr. + When the item is serialized out as xml, its value is "lr". + This item is only available in Office 2010 and later. + + + + + Left to Right, Top to Bottom Rotated. + When the item is serialized out as xml, its value is "lrTbV". + + + + + tbV. + When the item is serialized out as xml, its value is "tbV". + This item is only available in Office 2010 and later. + + + + + Top to Bottom, Right to Left Rotated. + When the item is serialized out as xml, its value is "tbRlV". + + + + + rlV. + When the item is serialized out as xml, its value is "rlV". + This item is only available in Office 2010 and later. + + + + + Top to Bottom, Left to Right Rotated. + When the item is serialized out as xml, its value is "tbLrV". + + + + + lrV. + When the item is serialized out as xml, its value is "lrV". + This item is only available in Office 2010 and later. + + + + + Defines the CryptAlgorithmValues enumeration. + + + + + Creates a new CryptAlgorithmValues enum instance + + + + + Any Type. + When the item is serialized out as xml, its value is "typeAny". + + + + + custom. + When the item is serialized out as xml, its value is "custom". + This item is only available in Office 2010 and later. + + + + + Defines the CryptAlgorithmClassValues enumeration. + + + + + Creates a new CryptAlgorithmClassValues enum instance + + + + + Hashing. + When the item is serialized out as xml, its value is "hash". + + + + + custom. + When the item is serialized out as xml, its value is "custom". + This item is only available in Office 2010 and later. + + + + + Defines the CryptProviderValues enumeration. + + + + + Creates a new CryptProviderValues enum instance + + + + + AES Provider. + When the item is serialized out as xml, its value is "rsaAES". + + + + + Any Provider. + When the item is serialized out as xml, its value is "rsaFull". + + + + + custom. + When the item is serialized out as xml, its value is "custom". + This item is only available in Office 2010 and later. + + + + + Defines the JustificationValues enumeration. + + + + + Creates a new JustificationValues enum instance + + + + + Align Left. + When the item is serialized out as xml, its value is "left". + + + + + start. + When the item is serialized out as xml, its value is "start". + This item is only available in Office 2010 and later. + + + + + Align Center. + When the item is serialized out as xml, its value is "center". + + + + + Align Right. + When the item is serialized out as xml, its value is "right". + + + + + end. + When the item is serialized out as xml, its value is "end". + This item is only available in Office 2010 and later. + + + + + Justified. + When the item is serialized out as xml, its value is "both". + + + + + Medium Kashida Length. + When the item is serialized out as xml, its value is "mediumKashida". + + + + + Distribute All Characters Equally. + When the item is serialized out as xml, its value is "distribute". + + + + + Align to List Tab. + When the item is serialized out as xml, its value is "numTab". + + + + + Widest Kashida Length. + When the item is serialized out as xml, its value is "highKashida". + + + + + Low Kashida Length. + When the item is serialized out as xml, its value is "lowKashida". + + + + + Thai Language Justification. + When the item is serialized out as xml, its value is "thaiDistribute". + + + + + Defines the TabStopValues enumeration. + + + + + Creates a new TabStopValues enum instance + + + + + No Tab Stop. + When the item is serialized out as xml, its value is "clear". + + + + + Left Tab. + When the item is serialized out as xml, its value is "left". + + + + + start. + When the item is serialized out as xml, its value is "start". + + + + + Centered Tab. + When the item is serialized out as xml, its value is "center". + + + + + Right Tab. + When the item is serialized out as xml, its value is "right". + + + + + end. + When the item is serialized out as xml, its value is "end". + + + + + Decimal Tab. + When the item is serialized out as xml, its value is "decimal". + + + + + Bar Tab. + When the item is serialized out as xml, its value is "bar". + + + + + List Tab. + When the item is serialized out as xml, its value is "num". + + + + + Defines the BorderValues enumeration. + + + + + Creates a new BorderValues enum instance + + + + + No Border. + When the item is serialized out as xml, its value is "nil". + + + + + No Border. + When the item is serialized out as xml, its value is "none". + + + + + Single Line Border. + When the item is serialized out as xml, its value is "single". + + + + + Single Line Border. + When the item is serialized out as xml, its value is "thick". + + + + + Double Line Border. + When the item is serialized out as xml, its value is "double". + + + + + Dotted Line Border. + When the item is serialized out as xml, its value is "dotted". + + + + + Dashed Line Border. + When the item is serialized out as xml, its value is "dashed". + + + + + Dot Dash Line Border. + When the item is serialized out as xml, its value is "dotDash". + + + + + Dot Dot Dash Line Border. + When the item is serialized out as xml, its value is "dotDotDash". + + + + + Triple Line Border. + When the item is serialized out as xml, its value is "triple". + + + + + Thin, Thick Line Border. + When the item is serialized out as xml, its value is "thinThickSmallGap". + + + + + Thick, Thin Line Border. + When the item is serialized out as xml, its value is "thickThinSmallGap". + + + + + Thin, Thick, Thin Line Border. + When the item is serialized out as xml, its value is "thinThickThinSmallGap". + + + + + Thin, Thick Line Border. + When the item is serialized out as xml, its value is "thinThickMediumGap". + + + + + Thick, Thin Line Border. + When the item is serialized out as xml, its value is "thickThinMediumGap". + + + + + Thin, Thick, Thin Line Border. + When the item is serialized out as xml, its value is "thinThickThinMediumGap". + + + + + Thin, Thick Line Border. + When the item is serialized out as xml, its value is "thinThickLargeGap". + + + + + Thick, Thin Line Border. + When the item is serialized out as xml, its value is "thickThinLargeGap". + + + + + Thin, Thick, Thin Line Border. + When the item is serialized out as xml, its value is "thinThickThinLargeGap". + + + + + Wavy Line Border. + When the item is serialized out as xml, its value is "wave". + + + + + Double Wave Line Border. + When the item is serialized out as xml, its value is "doubleWave". + + + + + Dashed Line Border. + When the item is serialized out as xml, its value is "dashSmallGap". + + + + + Dash Dot Strokes Line Border. + When the item is serialized out as xml, its value is "dashDotStroked". + + + + + 3D Embossed Line Border. + When the item is serialized out as xml, its value is "threeDEmboss". + + + + + 3D Engraved Line Border. + When the item is serialized out as xml, its value is "threeDEngrave". + + + + + Outset Line Border. + When the item is serialized out as xml, its value is "outset". + + + + + Inset Line Border. + When the item is serialized out as xml, its value is "inset". + + + + + Apples Art Border. + When the item is serialized out as xml, its value is "apples". + + + + + Arched Scallops Art Border. + When the item is serialized out as xml, its value is "archedScallops". + + + + + Baby Pacifier Art Border. + When the item is serialized out as xml, its value is "babyPacifier". + + + + + Baby Rattle Art Border. + When the item is serialized out as xml, its value is "babyRattle". + + + + + Three Color Balloons Art Border. + When the item is serialized out as xml, its value is "balloons3Colors". + + + + + Hot Air Balloons Art Border. + When the item is serialized out as xml, its value is "balloonsHotAir". + + + + + Black Dash Art Border. + When the item is serialized out as xml, its value is "basicBlackDashes". + + + + + Black Dot Art Border. + When the item is serialized out as xml, its value is "basicBlackDots". + + + + + Black Square Art Border. + When the item is serialized out as xml, its value is "basicBlackSquares". + + + + + Thin Line Art Border. + When the item is serialized out as xml, its value is "basicThinLines". + + + + + White Dash Art Border. + When the item is serialized out as xml, its value is "basicWhiteDashes". + + + + + White Dot Art Border. + When the item is serialized out as xml, its value is "basicWhiteDots". + + + + + White Square Art Border. + When the item is serialized out as xml, its value is "basicWhiteSquares". + + + + + Wide Inline Art Border. + When the item is serialized out as xml, its value is "basicWideInline". + + + + + Wide Midline Art Border. + When the item is serialized out as xml, its value is "basicWideMidline". + + + + + Wide Outline Art Border. + When the item is serialized out as xml, its value is "basicWideOutline". + + + + + Bats Art Border. + When the item is serialized out as xml, its value is "bats". + + + + + Birds Art Border. + When the item is serialized out as xml, its value is "birds". + + + + + Birds Flying Art Border. + When the item is serialized out as xml, its value is "birdsFlight". + + + + + Cabin Art Border. + When the item is serialized out as xml, its value is "cabins". + + + + + Cake Art Border. + When the item is serialized out as xml, its value is "cakeSlice". + + + + + Candy Corn Art Border. + When the item is serialized out as xml, its value is "candyCorn". + + + + + Knot Work Art Border. + When the item is serialized out as xml, its value is "celticKnotwork". + + + + + Certificate Banner Art Border. + When the item is serialized out as xml, its value is "certificateBanner". + + + + + Chain Link Art Border. + When the item is serialized out as xml, its value is "chainLink". + + + + + Champagne Bottle Art Border. + When the item is serialized out as xml, its value is "champagneBottle". + + + + + Black and White Bar Art Border. + When the item is serialized out as xml, its value is "checkedBarBlack". + + + + + Color Checked Bar Art Border. + When the item is serialized out as xml, its value is "checkedBarColor". + + + + + Checkerboard Art Border. + When the item is serialized out as xml, its value is "checkered". + + + + + Christmas Tree Art Border. + When the item is serialized out as xml, its value is "christmasTree". + + + + + Circles And Lines Art Border. + When the item is serialized out as xml, its value is "circlesLines". + + + + + Circles and Rectangles Art Border. + When the item is serialized out as xml, its value is "circlesRectangles". + + + + + Wave Art Border. + When the item is serialized out as xml, its value is "classicalWave". + + + + + Clocks Art Border. + When the item is serialized out as xml, its value is "clocks". + + + + + Compass Art Border. + When the item is serialized out as xml, its value is "compass". + + + + + Confetti Art Border. + When the item is serialized out as xml, its value is "confetti". + + + + + Confetti Art Border. + When the item is serialized out as xml, its value is "confettiGrays". + + + + + Confetti Art Border. + When the item is serialized out as xml, its value is "confettiOutline". + + + + + Confetti Streamers Art Border. + When the item is serialized out as xml, its value is "confettiStreamers". + + + + + Confetti Art Border. + When the item is serialized out as xml, its value is "confettiWhite". + + + + + Corner Triangle Art Border. + When the item is serialized out as xml, its value is "cornerTriangles". + + + + + Dashed Line Art Border. + When the item is serialized out as xml, its value is "couponCutoutDashes". + + + + + Dotted Line Art Border. + When the item is serialized out as xml, its value is "couponCutoutDots". + + + + + Maze Art Border. + When the item is serialized out as xml, its value is "crazyMaze". + + + + + Butterfly Art Border. + When the item is serialized out as xml, its value is "creaturesButterfly". + + + + + Fish Art Border. + When the item is serialized out as xml, its value is "creaturesFish". + + + + + Insects Art Border. + When the item is serialized out as xml, its value is "creaturesInsects". + + + + + Ladybug Art Border. + When the item is serialized out as xml, its value is "creaturesLadyBug". + + + + + Cross-stitch Art Border. + When the item is serialized out as xml, its value is "crossStitch". + + + + + Cupid Art Border. + When the item is serialized out as xml, its value is "cup". + + + + + Archway Art Border. + When the item is serialized out as xml, its value is "decoArch". + + + + + Color Archway Art Border. + When the item is serialized out as xml, its value is "decoArchColor". + + + + + Blocks Art Border. + When the item is serialized out as xml, its value is "decoBlocks". + + + + + Gray Diamond Art Border. + When the item is serialized out as xml, its value is "diamondsGray". + + + + + Double D Art Border. + When the item is serialized out as xml, its value is "doubleD". + + + + + Diamond Art Border. + When the item is serialized out as xml, its value is "doubleDiamonds". + + + + + Earth Art Border. + When the item is serialized out as xml, its value is "earth1". + + + + + Earth Art Border. + When the item is serialized out as xml, its value is "earth2". + + + + + Shadowed Square Art Border. + When the item is serialized out as xml, its value is "eclipsingSquares1". + + + + + Shadowed Square Art Border. + When the item is serialized out as xml, its value is "eclipsingSquares2". + + + + + Painted Egg Art Border. + When the item is serialized out as xml, its value is "eggsBlack". + + + + + Fans Art Border. + When the item is serialized out as xml, its value is "fans". + + + + + Film Reel Art Border. + When the item is serialized out as xml, its value is "film". + + + + + Firecracker Art Border. + When the item is serialized out as xml, its value is "firecrackers". + + + + + Flowers Art Border. + When the item is serialized out as xml, its value is "flowersBlockPrint". + + + + + Daisy Art Border. + When the item is serialized out as xml, its value is "flowersDaisies". + + + + + Flowers Art Border. + When the item is serialized out as xml, its value is "flowersModern1". + + + + + Flowers Art Border. + When the item is serialized out as xml, its value is "flowersModern2". + + + + + Pansy Art Border. + When the item is serialized out as xml, its value is "flowersPansy". + + + + + Red Rose Art Border. + When the item is serialized out as xml, its value is "flowersRedRose". + + + + + Roses Art Border. + When the item is serialized out as xml, its value is "flowersRoses". + + + + + Flowers in a Teacup Art Border. + When the item is serialized out as xml, its value is "flowersTeacup". + + + + + Small Flower Art Border. + When the item is serialized out as xml, its value is "flowersTiny". + + + + + Gems Art Border. + When the item is serialized out as xml, its value is "gems". + + + + + Gingerbread Man Art Border. + When the item is serialized out as xml, its value is "gingerbreadMan". + + + + + Triangle Gradient Art Border. + When the item is serialized out as xml, its value is "gradient". + + + + + Handmade Art Border. + When the item is serialized out as xml, its value is "handmade1". + + + + + Handmade Art Border. + When the item is serialized out as xml, its value is "handmade2". + + + + + Heart-Shaped Balloon Art Border. + When the item is serialized out as xml, its value is "heartBalloon". + + + + + Gray Heart Art Border. + When the item is serialized out as xml, its value is "heartGray". + + + + + Hearts Art Border. + When the item is serialized out as xml, its value is "hearts". + + + + + Pattern Art Border. + When the item is serialized out as xml, its value is "heebieJeebies". + + + + + Holly Art Border. + When the item is serialized out as xml, its value is "holly". + + + + + House Art Border. + When the item is serialized out as xml, its value is "houseFunky". + + + + + Circular Art Border. + When the item is serialized out as xml, its value is "hypnotic". + + + + + Ice Cream Cone Art Border. + When the item is serialized out as xml, its value is "iceCreamCones". + + + + + Light Bulb Art Border. + When the item is serialized out as xml, its value is "lightBulb". + + + + + Lightning Art Border. + When the item is serialized out as xml, its value is "lightning1". + + + + + Lightning Art Border. + When the item is serialized out as xml, its value is "lightning2". + + + + + Map Pins Art Border. + When the item is serialized out as xml, its value is "mapPins". + + + + + Maple Leaf Art Border. + When the item is serialized out as xml, its value is "mapleLeaf". + + + + + Muffin Art Border. + When the item is serialized out as xml, its value is "mapleMuffins". + + + + + Marquee Art Border. + When the item is serialized out as xml, its value is "marquee". + + + + + Marquee Art Border. + When the item is serialized out as xml, its value is "marqueeToothed". + + + + + Moon Art Border. + When the item is serialized out as xml, its value is "moons". + + + + + Mosaic Art Border. + When the item is serialized out as xml, its value is "mosaic". + + + + + Musical Note Art Border. + When the item is serialized out as xml, its value is "musicNotes". + + + + + Patterned Art Border. + When the item is serialized out as xml, its value is "northwest". + + + + + Oval Art Border. + When the item is serialized out as xml, its value is "ovals". + + + + + Package Art Border. + When the item is serialized out as xml, its value is "packages". + + + + + Black Palm Tree Art Border. + When the item is serialized out as xml, its value is "palmsBlack". + + + + + Color Palm Tree Art Border. + When the item is serialized out as xml, its value is "palmsColor". + + + + + Paper Clip Art Border. + When the item is serialized out as xml, its value is "paperClips". + + + + + Papyrus Art Border. + When the item is serialized out as xml, its value is "papyrus". + + + + + Party Favor Art Border. + When the item is serialized out as xml, its value is "partyFavor". + + + + + Party Glass Art Border. + When the item is serialized out as xml, its value is "partyGlass". + + + + + Pencils Art Border. + When the item is serialized out as xml, its value is "pencils". + + + + + Character Art Border. + When the item is serialized out as xml, its value is "people". + + + + + Waving Character Border. + When the item is serialized out as xml, its value is "peopleWaving". + + + + + Character With Hat Art Border. + When the item is serialized out as xml, its value is "peopleHats". + + + + + Poinsettia Art Border. + When the item is serialized out as xml, its value is "poinsettias". + + + + + Postage Stamp Art Border. + When the item is serialized out as xml, its value is "postageStamp". + + + + + Pumpkin Art Border. + When the item is serialized out as xml, its value is "pumpkin1". + + + + + Push Pin Art Border. + When the item is serialized out as xml, its value is "pushPinNote2". + + + + + Push Pin Art Border. + When the item is serialized out as xml, its value is "pushPinNote1". + + + + + Pyramid Art Border. + When the item is serialized out as xml, its value is "pyramids". + + + + + Pyramid Art Border. + When the item is serialized out as xml, its value is "pyramidsAbove". + + + + + Quadrants Art Border. + When the item is serialized out as xml, its value is "quadrants". + + + + + Rings Art Border. + When the item is serialized out as xml, its value is "rings". + + + + + Safari Art Border. + When the item is serialized out as xml, its value is "safari". + + + + + Saw tooth Art Border. + When the item is serialized out as xml, its value is "sawtooth". + + + + + Gray Saw tooth Art Border. + When the item is serialized out as xml, its value is "sawtoothGray". + + + + + Scared Cat Art Border. + When the item is serialized out as xml, its value is "scaredCat". + + + + + Umbrella Art Border. + When the item is serialized out as xml, its value is "seattle". + + + + + Shadowed Squares Art Border. + When the item is serialized out as xml, its value is "shadowedSquares". + + + + + Shark Tooth Art Border. + When the item is serialized out as xml, its value is "sharksTeeth". + + + + + Bird Tracks Art Border. + When the item is serialized out as xml, its value is "shorebirdTracks". + + + + + Rocket Art Border. + When the item is serialized out as xml, its value is "skyrocket". + + + + + Snowflake Art Border. + When the item is serialized out as xml, its value is "snowflakeFancy". + + + + + Snowflake Art Border. + When the item is serialized out as xml, its value is "snowflakes". + + + + + Sombrero Art Border. + When the item is serialized out as xml, its value is "sombrero". + + + + + Southwest-themed Art Border. + When the item is serialized out as xml, its value is "southwest". + + + + + Stars Art Border. + When the item is serialized out as xml, its value is "stars". + + + + + Stars On Top Art Border. + When the item is serialized out as xml, its value is "starsTop". + + + + + 3-D Stars Art Border. + When the item is serialized out as xml, its value is "stars3d". + + + + + Stars Art Border. + When the item is serialized out as xml, its value is "starsBlack". + + + + + Stars With Shadows Art Border. + When the item is serialized out as xml, its value is "starsShadowed". + + + + + Sun Art Border. + When the item is serialized out as xml, its value is "sun". + + + + + Whirligig Art Border. + When the item is serialized out as xml, its value is "swirligig". + + + + + Torn Paper Art Border. + When the item is serialized out as xml, its value is "tornPaper". + + + + + Black Torn Paper Art Border. + When the item is serialized out as xml, its value is "tornPaperBlack". + + + + + Tree Art Border. + When the item is serialized out as xml, its value is "trees". + + + + + Triangle Art Border. + When the item is serialized out as xml, its value is "triangleParty". + + + + + Triangles Art Border. + When the item is serialized out as xml, its value is "triangles". + + + + + Tribal Art Border One. + When the item is serialized out as xml, its value is "tribal1". + + + + + Tribal Art Border Two. + When the item is serialized out as xml, its value is "tribal2". + + + + + Tribal Art Border Three. + When the item is serialized out as xml, its value is "tribal3". + + + + + Tribal Art Border Four. + When the item is serialized out as xml, its value is "tribal4". + + + + + Tribal Art Border Five. + When the item is serialized out as xml, its value is "tribal5". + + + + + Tribal Art Border Six. + When the item is serialized out as xml, its value is "tribal6". + + + + + triangle1. + When the item is serialized out as xml, its value is "triangle1". + + + + + triangle2. + When the item is serialized out as xml, its value is "triangle2". + + + + + triangleCircle1. + When the item is serialized out as xml, its value is "triangleCircle1". + + + + + triangleCircle2. + When the item is serialized out as xml, its value is "triangleCircle2". + + + + + shapes1. + When the item is serialized out as xml, its value is "shapes1". + + + + + shapes2. + When the item is serialized out as xml, its value is "shapes2". + + + + + Twisted Lines Art Border. + When the item is serialized out as xml, its value is "twistedLines1". + + + + + Twisted Lines Art Border. + When the item is serialized out as xml, its value is "twistedLines2". + + + + + Vine Art Border. + When the item is serialized out as xml, its value is "vine". + + + + + Wavy Line Art Border. + When the item is serialized out as xml, its value is "waveline". + + + + + Weaving Angles Art Border. + When the item is serialized out as xml, its value is "weavingAngles". + + + + + Weaving Braid Art Border. + When the item is serialized out as xml, its value is "weavingBraid". + + + + + Weaving Ribbon Art Border. + When the item is serialized out as xml, its value is "weavingRibbon". + + + + + Weaving Strips Art Border. + When the item is serialized out as xml, its value is "weavingStrips". + + + + + White Flowers Art Border. + When the item is serialized out as xml, its value is "whiteFlowers". + + + + + Woodwork Art Border. + When the item is serialized out as xml, its value is "woodwork". + + + + + Crisscross Art Border. + When the item is serialized out as xml, its value is "xIllusions". + + + + + Triangle Art Border. + When the item is serialized out as xml, its value is "zanyTriangles". + + + + + Zigzag Art Border. + When the item is serialized out as xml, its value is "zigZag". + + + + + Zigzag stitch. + When the item is serialized out as xml, its value is "zigZagStitch". + + + + + Defines the DocumentConformance enumeration. + + + + + Creates a new DocumentConformance enum instance + + + + + transitional. + When the item is serialized out as xml, its value is "transitional". + + + + + strict. + When the item is serialized out as xml, its value is "strict". + + + + + Defines the StrictCharacterSet enumeration. + + + + + Creates a new StrictCharacterSet enum instance + + + + + iso-8859-1. + When the item is serialized out as xml, its value is "iso-8859-1". + + + + + macintosh. + When the item is serialized out as xml, its value is "macintosh". + + + + + shift_jis. + When the item is serialized out as xml, its value is "shift_jis". + + + + + ks_c-5601-1987. + When the item is serialized out as xml, its value is "ks_c-5601-1987". + + + + + KS_C-5601-1992. + When the item is serialized out as xml, its value is "KS_C-5601-1992". + + + + + GBK. + When the item is serialized out as xml, its value is "GBK". + + + + + Big5. + When the item is serialized out as xml, its value is "Big5". + + + + + windows-1253. + When the item is serialized out as xml, its value is "windows-1253". + + + + + iso-8859-9. + When the item is serialized out as xml, its value is "iso-8859-9". + + + + + windows-1258. + When the item is serialized out as xml, its value is "windows-1258". + + + + + windows-1255. + When the item is serialized out as xml, its value is "windows-1255". + + + + + windows-1256. + When the item is serialized out as xml, its value is "windows-1256". + + + + + windows-1257. + When the item is serialized out as xml, its value is "windows-1257". + + + + + windows-1251. + When the item is serialized out as xml, its value is "windows-1251". + + + + + windows-874. + When the item is serialized out as xml, its value is "windows-874". + + + + + windows-1250. + When the item is serialized out as xml, its value is "windows-1250". + + + + + Defines the ObjectDrawAspect enumeration. + + + + + Creates a new ObjectDrawAspect enum instance + + + + + content. + When the item is serialized out as xml, its value is "content". + + + + + icon. + When the item is serialized out as xml, its value is "icon". + + + + + Linked Object Update Modes + + + + + Creates a new ObjectUpdateMode enum instance + + + + + always. + When the item is serialized out as xml, its value is "always". + + + + + onCall. + When the item is serialized out as xml, its value is "onCall". + + + + + Defines the CompatSettingNameValues enumeration. + + + + + Creates a new CompatSettingNameValues enum instance + + + + + compatibilityMode. + When the item is serialized out as xml, its value is "compatibilityMode". + + + + + overrideTableStyleFontSizeAndJustification. + When the item is serialized out as xml, its value is "overrideTableStyleFontSizeAndJustification". + + + + + enableOpenTypeFeatures. + When the item is serialized out as xml, its value is "enableOpenTypeFeatures". + + + + + doNotFlipMirrorIndents. + When the item is serialized out as xml, its value is "doNotFlipMirrorIndents". + + + + + differentiateMultirowTableHeaders. + When the item is serialized out as xml, its value is "differentiateMultirowTableHeaders". + + + + + useWord2013TrackBottomHyphenation. + When the item is serialized out as xml, its value is "useWord2013TrackBottomHyphenation". + This item is only available in Office 2016 and later. + + + + + allowHyphenationAtTrackBottom. + When the item is serialized out as xml, its value is "allowHyphenationAtTrackBottom". + This item is only available in Office 2016 and later. + + + + + allowTextAfterFloatingTableBreak. + When the item is serialized out as xml, its value is "allowTextAfterFloatingTableBreak". + This item is only available in Office 2013 and later. + + + + + Represents an implementation of that is aware of the strongly typed classes for a . + + + + + Initializes a new instance of the class. + + The stream of the part contents. + Options for how to read the part stream. + + + + Defines SpreadsheetDocumentType - type of SpreadsheetDocument. + + + + + Excel Workbook (*.xlsx). + + + + + Excel Template (*.xltx). + + + + + Excel Macro-Enabled Workbook (*.xlsm). + + + + + Excel Macro-Enabled Template (*.xltm). + + + + + Excel Add-In (*.xlam). + + + + + Represents an implementation of that is aware of the strongly typed classes for a . + + + + + Initializes a new instance of the class. + + The stream of the part contents. + Options for how to read the part stream. + + + + Defines WordprocessingDocumentType - type of WordprocessingDocument. + + + + + Word Document (*.docx). + + + + + Word Template (*.dotx). + + + + + Word Macro-Enabled Document (*.docm). + + + + + Word Macro-Enabled Template (*.dotm). + + + + + Attached Object Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:ClientData. + + + The following table lists the possible child types: + + <xvml:Row> + <xvml:Column> + <xvml:VTEdit> + <xvml:WidthMin> + <xvml:Sel> + <xvml:DropLines> + <xvml:Checked> + <xvml:Val> + <xvml:Min> + <xvml:Max> + <xvml:Inc> + <xvml:Page> + <xvml:Dx> + <xvml:ScriptLanguage> + <xvml:ScriptLocation> + <xvml:Anchor> + <xvml:TextHAlign> + <xvml:TextVAlign> + <xvml:FmlaRange> + <xvml:SelType> + <xvml:MultiSel> + <xvml:LCT> + <xvml:ListItem> + <xvml:DropStyle> + <xvml:FmlaLink> + <xvml:FmlaPict> + <xvml:FmlaGroup> + <xvml:ScriptText> + <xvml:ScriptExtended> + <xvml:FmlaTxbx> + <xvml:Accel> + <xvml:Accel2> + <xvml:CF> + <xvml:FmlaMacro> + <xvml:MoveWithCells> + <xvml:SizeWithCells> + <xvml:Locked> + <xvml:DefaultSize> + <xvml:PrintObject> + <xvml:Disabled> + <xvml:AutoFill> + <xvml:AutoLine> + <xvml:AutoPict> + <xvml:LockText> + <xvml:JustLastX> + <xvml:SecretEdit> + <xvml:Default> + <xvml:Help> + <xvml:Cancel> + <xvml:Dismiss> + <xvml:Visible> + <xvml:RowHidden> + <xvml:ColHidden> + <xvml:MultiLine> + <xvml:VScroll> + <xvml:ValidIds> + <xvml:NoThreeD2> + <xvml:Colored> + <xvml:NoThreeD> + <xvml:FirstButton> + <xvml:Horiz> + <xvml:MapOCX> + <xvml:Camera> + <xvml:RecalcAlways> + <xvml:AutoScale> + <xvml:DDE> + <xvml:UIObj> + + + + + + Initializes a new instance of the ClientData class. + + + + + Initializes a new instance of the ClientData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ClientData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ClientData class from outer XML. + + Specifies the outer XML of the element. + + + + Object type + Represents the following attribute in the schema: ObjectType + + + + + + + + Move with Cells. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:MoveWithCells. + + + + + Initializes a new instance of the MoveWithCells class. + + + + + Initializes a new instance of the MoveWithCells class with the specified text content. + + Specifies the text content of the element. + + + + + + + Resize with Cells. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:SizeWithCells. + + + + + Initializes a new instance of the ResizeWithCells class. + + + + + Initializes a new instance of the ResizeWithCells class with the specified text content. + + Specifies the text content of the element. + + + + + + + Lock Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Locked. + + + + + Initializes a new instance of the Locked class. + + + + + Initializes a new instance of the Locked class with the specified text content. + + Specifies the text content of the element. + + + + + + + Default Size Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:DefaultSize. + + + + + Initializes a new instance of the DefaultSize class. + + + + + Initializes a new instance of the DefaultSize class with the specified text content. + + Specifies the text content of the element. + + + + + + + Print Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:PrintObject. + + + + + Initializes a new instance of the PrintObject class. + + + + + Initializes a new instance of the PrintObject class with the specified text content. + + Specifies the text content of the element. + + + + + + + Macro Disable Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Disabled. + + + + + Initializes a new instance of the Disabled class. + + + + + Initializes a new instance of the Disabled class with the specified text content. + + Specifies the text content of the element. + + + + + + + AutoFill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:AutoFill. + + + + + Initializes a new instance of the AutoFill class. + + + + + Initializes a new instance of the AutoFill class with the specified text content. + + Specifies the text content of the element. + + + + + + + AutoLine. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:AutoLine. + + + + + Initializes a new instance of the AutoLine class. + + + + + Initializes a new instance of the AutoLine class with the specified text content. + + Specifies the text content of the element. + + + + + + + Automatically Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:AutoPict. + + + + + Initializes a new instance of the AutoSizePicture class. + + + + + Initializes a new instance of the AutoSizePicture class with the specified text content. + + Specifies the text content of the element. + + + + + + + Text Lock. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:LockText. + + + + + Initializes a new instance of the LockText class. + + + + + Initializes a new instance of the LockText class with the specified text content. + + Specifies the text content of the element. + + + + + + + East Asia Alignment Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:JustLastX. + + + + + Initializes a new instance of the JustifyLastLine class. + + + + + Initializes a new instance of the JustifyLastLine class with the specified text content. + + Specifies the text content of the element. + + + + + + + Password Edit. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:SecretEdit. + + + + + Initializes a new instance of the SecretEdit class. + + + + + Initializes a new instance of the SecretEdit class with the specified text content. + + Specifies the text content of the element. + + + + + + + Default Button. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Default. + + + + + Initializes a new instance of the DefaultButton class. + + + + + Initializes a new instance of the DefaultButton class with the specified text content. + + Specifies the text content of the element. + + + + + + + Help Button. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Help. + + + + + Initializes a new instance of the HelpButton class. + + + + + Initializes a new instance of the HelpButton class with the specified text content. + + Specifies the text content of the element. + + + + + + + Cancel Button. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Cancel. + + + + + Initializes a new instance of the CancelButton class. + + + + + Initializes a new instance of the CancelButton class with the specified text content. + + Specifies the text content of the element. + + + + + + + Dismiss Button. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Dismiss. + + + + + Initializes a new instance of the DismissButton class. + + + + + Initializes a new instance of the DismissButton class with the specified text content. + + Specifies the text content of the element. + + + + + + + Comment Visibility Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Visible. + + + + + Initializes a new instance of the Visible class. + + + + + Initializes a new instance of the Visible class with the specified text content. + + Specifies the text content of the element. + + + + + + + Comment's Row is Hidden. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:RowHidden. + + + + + Initializes a new instance of the RowHidden class. + + + + + Initializes a new instance of the RowHidden class with the specified text content. + + Specifies the text content of the element. + + + + + + + Comment's Column is Hidden. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:ColHidden. + + + + + Initializes a new instance of the ColumnHidden class. + + + + + Initializes a new instance of the ColumnHidden class with the specified text content. + + Specifies the text content of the element. + + + + + + + Multi-line. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:MultiLine. + + + + + Initializes a new instance of the MultiLine class. + + + + + Initializes a new instance of the MultiLine class with the specified text content. + + Specifies the text content of the element. + + + + + + + Vertical Scroll. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:VScroll. + + + + + Initializes a new instance of the VerticalScrollBar class. + + + + + Initializes a new instance of the VerticalScrollBar class with the specified text content. + + Specifies the text content of the element. + + + + + + + Valid ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:ValidIds. + + + + + Initializes a new instance of the ValidIds class. + + + + + Initializes a new instance of the ValidIds class with the specified text content. + + Specifies the text content of the element. + + + + + + + Disable 3D. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:NoThreeD2. + + + + + Initializes a new instance of the Disable3DForListBoxAndDropDown class. + + + + + Initializes a new instance of the Disable3DForListBoxAndDropDown class with the specified text content. + + Specifies the text content of the element. + + + + + + + Dropdown Color Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Colored. + + + + + Initializes a new instance of the Colored class. + + + + + Initializes a new instance of the Colored class with the specified text content. + + Specifies the text content of the element. + + + + + + + Disable 3D. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:NoThreeD. + + + + + Initializes a new instance of the Disable3D class. + + + + + Initializes a new instance of the Disable3D class with the specified text content. + + Specifies the text content of the element. + + + + + + + First Radio Button. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:FirstButton. + + + + + Initializes a new instance of the FirstButton class. + + + + + Initializes a new instance of the FirstButton class with the specified text content. + + Specifies the text content of the element. + + + + + + + Scroll Bar Orientation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Horiz. + + + + + Initializes a new instance of the HorizontalScrollBar class. + + + + + Initializes a new instance of the HorizontalScrollBar class with the specified text content. + + Specifies the text content of the element. + + + + + + + ActiveX Control. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:MapOCX. + + + + + Initializes a new instance of the MapOcxControl class. + + + + + Initializes a new instance of the MapOcxControl class with the specified text content. + + Specifies the text content of the element. + + + + + + + Camera Tool. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Camera. + + + + + Initializes a new instance of the CameraObject class. + + + + + Initializes a new instance of the CameraObject class with the specified text content. + + Specifies the text content of the element. + + + + + + + Recalculation Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:RecalcAlways. + + + + + Initializes a new instance of the RecalculateAlways class. + + + + + Initializes a new instance of the RecalculateAlways class with the specified text content. + + Specifies the text content of the element. + + + + + + + Font AutoScale. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:AutoScale. + + + + + Initializes a new instance of the AutoScaleFont class. + + + + + Initializes a new instance of the AutoScaleFont class with the specified text content. + + Specifies the text content of the element. + + + + + + + Dynamic Data Exchange. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:DDE. + + + + + Initializes a new instance of the DdeObject class. + + + + + Initializes a new instance of the DdeObject class with the specified text content. + + Specifies the text content of the element. + + + + + + + UI Object Toggle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:UIObj. + + + + + Initializes a new instance of the UIObject class. + + + + + Initializes a new instance of the UIObject class with the specified text content. + + Specifies the text content of the element. + + + + + + + Anchor. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Anchor. + + + + + Initializes a new instance of the Anchor class. + + + + + Initializes a new instance of the Anchor class with the specified text content. + + Specifies the text content of the element. + + + + + + + Horizontal Text Alignment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:TextHAlign. + + + + + Initializes a new instance of the HorizontalTextAlignment class. + + + + + Initializes a new instance of the HorizontalTextAlignment class with the specified text content. + + Specifies the text content of the element. + + + + + + + Vertical Text Alignment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:TextVAlign. + + + + + Initializes a new instance of the VerticalTextAlignment class. + + + + + Initializes a new instance of the VerticalTextAlignment class with the specified text content. + + Specifies the text content of the element. + + + + + + + List Items Source Range. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:FmlaRange. + + + + + Initializes a new instance of the FormulaRange class. + + + + + Initializes a new instance of the FormulaRange class with the specified text content. + + Specifies the text content of the element. + + + + + + + Selection Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:SelType. + + + + + Initializes a new instance of the SelectionType class. + + + + + Initializes a new instance of the SelectionType class with the specified text content. + + Specifies the text content of the element. + + + + + + + Multiple Selections. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:MultiSel. + + + + + Initializes a new instance of the MultiSelections class. + + + + + Initializes a new instance of the MultiSelections class with the specified text content. + + Specifies the text content of the element. + + + + + + + Callback Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:LCT. + + + + + Initializes a new instance of the ListBoxCallbackType class. + + + + + Initializes a new instance of the ListBoxCallbackType class with the specified text content. + + Specifies the text content of the element. + + + + + + + Non-linked List Item. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:ListItem. + + + + + Initializes a new instance of the ListItem class. + + + + + Initializes a new instance of the ListItem class with the specified text content. + + Specifies the text content of the element. + + + + + + + Dropdown Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:DropStyle. + + + + + Initializes a new instance of the DropStyle class. + + + + + Initializes a new instance of the DropStyle class with the specified text content. + + Specifies the text content of the element. + + + + + + + Linked Formula. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:FmlaLink. + + + + + Initializes a new instance of the FormulaLink class. + + + + + Initializes a new instance of the FormulaLink class with the specified text content. + + Specifies the text content of the element. + + + + + + + Camera Source Range. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:FmlaPict. + + + + + Initializes a new instance of the FormulaPicture class. + + + + + Initializes a new instance of the FormulaPicture class with the specified text content. + + Specifies the text content of the element. + + + + + + + Linked Formula - Group Box. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:FmlaGroup. + + + + + Initializes a new instance of the FormulaGroup class. + + + + + Initializes a new instance of the FormulaGroup class with the specified text content. + + Specifies the text content of the element. + + + + + + + HTML Script Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:ScriptText. + + + + + Initializes a new instance of the ScriptText class. + + + + + Initializes a new instance of the ScriptText class with the specified text content. + + Specifies the text content of the element. + + + + + + + HTML Script Attributes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:ScriptExtended. + + + + + Initializes a new instance of the ScriptExtended class. + + + + + Initializes a new instance of the ScriptExtended class with the specified text content. + + Specifies the text content of the element. + + + + + + + Text Formula. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:FmlaTxbx. + + + + + Initializes a new instance of the FormulaTextBox class. + + + + + Initializes a new instance of the FormulaTextBox class with the specified text content. + + Specifies the text content of the element. + + + + + + + Reference to Custom Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:FmlaMacro. + + + + + Initializes a new instance of the FormulaMacro class. + + + + + Initializes a new instance of the FormulaMacro class with the specified text content. + + Specifies the text content of the element. + + + + + + + Primary Keyboard Accelerator. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Accel. + + + + + Initializes a new instance of the AcceleratorPrimary class. + + + + + Initializes a new instance of the AcceleratorPrimary class with the specified text content. + + Specifies the text content of the element. + + + + + + + Secondary Keyboard Accelerator. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Accel2. + + + + + Initializes a new instance of the AcceleratorSecondary class. + + + + + Initializes a new instance of the AcceleratorSecondary class with the specified text content. + + Specifies the text content of the element. + + + + + + + Comment Row Target. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Row. + + + + + Initializes a new instance of the CommentRowTarget class. + + + + + Initializes a new instance of the CommentRowTarget class with the specified text content. + + Specifies the text content of the element. + + + + + + + Comment Column Target. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Column. + + + + + Initializes a new instance of the CommentColumnTarget class. + + + + + Initializes a new instance of the CommentColumnTarget class with the specified text content. + + Specifies the text content of the element. + + + + + + + Validation Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:VTEdit. + + + + + Initializes a new instance of the InputValidationType class. + + + + + Initializes a new instance of the InputValidationType class with the specified text content. + + Specifies the text content of the element. + + + + + + + Minimum Width. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:WidthMin. + + + + + Initializes a new instance of the MinDropDownWidth class. + + + + + Initializes a new instance of the MinDropDownWidth class with the specified text content. + + Specifies the text content of the element. + + + + + + + Selected Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Sel. + + + + + Initializes a new instance of the SelectionEntry class. + + + + + Initializes a new instance of the SelectionEntry class with the specified text content. + + Specifies the text content of the element. + + + + + + + Dropdown Maximum Lines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:DropLines. + + + + + Initializes a new instance of the DropLines class. + + + + + Initializes a new instance of the DropLines class with the specified text content. + + Specifies the text content of the element. + + + + + + + Checked. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Checked. + + + + + Initializes a new instance of the Checked class. + + + + + Initializes a new instance of the Checked class with the specified text content. + + Specifies the text content of the element. + + + + + + + Scroll bar position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Val. + + + + + Initializes a new instance of the ScrollBarPosition class. + + + + + Initializes a new instance of the ScrollBarPosition class with the specified text content. + + Specifies the text content of the element. + + + + + + + Scroll Bar Minimum. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Min. + + + + + Initializes a new instance of the ScrollBarMin class. + + + + + Initializes a new instance of the ScrollBarMin class with the specified text content. + + Specifies the text content of the element. + + + + + + + Scroll Bar Maximum. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Max. + + + + + Initializes a new instance of the ScrollBarMax class. + + + + + Initializes a new instance of the ScrollBarMax class with the specified text content. + + Specifies the text content of the element. + + + + + + + Scroll Bar Increment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Inc. + + + + + Initializes a new instance of the ScrollBarIncrement class. + + + + + Initializes a new instance of the ScrollBarIncrement class with the specified text content. + + Specifies the text content of the element. + + + + + + + Scroll Bar Page Increment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Page. + + + + + Initializes a new instance of the ScrollBarPageIncrement class. + + + + + Initializes a new instance of the ScrollBarPageIncrement class with the specified text content. + + Specifies the text content of the element. + + + + + + + Scroll Bar Width. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:Dx. + + + + + Initializes a new instance of the ScrollBarWidth class. + + + + + Initializes a new instance of the ScrollBarWidth class with the specified text content. + + Specifies the text content of the element. + + + + + + + Clipboard Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:CF. + + + + + Initializes a new instance of the ClipboardFormat class. + + + + + Initializes a new instance of the ClipboardFormat class with the specified text content. + + Specifies the text content of the element. + + + + + + + HTML Script Language. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:ScriptLanguage. + + + + + Initializes a new instance of the ScriptLanguage class. + + + + + Initializes a new instance of the ScriptLanguage class with the specified text content. + + Specifies the text content of the element. + + + + + + + HTML Script Location. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xvml:ScriptLocation. + + + + + Initializes a new instance of the ScriptLocation class. + + + + + Initializes a new instance of the ScriptLocation class with the specified text content. + + Specifies the text content of the element. + + + + + + + Clipboard Format Type + + + + + Creates a new ClipboardFormatValues enum instance + + + + + WMF. + When the item is serialized out as xml, its value is "PictOld". + + + + + EMF. + When the item is serialized out as xml, its value is "Pict". + + + + + Bitmap. + When the item is serialized out as xml, its value is "Bitmap". + + + + + Printer Picture. + When the item is serialized out as xml, its value is "PictPrint". + + + + + Screen Picture EMF. + When the item is serialized out as xml, its value is "PictScreen". + + + + + Object Type + + + + + Creates a new ObjectValues enum instance + + + + + Pushbutton. + When the item is serialized out as xml, its value is "Button". + + + + + Checkbox. + When the item is serialized out as xml, its value is "Checkbox". + + + + + Dialog. + When the item is serialized out as xml, its value is "Dialog". + + + + + Dropdown Box. + When the item is serialized out as xml, its value is "Drop". + + + + + Editable Text Field. + When the item is serialized out as xml, its value is "Edit". + + + + + Group Box. + When the item is serialized out as xml, its value is "GBox". + + + + + Label. + When the item is serialized out as xml, its value is "Label". + + + + + Auditing Line. + When the item is serialized out as xml, its value is "LineA". + + + + + List Box. + When the item is serialized out as xml, its value is "List". + + + + + Movie. + When the item is serialized out as xml, its value is "Movie". + + + + + Comment. + When the item is serialized out as xml, its value is "Note". + + + + + Image. + When the item is serialized out as xml, its value is "Pict". + + + + + Radio Button. + When the item is serialized out as xml, its value is "Radio". + + + + + Auditing Rectangle. + When the item is serialized out as xml, its value is "RectA". + + + + + Scroll Bar. + When the item is serialized out as xml, its value is "Scroll". + + + + + Spin Button. + When the item is serialized out as xml, its value is "Spin". + + + + + Plain Shape. + When the item is serialized out as xml, its value is "Shape". + + + + + Group. + When the item is serialized out as xml, its value is "Group". + + + + + Plain Rectangle. + When the item is serialized out as xml, its value is "Rect". + + + + + Boolean Value with Blank State + + + + + Creates a new BooleanEntryWithBlankValues enum instance + + + + + Logical True. + When the item is serialized out as xml, its value is "True". + + + + + Logical True. + When the item is serialized out as xml, its value is "t". + + + + + Logical False. + When the item is serialized out as xml, its value is "False". + + + + + Logical False. + When the item is serialized out as xml, its value is "f". + + + + + Blank - Default Value. + When the item is serialized out as xml, its value is "". + + + + + New Shape Defaults. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:shapedefaults. + + + The following table lists the possible child types: + + <o:callout> + <o:colormenu> + <o:colormru> + <o:extrusion> + <o:lock> + <o:skew> + <v:fill> + <v:imagedata> + <v:shadow> + <v:stroke> + <v:textbox> + + + + + + Initializes a new instance of the ShapeDefaults class. + + + + + Initializes a new instance of the ShapeDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeDefaults class from outer XML. + + Specifies the outer XML of the element. + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Shape ID Optional Storage + Represents the following attribute in the schema: spidmax + + + + + style + Represents the following attribute in the schema: style + + + + + Shape Fill Toggle + Represents the following attribute in the schema: fill + + + + + Default Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroke + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + allowoverlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + insetmode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Fill. + Represents the following element tag in the schema: v:fill. + + + xmlns:v = urn:schemas-microsoft-com:vml + + + + + ImageData. + Represents the following element tag in the schema: v:imagedata. + + + xmlns:v = urn:schemas-microsoft-com:vml + + + + + Stroke. + Represents the following element tag in the schema: v:stroke. + + + xmlns:v = urn:schemas-microsoft-com:vml + + + + + TextBox. + Represents the following element tag in the schema: v:textbox. + + + xmlns:v = urn:schemas-microsoft-com:vml + + + + + Shadow. + Represents the following element tag in the schema: v:shadow. + + + xmlns:v = urn:schemas-microsoft-com:vml + + + + + Skew. + Represents the following element tag in the schema: o:skew. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + Extrusion. + Represents the following element tag in the schema: o:extrusion. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + Callout. + Represents the following element tag in the schema: o:callout. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + Shape Protections. + Represents the following element tag in the schema: o:lock. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + Most Recently Used Colors. + Represents the following element tag in the schema: o:colormru. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + UI Default Colors. + Represents the following element tag in the schema: o:colormenu. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + + + + Shape Layout Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:shapelayout. + + + The following table lists the possible child types: + + <o:idmap> + <o:regrouptable> + <o:rules> + + + + + + Initializes a new instance of the ShapeLayout class. + + + + + Initializes a new instance of the ShapeLayout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeLayout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeLayout class from outer XML. + + Specifies the outer XML of the element. + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Shape ID Map. + Represents the following element tag in the schema: o:idmap. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + Shape Grouping History. + Represents the following element tag in the schema: o:regrouptable. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + Rule Set. + Represents the following element tag in the schema: o:rules. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + + + + Digital Signature Line. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:signatureline. + + + + + Initializes a new instance of the SignatureLine class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Signature Line Flag + Represents the following attribute in the schema: issignatureline + + + + + Unique ID + Represents the following attribute in the schema: id + + + + + Signature Provider ID + Represents the following attribute in the schema: provid + + + + + Use Signing Instructions Flag + Represents the following attribute in the schema: signinginstructionsset + + + + + User-specified Comments Flag + Represents the following attribute in the schema: allowcomments + + + + + Show Signed Date Flag + Represents the following attribute in the schema: showsigndate + + + + + Suggested Signer Line 1 + Represents the following attribute in the schema: o:suggestedsigner + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Suggested Signer Line 2 + Represents the following attribute in the schema: o:suggestedsigner2 + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Suggested Signer E-mail Address + Represents the following attribute in the schema: o:suggestedsigneremail + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Instructions for Signing + Represents the following attribute in the schema: signinginstructions + + + + + Additional Signature Information + Represents the following attribute in the schema: addlxml + + + + + Signature Provider Download URL + Represents the following attribute in the schema: sigprovurl + + + + + + + + Ink. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:ink. + + + + + Initializes a new instance of the Ink class. + + + + + Ink Data + Represents the following attribute in the schema: i + + + + + Annotation Flag + Represents the following attribute in the schema: annotation + + + + + + + + VML Diagram. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:diagram. + + + The following table lists the possible child types: + + <o:relationtable> + + + + + + Initializes a new instance of the Diagram class. + + + + + Initializes a new instance of the Diagram class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Diagram class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Diagram class from outer XML. + + Specifies the outer XML of the element. + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Diagram Style Options + Represents the following attribute in the schema: dgmstyle + + + + + Diagram Automatic Format + Represents the following attribute in the schema: autoformat + + + + + Diagram Reverse Direction + Represents the following attribute in the schema: reverse + + + + + Diagram Automatic Layout + Represents the following attribute in the schema: autolayout + + + + + Diagram Layout X Scale + Represents the following attribute in the schema: dgmscalex + + + + + Diagram Layout Y Scale + Represents the following attribute in the schema: dgmscaley + + + + + Diagram Font Size + Represents the following attribute in the schema: dgmfontsize + + + + + Diagram Layout Extents + Represents the following attribute in the schema: constrainbounds + + + + + Diagram Base Font Size + Represents the following attribute in the schema: dgmbasetextscale + + + + + Diagram Relationship Table. + Represents the following element tag in the schema: o:relationtable. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + + + + Skew Transform. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:skew. + + + + + Initializes a new instance of the Skew class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Skew ID + Represents the following attribute in the schema: id + + + + + Skew Toggle + Represents the following attribute in the schema: on + + + + + Skew Offset + Represents the following attribute in the schema: offset + + + + + Skew Origin + Represents the following attribute in the schema: origin + + + + + Skew Perspective Matrix + Represents the following attribute in the schema: matrix + + + + + + + + 3D Extrusion. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:extrusion. + + + + + Initializes a new instance of the Extrusion class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Extrusion Toggle + Represents the following attribute in the schema: on + + + + + Extrusion Type + Represents the following attribute in the schema: type + + + + + Extrusion Render Mode + Represents the following attribute in the schema: render + + + + + Extrusion Viewpoint Origin + Represents the following attribute in the schema: viewpointorigin + + + + + Extrusion Viewpoint + Represents the following attribute in the schema: viewpoint + + + + + Extrusion Skew Angle + Represents the following attribute in the schema: skewangle + + + + + Extrusion Skew + Represents the following attribute in the schema: skewamt + + + + + Forward Extrusion + Represents the following attribute in the schema: foredepth + + + + + Backward Extrusion Depth + Represents the following attribute in the schema: backdepth + + + + + Rotation Axis + Represents the following attribute in the schema: orientation + + + + + Rotation Around Axis + Represents the following attribute in the schema: orientationangle + + + + + Rotation Toggle + Represents the following attribute in the schema: lockrotationcenter + + + + + Center of Rotation Toggle + Represents the following attribute in the schema: autorotationcenter + + + + + Rotation Center + Represents the following attribute in the schema: rotationcenter + + + + + X-Y Rotation Angle + Represents the following attribute in the schema: rotationangle + + + + + Extrusion Color + Represents the following attribute in the schema: color + + + + + Shininess + Represents the following attribute in the schema: shininess + + + + + Specularity + Represents the following attribute in the schema: specularity + + + + + Diffuse Reflection + Represents the following attribute in the schema: diffusity + + + + + Metallic Surface Toggle + Represents the following attribute in the schema: metal + + + + + Simulated Bevel + Represents the following attribute in the schema: edge + + + + + Faceting Quality + Represents the following attribute in the schema: facet + + + + + Shape Face Lighting Toggle + Represents the following attribute in the schema: lightface + + + + + Brightness + Represents the following attribute in the schema: brightness + + + + + Primary Light Position + Represents the following attribute in the schema: lightposition + + + + + Primary Light Intensity + Represents the following attribute in the schema: lightlevel + + + + + Primary Light Harshness Toggle + Represents the following attribute in the schema: lightharsh + + + + + Secondary Light Position + Represents the following attribute in the schema: lightposition2 + + + + + Secondary Light Intensity + Represents the following attribute in the schema: lightlevel2 + + + + + Secondary Light Harshness Toggle + Represents the following attribute in the schema: lightharsh2 + + + + + + + + Defines the Callout Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:callout. + + + + + Initializes a new instance of the Callout class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Callout toggle + Represents the following attribute in the schema: on + + + + + Callout type + Represents the following attribute in the schema: type + + + + + Callout gap + Represents the following attribute in the schema: gap + + + + + Callout angle + Represents the following attribute in the schema: angle + + + + + Callout automatic drop toggle + Represents the following attribute in the schema: dropauto + + + + + Callout drop position + Represents the following attribute in the schema: drop + + + + + Callout drop distance + Represents the following attribute in the schema: distance + + + + + Callout length toggle + Represents the following attribute in the schema: lengthspecified + + + + + Callout length + Represents the following attribute in the schema: length + + + + + Callout accent bar toggle + Represents the following attribute in the schema: accentbar + + + + + Callout text border toggle + Represents the following attribute in the schema: textborder + + + + + Callout flip x + Represents the following attribute in the schema: minusx + + + + + Callout flip y + Represents the following attribute in the schema: minusy + + + + + + + + Defines the Lock Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:lock. + + + + + Initializes a new instance of the Lock class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Position Lock + Represents the following attribute in the schema: position + + + + + Selection Lock + Represents the following attribute in the schema: selection + + + + + Grouping Lock + Represents the following attribute in the schema: grouping + + + + + Ungrouping Lock + Represents the following attribute in the schema: ungrouping + + + + + Rotation Lock + Represents the following attribute in the schema: rotation + + + + + Cropping Lock + Represents the following attribute in the schema: cropping + + + + + Vertices Lock + Represents the following attribute in the schema: verticies + + + + + Handles Lock + Represents the following attribute in the schema: adjusthandles + + + + + Text Lock + Represents the following attribute in the schema: text + + + + + Aspect Ratio Lock + Represents the following attribute in the schema: aspectratio + + + + + AutoShape Type Lock + Represents the following attribute in the schema: shapetype + + + + + + + + Embedded OLE Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:OLEObject. + + + The following table lists the possible child types: + + <o:LinkType> + <o:LockedField> + <o:FieldCodes> + + + + + + Initializes a new instance of the OleObject class. + + + + + Initializes a new instance of the OleObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObject class from outer XML. + + Specifies the outer XML of the element. + + + + OLE Object Type + Represents the following attribute in the schema: Type + + + + + OLE Object Application + Represents the following attribute in the schema: ProgID + + + + + OLE Object Shape + Represents the following attribute in the schema: ShapeID + + + + + OLE Object Representation + Represents the following attribute in the schema: DrawAspect + + + + + OLE Object Unique ID + Represents the following attribute in the schema: ObjectID + + + + + Relationship + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + OLE Update Mode + Represents the following attribute in the schema: UpdateMode + + + + + Embedded Object Alternate Image Request. + Represents the following element tag in the schema: o:LinkType. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + Embedded Object Cannot Be Refreshed. + Represents the following element tag in the schema: o:LockedField. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + WordprocessingML Field Switches. + Represents the following element tag in the schema: o:FieldCodes. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + + + + Complex. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:complex. + + + + + Initializes a new instance of the Complex class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + + + + Text Box Left Stroke. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:left. + + + + + Initializes a new instance of the LeftStroke class. + + + + + + + + Text Box Top Stroke. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:top. + + + + + Initializes a new instance of the TopStroke class. + + + + + + + + Text Box Right Stroke. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:right. + + + + + Initializes a new instance of the RightStroke class. + + + + + + + + Text Box Bottom Stroke. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:bottom. + + + + + Initializes a new instance of the BottomStroke class. + + + + + + + + Text Box Interior Stroke. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:column. + + + + + Initializes a new instance of the ColumnStroke class. + + + + + + + + Defines the StrokeChildType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the StrokeChildType class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Stroke Toggle + Represents the following attribute in the schema: on + + + + + Stroke Weight + Represents the following attribute in the schema: weight + + + + + Stroke Color + Represents the following attribute in the schema: color + + + + + Stroke Alternate Pattern Color + Represents the following attribute in the schema: color2 + + + + + Stroke Opacity + Represents the following attribute in the schema: opacity + + + + + Stroke Line Style + Represents the following attribute in the schema: linestyle + + + + + Miter Joint Limit + Represents the following attribute in the schema: miterlimit + + + + + Line End Join Style) + Represents the following attribute in the schema: joinstyle + + + + + Line End Cap + Represents the following attribute in the schema: endcap + + + + + Stroke Dash Pattern + Represents the following attribute in the schema: dashstyle + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Stroke Image Style + Represents the following attribute in the schema: filltype + + + + + Stroke Image Location + Represents the following attribute in the schema: src + + + + + Stroke Image Aspect Ratio + Represents the following attribute in the schema: imageaspect + + + + + Stroke Image Size + Represents the following attribute in the schema: imagesize + + + + + Stoke Image Alignment + Represents the following attribute in the schema: imagealignshape + + + + + Line Start Arrowhead + Represents the following attribute in the schema: startarrow + + + + + Line Start Arrowhead Width + Represents the following attribute in the schema: startarrowwidth + + + + + Line Start Arrowhead Length + Represents the following attribute in the schema: startarrowlength + + + + + Line End Arrowhead + Represents the following attribute in the schema: endarrow + + + + + Line End Arrowhead Width + Represents the following attribute in the schema: endarrowwidth + + + + + Line End Arrowhead Length + Represents the following attribute in the schema: endarrowlength + + + + + Original Image Reference + Represents the following attribute in the schema: o:href + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Alternate Image Reference + Represents the following attribute in the schema: o:althref + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Stroke Title + Represents the following attribute in the schema: o:title + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Clipping Path. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:clippath. + + + + + Initializes a new instance of the ClipPath class. + + + + + Path Definition + Represents the following attribute in the schema: o:v + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + + + + Shape Fill Extended Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:fill. + + + + + Initializes a new instance of the FillExtendedProperties class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Fill Type + Represents the following attribute in the schema: type + + + + + + + + Shape ID Map. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:idmap. + + + + + Initializes a new instance of the ShapeIdMap class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Shape IDs + Represents the following attribute in the schema: data + + + + + + + + Shape Grouping History. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:regrouptable. + + + The following table lists the possible child types: + + <o:entry> + + + + + + Initializes a new instance of the RegroupTable class. + + + + + Initializes a new instance of the RegroupTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RegroupTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RegroupTable class from outer XML. + + Specifies the outer XML of the element. + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + + + + Rule Set. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:rules. + + + The following table lists the possible child types: + + <o:r> + + + + + + Initializes a new instance of the Rules class. + + + + + Initializes a new instance of the Rules class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rules class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rules class from outer XML. + + Specifies the outer XML of the element. + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + + + + Regroup Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:entry. + + + + + Initializes a new instance of the Entry class. + + + + + New Group ID + Represents the following attribute in the schema: new + + + + + Old Group ID + Represents the following attribute in the schema: old + + + + + + + + Rule. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:r. + + + The following table lists the possible child types: + + <o:proxy> + + + + + + Initializes a new instance of the Rule class. + + + + + Initializes a new instance of the Rule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rule class from outer XML. + + Specifies the outer XML of the element. + + + + Rule ID + Represents the following attribute in the schema: id + + + + + Rule Type + Represents the following attribute in the schema: type + + + + + Alignment Rule Type + Represents the following attribute in the schema: how + + + + + Rule Shape Reference + Represents the following attribute in the schema: idref + + + + + + + + Diagram Relationship Table. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:relationtable. + + + The following table lists the possible child types: + + <o:rel> + + + + + + Initializes a new instance of the RelationTable class. + + + + + Initializes a new instance of the RelationTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RelationTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RelationTable class from outer XML. + + Specifies the outer XML of the element. + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + + + + Diagram Relationship. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:rel. + + + + + Initializes a new instance of the Relation class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Diagram Relationship Source Shape + Represents the following attribute in the schema: idsrc + + + + + Diagram Relationship Destination Shape + Represents the following attribute in the schema: iddest + + + + + Diagram Relationship Center Shape + Represents the following attribute in the schema: idcntr + + + + + + + + Embedded Object Alternate Image Request. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:LinkType. + + + + + Initializes a new instance of the LinkType class. + + + + + Initializes a new instance of the LinkType class with the specified text content. + + Specifies the text content of the element. + + + + + + + Embedded Object Cannot Be Refreshed. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:LockedField. + + + + + Initializes a new instance of the LockedField class. + + + + + Initializes a new instance of the LockedField class with the specified text content. + + Specifies the text content of the element. + + + + + + + WordprocessingML Field Switches. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:FieldCodes. + + + + + Initializes a new instance of the FieldCodes class. + + + + + Initializes a new instance of the FieldCodes class with the specified text content. + + Specifies the text content of the element. + + + + + + + Shape Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:proxy. + + + + + Initializes a new instance of the Proxy class. + + + + + Start Point Connection Flag + Represents the following attribute in the schema: start + + + + + End Point Connection Flag + Represents the following attribute in the schema: end + + + + + Proxy Shape Reference + Represents the following attribute in the schema: idref + + + + + Connection Location + Represents the following attribute in the schema: connectloc + + + + + + + + Most Recently Used Colors. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:colormru. + + + + + Initializes a new instance of the ColorMostRecentlyUsed class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Recent colors + Represents the following attribute in the schema: colors + + + + + + + + UI Default Colors. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is o:colormenu. + + + + + Initializes a new instance of the ColorMenu class. + + + + + VML Extension Handling Behavior + Represents the following attribute in the schema: v:ext + + + xmlns:v=urn:schemas-microsoft-com:vml + + + + + Default stroke color + Represents the following attribute in the schema: strokecolor + + + + + Default fill color + Represents the following attribute in the schema: fillcolor + + + + + Default shadow color + Represents the following attribute in the schema: shadowcolor + + + + + Default extrusion color + Represents the following attribute in the schema: extrusioncolor + + + + + + + + Alignment Type + + + + + Creates a new AlignmentValues enum instance + + + + + Top Alignment. + When the item is serialized out as xml, its value is "top". + + + + + Middle Alignment. + When the item is serialized out as xml, its value is "middle". + + + + + Bottom Alignment. + When the item is serialized out as xml, its value is "bottom". + + + + + Left Alignment. + When the item is serialized out as xml, its value is "left". + + + + + Center Alignment. + When the item is serialized out as xml, its value is "center". + + + + + Right Alignment. + When the item is serialized out as xml, its value is "right". + + + + + Screen Sizes Type + + + + + Creates a new ScreenSizeValues enum instance + + + + + 544x376 pixels. + When the item is serialized out as xml, its value is "544,376". + + + + + 640x480 pixels. + When the item is serialized out as xml, its value is "640,480". + + + + + 720x512 pixels. + When the item is serialized out as xml, its value is "720,512". + + + + + 800x600 pixels. + When the item is serialized out as xml, its value is "800,600". + + + + + 1024x768 pixels. + When the item is serialized out as xml, its value is "1024,768". + + + + + 1152x862 pixels. + When the item is serialized out as xml, its value is "1152,862". + + + + + Inset Margin Type + + + + + Creates a new InsetMarginValues enum instance + + + + + Automatic Margins. + When the item is serialized out as xml, its value is "auto". + + + + + Custom Margins. + When the item is serialized out as xml, its value is "custom". + + + + + Extrusion Color Types + + + + + Creates a new ColorModeValues enum instance + + + + + Use Shape Fill Color. + When the item is serialized out as xml, its value is "auto". + + + + + Use Custom Color. + When the item is serialized out as xml, its value is "custom". + + + + + Extrusion Type + + + + + Creates a new ExtrusionValues enum instance + + + + + Perspective Projection. + When the item is serialized out as xml, its value is "perspective". + + + + + Parallel Projection. + When the item is serialized out as xml, its value is "parallel". + + + + + Extrusion Rendering Types + + + + + Creates a new ExtrusionRenderValues enum instance + + + + + Solid. + When the item is serialized out as xml, its value is "solid". + + + + + Wireframe. + When the item is serialized out as xml, its value is "wireFrame". + + + + + Bounding Cube. + When the item is serialized out as xml, its value is "boundingCube". + + + + + Extrusion Planes + + + + + Creates a new ExtrusionPlaneValues enum instance + + + + + XY Plane. + When the item is serialized out as xml, its value is "XY". + + + + + ZX Plane. + When the item is serialized out as xml, its value is "ZX". + + + + + YZ Plane. + When the item is serialized out as xml, its value is "YZ". + + + + + Callout Angles + + + + + Creates a new AngleValues enum instance + + + + + Any Angle. + When the item is serialized out as xml, its value is "any". + + + + + 30 degrees. + When the item is serialized out as xml, its value is "30". + + + + + 45 degrees. + When the item is serialized out as xml, its value is "45". + + + + + 60 degrees. + When the item is serialized out as xml, its value is "60". + + + + + 90 degrees. + When the item is serialized out as xml, its value is "90". + + + + + Automatic Angle. + When the item is serialized out as xml, its value is "auto". + + + + + Callout Placement + + + + + Creates a new CalloutPlacementValues enum instance + + + + + Top placement. + When the item is serialized out as xml, its value is "top". + + + + + Center placement. + When the item is serialized out as xml, its value is "center". + + + + + Bottom placement. + When the item is serialized out as xml, its value is "bottom". + + + + + User-defined placement. + When the item is serialized out as xml, its value is "user". + + + + + Connector Type + + + + + Creates a new ConnectorValues enum instance + + + + + No Connector. + When the item is serialized out as xml, its value is "none". + + + + + Straight Connector. + When the item is serialized out as xml, its value is "straight". + + + + + Elbow Connector. + When the item is serialized out as xml, its value is "elbow". + + + + + Curved Connector. + When the item is serialized out as xml, its value is "curved". + + + + + Alignment Type + + + + + Creates a new HorizontalRuleAlignmentValues enum instance + + + + + Left Alignment. + When the item is serialized out as xml, its value is "left". + + + + + Right Alignment. + When the item is serialized out as xml, its value is "right". + + + + + Center Alignment. + When the item is serialized out as xml, its value is "center". + + + + + Connection Locations Type + + + + + Creates a new ConnectValues enum instance + + + + + No. + When the item is serialized out as xml, its value is "none". + + + + + Four Connections. + When the item is serialized out as xml, its value is "rect". + + + + + Edit Point Connections. + When the item is serialized out as xml, its value is "segments". + + + + + Custom Connections. + When the item is serialized out as xml, its value is "custom". + + + + + Embedded Object Alternate Image Request Types + + + + + Creates a new OleLinkValues enum instance + + + + + Other Image. + When the item is serialized out as xml, its value is "Picture". + + + + + Bitmap Image. + When the item is serialized out as xml, its value is "Bitmap". + + + + + Enhanced Metafile Image. + When the item is serialized out as xml, its value is "EnhancedMetaFile". + + + + + OLE Connection Type + + + + + Creates a new OleValues enum instance + + + + + Embedded Object. + When the item is serialized out as xml, its value is "Embed". + + + + + Linked Object. + When the item is serialized out as xml, its value is "Link". + + + + + OLE Object Representations + + + + + Creates a new OleDrawAspectValues enum instance + + + + + Snapshot. + When the item is serialized out as xml, its value is "Content". + + + + + Icon. + When the item is serialized out as xml, its value is "Icon". + + + + + OLE Update Method Type + + + + + Creates a new OleUpdateModeValues enum instance + + + + + Server Application Update. + When the item is serialized out as xml, its value is "Always". + + + + + User Update. + When the item is serialized out as xml, its value is "OnCall". + + + + + Shape Fill Type + + + + + Creates a new FillValues enum instance + + + + + Centered Radial Gradient. + When the item is serialized out as xml, its value is "gradientCenter". + + + + + Solid Fill. + When the item is serialized out as xml, its value is "solid". + + + + + Image Pattern. + When the item is serialized out as xml, its value is "pattern". + + + + + Tiled Image. + When the item is serialized out as xml, its value is "tile". + + + + + Stretch Image to Fit. + When the item is serialized out as xml, its value is "frame". + + + + + Unscaled Gradient. + When the item is serialized out as xml, its value is "gradientUnscaled". + + + + + Radial Gradient. + When the item is serialized out as xml, its value is "gradientRadial". + + + + + Linear Gradient. + When the item is serialized out as xml, its value is "gradient". + + + + + Use Background Fill. + When the item is serialized out as xml, its value is "background". + + + + + Rule Type + + + + + Creates a new RuleValues enum instance + + + + + Arc Rule. + When the item is serialized out as xml, its value is "arc". + + + + + Callout Rule. + When the item is serialized out as xml, its value is "callout". + + + + + Connector Rule. + When the item is serialized out as xml, its value is "connector". + + + + + Black And White Modes + + + + + Creates a new BlackAndWhiteModeValues enum instance + + + + + Color. + When the item is serialized out as xml, its value is "color". + + + + + Automatic. + When the item is serialized out as xml, its value is "auto". + + + + + Grayscale. + When the item is serialized out as xml, its value is "grayScale". + + + + + Light grayscale. + When the item is serialized out as xml, its value is "lightGrayScale". + + + + + Inverse Grayscale. + When the item is serialized out as xml, its value is "inverseGray". + + + + + Gray Outlines. + When the item is serialized out as xml, its value is "grayOutline". + + + + + Black And White. + When the item is serialized out as xml, its value is "highContrast". + + + + + Black. + When the item is serialized out as xml, its value is "black". + + + + + White. + When the item is serialized out as xml, its value is "white". + + + + + Do Not Show. + When the item is serialized out as xml, its value is "undrawn". + + + + + Black Text And Lines. + When the item is serialized out as xml, its value is "blackTextAndLines". + + + + + Ink Annotation Flag. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is pvml:iscomment. + + + + + Initializes a new instance of the InkAnnotationFlag class. + + + + + + + + VML Diagram Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is pvml:textdata. + + + + + Initializes a new instance of the TextData class. + + + + + Text Reference + Represents the following attribute in the schema: id + + + + + + + + Top Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w10:bordertop. + + + + + Initializes a new instance of the TopBorder class. + + + + + + + + Left Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w10:borderleft. + + + + + Initializes a new instance of the LeftBorder class. + + + + + + + + Right Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w10:borderright. + + + + + Initializes a new instance of the RightBorder class. + + + + + + + + Bottom Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w10:borderbottom. + + + + + Initializes a new instance of the BottomBorder class. + + + + + + + + Defines the BorderType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BorderType class. + + + + + Border Style + Represents the following attribute in the schema: type + + + + + Border Width + Represents the following attribute in the schema: width + + + + + Border shadow + Represents the following attribute in the schema: shadow + + + + + Text Wrapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w10:wrap. + + + + + Initializes a new instance of the TextWrap class. + + + + + Wrapping type + Represents the following attribute in the schema: type + + + + + Wrapping side + Represents the following attribute in the schema: side + + + + + Horizontal Positioning Base + Represents the following attribute in the schema: anchorx + + + + + Vertical Positioning Base + Represents the following attribute in the schema: anchory + + + + + + + + Anchor Location Is Locked. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is w10:anchorlock. + + + + + Initializes a new instance of the AnchorLock class. + + + + + + + + Border Type + + + + + Creates a new BorderValues enum instance + + + + + No Border. + When the item is serialized out as xml, its value is "none". + + + + + Single Line Border. + When the item is serialized out as xml, its value is "single". + + + + + Thick Line Border. + When the item is serialized out as xml, its value is "thick". + + + + + Double Line Border. + When the item is serialized out as xml, its value is "double". + + + + + Hairline Border. + When the item is serialized out as xml, its value is "hairline". + + + + + Dotted Border. + When the item is serialized out as xml, its value is "dot". + + + + + pecifies a line border consisting of a dashed line around the parent object.. + When the item is serialized out as xml, its value is "dash". + + + + + Dot Dash Border. + When the item is serialized out as xml, its value is "dotDash". + + + + + Dash Dot Dot Border. + When the item is serialized out as xml, its value is "dashDotDot". + + + + + Triple Line Border. + When the item is serialized out as xml, its value is "triple". + + + + + Thin Thick Small Gap Border. + When the item is serialized out as xml, its value is "thinThickSmall". + + + + + Small thick-thin lines border. + When the item is serialized out as xml, its value is "thickThinSmall". + + + + + Small thin-thick-thin Lines Border. + When the item is serialized out as xml, its value is "thickBetweenThinSmall". + + + + + Thin Thick Line Border. + When the item is serialized out as xml, its value is "thinThick". + + + + + Thick Thin Line Border. + When the item is serialized out as xml, its value is "thickThin". + + + + + Thin-thick-thin Border. + When the item is serialized out as xml, its value is "thickBetweenThin". + + + + + Thin Thick Large Gap Border. + When the item is serialized out as xml, its value is "thinThickLarge". + + + + + Thick Thin Large Gap Border. + When the item is serialized out as xml, its value is "thickThinLarge". + + + + + Large thin-thick-thin Border. + When the item is serialized out as xml, its value is "thickBetweenThinLarge". + + + + + Wavy Border. + When the item is serialized out as xml, its value is "wave". + + + + + Double Wavy Lines Border. + When the item is serialized out as xml, its value is "doubleWave". + + + + + Small Dash Border. + When the item is serialized out as xml, its value is "dashedSmall". + + + + + Stroked Dash Dot Border. + When the item is serialized out as xml, its value is "dashDotStroked". + + + + + 3D Embossed Border. + When the item is serialized out as xml, its value is "threeDEmboss". + + + + + 3D Engraved Border. + When the item is serialized out as xml, its value is "threeDEngrave". + + + + + Outset Border. + When the item is serialized out as xml, its value is "HTMLOutset". + + + + + Inset Border. + When the item is serialized out as xml, its value is "HTMLInset". + + + + + Text Wrapping Type + + + + + Creates a new WrapValues enum instance + + + + + Top and bottom wrapping. + When the item is serialized out as xml, its value is "topAndBottom". + + + + + Square wrapping. + When the item is serialized out as xml, its value is "square". + + + + + No wrapping. + When the item is serialized out as xml, its value is "none". + + + + + Tight wrapping. + When the item is serialized out as xml, its value is "tight". + + + + + Through wrapping. + When the item is serialized out as xml, its value is "through". + + + + + Text Wrapping Side + + + + + Creates a new WrapSideValues enum instance + + + + + Both sides. + When the item is serialized out as xml, its value is "both". + + + + + Left side. + When the item is serialized out as xml, its value is "left". + + + + + Right side. + When the item is serialized out as xml, its value is "right". + + + + + Largest side. + When the item is serialized out as xml, its value is "largest". + + + + + Horizontal Anchor Type + + + + + Creates a new HorizontalAnchorValues enum instance + + + + + Margin. + When the item is serialized out as xml, its value is "margin". + + + + + Page. + When the item is serialized out as xml, its value is "page". + + + + + Text. + When the item is serialized out as xml, its value is "text". + + + + + Vertical Anchor Type + + + + + Creates a new VerticalAnchorValues enum instance + + + + + Margin. + When the item is serialized out as xml, its value is "margin". + + + + + Page. + When the item is serialized out as xml, its value is "page". + + + + + Text. + When the item is serialized out as xml, its value is "text". + + + + + Defines the Path Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:path. + + + + + Initializes a new instance of the Path class. + + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Path Definition + Represents the following attribute in the schema: v + + + + + Limo Stretch Point + Represents the following attribute in the schema: limo + + + + + Text Box Bounding Box + Represents the following attribute in the schema: textboxrect + + + + + Shape Fill Toggle + Represents the following attribute in the schema: fillok + + + + + Stroke Toggle + Represents the following attribute in the schema: strokeok + + + + + Shadow Toggle + Represents the following attribute in the schema: shadowok + + + + + Arrowhead Display Toggle + Represents the following attribute in the schema: arrowok + + + + + Gradient Shape Toggle + Represents the following attribute in the schema: gradientshapeok + + + + + Text Path Toggle + Represents the following attribute in the schema: textpathok + + + + + Inset Stroke From Path Flag + Represents the following attribute in the schema: insetpenok + + + + + Connection Point Type + Represents the following attribute in the schema: o:connecttype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Connection Points + Represents the following attribute in the schema: o:connectlocs + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Connection Point Connect Angles + Represents the following attribute in the schema: o:connectangles + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Extrusion Toggle + Represents the following attribute in the schema: o:extrusionok + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + + + + Defines the Formulas Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:formulas. + + + The following table lists the possible child types: + + <v:f> + + + + + + Initializes a new instance of the Formulas class. + + + + + Initializes a new instance of the Formulas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Formulas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Formulas class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ShapeHandles Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:handles. + + + The following table lists the possible child types: + + <v:h> + + + + + + Initializes a new instance of the ShapeHandles class. + + + + + Initializes a new instance of the ShapeHandles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeHandles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeHandles class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Fill Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:fill. + + + The following table lists the possible child types: + + <o:fill> + + + + + + Initializes a new instance of the Fill class. + + + + + Initializes a new instance of the Fill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fill class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Fill Type + Represents the following attribute in the schema: type + + + + + Fill Toggle + Represents the following attribute in the schema: on + + + + + Primary Color + Represents the following attribute in the schema: color + + + + + Primary Color Opacity + Represents the following attribute in the schema: opacity + + + + + Secondary Color + Represents the following attribute in the schema: color2 + + + + + Fill Image Source + Represents the following attribute in the schema: src + + + + + Hyperlink Target + Represents the following attribute in the schema: o:href + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Alternate Image Reference Location + Represents the following attribute in the schema: o:althref + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Fill Image Size + Represents the following attribute in the schema: size + + + + + Fill Image Origin + Represents the following attribute in the schema: origin + + + + + Fill Image Position + Represents the following attribute in the schema: position + + + + + Image Aspect Ratio + Represents the following attribute in the schema: aspect + + + + + Intermediate Colors + Represents the following attribute in the schema: colors + + + + + Gradient Angle + Represents the following attribute in the schema: angle + + + + + Align Image With Shape + Represents the following attribute in the schema: alignshape + + + + + Gradient Center + Represents the following attribute in the schema: focus + + + + + Radial Gradient Size + Represents the following attribute in the schema: focussize + + + + + Radial Gradient Center + Represents the following attribute in the schema: focusposition + + + + + Gradient Fill Method + Represents the following attribute in the schema: method + + + + + Detect Mouse Click + Represents the following attribute in the schema: o:detectmouseclick + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Title + Represents the following attribute in the schema: o:title + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Secondary Color Opacity + Represents the following attribute in the schema: o:opacity2 + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Recolor Fill as Picture + Represents the following attribute in the schema: recolor + + + + + Rotate Fill with Shape + Represents the following attribute in the schema: rotate + + + + + Relationship to Part + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + FillExtendedProperties. + Represents the following element tag in the schema: o:fill. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + + + + Defines the Stroke Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:stroke. + + + The following table lists the possible child types: + + <o:left> + <o:top> + <o:right> + <o:bottom> + <o:column> + + + + + + Initializes a new instance of the Stroke class. + + + + + Initializes a new instance of the Stroke class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Stroke class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Stroke class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Stroke Toggle + Represents the following attribute in the schema: on + + + + + Stroke Weight + Represents the following attribute in the schema: weight + + + + + Stroke Color + Represents the following attribute in the schema: color + + + + + Stroke Opacity + Represents the following attribute in the schema: opacity + + + + + Stroke Line Style + Represents the following attribute in the schema: linestyle + + + + + Miter Joint Limit + Represents the following attribute in the schema: miterlimit + + + + + Line End Join Style + Represents the following attribute in the schema: joinstyle + + + + + Line End Cap + Represents the following attribute in the schema: endcap + + + + + Stroke Dash Pattern + Represents the following attribute in the schema: dashstyle + + + + + Stroke Image Style + Represents the following attribute in the schema: filltype + + + + + Stroke Image Location + Represents the following attribute in the schema: src + + + + + Stroke Image Aspect Ratio + Represents the following attribute in the schema: imageaspect + + + + + Stroke Image Size + Represents the following attribute in the schema: imagesize + + + + + Stoke Image Alignment + Represents the following attribute in the schema: imagealignshape + + + + + Stroke Alternate Pattern Color + Represents the following attribute in the schema: color2 + + + + + Line Start Arrowhead + Represents the following attribute in the schema: startarrow + + + + + Line Start Arrowhead Width + Represents the following attribute in the schema: startarrowwidth + + + + + Line Start Arrowhead Length + Represents the following attribute in the schema: startarrowlength + + + + + Line End Arrowhead + Represents the following attribute in the schema: endarrow + + + + + Line End Arrowhead Width + Represents the following attribute in the schema: endarrowwidth + + + + + Line End Arrowhead Length + Represents the following attribute in the schema: endarrowlength + + + + + Original Image Reference + Represents the following attribute in the schema: o:href + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Alternate Image Reference + Represents the following attribute in the schema: o:althref + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Stroke Title + Represents the following attribute in the schema: o:title + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relationship + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + LeftStroke. + Represents the following element tag in the schema: o:left. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + TopStroke. + Represents the following element tag in the schema: o:top. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + RightStroke. + Represents the following element tag in the schema: o:right. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + BottomStroke. + Represents the following element tag in the schema: o:bottom. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + ColumnStroke. + Represents the following element tag in the schema: o:column. + + + xmlns:o = urn:schemas-microsoft-com:office:office + + + + + + + + Defines the Shadow Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:shadow. + + + + + Initializes a new instance of the Shadow class. + + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shadow Toggle + Represents the following attribute in the schema: on + + + + + Shadow Type + Represents the following attribute in the schema: type + + + + + Shadow Transparency + Represents the following attribute in the schema: obscured + + + + + Shadow Primary Color + Represents the following attribute in the schema: color + + + + + Shadow Opacity + Represents the following attribute in the schema: opacity + + + + + Shadow Primary Offset + Represents the following attribute in the schema: offset + + + + + Shadow Secondary Color + Represents the following attribute in the schema: color2 + + + + + Shadow Secondary Offset + Represents the following attribute in the schema: offset2 + + + + + Shadow Origin + Represents the following attribute in the schema: origin + + + + + Shadow Perspective Matrix + Represents the following attribute in the schema: matrix + + + + + + + + Defines the TextBox Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:textbox. + + + The following table lists the possible child types: + + <w:txbxContent> + + + + + + Initializes a new instance of the TextBox class. + + + + + Initializes a new instance of the TextBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBox class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Text Box Inset + Represents the following attribute in the schema: inset + + + + + Text Box Single-Click Selection Toggle + Represents the following attribute in the schema: o:singleclick + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + + + + Defines the TextPath Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:textpath. + + + + + Initializes a new instance of the TextPath class. + + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Text Path Toggle + Represents the following attribute in the schema: on + + + + + Shape Fit Toggle + Represents the following attribute in the schema: fitshape + + + + + Path Fit Toggle + Represents the following attribute in the schema: fitpath + + + + + Text Path Trim Toggle + Represents the following attribute in the schema: trim + + + + + Text X-Scaling + Represents the following attribute in the schema: xscale + + + + + Text Path Text + Represents the following attribute in the schema: string + + + + + + + + Defines the ImageData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:imagedata. + + + + + Initializes a new instance of the ImageData class. + + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Image Transparency Color + Represents the following attribute in the schema: chromakey + + + + + Image Left Crop + Represents the following attribute in the schema: cropleft + + + + + Image Top Crop + Represents the following attribute in the schema: croptop + + + + + Image Right Crop + Represents the following attribute in the schema: cropright + + + + + Image Bottom Crop + Represents the following attribute in the schema: cropbottom + + + + + Image Intensity + Represents the following attribute in the schema: gain + + + + + Image Brightness + Represents the following attribute in the schema: blacklevel + + + + + Image Gamma Correction + Represents the following attribute in the schema: gamma + + + + + Image Grayscale Toggle + Represents the following attribute in the schema: grayscale + + + + + Image Bilevel Toggle + Represents the following attribute in the schema: bilevel + + + + + Embossed Color + Represents the following attribute in the schema: embosscolor + + + + + Black Recoloring Color + Represents the following attribute in the schema: recolortarget + + + + + Image Data Title + Represents the following attribute in the schema: o:title + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Detect Mouse Click + Represents the following attribute in the schema: o:detectmouseclick + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relationship to Part + Represents the following attribute in the schema: o:relid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Explicit Relationship to Image Data + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Explicit Relationship to Alternate Image Data + Represents the following attribute in the schema: r:pict + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Explicit Relationship to Hyperlink Target + Represents the following attribute in the schema: r:href + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Shape Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:shape. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:ink> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:iscomment> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the Shape class. + + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + CSS Reference + Represents the following attribute in the schema: class + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Type Reference + Represents the following attribute in the schema: type + + + + + Adjustment Parameters + Represents the following attribute in the schema: adj + + + + + Edge Path + Represents the following attribute in the schema: path + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Storage for Alternate Math Content + Represents the following attribute in the schema: equationxml + + + + + + + + Shape Template. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:shapetype. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:complex> + <o:extrusion> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the Shapetype class. + + + + + Initializes a new instance of the Shapetype class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shapetype class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shapetype class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + CSS Reference + Represents the following attribute in the schema: class + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Adjustment Parameters + Represents the following attribute in the schema: adj + + + + + Edge Path + Represents the following attribute in the schema: path + + + + + Master Element Toggle + Represents the following attribute in the schema: o:master + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + + + + Shape Group. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:group. + + + The following table lists the possible child types: + + <o:clippath> + <o:diagram> + <o:lock> + <v:arc> + <v:curve> + <v:group> + <v:image> + <v:line> + <v:oval> + <v:polyline> + <v:rect> + <v:roundrect> + <v:shape> + <v:shapetype> + <w10:anchorlock> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the Group class. + + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + CSS Reference + Represents the following attribute in the schema: class + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + spid + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + oned + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + regroupid + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + doubleclicknotify + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + button + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + userhidden + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + hr + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + hrstd + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + hrnoshade + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + hrpct + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + hralign + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + allowincell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + allowoverlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + userdrawn + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + dgmlayout + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + dgmnodekind + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + dgmlayoutmru + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + insetmode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Group Diagram Type + Represents the following attribute in the schema: editas + + + + + Table Properties + Represents the following attribute in the schema: o:tableproperties + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Table Row Height Limits + Represents the following attribute in the schema: o:tablelimits + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + + + + Document Background. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:background. + + + The following table lists the possible child types: + + <v:fill> + + + + + + Initializes a new instance of the Background class. + + + + + Initializes a new instance of the Background class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Background class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Background class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Fill Toggle + Represents the following attribute in the schema: fill + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Target Screen Size + Represents the following attribute in the schema: o:targetscreensize + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Fill. + Represents the following element tag in the schema: v:fill. + + + xmlns:v = urn:schemas-microsoft-com:vml + + + + + + + + Arc Segment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:arc. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the Arc class. + + + + + Initializes a new instance of the Arc class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Arc class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Arc class from outer XML. + + Specifies the outer XML of the element. + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + Starting Angle + Represents the following attribute in the schema: startangle + + + + + Ending Angle + Represents the following attribute in the schema: endangle + + + + + + + + Bezier Curve. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:curve. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the Curve class. + + + + + Initializes a new instance of the Curve class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Curve class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Curve class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + CSS Reference + Represents the following attribute in the schema: class + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Curve Starting Point + Represents the following attribute in the schema: from + + + + + First Curve Control Point + Represents the following attribute in the schema: control1 + + + + + Second Curve Control Point + Represents the following attribute in the schema: control2 + + + + + Curve Ending Point + Represents the following attribute in the schema: to + + + + + + + + Image File. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:image. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the ImageFile class. + + + + + Initializes a new instance of the ImageFile class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ImageFile class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ImageFile class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + style + Represents the following attribute in the schema: style + + + + + href + Represents the following attribute in the schema: href + + + + + target + Represents the following attribute in the schema: target + + + + + class + Represents the following attribute in the schema: class + + + + + title + Represents the following attribute in the schema: title + + + + + alt + Represents the following attribute in the schema: alt + + + + + coordsize + Represents the following attribute in the schema: coordsize + + + + + wrapcoords + Represents the following attribute in the schema: wrapcoords + + + + + print + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Image Source + Represents the following attribute in the schema: src + + + + + Image Left Crop + Represents the following attribute in the schema: cropleft + + + + + Image Top Crop + Represents the following attribute in the schema: croptop + + + + + Image Right Crop + Represents the following attribute in the schema: cropright + + + + + Image Bottom Crop + Represents the following attribute in the schema: cropbottom + + + + + Image Intensity + Represents the following attribute in the schema: gain + + + + + Image Brightness + Represents the following attribute in the schema: blacklevel + + + + + Image Gamma Correction + Represents the following attribute in the schema: gamma + + + + + Image Grayscale Toggle + Represents the following attribute in the schema: grayscale + + + + + Image Bilevel Toggle + Represents the following attribute in the schema: bilevel + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + + + + Line. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:line. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the Line class. + + + + + Initializes a new instance of the Line class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Line class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Line class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + CSS Reference + Represents the following attribute in the schema: class + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Line Start + Represents the following attribute in the schema: from + + + + + Line End Point + Represents the following attribute in the schema: to + + + + + + + + Oval. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:oval. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the Oval class. + + + + + Initializes a new instance of the Oval class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Oval class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Oval class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + CSS Reference + Represents the following attribute in the schema: class + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + + + + Multiple Path Line. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:polyline. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:ink> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the PolyLine class. + + + + + Initializes a new instance of the PolyLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PolyLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PolyLine class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + CSS Reference + Represents the following attribute in the schema: class + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Points for Compound Line + Represents the following attribute in the schema: points + + + + + + + + Rectangle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:rect. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the Rectangle class. + + + + + Initializes a new instance of the Rectangle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rectangle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rectangle class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + Shape Styling Properties + Represents the following attribute in the schema: style + + + + + Hyperlink Target + Represents the following attribute in the schema: href + + + + + Hyperlink Display Target + Represents the following attribute in the schema: target + + + + + CSS Reference + Represents the following attribute in the schema: class + + + + + Shape Title + Represents the following attribute in the schema: title + + + + + Alternate Text + Represents the following attribute in the schema: alt + + + + + Coordinate Space Size + Represents the following attribute in the schema: coordsize + + + + + Coordinate Space Origin + Represents the following attribute in the schema: coordorigin + + + + + Shape Bounding Polygon + Represents the following attribute in the schema: wrapcoords + + + + + Print Toggle + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + + + + Rounded Rectangle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:roundrect. + + + The following table lists the possible child types: + + <o:callout> + <o:clippath> + <o:extrusion> + <o:lock> + <o:signatureline> + <o:skew> + <pvml:textdata> + <v:fill> + <v:formulas> + <v:handles> + <v:imagedata> + <v:path> + <v:shadow> + <v:stroke> + <v:textbox> + <v:textpath> + <w10:anchorlock> + <w10:bordertop> + <w10:borderbottom> + <w10:borderleft> + <w10:borderright> + <w10:wrap> + <xvml:ClientData> + + + + + + Initializes a new instance of the RoundRectangle class. + + + + + Initializes a new instance of the RoundRectangle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RoundRectangle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RoundRectangle class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: id + + + + + style + Represents the following attribute in the schema: style + + + + + href + Represents the following attribute in the schema: href + + + + + target + Represents the following attribute in the schema: target + + + + + class + Represents the following attribute in the schema: class + + + + + title + Represents the following attribute in the schema: title + + + + + alt + Represents the following attribute in the schema: alt + + + + + coordsize + Represents the following attribute in the schema: coordsize + + + + + wrapcoords + Represents the following attribute in the schema: wrapcoords + + + + + print + Represents the following attribute in the schema: print + + + + + Optional String + Represents the following attribute in the schema: o:spid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Handle Toggle + Represents the following attribute in the schema: o:oned + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Regroup ID + Represents the following attribute in the schema: o:regroupid + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Double-click Notification Toggle + Represents the following attribute in the schema: o:doubleclicknotify + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Button Behavior Toggle + Represents the following attribute in the schema: o:button + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Hide Script Anchors + Represents the following attribute in the schema: o:userhidden + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Graphical Bullet + Represents the following attribute in the schema: o:bullet + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Toggle + Represents the following attribute in the schema: o:hr + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Standard Display Toggle + Represents the following attribute in the schema: o:hrstd + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule 3D Shading Toggle + Represents the following attribute in the schema: o:hrnoshade + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Length Percentage + Represents the following attribute in the schema: o:hrpct + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Horizontal Rule Alignment + Represents the following attribute in the schema: o:hralign + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow in Table Cell + Represents the following attribute in the schema: o:allowincell + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Allow Shape Overlap + Represents the following attribute in the schema: o:allowoverlap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Exists In Master Slide + Represents the following attribute in the schema: o:userdrawn + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Top Color + Represents the following attribute in the schema: o:bordertopcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Left Color + Represents the following attribute in the schema: o:borderleftcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Bottom Border Color + Represents the following attribute in the schema: o:borderbottomcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Border Right Color + Represents the following attribute in the schema: o:borderrightcolor + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Layout Identifier + Represents the following attribute in the schema: o:dgmlayout + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Identifier + Represents the following attribute in the schema: o:dgmnodekind + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Diagram Node Recent Layout Identifier + Represents the following attribute in the schema: o:dgmlayoutmru + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Text Inset Mode + Represents the following attribute in the schema: o:insetmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Fill Toggle + Represents the following attribute in the schema: filled + + + + + Fill Color + Represents the following attribute in the schema: fillcolor + + + + + Shape Stroke Toggle + Represents the following attribute in the schema: stroked + + + + + Shape Stroke Color + Represents the following attribute in the schema: strokecolor + + + + + Shape Stroke Weight + Represents the following attribute in the schema: strokeweight + + + + + Inset Border From Path + Represents the following attribute in the schema: insetpen + + + + + Optional Number + Represents the following attribute in the schema: o:spt + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Shape Connector Type + Represents the following attribute in the schema: o:connectortype + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Black-and-White Mode + Represents the following attribute in the schema: o:bwmode + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Pure Black-and-White Mode + Represents the following attribute in the schema: o:bwpure + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Normal Black-and-White Mode + Represents the following attribute in the schema: o:bwnormal + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Force Dashed Outline + Represents the following attribute in the schema: o:forcedash + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Icon Toggle + Represents the following attribute in the schema: o:oleicon + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Embedded Object Toggle + Represents the following attribute in the schema: o:ole + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Relative Resize Toggle + Represents the following attribute in the schema: o:preferrelative + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clip to Wrapping Polygon + Represents the following attribute in the schema: o:cliptowrap + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Clipping Toggle + Represents the following attribute in the schema: o:clip + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Encoded Package + Represents the following attribute in the schema: o:gfxdata + + + xmlns:o=urn:schemas-microsoft-com:office:office + + + + + Rounded Corner Arc Size + Represents the following attribute in the schema: arcsize + + + + + + + + Shape Handle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:h. + + + + + Initializes a new instance of the ShapeHandle class. + + + + + Handle Position + Represents the following attribute in the schema: position + + + + + Handle Polar Center + Represents the following attribute in the schema: polar + + + + + Handle Coordinate Mapping + Represents the following attribute in the schema: map + + + + + Invert Handle's X Position + Represents the following attribute in the schema: invx + + + + + Invert Handle's Y Position + Represents the following attribute in the schema: invy + + + + + Handle Inversion Toggle + Represents the following attribute in the schema: switch + + + + + Handle X Position Range + Represents the following attribute in the schema: xrange + + + + + Handle Y Position Range + Represents the following attribute in the schema: yrange + + + + + Handle Polar Radius Range + Represents the following attribute in the schema: radiusrange + + + + + + + + Single Formula. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is v:f. + + + + + Initializes a new instance of the Formula class. + + + + + Equation + Represents the following attribute in the schema: eqn + + + + + + + + VML Extension Handling Behaviors + + + + + Creates a new ExtensionHandlingBehaviorValues enum instance + + + + + Not renderable. + When the item is serialized out as xml, its value is "view". + + + + + Editable. + When the item is serialized out as xml, its value is "edit". + + + + + Renderable. + When the item is serialized out as xml, its value is "backwardCompatible". + + + + + Shape Fill Type + + + + + Creates a new FillTypeValues enum instance + + + + + Solid Fill. + When the item is serialized out as xml, its value is "solid". + + + + + Linear Gradient. + When the item is serialized out as xml, its value is "gradient". + + + + + Radial Gradient. + When the item is serialized out as xml, its value is "gradientRadial". + + + + + Tiled Image. + When the item is serialized out as xml, its value is "tile". + + + + + Image Pattern. + When the item is serialized out as xml, its value is "pattern". + + + + + Stretch Image to Fit. + When the item is serialized out as xml, its value is "frame". + + + + + Gradient Fill Computation Type + + + + + Creates a new FillMethodValues enum instance + + + + + No Gradient Fill. + When the item is serialized out as xml, its value is "none". + + + + + Linear Fill. + When the item is serialized out as xml, its value is "linear". + + + + + Sigma Fill. + When the item is serialized out as xml, its value is "sigma". + + + + + Application Default Fill. + When the item is serialized out as xml, its value is "any". + + + + + Linear Sigma Fill. + When the item is serialized out as xml, its value is "linear sigma". + + + + + Stroke Line Style + + + + + Creates a new StrokeLineStyleValues enum instance + + + + + Single Line. + When the item is serialized out as xml, its value is "single". + + + + + Two Thin Lines. + When the item is serialized out as xml, its value is "thinThin". + + + + + Thin Line Outside Thick Line. + When the item is serialized out as xml, its value is "thinThick". + + + + + Thick Line Outside Thin Line. + When the item is serialized out as xml, its value is "thickThin". + + + + + Thck Line Between Thin Lines. + When the item is serialized out as xml, its value is "thickBetweenThin". + + + + + Line Join Type + + + + + Creates a new StrokeJoinStyleValues enum instance + + + + + Round Joint. + When the item is serialized out as xml, its value is "round". + + + + + Bevel Joint. + When the item is serialized out as xml, its value is "bevel". + + + + + Miter Joint. + When the item is serialized out as xml, its value is "miter". + + + + + Stroke End Cap Type + + + + + Creates a new StrokeEndCapValues enum instance + + + + + Flat End. + When the item is serialized out as xml, its value is "flat". + + + + + Square End. + When the item is serialized out as xml, its value is "square". + + + + + Round End. + When the item is serialized out as xml, its value is "round". + + + + + Stroke Arrowhead Length + + + + + Creates a new StrokeArrowLengthValues enum instance + + + + + Short Arrowhead. + When the item is serialized out as xml, its value is "short". + + + + + Medium Arrowhead. + When the item is serialized out as xml, its value is "medium". + + + + + Long Arrowhead. + When the item is serialized out as xml, its value is "long". + + + + + Stroke Arrowhead Width + + + + + Creates a new StrokeArrowWidthValues enum instance + + + + + Narrow Arrowhead. + When the item is serialized out as xml, its value is "narrow". + + + + + Medium Arrowhead. + When the item is serialized out as xml, its value is "medium". + + + + + Wide Arrowhead. + When the item is serialized out as xml, its value is "wide". + + + + + Stroke Arrowhead Type + + + + + Creates a new StrokeArrowValues enum instance + + + + + No Arrowhead. + When the item is serialized out as xml, its value is "none". + + + + + Block Arrowhead. + When the item is serialized out as xml, its value is "block". + + + + + Classic Arrowhead. + When the item is serialized out as xml, its value is "classic". + + + + + Oval Arrowhead. + When the item is serialized out as xml, its value is "oval". + + + + + Diamond Arrowhead. + When the item is serialized out as xml, its value is "diamond". + + + + + Open Arrowhead. + When the item is serialized out as xml, its value is "open". + + + + + Image Scaling Behavior + + + + + Creates a new ImageAspectValues enum instance + + + + + Ignore Aspect Ratio. + When the item is serialized out as xml, its value is "ignore". + + + + + At Most. + When the item is serialized out as xml, its value is "atMost". + + + + + At Least. + When the item is serialized out as xml, its value is "atLeast". + + + + + Shape Grouping Types + + + + + Creates a new EditAsValues enum instance + + + + + Shape Canvas. + When the item is serialized out as xml, its value is "canvas". + + + + + Organization Chart Diagram. + When the item is serialized out as xml, its value is "orgchart". + + + + + Radial Diagram. + When the item is serialized out as xml, its value is "radial". + + + + + Cycle Diagram. + When the item is serialized out as xml, its value is "cycle". + + + + + Pyramid Diagram. + When the item is serialized out as xml, its value is "stacked". + + + + + Venn Diagram. + When the item is serialized out as xml, its value is "venn". + + + + + Bullseye Diagram. + When the item is serialized out as xml, its value is "bullseye". + + + + + Shadow Type + + + + + Creates a new ShadowValues enum instance + + + + + Single Shadow. + When the item is serialized out as xml, its value is "single". + + + + + Double Shadow. + When the item is serialized out as xml, its value is "double". + + + + + Embossed Shadow. + When the item is serialized out as xml, its value is "emboss". + + + + + Perspective Shadow. + When the item is serialized out as xml, its value is "perspective". + + + + + shapeRelative. + When the item is serialized out as xml, its value is "shapeRelative". + + + + + drawingRelative. + When the item is serialized out as xml, its value is "drawingRelative". + + + + + Defines the StrokeFillTypeValues enumeration. + + + + + Creates a new StrokeFillTypeValues enum instance + + + + + solid. + When the item is serialized out as xml, its value is "solid". + + + + + tile. + When the item is serialized out as xml, its value is "tile". + + + + + pattern. + When the item is serialized out as xml, its value is "pattern". + + + + + frame. + When the item is serialized out as xml, its value is "frame". + + + + + Defines the ContextNode Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is msink:context. + + + The following table lists the possible child types: + + <msink:sourceLink> + <msink:destinationLink> + <msink:property> + + + + + + Initializes a new instance of the ContextNode class. + + + + + Initializes a new instance of the ContextNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextNode class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + type + Represents the following attribute in the schema: type + + + + + rotatedBoundingBox + Represents the following attribute in the schema: rotatedBoundingBox + + + + + alignmentLevel + Represents the following attribute in the schema: alignmentLevel + + + + + contentType + Represents the following attribute in the schema: contentType + + + + + ascender + Represents the following attribute in the schema: ascender + + + + + descender + Represents the following attribute in the schema: descender + + + + + baseline + Represents the following attribute in the schema: baseline + + + + + midline + Represents the following attribute in the schema: midline + + + + + customRecognizerId + Represents the following attribute in the schema: customRecognizerId + + + + + mathML + Represents the following attribute in the schema: mathML + + + + + mathStruct + Represents the following attribute in the schema: mathStruct + + + + + mathSymbol + Represents the following attribute in the schema: mathSymbol + + + + + beginModifierType + Represents the following attribute in the schema: beginModifierType + + + + + endModifierType + Represents the following attribute in the schema: endModifierType + + + + + rotationAngle + Represents the following attribute in the schema: rotationAngle + + + + + hotPoints + Represents the following attribute in the schema: hotPoints + + + + + centroid + Represents the following attribute in the schema: centroid + + + + + semanticType + Represents the following attribute in the schema: semanticType + + + + + shapeName + Represents the following attribute in the schema: shapeName + + + + + shapeGeometry + Represents the following attribute in the schema: shapeGeometry + + + + + + + + Defines the ContextNodeProperty Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is msink:property. + + + + + Initializes a new instance of the ContextNodeProperty class. + + + + + Initializes a new instance of the ContextNodeProperty class with the specified text content. + + Specifies the text content of the element. + + + + type + Represents the following attribute in the schema: type + + + + + + + + Defines the SourceLink Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is msink:sourceLink. + + + + + Initializes a new instance of the SourceLink class. + + + + + + + + Defines the DestinationLink Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is msink:destinationLink. + + + + + Initializes a new instance of the DestinationLink class. + + + + + + + + Defines the ContextLinkType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the ContextLinkType class. + + + + + direction + Represents the following attribute in the schema: direction + + + + + ref + Represents the following attribute in the schema: ref + + + + + Defines the KnownContextNodeTypeValues enumeration. + + + + + Creates a new KnownContextNodeTypeValues enum instance + + + + + root. + When the item is serialized out as xml, its value is "root". + + + + + unclassifiedInk. + When the item is serialized out as xml, its value is "unclassifiedInk". + + + + + writingRegion. + When the item is serialized out as xml, its value is "writingRegion". + + + + + analysisHint. + When the item is serialized out as xml, its value is "analysisHint". + + + + + object. + When the item is serialized out as xml, its value is "object". + + + + + inkDrawing. + When the item is serialized out as xml, its value is "inkDrawing". + + + + + image. + When the item is serialized out as xml, its value is "image". + + + + + paragraph. + When the item is serialized out as xml, its value is "paragraph". + + + + + line. + When the item is serialized out as xml, its value is "line". + + + + + inkBullet. + When the item is serialized out as xml, its value is "inkBullet". + + + + + inkWord. + When the item is serialized out as xml, its value is "inkWord". + + + + + textWord. + When the item is serialized out as xml, its value is "textWord". + + + + + customRecognizer. + When the item is serialized out as xml, its value is "customRecognizer". + + + + + mathRegion. + When the item is serialized out as xml, its value is "mathRegion". + + + + + mathEquation. + When the item is serialized out as xml, its value is "mathEquation". + + + + + mathStruct. + When the item is serialized out as xml, its value is "mathStruct". + + + + + mathSymbol. + When the item is serialized out as xml, its value is "mathSymbol". + + + + + mathIdentifier. + When the item is serialized out as xml, its value is "mathIdentifier". + + + + + mathOperator. + When the item is serialized out as xml, its value is "mathOperator". + + + + + mathNumber. + When the item is serialized out as xml, its value is "mathNumber". + + + + + nonInkDrawing. + When the item is serialized out as xml, its value is "nonInkDrawing". + + + + + groupNode. + When the item is serialized out as xml, its value is "groupNode". + + + + + mixedDrawing. + When the item is serialized out as xml, its value is "mixedDrawing". + + + + + Defines the LinkDirectionValues enumeration. + + + + + Creates a new LinkDirectionValues enum instance + + + + + to. + When the item is serialized out as xml, its value is "to". + + + + + from. + When the item is serialized out as xml, its value is "from". + + + + + with. + When the item is serialized out as xml, its value is "with". + + + + + Defines the KnownSemanticTypeValues enumeration. + + + + + Creates a new KnownSemanticTypeValues enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + underline. + When the item is serialized out as xml, its value is "underline". + + + + + strikethrough. + When the item is serialized out as xml, its value is "strikethrough". + + + + + highlight. + When the item is serialized out as xml, its value is "highlight". + + + + + scratchOut. + When the item is serialized out as xml, its value is "scratchOut". + + + + + verticalRange. + When the item is serialized out as xml, its value is "verticalRange". + + + + + callout. + When the item is serialized out as xml, its value is "callout". + + + + + enclosure. + When the item is serialized out as xml, its value is "enclosure". + + + + + comment. + When the item is serialized out as xml, its value is "comment". + + + + + container. + When the item is serialized out as xml, its value is "container". + + + + + connector. + When the item is serialized out as xml, its value is "connector". + + + + + Defines the ControlCloneRegular Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:control. + + + + + Initializes a new instance of the ControlCloneRegular class. + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the ButtonRegular Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:button. + + + + + Initializes a new instance of the ButtonRegular class. + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the CheckBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:checkBox. + + + + + Initializes a new instance of the CheckBox class. + + + + + getPressed, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getPressed + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the GalleryRegular Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:gallery. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:item> + + + + + + Initializes a new instance of the GalleryRegular class. + + + + + Initializes a new instance of the GalleryRegular class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GalleryRegular class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GalleryRegular class from outer XML. + + Specifies the outer XML of the element. + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + invalidateContentOnDrop, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + columns, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: columns + + + + + rows, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: rows + + + + + itemWidth, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemWidth + + + + + itemHeight, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemHeight + + + + + getItemWidth, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemWidth + + + + + getItemHeight, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemHeight + + + + + showItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showItemLabel + + + + + showInRibbon, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showInRibbon + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + showItemImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showItemImage + + + + + getItemCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemLabel + + + + + getItemScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemScreentip + + + + + getItemSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemSupertip + + + + + getItemImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemImage + + + + + getItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemID + + + + + sizeString, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sizeString + + + + + getSelectedItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSelectedItemID + + + + + getSelectedItemIndex, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSelectedItemIndex + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the ToggleButtonRegular Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:toggleButton. + + + + + Initializes a new instance of the ToggleButtonRegular class. + + + + + getPressed, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getPressed + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the MenuSeparator Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menuSeparator. + + + + + Initializes a new instance of the MenuSeparator class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + title, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: title + + + + + getTitle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getTitle + + + + + + + + Defines the SplitButtonRegular Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:splitButton. + + + The following table lists the possible child types: + + <mso14:menu> + <mso14:button> + <mso14:toggleButton> + + + + + + Initializes a new instance of the SplitButtonRegular class. + + + + + Initializes a new instance of the SplitButtonRegular class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButtonRegular class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButtonRegular class from outer XML. + + Specifies the outer XML of the element. + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the MenuRegular Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menu. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:checkBox> + <mso14:control> + <mso14:dynamicMenu> + <mso14:gallery> + <mso14:menu> + <mso14:menuSeparator> + <mso14:splitButton> + <mso14:toggleButton> + + + + + + Initializes a new instance of the MenuRegular class. + + + + + Initializes a new instance of the MenuRegular class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuRegular class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuRegular class from outer XML. + + Specifies the outer XML of the element. + + + + itemSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemSize + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the DynamicMenuRegular Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:dynamicMenu. + + + + + Initializes a new instance of the DynamicMenuRegular class. + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + getContent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getContent + + + + + invalidateContentOnDrop, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the SplitButtonWithTitle Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:splitButton. + + + The following table lists the possible child types: + + <mso14:menu> + <mso14:button> + <mso14:toggleButton> + + + + + + Initializes a new instance of the SplitButtonWithTitle class. + + + + + Initializes a new instance of the SplitButtonWithTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButtonWithTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButtonWithTitle class from outer XML. + + Specifies the outer XML of the element. + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the MenuWithTitle Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menu. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:checkBox> + <mso14:control> + <mso14:dynamicMenu> + <mso14:gallery> + <mso14:menuSeparator> + <mso14:menu> + <mso14:splitButton> + <mso14:toggleButton> + + + + + + Initializes a new instance of the MenuWithTitle class. + + + + + Initializes a new instance of the MenuWithTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuWithTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuWithTitle class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + itemSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemSize + + + + + title, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: title + + + + + getTitle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getTitle + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the MenuSeparatorNoTitle Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menuSeparator. + + + + + Initializes a new instance of the MenuSeparatorNoTitle class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + + + + Defines the ControlClone Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:control. + + + + + Initializes a new instance of the ControlClone class. + + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + getSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSize + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the LabelControl Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:labelControl. + + + + + Initializes a new instance of the LabelControl class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the Button Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:button. + + + + + Initializes a new instance of the Button class. + + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + getSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSize + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the ToggleButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:toggleButton. + + + + + Initializes a new instance of the ToggleButton class. + + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + getSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSize + + + + + getPressed, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getPressed + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the EditBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:editBox. + + + + + Initializes a new instance of the EditBox class. + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + maxLength, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: maxLength + + + + + getText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getText + + + + + onChange, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onChange + + + + + sizeString, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sizeString + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the ComboBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:comboBox. + + + The following table lists the possible child types: + + <mso14:item> + + + + + + Initializes a new instance of the ComboBox class. + + + + + Initializes a new instance of the ComboBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ComboBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ComboBox class from outer XML. + + Specifies the outer XML of the element. + + + + showItemImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showItemImage + + + + + getItemCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemLabel + + + + + getItemScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemScreentip + + + + + getItemSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemSupertip + + + + + getItemImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemImage + + + + + getItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemID + + + + + sizeString, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sizeString + + + + + invalidateContentOnDrop, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + maxLength, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: maxLength + + + + + getText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getText + + + + + onChange, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onChange + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the DropDownRegular Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:dropDown. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:item> + + + + + + Initializes a new instance of the DropDownRegular class. + + + + + Initializes a new instance of the DropDownRegular class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropDownRegular class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropDownRegular class from outer XML. + + Specifies the outer XML of the element. + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + showItemImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showItemImage + + + + + getItemCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemLabel + + + + + getItemScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemScreentip + + + + + getItemSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemSupertip + + + + + getItemImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemImage + + + + + getItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemID + + + + + sizeString, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sizeString + + + + + getSelectedItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSelectedItemID + + + + + getSelectedItemIndex, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSelectedItemIndex + + + + + showItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showItemLabel + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the Gallery Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:gallery. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:item> + + + + + + Initializes a new instance of the Gallery class. + + + + + Initializes a new instance of the Gallery class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Gallery class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Gallery class from outer XML. + + Specifies the outer XML of the element. + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + getSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSize + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + invalidateContentOnDrop, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + columns, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: columns + + + + + rows, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: rows + + + + + itemWidth, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemWidth + + + + + itemHeight, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemHeight + + + + + getItemWidth, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemWidth + + + + + getItemHeight, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemHeight + + + + + showItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showItemLabel + + + + + showInRibbon, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showInRibbon + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + showItemImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showItemImage + + + + + getItemCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemLabel + + + + + getItemScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemScreentip + + + + + getItemSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemSupertip + + + + + getItemImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemImage + + + + + getItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemID + + + + + sizeString, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sizeString + + + + + getSelectedItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSelectedItemID + + + + + getSelectedItemIndex, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSelectedItemIndex + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the Menu Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menu. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:checkBox> + <mso14:control> + <mso14:dynamicMenu> + <mso14:gallery> + <mso14:menu> + <mso14:menuSeparator> + <mso14:splitButton> + <mso14:toggleButton> + + + + + + Initializes a new instance of the Menu class. + + + + + Initializes a new instance of the Menu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Menu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Menu class from outer XML. + + Specifies the outer XML of the element. + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + getSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSize + + + + + itemSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemSize + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the DynamicMenu Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:dynamicMenu. + + + + + Initializes a new instance of the DynamicMenu class. + + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + getSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSize + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + getContent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getContent + + + + + invalidateContentOnDrop, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: invalidateContentOnDrop + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the SplitButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:splitButton. + + + The following table lists the possible child types: + + <mso14:menu> + <mso14:button> + <mso14:toggleButton> + + + + + + Initializes a new instance of the SplitButton class. + + + + + Initializes a new instance of the SplitButton class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButton class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SplitButton class from outer XML. + + Specifies the outer XML of the element. + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + getSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSize + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the Box Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:box. + + + The following table lists the possible child types: + + <mso14:box> + <mso14:button> + <mso14:buttonGroup> + <mso14:checkBox> + <mso14:comboBox> + <mso14:control> + <mso14:dropDown> + <mso14:dynamicMenu> + <mso14:editBox> + <mso14:gallery> + <mso14:labelControl> + <mso14:menu> + <mso14:splitButton> + <mso14:toggleButton> + + + + + + Initializes a new instance of the Box class. + + + + + Initializes a new instance of the Box class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Box class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Box class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + boxStyle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: boxStyle + + + + + + + + Defines the ButtonGroup Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:buttonGroup. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:control> + <mso14:dynamicMenu> + <mso14:gallery> + <mso14:menu> + <mso14:separator> + <mso14:splitButton> + <mso14:toggleButton> + + + + + + Initializes a new instance of the ButtonGroup class. + + + + + Initializes a new instance of the ButtonGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ButtonGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ButtonGroup class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + + + + Defines the BackstageMenuButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:button. + + + + + Initializes a new instance of the BackstageMenuButton class. + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + isDefinitive, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isDefinitive + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + + + + Defines the BackstageMenuCheckBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:checkBox. + + + + + Initializes a new instance of the BackstageMenuCheckBox class. + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + getPressed, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getPressed + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the BackstageSubMenu Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menu. + + + The following table lists the possible child types: + + <mso14:menuGroup> + + + + + + Initializes a new instance of the BackstageSubMenu class. + + + + + Initializes a new instance of the BackstageSubMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageSubMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageSubMenu class from outer XML. + + Specifies the outer XML of the element. + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the BackstageMenuToggleButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:toggleButton. + + + + + Initializes a new instance of the BackstageMenuToggleButton class. + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + getPressed, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getPressed + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the BackstageGroupButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:button. + + + + + Initializes a new instance of the BackstageGroupButton class. + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + style, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: style + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + isDefinitive, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isDefinitive + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + + + + Defines the BackstageCheckBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:checkBox. + + + + + Initializes a new instance of the BackstageCheckBox class. + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + getPressed, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getPressed + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the BackstageEditBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:editBox. + + + + + Initializes a new instance of the BackstageEditBox class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + alignLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: alignLabel + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + getText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getText + + + + + onChange, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onChange + + + + + maxLength, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: maxLength + + + + + sizeString, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sizeString + + + + + + + + Defines the BackstageDropDown Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:dropDown. + + + The following table lists the possible child types: + + <mso14:item> + + + + + + Initializes a new instance of the BackstageDropDown class. + + + + + Initializes a new instance of the BackstageDropDown class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageDropDown class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageDropDown class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + alignLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: alignLabel + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + getSelectedItemIndex, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSelectedItemIndex + + + + + sizeString, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sizeString + + + + + getItemCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemLabel + + + + + getItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemID + + + + + + + + Defines the RadioGroup Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:radioGroup. + + + The following table lists the possible child types: + + <mso14:radioButton> + + + + + + Initializes a new instance of the RadioGroup class. + + + + + Initializes a new instance of the RadioGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadioGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadioGroup class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + alignLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: alignLabel + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + getSelectedItemIndex, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSelectedItemIndex + + + + + getItemCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemLabel + + + + + getItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemID + + + + + + + + Defines the BackstageComboBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:comboBox. + + + The following table lists the possible child types: + + <mso14:item> + + + + + + Initializes a new instance of the BackstageComboBox class. + + + + + Initializes a new instance of the BackstageComboBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageComboBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageComboBox class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + alignLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: alignLabel + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + getText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getText + + + + + onChange, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onChange + + + + + sizeString, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sizeString + + + + + getItemCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemCount + + + + + getItemLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemLabel + + + + + getItemID, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getItemID + + + + + + + + Defines the Hyperlink Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:hyperlink. + + + + + Initializes a new instance of the Hyperlink class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + alignLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: alignLabel + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + target, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: target + + + + + getTarget, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getTarget + + + + + + + + Defines the BackstageLabelControl Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:labelControl. + + + + + Initializes a new instance of the BackstageLabelControl class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + alignLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: alignLabel + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + noWrap, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: noWrap + + + + + + + + Defines the GroupBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:groupBox. + + + The following table lists the possible child types: + + <mso14:checkBox> + <mso14:comboBox> + <mso14:dropDown> + <mso14:editBox> + <mso14:button> + <mso14:labelControl> + <mso14:groupBox> + <mso14:hyperlink> + <mso14:imageControl> + <mso14:layoutContainer> + <mso14:radioGroup> + + + + + + Initializes a new instance of the GroupBox class. + + + + + Initializes a new instance of the GroupBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupBox class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + + + + Defines the LayoutContainer Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:layoutContainer. + + + The following table lists the possible child types: + + <mso14:checkBox> + <mso14:comboBox> + <mso14:dropDown> + <mso14:editBox> + <mso14:button> + <mso14:labelControl> + <mso14:groupBox> + <mso14:hyperlink> + <mso14:imageControl> + <mso14:layoutContainer> + <mso14:radioGroup> + + + + + + Initializes a new instance of the LayoutContainer class. + + + + + Initializes a new instance of the LayoutContainer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutContainer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutContainer class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + align, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: align + + + + + expand, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: expand + + + + + layoutChildren, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: layoutChildren + + + + + + + + Defines the ImageControl Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:imageControl. + + + + + Initializes a new instance of the ImageControl class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + altText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: altText + + + + + getAltText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getAltText + + + + + + + + Defines the BackstageGroup Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:group. + + + The following table lists the possible child types: + + <mso14:topItems> + <mso14:bottomItems> + <mso14:primaryItem> + + + + + + Initializes a new instance of the BackstageGroup class. + + + + + Initializes a new instance of the BackstageGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageGroup class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + style, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: style + + + + + getStyle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getStyle + + + + + helperText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: helperText + + + + + getHelperText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getHelperText + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + + + + Defines the TaskGroup Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:taskGroup. + + + The following table lists the possible child types: + + <mso14:category> + + + + + + Initializes a new instance of the TaskGroup class. + + + + + Initializes a new instance of the TaskGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskGroup class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + helperText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: helperText + + + + + getHelperText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getHelperText + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + allowedTaskSizes, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: allowedTaskSizes + + + + + + + + Defines the MenuRoot Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menu. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:checkBox> + <mso14:control> + <mso14:dynamicMenu> + <mso14:gallery> + <mso14:menu> + <mso14:menuSeparator> + <mso14:splitButton> + <mso14:toggleButton> + + + + + + Initializes a new instance of the MenuRoot class. + + + + + Initializes a new instance of the MenuRoot class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuRoot class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MenuRoot class from outer XML. + + Specifies the outer XML of the element. + + + + title, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: title + + + + + getTitle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getTitle + + + + + itemSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemSize + + + + + + + + Defines the CustomUI Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:customUI. + + + The following table lists the possible child types: + + <mso14:backstage> + <mso14:commands> + <mso14:contextMenus> + <mso14:ribbon> + + + + + + Initializes a new instance of the CustomUI class. + + + + + Initializes a new instance of the CustomUI class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomUI class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomUI class from outer XML. + + Specifies the outer XML of the element. + + + + onLoad, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onLoad + + + + + loadImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: loadImage + + + + + Commands. + Represents the following element tag in the schema: mso14:commands. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + Ribbon. + Represents the following element tag in the schema: mso14:ribbon. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + Backstage. + Represents the following element tag in the schema: mso14:backstage. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + ContextMenus. + Represents the following element tag in the schema: mso14:contextMenus. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + + + + Loads the DOM from the RibbonAndBackstageCustomizationsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the RibbonAndBackstageCustomizationsPart. + + Specifies the part to save to. + + + + Gets the RibbonAndBackstageCustomizationsPart associated with this element. + + + + + Defines the Item Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:item. + + + + + Initializes a new instance of the Item class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + + + + Defines the VisibleButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:button. + + + + + Initializes a new instance of the VisibleButton class. + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the VisibleToggleButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:toggleButton. + + + + + Initializes a new instance of the VisibleToggleButton class. + + + + + getPressed, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getPressed + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the Separator Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:separator. + + + + + Initializes a new instance of the Separator class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + + + + Defines the DialogBoxLauncher Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:dialogBoxLauncher. + + + The following table lists the possible child types: + + <mso14:button> + + + + + + Initializes a new instance of the DialogBoxLauncher class. + + + + + Initializes a new instance of the DialogBoxLauncher class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DialogBoxLauncher class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DialogBoxLauncher class from outer XML. + + Specifies the outer XML of the element. + + + + ButtonRegular. + Represents the following element tag in the schema: mso14:button. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + + + + Defines the Group Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:group. + + + The following table lists the possible child types: + + <mso14:box> + <mso14:button> + <mso14:buttonGroup> + <mso14:checkBox> + <mso14:comboBox> + <mso14:control> + <mso14:dialogBoxLauncher> + <mso14:dropDown> + <mso14:dynamicMenu> + <mso14:editBox> + <mso14:gallery> + <mso14:labelControl> + <mso14:menu> + <mso14:separator> + <mso14:splitButton> + <mso14:toggleButton> + + + + + + Initializes a new instance of the Group class. + + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + autoScale, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: autoScale + + + + + centerVertically, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: centerVertically + + + + + + + + Defines the ControlCloneQat Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:control. + + + + + Initializes a new instance of the ControlCloneQat class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + getSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSize + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + showImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showImage + + + + + getShowImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowImage + + + + + + + + Defines the SharedControlsQatItems Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:sharedControls. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:control> + <mso14:separator> + + + + + + Initializes a new instance of the SharedControlsQatItems class. + + + + + Initializes a new instance of the SharedControlsQatItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedControlsQatItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SharedControlsQatItems class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DocumentControlsQatItems Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:documentControls. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:control> + <mso14:separator> + + + + + + Initializes a new instance of the DocumentControlsQatItems class. + + + + + Initializes a new instance of the DocumentControlsQatItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentControlsQatItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentControlsQatItems class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the QatItemsType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:control> + <mso14:separator> + + + + + + Initializes a new instance of the QatItemsType class. + + + + + Initializes a new instance of the QatItemsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QatItemsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QatItemsType class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the Tab Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:tab. + + + The following table lists the possible child types: + + <mso14:group> + + + + + + Initializes a new instance of the Tab class. + + + + + Initializes a new instance of the Tab class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tab class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tab class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the TabSet Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:tabSet. + + + The following table lists the possible child types: + + <mso14:tab> + + + + + + Initializes a new instance of the TabSet class. + + + + + Initializes a new instance of the TabSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TabSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TabSet class from outer XML. + + Specifies the outer XML of the element. + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + + + + Defines the Command Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:command. + + + + + Initializes a new instance of the Command class. + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + + + + Defines the QuickAccessToolbar Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:qat. + + + The following table lists the possible child types: + + <mso14:sharedControls> + <mso14:documentControls> + + + + + + Initializes a new instance of the QuickAccessToolbar class. + + + + + Initializes a new instance of the QuickAccessToolbar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuickAccessToolbar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuickAccessToolbar class from outer XML. + + Specifies the outer XML of the element. + + + + SharedControlsQatItems. + Represents the following element tag in the schema: mso14:sharedControls. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + DocumentControlsQatItems. + Represents the following element tag in the schema: mso14:documentControls. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + + + + Defines the Tabs Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:tabs. + + + The following table lists the possible child types: + + <mso14:tab> + + + + + + Initializes a new instance of the Tabs class. + + + + + Initializes a new instance of the Tabs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tabs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Tabs class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ContextualTabs Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:contextualTabs. + + + The following table lists the possible child types: + + <mso14:tabSet> + + + + + + Initializes a new instance of the ContextualTabs class. + + + + + Initializes a new instance of the ContextualTabs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextualTabs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextualTabs class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ContextMenu Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:contextMenu. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:checkBox> + <mso14:control> + <mso14:dynamicMenu> + <mso14:gallery> + <mso14:menu> + <mso14:menuSeparator> + <mso14:splitButton> + <mso14:toggleButton> + + + + + + Initializes a new instance of the ContextMenu class. + + + + + Initializes a new instance of the ContextMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextMenu class from outer XML. + + Specifies the outer XML of the element. + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + + + + Defines the ItemBackstageItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:item. + + + + + Initializes a new instance of the ItemBackstageItem class. + + + + + + + + Defines the RadioButtonBackstageItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:radioButton. + + + + + Initializes a new instance of the RadioButtonBackstageItem class. + + + + + + + + Defines the BackstageItemType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BackstageItemType class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + Defines the BackstageRegularButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:button. + + + + + Initializes a new instance of the BackstageRegularButton class. + + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + isDefinitive, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isDefinitive + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + + + + Defines the BackstagePrimaryMenu Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menu. + + + The following table lists the possible child types: + + <mso14:menuGroup> + + + + + + Initializes a new instance of the BackstagePrimaryMenu class. + + + + + Initializes a new instance of the BackstagePrimaryMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstagePrimaryMenu class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstagePrimaryMenu class from outer XML. + + Specifies the outer XML of the element. + + + + screentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: screentip + + + + + getScreentip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getScreentip + + + + + supertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supertip + + + + + getSupertip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getSupertip + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the BackstageMenuGroup Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:menuGroup. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:checkBox> + <mso14:toggleButton> + <mso14:menu> + + + + + + Initializes a new instance of the BackstageMenuGroup class. + + + + + Initializes a new instance of the BackstageMenuGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageMenuGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageMenuGroup class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + itemSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: itemSize + + + + + + + + Defines the PrimaryItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:primaryItem. + + + The following table lists the possible child types: + + <mso14:menu> + <mso14:button> + + + + + + Initializes a new instance of the PrimaryItem class. + + + + + Initializes a new instance of the PrimaryItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PrimaryItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PrimaryItem class from outer XML. + + Specifies the outer XML of the element. + + + + BackstageRegularButton. + Represents the following element tag in the schema: mso14:button. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + BackstagePrimaryMenu. + Represents the following element tag in the schema: mso14:menu. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + + + + Defines the TopItemsGroupControls Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:topItems. + + + The following table lists the possible child types: + + <mso14:checkBox> + <mso14:comboBox> + <mso14:dropDown> + <mso14:editBox> + <mso14:button> + <mso14:labelControl> + <mso14:groupBox> + <mso14:hyperlink> + <mso14:imageControl> + <mso14:layoutContainer> + <mso14:radioGroup> + + + + + + Initializes a new instance of the TopItemsGroupControls class. + + + + + Initializes a new instance of the TopItemsGroupControls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopItemsGroupControls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopItemsGroupControls class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BottomItemsGroupControls Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:bottomItems. + + + The following table lists the possible child types: + + <mso14:checkBox> + <mso14:comboBox> + <mso14:dropDown> + <mso14:editBox> + <mso14:button> + <mso14:labelControl> + <mso14:groupBox> + <mso14:hyperlink> + <mso14:imageControl> + <mso14:layoutContainer> + <mso14:radioGroup> + + + + + + Initializes a new instance of the BottomItemsGroupControls class. + + + + + Initializes a new instance of the BottomItemsGroupControls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomItemsGroupControls class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomItemsGroupControls class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GroupControlsType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <mso14:checkBox> + <mso14:comboBox> + <mso14:dropDown> + <mso14:editBox> + <mso14:button> + <mso14:labelControl> + <mso14:groupBox> + <mso14:hyperlink> + <mso14:imageControl> + <mso14:layoutContainer> + <mso14:radioGroup> + + + + + + Initializes a new instance of the GroupControlsType class. + + + + + Initializes a new instance of the GroupControlsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupControlsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupControlsType class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the TaskGroupCategory Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:category. + + + The following table lists the possible child types: + + <mso14:task> + + + + + + Initializes a new instance of the TaskGroupCategory class. + + + + + Initializes a new instance of the TaskGroupCategory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskGroupCategory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskGroupCategory class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + + + + Defines the TaskGroupTask Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:task. + + + + + Initializes a new instance of the TaskGroupTask class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + isDefinitive, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isDefinitive + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the TaskFormGroupCategory Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:category. + + + The following table lists the possible child types: + + <mso14:task> + + + + + + Initializes a new instance of the TaskFormGroupCategory class. + + + + + Initializes a new instance of the TaskFormGroupCategory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskFormGroupCategory class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskFormGroupCategory class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + + + + Defines the TaskFormGroupTask Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:task. + + + The following table lists the possible child types: + + <mso14:group> + + + + + + Initializes a new instance of the TaskFormGroupTask class. + + + + + Initializes a new instance of the TaskFormGroupTask class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskFormGroupTask class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskFormGroupTask class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + description, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: description + + + + + getDescription, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getDescription + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + + + + Defines the TaskFormGroup Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:taskFormGroup. + + + The following table lists the possible child types: + + <mso14:category> + + + + + + Initializes a new instance of the TaskFormGroup class. + + + + + Initializes a new instance of the TaskFormGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskFormGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TaskFormGroup class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + helperText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: helperText + + + + + getHelperText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getHelperText + + + + + showLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showLabel + + + + + getShowLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getShowLabel + + + + + allowedTaskSizes, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: allowedTaskSizes + + + + + + + + Defines the BackstageGroups Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:firstColumn. + + + The following table lists the possible child types: + + <mso14:group> + <mso14:taskFormGroup> + <mso14:taskGroup> + + + + + + Initializes a new instance of the BackstageGroups class. + + + + + Initializes a new instance of the BackstageGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageGroups class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SimpleGroups Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:secondColumn. + + + The following table lists the possible child types: + + <mso14:group> + <mso14:taskGroup> + + + + + + Initializes a new instance of the SimpleGroups class. + + + + + Initializes a new instance of the SimpleGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SimpleGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SimpleGroups class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BackstageTab Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:tab. + + + The following table lists the possible child types: + + <mso14:firstColumn> + <mso14:secondColumn> + + + + + + Initializes a new instance of the BackstageTab class. + + + + + Initializes a new instance of the BackstageTab class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageTab class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackstageTab class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + title, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: title + + + + + getTitle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getTitle + + + + + columnWidthPercent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: columnWidthPercent + + + + + firstColumnMinWidth, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: firstColumnMinWidth + + + + + firstColumnMaxWidth, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: firstColumnMaxWidth + + + + + secondColumnMinWidth, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: secondColumnMinWidth + + + + + secondColumnMaxWidth, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: secondColumnMaxWidth + + + + + BackstageGroups. + Represents the following element tag in the schema: mso14:firstColumn. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + SimpleGroups. + Represents the following element tag in the schema: mso14:secondColumn. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + + + + Defines the BackstageFastCommandButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:button. + + + + + Initializes a new instance of the BackstageFastCommandButton class. + + + + + idMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idMso + + + + + insertAfterMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterMso + + + + + insertBeforeMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeMso + + + + + insertAfterQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertAfterQ + + + + + insertBeforeQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: insertBeforeQ + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + idQ, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: idQ + + + + + tag, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tag + + + + + onAction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onAction + + + + + isDefinitive, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isDefinitive + + + + + enabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enabled + + + + + getEnabled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getEnabled + + + + + label, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: label + + + + + getLabel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getLabel + + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + getVisible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getVisible + + + + + keytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: keytip + + + + + getKeytip, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getKeytip + + + + + image, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: image + + + + + imageMso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imageMso + + + + + getImage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: getImage + + + + + + + + Defines the Commands Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:commands. + + + The following table lists the possible child types: + + <mso14:command> + + + + + + Initializes a new instance of the Commands class. + + + + + Initializes a new instance of the Commands class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Commands class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Commands class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Ribbon Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:ribbon. + + + The following table lists the possible child types: + + <mso14:contextualTabs> + <mso14:qat> + <mso14:tabs> + + + + + + Initializes a new instance of the Ribbon class. + + + + + Initializes a new instance of the Ribbon class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Ribbon class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Ribbon class from outer XML. + + Specifies the outer XML of the element. + + + + startFromScratch, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: startFromScratch + + + + + QuickAccessToolbar. + Represents the following element tag in the schema: mso14:qat. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + Tabs. + Represents the following element tag in the schema: mso14:tabs. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + ContextualTabs. + Represents the following element tag in the schema: mso14:contextualTabs. + + + xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui + + + + + + + + Defines the Backstage Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:backstage. + + + The following table lists the possible child types: + + <mso14:button> + <mso14:tab> + + + + + + Initializes a new instance of the Backstage class. + + + + + Initializes a new instance of the Backstage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Backstage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Backstage class from outer XML. + + Specifies the outer XML of the element. + + + + onShow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onShow + + + + + onHide, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: onHide + + + + + + + + Defines the ContextMenus Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is mso14:contextMenus. + + + The following table lists the possible child types: + + <mso14:contextMenu> + + + + + + Initializes a new instance of the ContextMenus class. + + + + + Initializes a new instance of the ContextMenus class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextMenus class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContextMenus class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GalleryShowInRibbonValues enumeration. + + + + + Creates a new GalleryShowInRibbonValues enum instance + + + + + false. + When the item is serialized out as xml, its value is "false". + + + + + 0. + When the item is serialized out as xml, its value is "0". + + + + + Defines the SizeValues enumeration. + + + + + Creates a new SizeValues enum instance + + + + + normal. + When the item is serialized out as xml, its value is "normal". + + + + + large. + When the item is serialized out as xml, its value is "large". + + + + + Defines the ItemSizeValues enumeration. + + + + + Creates a new ItemSizeValues enum instance + + + + + normal. + When the item is serialized out as xml, its value is "normal". + + + + + large. + When the item is serialized out as xml, its value is "large". + + + + + Defines the BoxStyleValues enumeration. + + + + + Creates a new BoxStyleValues enum instance + + + + + horizontal. + When the item is serialized out as xml, its value is "horizontal". + + + + + vertical. + When the item is serialized out as xml, its value is "vertical". + + + + + Defines the TaskSizesValues enumeration. + + + + + Creates a new TaskSizesValues enum instance + + + + + largeMediumSmall. + When the item is serialized out as xml, its value is "largeMediumSmall". + + + + + largeMedium. + When the item is serialized out as xml, its value is "largeMedium". + + + + + large. + When the item is serialized out as xml, its value is "large". + + + + + mediumSmall. + When the item is serialized out as xml, its value is "mediumSmall". + + + + + medium. + When the item is serialized out as xml, its value is "medium". + + + + + small. + When the item is serialized out as xml, its value is "small". + + + + + Defines the ExpandValues enumeration. + + + + + Creates a new ExpandValues enum instance + + + + + topLeft. + When the item is serialized out as xml, its value is "topLeft". + + + + + top. + When the item is serialized out as xml, its value is "top". + + + + + topRight. + When the item is serialized out as xml, its value is "topRight". + + + + + left. + When the item is serialized out as xml, its value is "left". + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + right. + When the item is serialized out as xml, its value is "right". + + + + + bottomLeft. + When the item is serialized out as xml, its value is "bottomLeft". + + + + + bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + bottomRight. + When the item is serialized out as xml, its value is "bottomRight". + + + + + Defines the StyleValues enumeration. + + + + + Creates a new StyleValues enum instance + + + + + normal. + When the item is serialized out as xml, its value is "normal". + + + + + warning. + When the item is serialized out as xml, its value is "warning". + + + + + error. + When the item is serialized out as xml, its value is "error". + + + + + Defines the Style2Values enumeration. + + + + + Creates a new Style2Values enum instance + + + + + normal. + When the item is serialized out as xml, its value is "normal". + + + + + borderless. + When the item is serialized out as xml, its value is "borderless". + + + + + large. + When the item is serialized out as xml, its value is "large". + + + + + Defines the LayoutChildrenValues enumeration. + + + + + Creates a new LayoutChildrenValues enum instance + + + + + horizontal. + When the item is serialized out as xml, its value is "horizontal". + + + + + vertical. + When the item is serialized out as xml, its value is "vertical". + + + + + Defines the PivotOptions Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:pivotOptions. + + + The following table lists the possible child types: + + <c14:dropZoneFilter> + <c14:dropZoneCategories> + <c14:dropZoneData> + <c14:dropZoneSeries> + <c14:dropZonesVisible> + + + + + + Initializes a new instance of the PivotOptions class. + + + + + Initializes a new instance of the PivotOptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotOptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotOptions class from outer XML. + + Specifies the outer XML of the element. + + + + DropZoneFilter. + Represents the following element tag in the schema: c14:dropZoneFilter. + + + xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart + + + + + DropZoneCategories. + Represents the following element tag in the schema: c14:dropZoneCategories. + + + xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart + + + + + DropZoneData. + Represents the following element tag in the schema: c14:dropZoneData. + + + xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart + + + + + DropZoneSeries. + Represents the following element tag in the schema: c14:dropZoneSeries. + + + xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart + + + + + DropZonesVisible. + Represents the following element tag in the schema: c14:dropZonesVisible. + + + xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart + + + + + + + + Defines the SketchOptions Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:sketchOptions. + + + The following table lists the possible child types: + + <c14:inSketchMode> + <c14:showSketchBtn> + + + + + + Initializes a new instance of the SketchOptions class. + + + + + Initializes a new instance of the SketchOptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SketchOptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SketchOptions class from outer XML. + + Specifies the outer XML of the element. + + + + InSketchMode. + Represents the following element tag in the schema: c14:inSketchMode. + + + xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart + + + + + ShowSketchButton. + Represents the following element tag in the schema: c14:showSketchBtn. + + + xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart + + + + + + + + Defines the InvertSolidFillFormat Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:invertSolidFillFmt. + + + The following table lists the possible child types: + + <c14:spPr> + + + + + + Initializes a new instance of the InvertSolidFillFormat class. + + + + + Initializes a new instance of the InvertSolidFillFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InvertSolidFillFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InvertSolidFillFormat class from outer XML. + + Specifies the outer XML of the element. + + + + ShapeProperties. + Represents the following element tag in the schema: c14:spPr. + + + xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart + + + + + + + + Defines the Style Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:style. + + + + + Initializes a new instance of the Style class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the DropZoneFilter Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:dropZoneFilter. + + + + + Initializes a new instance of the DropZoneFilter class. + + + + + + + + Defines the DropZoneCategories Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:dropZoneCategories. + + + + + Initializes a new instance of the DropZoneCategories class. + + + + + + + + Defines the DropZoneData Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:dropZoneData. + + + + + Initializes a new instance of the DropZoneData class. + + + + + + + + Defines the DropZoneSeries Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:dropZoneSeries. + + + + + Initializes a new instance of the DropZoneSeries class. + + + + + + + + Defines the DropZonesVisible Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:dropZonesVisible. + + + + + Initializes a new instance of the DropZonesVisible class. + + + + + + + + Defines the InSketchMode Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:inSketchMode. + + + + + Initializes a new instance of the InSketchMode class. + + + + + + + + Defines the BooleanFalseType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BooleanFalseType class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + Defines the ShowSketchButton Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is c14:showSketchBtn. + + + + + Initializes a new instance of the ShowSketchButton class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ContentPart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is cdr14:contentPart. + + + The following table lists the possible child types: + + <cdr14:extLst> + <cdr14:xfrm> + <cdr14:nvPr> + <cdr14:nvContentPartPr> + + + + + + Initializes a new instance of the ContentPart class. + + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + bwMode, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: bwMode + + + + + NonVisualContentPartProperties. + Represents the following element tag in the schema: cdr14:nvContentPartPr. + + + xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing + + + + + ApplicationNonVisualDrawingProperties. + Represents the following element tag in the schema: cdr14:nvPr. + + + xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing + + + + + Transform2D. + Represents the following element tag in the schema: cdr14:xfrm. + + + xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: cdr14:extLst. + + + xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing + + + + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is cdr14:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualInkContentPartProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is cdr14:cNvContentPartPr. + + + The following table lists the possible child types: + + <a14:extLst> + <a14:cpLocks> + + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class. + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + isComment, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isComment + + + + + ContentPartLocks. + Represents the following element tag in the schema: a14:cpLocks. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: a14:extLst. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the NonVisualContentPartProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is cdr14:nvContentPartPr. + + + The following table lists the possible child types: + + <cdr14:cNvPr> + <cdr14:cNvContentPartPr> + + + + + + Initializes a new instance of the NonVisualContentPartProperties class. + + + + + Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualContentPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: cdr14:cNvPr. + + + xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing + + + + + NonVisualInkContentPartProperties. + Represents the following element tag in the schema: cdr14:cNvContentPartPr. + + + xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing + + + + + + + + Defines the ApplicationNonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is cdr14:nvPr. + + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class. + + + + + macro, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: macro + + + + + fPublished, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: fPublished + + + + + + + + Defines the Transform2D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is cdr14:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is cdr14:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CompatibilityShape Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is com14:compatSp. + + + + + Initializes a new instance of the CompatibilityShape class. + + + + + spid, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: spid + + + + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dgm14:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the RecolorImages Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is dgm14:recolorImg. + + + + + Initializes a new instance of the RecolorImages class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the CameraTool Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:cameraTool. + + + + + Initializes a new instance of the CameraTool class. + + + + + cellRange, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: cellRange + + + + + spid, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: spid + + + + + + + + Defines the CompatExtension Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:compatExt. + + + + + Initializes a new instance of the CompatExtension class. + + + + + spid, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: spid + + + + + + + + Defines the IsCanvas Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:isCanvas. + + + + + Initializes a new instance of the IsCanvas class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the GvmlContentPart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:contentPart. + + + The following table lists the possible child types: + + <a14:extLst> + <a14:xfrm> + <a14:nvContentPartPr> + + + + + + Initializes a new instance of the GvmlContentPart class. + + + + + Initializes a new instance of the GvmlContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GvmlContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GvmlContentPart class from outer XML. + + Specifies the outer XML of the element. + + + + bwMode, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: bwMode + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + NonVisualContentPartProperties. + Represents the following element tag in the schema: a14:nvContentPartPr. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + Transform2D. + Represents the following element tag in the schema: a14:xfrm. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: a14:extLst. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the ShadowObscured Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:shadowObscured. + + + + + Initializes a new instance of the ShadowObscured class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the HiddenFillProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:hiddenFill. + + + The following table lists the possible child types: + + <a:blipFill> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the HiddenFillProperties class. + + + + + Initializes a new instance of the HiddenFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenFillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NoFill. + Represents the following element tag in the schema: a:noFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + SolidFill. + Represents the following element tag in the schema: a:solidFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + GradientFill. + Represents the following element tag in the schema: a:gradFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + BlipFill. + Represents the following element tag in the schema: a:blipFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Pattern Fill. + Represents the following element tag in the schema: a:pattFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Group Fill. + Represents the following element tag in the schema: a:grpFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the HiddenLineProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:hiddenLine. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the HiddenLineProperties class. + + + + + Initializes a new instance of the HiddenLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenLineProperties class from outer XML. + + Specifies the outer XML of the element. + + + + line width + Represents the following attribute in the schema: w + + + + + line cap + Represents the following attribute in the schema: cap + + + + + compound line type + Represents the following attribute in the schema: cmpd + + + + + pen alignment + Represents the following attribute in the schema: algn + + + + + + + + Defines the HiddenEffectsProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:hiddenEffects. + + + The following table lists the possible child types: + + <a:effectDag> + <a:effectLst> + + + + + + Initializes a new instance of the HiddenEffectsProperties class. + + + + + Initializes a new instance of the HiddenEffectsProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenEffectsProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenEffectsProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Effect Container. + Represents the following element tag in the schema: a:effectLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Effect Container. + Represents the following element tag in the schema: a:effectDag. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the HiddenScene3D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:hiddenScene3d. + + + The following table lists the possible child types: + + <a:backdrop> + <a:camera> + <a:lightRig> + <a:extLst> + + + + + + Initializes a new instance of the HiddenScene3D class. + + + + + Initializes a new instance of the HiddenScene3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenScene3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenScene3D class from outer XML. + + Specifies the outer XML of the element. + + + + Camera. + Represents the following element tag in the schema: a:camera. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Light Rig. + Represents the following element tag in the schema: a:lightRig. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Backdrop Plane. + Represents the following element tag in the schema: a:backdrop. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the HiddenShape3D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:hiddenSp3d. + + + The following table lists the possible child types: + + <a:bevelT> + <a:bevelB> + <a:extrusionClr> + <a:contourClr> + <a:extLst> + + + + + + Initializes a new instance of the HiddenShape3D class. + + + + + Initializes a new instance of the HiddenShape3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenShape3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiddenShape3D class from outer XML. + + Specifies the outer XML of the element. + + + + Shape Depth + Represents the following attribute in the schema: z + + + + + Extrusion Height + Represents the following attribute in the schema: extrusionH + + + + + Contour Width + Represents the following attribute in the schema: contourW + + + + + Preset Material Type + Represents the following attribute in the schema: prstMaterial + + + + + Top Bevel. + Represents the following element tag in the schema: a:bevelT. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Bottom Bevel. + Represents the following element tag in the schema: a:bevelB. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extrusion Color. + Represents the following element tag in the schema: a:extrusionClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Contour Color. + Represents the following element tag in the schema: a:contourClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ImageProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:imgProps. + + + The following table lists the possible child types: + + <a14:imgLayer> + + + + + + Initializes a new instance of the ImageProperties class. + + + + + Initializes a new instance of the ImageProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ImageProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ImageProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ImageLayer. + Represents the following element tag in the schema: a14:imgLayer. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the UseLocalDpi Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:useLocalDpi. + + + + + Initializes a new instance of the UseLocalDpi class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TextMath Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:m. + + + + + Initializes a new instance of the TextMath class. + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ContentPartLocks Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:cpLocks. + + + The following table lists the possible child types: + + <a14:extLst> + + + + + + Initializes a new instance of the ContentPartLocks class. + + + + + Initializes a new instance of the ContentPartLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPartLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPartLocks class from outer XML. + + Specifies the outer XML of the element. + + + + Disallow Shape Grouping + Represents the following attribute in the schema: noGrp + + + + + Disallow Shape Selection + Represents the following attribute in the schema: noSelect + + + + + Disallow Shape Rotation + Represents the following attribute in the schema: noRot + + + + + Disallow Aspect Ratio Change + Represents the following attribute in the schema: noChangeAspect + + + + + Disallow Shape Movement + Represents the following attribute in the schema: noMove + + + + + Disallow Shape Resize + Represents the following attribute in the schema: noResize + + + + + Disallow Shape Point Editing + Represents the following attribute in the schema: noEditPoints + + + + + Disallow Showing Adjust Handles + Represents the following attribute in the schema: noAdjustHandles + + + + + Disallow Arrowhead Changes + Represents the following attribute in the schema: noChangeArrowheads + + + + + Disallow Shape Type Change + Represents the following attribute in the schema: noChangeShapeType + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: a14:extLst. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the ForegroundMark Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:foregroundMark. + + + + + Initializes a new instance of the ForegroundMark class. + + + + + x1, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x1 + + + + + y1, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: y1 + + + + + x2, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x2 + + + + + y2, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: y2 + + + + + + + + Defines the BackgroundMark Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:backgroundMark. + + + + + Initializes a new instance of the BackgroundMark class. + + + + + x1, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x1 + + + + + y1, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: y1 + + + + + x2, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x2 + + + + + y2, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: y2 + + + + + + + + Defines the ArtisticBlur Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticBlur. + + + + + Initializes a new instance of the ArtisticBlur class. + + + + + radius, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: radius + + + + + + + + Defines the ArtisticCement Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticCement. + + + + + Initializes a new instance of the ArtisticCement class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + crackSpacing, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: crackSpacing + + + + + + + + Defines the ArtisticChalkSketch Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticChalkSketch. + + + + + Initializes a new instance of the ArtisticChalkSketch class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + pressure, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pressure + + + + + + + + Defines the ArtisticCrisscrossEtching Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticCrisscrossEtching. + + + + + Initializes a new instance of the ArtisticCrisscrossEtching class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + pressure, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pressure + + + + + + + + Defines the ArtisticCutout Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticCutout. + + + + + Initializes a new instance of the ArtisticCutout class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + numberOfShades, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: numberOfShades + + + + + + + + Defines the ArtisticFilmGrain Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticFilmGrain. + + + + + Initializes a new instance of the ArtisticFilmGrain class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + grainSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: grainSize + + + + + + + + Defines the ArtisticGlass Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticGlass. + + + + + Initializes a new instance of the ArtisticGlass class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + scaling, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: scaling + + + + + + + + Defines the ArtisticGlowDiffused Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticGlowDiffused. + + + + + Initializes a new instance of the ArtisticGlowDiffused class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + intensity, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: intensity + + + + + + + + Defines the ArtisticGlowEdges Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticGlowEdges. + + + + + Initializes a new instance of the ArtisticGlowEdges class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + smoothness, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: smoothness + + + + + + + + Defines the ArtisticLightScreen Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticLightScreen. + + + + + Initializes a new instance of the ArtisticLightScreen class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + gridSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: gridSize + + + + + + + + Defines the ArtisticLineDrawing Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticLineDrawing. + + + + + Initializes a new instance of the ArtisticLineDrawing class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + pencilSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pencilSize + + + + + + + + Defines the ArtisticMarker Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticMarker. + + + + + Initializes a new instance of the ArtisticMarker class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + size, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: size + + + + + + + + Defines the ArtisticMosaicBubbles Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticMosiaicBubbles. + + + + + Initializes a new instance of the ArtisticMosaicBubbles class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + pressure, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pressure + + + + + + + + Defines the ArtisticPaintStrokes Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticPaintStrokes. + + + + + Initializes a new instance of the ArtisticPaintStrokes class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + intensity, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: intensity + + + + + + + + Defines the ArtisticPaintBrush Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticPaintBrush. + + + + + Initializes a new instance of the ArtisticPaintBrush class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + brushSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: brushSize + + + + + + + + Defines the ArtisticPastelsSmooth Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticPastelsSmooth. + + + + + Initializes a new instance of the ArtisticPastelsSmooth class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + scaling, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: scaling + + + + + + + + Defines the ArtisticPencilGrayscale Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticPencilGrayscale. + + + + + Initializes a new instance of the ArtisticPencilGrayscale class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + pencilSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pencilSize + + + + + + + + Defines the ArtisticPencilSketch Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticPencilSketch. + + + + + Initializes a new instance of the ArtisticPencilSketch class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + pressure, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pressure + + + + + + + + Defines the ArtisticPhotocopy Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticPhotocopy. + + + + + Initializes a new instance of the ArtisticPhotocopy class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + detail, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: detail + + + + + + + + Defines the ArtisticPlasticWrap Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticPlasticWrap. + + + + + Initializes a new instance of the ArtisticPlasticWrap class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + smoothness, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: smoothness + + + + + + + + Defines the ArtisticTexturizer Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticTexturizer. + + + + + Initializes a new instance of the ArtisticTexturizer class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + scaling, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: scaling + + + + + + + + Defines the ArtisticWatercolorSponge Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:artisticWatercolorSponge. + + + + + Initializes a new instance of the ArtisticWatercolorSponge class. + + + + + trans, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: trans + + + + + brushSize, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: brushSize + + + + + + + + Defines the BackgroundRemoval Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:backgroundRemoval. + + + The following table lists the possible child types: + + <a14:backgroundMark> + <a14:foregroundMark> + + + + + + Initializes a new instance of the BackgroundRemoval class. + + + + + Initializes a new instance of the BackgroundRemoval class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundRemoval class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundRemoval class from outer XML. + + Specifies the outer XML of the element. + + + + t, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: t + + + + + b, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: b + + + + + l, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: l + + + + + r, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r + + + + + + + + Defines the BrightnessContrast Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:brightnessContrast. + + + + + Initializes a new instance of the BrightnessContrast class. + + + + + bright, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: bright + + + + + contrast, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: contrast + + + + + + + + Defines the ColorTemperature Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:colorTemperature. + + + + + Initializes a new instance of the ColorTemperature class. + + + + + colorTemp, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: colorTemp + + + + + + + + Defines the Saturation Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:saturation. + + + + + Initializes a new instance of the Saturation class. + + + + + sat, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sat + + + + + + + + Defines the SharpenSoften Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:sharpenSoften. + + + + + Initializes a new instance of the SharpenSoften class. + + + + + amount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: amount + + + + + + + + Defines the ImageEffect Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:imgEffect. + + + The following table lists the possible child types: + + <a14:backgroundRemoval> + <a14:artisticBlur> + <a14:brightnessContrast> + <a14:artisticCement> + <a14:artisticChalkSketch> + <a14:colorTemperature> + <a14:artisticCrisscrossEtching> + <a14:artisticCutout> + <a14:artisticFilmGrain> + <a14:artisticGlass> + <a14:artisticGlowDiffused> + <a14:artisticGlowEdges> + <a14:artisticLightScreen> + <a14:artisticLineDrawing> + <a14:artisticMarker> + <a14:artisticMosiaicBubbles> + <a14:artisticPaintBrush> + <a14:artisticPaintStrokes> + <a14:artisticPastelsSmooth> + <a14:artisticPencilGrayscale> + <a14:artisticPencilSketch> + <a14:artisticPhotocopy> + <a14:artisticPlasticWrap> + <a14:saturation> + <a14:sharpenSoften> + <a14:artisticTexturizer> + <a14:artisticWatercolorSponge> + + + + + + Initializes a new instance of the ImageEffect class. + + + + + Initializes a new instance of the ImageEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ImageEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ImageEffect class from outer XML. + + Specifies the outer XML of the element. + + + + visible, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visible + + + + + ArtisticBlur. + Represents the following element tag in the schema: a14:artisticBlur. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticCement. + Represents the following element tag in the schema: a14:artisticCement. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticChalkSketch. + Represents the following element tag in the schema: a14:artisticChalkSketch. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticCrisscrossEtching. + Represents the following element tag in the schema: a14:artisticCrisscrossEtching. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticCutout. + Represents the following element tag in the schema: a14:artisticCutout. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticFilmGrain. + Represents the following element tag in the schema: a14:artisticFilmGrain. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticGlass. + Represents the following element tag in the schema: a14:artisticGlass. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticGlowDiffused. + Represents the following element tag in the schema: a14:artisticGlowDiffused. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticGlowEdges. + Represents the following element tag in the schema: a14:artisticGlowEdges. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticLightScreen. + Represents the following element tag in the schema: a14:artisticLightScreen. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticLineDrawing. + Represents the following element tag in the schema: a14:artisticLineDrawing. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticMarker. + Represents the following element tag in the schema: a14:artisticMarker. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticMosaicBubbles. + Represents the following element tag in the schema: a14:artisticMosiaicBubbles. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticPaintStrokes. + Represents the following element tag in the schema: a14:artisticPaintStrokes. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticPaintBrush. + Represents the following element tag in the schema: a14:artisticPaintBrush. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticPastelsSmooth. + Represents the following element tag in the schema: a14:artisticPastelsSmooth. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticPencilGrayscale. + Represents the following element tag in the schema: a14:artisticPencilGrayscale. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticPencilSketch. + Represents the following element tag in the schema: a14:artisticPencilSketch. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticPhotocopy. + Represents the following element tag in the schema: a14:artisticPhotocopy. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticPlasticWrap. + Represents the following element tag in the schema: a14:artisticPlasticWrap. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticTexturizer. + Represents the following element tag in the schema: a14:artisticTexturizer. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ArtisticWatercolorSponge. + Represents the following element tag in the schema: a14:artisticWatercolorSponge. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + BackgroundRemoval. + Represents the following element tag in the schema: a14:backgroundRemoval. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + BrightnessContrast. + Represents the following element tag in the schema: a14:brightnessContrast. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + ColorTemperature. + Represents the following element tag in the schema: a14:colorTemperature. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + Saturation. + Represents the following element tag in the schema: a14:saturation. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + SharpenSoften. + Represents the following element tag in the schema: a14:sharpenSoften. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the ImageLayer Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:imgLayer. + + + The following table lists the possible child types: + + <a14:imgEffect> + + + + + + Initializes a new instance of the ImageLayer class. + + + + + Initializes a new instance of the ImageLayer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ImageLayer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ImageLayer class from outer XML. + + Specifies the outer XML of the element. + + + + embed, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualInkContentPartProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:cNvContentPartPr. + + + The following table lists the possible child types: + + <a14:extLst> + <a14:cpLocks> + + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class. + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + isComment, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isComment + + + + + ContentPartLocks. + Represents the following element tag in the schema: a14:cpLocks. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: a14:extLst. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the NonVisualContentPartProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:nvContentPartPr. + + + The following table lists the possible child types: + + <a14:cNvPr> + <a14:cNvContentPartPr> + + + + + + Initializes a new instance of the NonVisualContentPartProperties class. + + + + + Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualContentPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: a14:cNvPr. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + NonVisualInkContentPartProperties. + Represents the following element tag in the schema: a14:cNvContentPartPr. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the Transform2D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is a14:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ShapeStyle Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is pic14:style. + + + The following table lists the possible child types: + + <a:fontRef> + <a:lnRef> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the ShapeStyle class. + + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class from outer XML. + + Specifies the outer XML of the element. + + + + LineReference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillReference. + Represents the following element tag in the schema: a:fillRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + EffectReference. + Represents the following element tag in the schema: a:effectRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Reference. + Represents the following element tag in the schema: a:fontRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is pic14:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Slicer Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is sle:slicer. + + + The following table lists the possible child types: + + <sle:extLst> + + + + + + Initializes a new instance of the Slicer class. + + + + + Initializes a new instance of the Slicer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Slicer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Slicer class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: sle:extLst. + + + xmlns:sle = http://schemas.microsoft.com/office/drawing/2010/slicer + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is sle:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ContentPart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xdr14:contentPart. + + + The following table lists the possible child types: + + <xdr14:extLst> + <xdr14:xfrm> + <xdr14:nvPr> + <xdr14:nvContentPartPr> + + + + + + Initializes a new instance of the ContentPart class. + + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + bwMode, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: bwMode + + + + + ExcelNonVisualContentPartShapeProperties. + Represents the following element tag in the schema: xdr14:nvContentPartPr. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + ApplicationNonVisualDrawingProperties. + Represents the following element tag in the schema: xdr14:nvPr. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + Transform2D. + Represents the following element tag in the schema: xdr14:xfrm. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: xdr14:extLst. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xdr14:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualInkContentPartProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xdr14:cNvContentPartPr. + + + The following table lists the possible child types: + + <a14:extLst> + <a14:cpLocks> + + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class. + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + isComment, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isComment + + + + + ContentPartLocks. + Represents the following element tag in the schema: a14:cpLocks. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: a14:extLst. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the ExcelNonVisualContentPartShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xdr14:nvContentPartPr. + + + The following table lists the possible child types: + + <xdr14:cNvPr> + <xdr14:cNvContentPartPr> + + + + + + Initializes a new instance of the ExcelNonVisualContentPartShapeProperties class. + + + + + Initializes a new instance of the ExcelNonVisualContentPartShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExcelNonVisualContentPartShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExcelNonVisualContentPartShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: xdr14:cNvPr. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + NonVisualInkContentPartProperties. + Represents the following element tag in the schema: xdr14:cNvContentPartPr. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + + + + Defines the ApplicationNonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xdr14:nvPr. + + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class. + + + + + macro, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: macro + + + + + fPublished, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: fPublished + + + + + + + + Defines the Transform2D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xdr14:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xdr14:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ConditionalFormattings Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:conditionalFormattings. + + + The following table lists the possible child types: + + <x14:conditionalFormatting> + + + + + + Initializes a new instance of the ConditionalFormattings class. + + + + + Initializes a new instance of the ConditionalFormattings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattings class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataValidations Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:dataValidations. + + + The following table lists the possible child types: + + <x14:dataValidation> + + + + + + Initializes a new instance of the DataValidations class. + + + + + Initializes a new instance of the DataValidations class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidations class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidations class from outer XML. + + Specifies the outer XML of the element. + + + + disablePrompts, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: disablePrompts + + + + + xWindow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: xWindow + + + + + yWindow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: yWindow + + + + + count, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the SparklineGroups Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:sparklineGroups. + + + The following table lists the possible child types: + + <x14:sparklineGroup> + + + + + + Initializes a new instance of the SparklineGroups class. + + + + + Initializes a new instance of the SparklineGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SparklineGroups class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SparklineGroups class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlicerList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicerList. + + + The following table lists the possible child types: + + <x14:slicer> + + + + + + Initializes a new instance of the SlicerList class. + + + + + Initializes a new instance of the SlicerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ProtectedRanges Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:protectedRanges. + + + The following table lists the possible child types: + + <x14:protectedRange> + + + + + + Initializes a new instance of the ProtectedRanges class. + + + + + Initializes a new instance of the ProtectedRanges class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ProtectedRanges class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ProtectedRanges class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the IgnoredErrors Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:ignoredErrors. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:ignoredError> + + + + + + Initializes a new instance of the IgnoredErrors class. + + + + + Initializes a new instance of the IgnoredErrors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IgnoredErrors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IgnoredErrors class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DefinedNames Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:definedNames. + + + The following table lists the possible child types: + + <x14:definedName> + + + + + + Initializes a new instance of the DefinedNames class. + + + + + Initializes a new instance of the DefinedNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefinedNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefinedNames class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotCaches Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotCaches. + + + The following table lists the possible child types: + + <x:pivotCache> + + + + + + Initializes a new instance of the PivotCaches class. + + + + + Initializes a new instance of the PivotCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCaches class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlicerCaches Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicerCaches. + + + The following table lists the possible child types: + + <x14:slicerCache> + + + + + + Initializes a new instance of the SlicerCaches class. + + + + + Initializes a new instance of the SlicerCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCaches class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WorkbookProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:workbookPr. + + + + + Initializes a new instance of the WorkbookProperties class. + + + + + defaultImageDpi, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: defaultImageDpi + + + + + discardImageEditData, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: discardImageEditData + + + + + accuracyVersion, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: accuracyVersion + + + + + + + + Defines the CalculatedMember Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:calculatedMember. + + + The following table lists the possible child types: + + <x14:tupleSet> + + + + + + Initializes a new instance of the CalculatedMember class. + + + + + Initializes a new instance of the CalculatedMember class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMember class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMember class from outer XML. + + Specifies the outer XML of the element. + + + + displayFolder, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: displayFolder + + + + + flattenHierarchies, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: flattenHierarchies + + + + + dynamicSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dynamicSet + + + + + hierarchizeDistinct, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: hierarchizeDistinct + + + + + mdxLong, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: mdxLong + + + + + TupleSet. + Represents the following element tag in the schema: x14:tupleSet. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the CacheHierarchy Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:cacheHierarchy. + + + The following table lists the possible child types: + + <x14:setLevels> + + + + + + Initializes a new instance of the CacheHierarchy class. + + + + + Initializes a new instance of the CacheHierarchy class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchy class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CacheHierarchy class from outer XML. + + Specifies the outer XML of the element. + + + + flattenHierarchies, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: flattenHierarchies + + + + + measuresSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: measuresSet + + + + + hierarchizeDistinct, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: hierarchizeDistinct + + + + + ignore, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: ignore + + + + + SetLevels. + Represents the following element tag in the schema: x14:setLevels. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the DataField Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:dataField. + + + + + Initializes a new instance of the DataField class. + + + + + pivotShowAs, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pivotShowAs + + + + + sourceField, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sourceField + + + + + uniqueName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: uniqueName + + + + + + + + Defines the PivotField Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotField. + + + + + Initializes a new instance of the PivotField class. + + + + + fillDownLabels, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: fillDownLabels + + + + + ignore, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: ignore + + + + + + + + Defines the PivotTableDefinition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotTableDefinition. + + + The following table lists the possible child types: + + <x14:conditionalFormats> + <x14:pivotChanges> + <x14:pivotEdits> + + + + + + Initializes a new instance of the PivotTableDefinition class. + + + + + Initializes a new instance of the PivotTableDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + fillDownLabelsDefault, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: fillDownLabelsDefault + + + + + visualTotalsForSets, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: visualTotalsForSets + + + + + calculatedMembersInFilters, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: calculatedMembersInFilters + + + + + altText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: altText + + + + + altTextSummary, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: altTextSummary + + + + + enableEdit, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: enableEdit + + + + + autoApply, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: autoApply + + + + + allocationMethod, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: allocationMethod + + + + + weightExpression, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: weightExpression + + + + + hideValuesRow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: hideValuesRow + + + + + PivotEdits. + Represents the following element tag in the schema: x14:pivotEdits. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + PivotChanges. + Represents the following element tag in the schema: x14:pivotChanges. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + ConditionalFormats. + Represents the following element tag in the schema: x14:conditionalFormats. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the PivotCacheDefinition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotCacheDefinition. + + + + + Initializes a new instance of the PivotCacheDefinition class. + + + + + slicerData, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: slicerData + + + + + pivotCacheId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pivotCacheId + + + + + supportSubqueryNonVisual, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supportSubqueryNonVisual + + + + + supportSubqueryCalcMem, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supportSubqueryCalcMem + + + + + supportAddCalcMems, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: supportAddCalcMems + + + + + + + + Defines the Connection Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:connection. + + + The following table lists the possible child types: + + <x14:calculatedMembers> + + + + + + Initializes a new instance of the Connection class. + + + + + Initializes a new instance of the Connection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connection class from outer XML. + + Specifies the outer XML of the element. + + + + culture, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: culture + + + + + embeddedDataId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: embeddedDataId + + + + + CalculatedMembers. + Represents the following element tag in the schema: x14:calculatedMembers. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the Table Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:table. + + + + + Initializes a new instance of the Table class. + + + + + altText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: altText + + + + + altTextSummary, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: altTextSummary + + + + + + + + Defines the SlicerStyles Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicerStyles. + + + The following table lists the possible child types: + + <x14:slicerStyle> + + + + + + Initializes a new instance of the SlicerStyles class. + + + + + Initializes a new instance of the SlicerStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerStyles class from outer XML. + + Specifies the outer XML of the element. + + + + defaultSlicerStyle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: defaultSlicerStyle + + + + + + + + Defines the DifferentialFormats Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:dxfs. + + + The following table lists the possible child types: + + <x:dxf> + + + + + + Initializes a new instance of the DifferentialFormats class. + + + + + Initializes a new instance of the DifferentialFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Format Count + Represents the following attribute in the schema: count + + + + + + + + Defines the OleItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:oleItem. + + + The following table lists the possible child types: + + <x14:values> + + + + + + Initializes a new instance of the OleItem class. + + + + + Initializes a new instance of the OleItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleItem class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + icon, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: icon + + + + + advise, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: advise + + + + + preferPic, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: preferPic + + + + + DdeValues. + Represents the following element tag in the schema: x14:values. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the PivotHierarchy Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotHierarchy. + + + + + Initializes a new instance of the PivotHierarchy class. + + + + + ignore, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: ignore + + + + + + + + Defines the CacheField Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:cacheField. + + + + + Initializes a new instance of the CacheField class. + + + + + ignore, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: ignore + + + + + + + + Defines the Id Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:id. + + + + + Initializes a new instance of the Id class. + + + + + Initializes a new instance of the Id class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the IconFilter Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:iconFilter. + + + + + Initializes a new instance of the IconFilter class. + + + + + iconSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconSet + + + + + iconId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconId + + + + + + + + Defines the Filter Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:filter. + + + + + Initializes a new instance of the Filter class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the CustomFilters Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:customFilters. + + + The following table lists the possible child types: + + <x14:customFilter> + + + + + + Initializes a new instance of the CustomFilters class. + + + + + Initializes a new instance of the CustomFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomFilters class from outer XML. + + Specifies the outer XML of the element. + + + + and, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: and + + + + + + + + Defines the SortCondition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:sortCondition. + + + + + Initializes a new instance of the SortCondition class. + + + + + descending, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: descending + + + + + sortBy, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sortBy + + + + + ref, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: ref + + + + + customList, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: customList + + + + + dxfId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dxfId + + + + + iconSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconSet + + + + + iconId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconId + + + + + + + + Defines the SourceConnection Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:sourceConnection. + + + + + Initializes a new instance of the SourceConnection class. + + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the DatastoreItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:datastoreItem. + + + The following table lists the possible child types: + + <x14:extLst> + + + + + + Initializes a new instance of the DatastoreItem class. + + + + + Initializes a new instance of the DatastoreItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DatastoreItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DatastoreItem class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Loads the DOM from the CustomDataPropertiesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the CustomDataPropertiesPart. + + Specifies the part to save to. + + + + Gets the CustomDataPropertiesPart associated with this element. + + + + + Defines the FormControlProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:formControlPr. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:itemLst> + + + + + + Initializes a new instance of the FormControlProperties class. + + + + + Initializes a new instance of the FormControlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormControlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormControlProperties class from outer XML. + + Specifies the outer XML of the element. + + + + objectType, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: objectType + + + + + checked, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: checked + + + + + colored, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: colored + + + + + dropLines, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dropLines + + + + + dropStyle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dropStyle + + + + + dx, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dx + + + + + firstButton, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: firstButton + + + + + fmlaGroup, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: fmlaGroup + + + + + fmlaLink, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: fmlaLink + + + + + fmlaRange, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: fmlaRange + + + + + fmlaTxbx, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: fmlaTxbx + + + + + horiz, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: horiz + + + + + inc, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: inc + + + + + justLastX, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: justLastX + + + + + lockText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: lockText + + + + + max, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: max + + + + + min, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: min + + + + + multiSel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: multiSel + + + + + noThreeD, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: noThreeD + + + + + noThreeD2, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: noThreeD2 + + + + + page, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: page + + + + + sel, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sel + + + + + seltype, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: seltype + + + + + textHAlign, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: textHAlign + + + + + textVAlign, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: textVAlign + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + widthMin, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: widthMin + + + + + editVal, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: editVal + + + + + multiLine, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: multiLine + + + + + verticalBar, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: verticalBar + + + + + passwordEdit, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: passwordEdit + + + + + ListItems. + Represents the following element tag in the schema: x14:itemLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Loads the DOM from the ControlPropertiesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ControlPropertiesPart. + + Specifies the part to save to. + + + + Gets the ControlPropertiesPart associated with this element. + + + + + Defines the Slicers Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicers. + + + The following table lists the possible child types: + + <x14:slicer> + + + + + + Initializes a new instance of the Slicers class. + + + + + Initializes a new instance of the Slicers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Slicers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Slicers class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the SlicersPart + + Specifies the part to be loaded. + + + + Saves the DOM into the SlicersPart. + + Specifies the part to save to. + + + + Gets the SlicersPart associated with this element. + + + + + Defines the SlicerCacheDefinition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicerCacheDefinition. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:data> + <x14:pivotTables> + + + + + + Initializes a new instance of the SlicerCacheDefinition class. + + + + + Initializes a new instance of the SlicerCacheDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + sourceName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sourceName + + + + + SlicerCachePivotTables. + Represents the following element tag in the schema: x14:pivotTables. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + SlicerCacheData. + Represents the following element tag in the schema: x14:data. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + SlicerCacheDefinitionExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Loads the DOM from the SlicerCachePart + + Specifies the part to be loaded. + + + + Saves the DOM into the SlicerCachePart. + + Specifies the part to save to. + + + + Gets the SlicerCachePart associated with this element. + + + + + Defines the ConditionalFormatting Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:conditionalFormatting. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:cfRule> + <xne:sqref> + + + + + + Initializes a new instance of the ConditionalFormatting class. + + + + + Initializes a new instance of the ConditionalFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormatting class from outer XML. + + Specifies the outer XML of the element. + + + + pivot, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pivot + + + + + + + + Defines the ConditionalFormattingRule Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:cfRule. + + + The following table lists the possible child types: + + <x14:dxf> + <x14:extLst> + <xne:f> + <x14:colorScale> + <x14:dataBar> + <x14:iconSet> + + + + + + Initializes a new instance of the ConditionalFormattingRule class. + + + + + Initializes a new instance of the ConditionalFormattingRule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingRule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingRule class from outer XML. + + Specifies the outer XML of the element. + + + + type, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: type + + + + + priority, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: priority + + + + + stopIfTrue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: stopIfTrue + + + + + aboveAverage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: aboveAverage + + + + + percent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: percent + + + + + bottom, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: bottom + + + + + operator, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: operator + + + + + text, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: text + + + + + timePeriod, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: timePeriod + + + + + rank, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: rank + + + + + stdDev, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: stdDev + + + + + equalAverage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: equalAverage + + + + + activePresent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: activePresent + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataValidation Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:dataValidation. + + + The following table lists the possible child types: + + <x14:formula1> + <x14:formula2> + <xne:sqref> + + + + + + Initializes a new instance of the DataValidation class. + + + + + Initializes a new instance of the DataValidation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidation class from outer XML. + + Specifies the outer XML of the element. + + + + type, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: type + + + + + errorStyle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: errorStyle + + + + + imeMode, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: imeMode + + + + + operator, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: operator + + + + + allowBlank, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: allowBlank + + + + + showDropDown, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showDropDown + + + + + showInputMessage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showInputMessage + + + + + showErrorMessage, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showErrorMessage + + + + + errorTitle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: errorTitle + + + + + error, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: error + + + + + promptTitle, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: promptTitle + + + + + prompt, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: prompt + + + + + DataValidationForumla1. + Represents the following element tag in the schema: x14:formula1. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + DataValidationForumla2. + Represents the following element tag in the schema: x14:formula2. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + ReferenceSequence. + Represents the following element tag in the schema: xne:sqref. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + + + + Defines the DataValidationForumla1 Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:formula1. + + + The following table lists the possible child types: + + <xne:f> + + + + + + Initializes a new instance of the DataValidationForumla1 class. + + + + + Initializes a new instance of the DataValidationForumla1 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidationForumla1 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidationForumla1 class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataValidationForumla2 Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:formula2. + + + The following table lists the possible child types: + + <xne:f> + + + + + + Initializes a new instance of the DataValidationForumla2 class. + + + + + Initializes a new instance of the DataValidationForumla2 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidationForumla2 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidationForumla2 class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataValidationFormulaType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <xne:f> + + + + + + Initializes a new instance of the DataValidationFormulaType class. + + + + + Initializes a new instance of the DataValidationFormulaType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidationFormulaType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidationFormulaType class from outer XML. + + Specifies the outer XML of the element. + + + + Formula. + Represents the following element tag in the schema: xne:f. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + Defines the SparklineGroup Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:sparklineGroup. + + + The following table lists the possible child types: + + <x14:colorSeries> + <x14:colorNegative> + <x14:colorAxis> + <x14:colorMarkers> + <x14:colorFirst> + <x14:colorLast> + <x14:colorHigh> + <x14:colorLow> + <xne:f> + <x14:sparklines> + + + + + + Initializes a new instance of the SparklineGroup class. + + + + + Initializes a new instance of the SparklineGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SparklineGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SparklineGroup class from outer XML. + + Specifies the outer XML of the element. + + + + manualMax, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: manualMax + + + + + manualMin, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: manualMin + + + + + lineWeight, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: lineWeight + + + + + type, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: type + + + + + dateAxis, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dateAxis + + + + + displayEmptyCellsAs, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: displayEmptyCellsAs + + + + + markers, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: markers + + + + + high, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: high + + + + + low, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: low + + + + + first, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: first + + + + + last, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: last + + + + + negative, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: negative + + + + + displayXAxis, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: displayXAxis + + + + + displayHidden, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: displayHidden + + + + + minAxisType, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: minAxisType + + + + + maxAxisType, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: maxAxisType + + + + + rightToLeft, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: rightToLeft + + + + + SeriesColor. + Represents the following element tag in the schema: x14:colorSeries. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + NegativeColor. + Represents the following element tag in the schema: x14:colorNegative. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + AxisColor. + Represents the following element tag in the schema: x14:colorAxis. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + MarkersColor. + Represents the following element tag in the schema: x14:colorMarkers. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + FirstMarkerColor. + Represents the following element tag in the schema: x14:colorFirst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + LastMarkerColor. + Represents the following element tag in the schema: x14:colorLast. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + HighMarkerColor. + Represents the following element tag in the schema: x14:colorHigh. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + LowMarkerColor. + Represents the following element tag in the schema: x14:colorLow. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + Formula. + Represents the following element tag in the schema: xne:f. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + Sparklines. + Represents the following element tag in the schema: x14:sparklines. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the SeriesColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorSeries. + + + + + Initializes a new instance of the SeriesColor class. + + + + + + + + Defines the NegativeColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorNegative. + + + + + Initializes a new instance of the NegativeColor class. + + + + + + + + Defines the AxisColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorAxis. + + + + + Initializes a new instance of the AxisColor class. + + + + + + + + Defines the MarkersColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorMarkers. + + + + + Initializes a new instance of the MarkersColor class. + + + + + + + + Defines the FirstMarkerColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorFirst. + + + + + Initializes a new instance of the FirstMarkerColor class. + + + + + + + + Defines the LastMarkerColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorLast. + + + + + Initializes a new instance of the LastMarkerColor class. + + + + + + + + Defines the HighMarkerColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorHigh. + + + + + Initializes a new instance of the HighMarkerColor class. + + + + + + + + Defines the LowMarkerColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorLow. + + + + + Initializes a new instance of the LowMarkerColor class. + + + + + + + + Defines the Color Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:color. + + + + + Initializes a new instance of the Color class. + + + + + + + + Defines the FillColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:fillColor. + + + + + Initializes a new instance of the FillColor class. + + + + + + + + Defines the BorderColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:borderColor. + + + + + Initializes a new instance of the BorderColor class. + + + + + + + + Defines the NegativeFillColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:negativeFillColor. + + + + + Initializes a new instance of the NegativeFillColor class. + + + + + + + + Defines the NegativeBorderColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:negativeBorderColor. + + + + + Initializes a new instance of the NegativeBorderColor class. + + + + + + + + Defines the BarAxisColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:axisColor. + + + + + Initializes a new instance of the BarAxisColor class. + + + + + + + + Defines the ColorType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the ColorType class. + + + + + Automatic + Represents the following attribute in the schema: auto + + + + + Index + Represents the following attribute in the schema: indexed + + + + + Alpha Red Green Blue Color Value + Represents the following attribute in the schema: rgb + + + + + Theme Color + Represents the following attribute in the schema: theme + + + + + Tint + Represents the following attribute in the schema: tint + + + + + Defines the Sparklines Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:sparklines. + + + The following table lists the possible child types: + + <x14:sparkline> + + + + + + Initializes a new instance of the Sparklines class. + + + + + Initializes a new instance of the Sparklines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sparklines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sparklines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Sparkline Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:sparkline. + + + The following table lists the possible child types: + + <xne:f> + <xne:sqref> + + + + + + Initializes a new instance of the Sparkline class. + + + + + Initializes a new instance of the Sparkline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sparkline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sparkline class from outer XML. + + Specifies the outer XML of the element. + + + + Formula. + Represents the following element tag in the schema: xne:f. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + ReferenceSequence. + Represents the following element tag in the schema: xne:sqref. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + + + + Defines the SlicerRef Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicer. + + + + + Initializes a new instance of the SlicerRef class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the SlicerCache Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicerCache. + + + + + Initializes a new instance of the SlicerCache class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the DefinedName Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:definedName. + + + The following table lists the possible child types: + + <x14:argumentDescriptions> + + + + + + Initializes a new instance of the DefinedName class. + + + + + Initializes a new instance of the DefinedName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefinedName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefinedName class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + ArgumentDescriptions. + Represents the following element tag in the schema: x14:argumentDescriptions. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the ArgumentDescriptions Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:argumentDescriptions. + + + The following table lists the possible child types: + + <x14:argumentDescription> + + + + + + Initializes a new instance of the ArgumentDescriptions class. + + + + + Initializes a new instance of the ArgumentDescriptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ArgumentDescriptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ArgumentDescriptions class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the ArgumentDescription Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:argumentDescription. + + + + + Initializes a new instance of the ArgumentDescription class. + + + + + Initializes a new instance of the ArgumentDescription class with the specified text content. + + Specifies the text content of the element. + + + + index, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: index + + + + + + + + Defines the TupleSet Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:tupleSet. + + + The following table lists the possible child types: + + <x14:headers> + <x14:rows> + + + + + + Initializes a new instance of the TupleSet class. + + + + + Initializes a new instance of the TupleSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSet class from outer XML. + + Specifies the outer XML of the element. + + + + rowCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: rowCount + + + + + columnCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: columnCount + + + + + TupleSetHeaders. + Represents the following element tag in the schema: x14:headers. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + TupleSetRows. + Represents the following element tag in the schema: x14:rows. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the TupleSetHeaders Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:headers. + + + The following table lists the possible child types: + + <x14:header> + + + + + + Initializes a new instance of the TupleSetHeaders class. + + + + + Initializes a new instance of the TupleSetHeaders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSetHeaders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSetHeaders class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TupleSetRows Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:rows. + + + The following table lists the possible child types: + + <x14:row> + + + + + + Initializes a new instance of the TupleSetRows class. + + + + + Initializes a new instance of the TupleSetRows class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSetRows class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSetRows class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TupleSetHeader Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:header. + + + + + Initializes a new instance of the TupleSetHeader class. + + + + + uniqueName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: uniqueName + + + + + hierarchyName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: hierarchyName + + + + + + + + Defines the TupleSetRow Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:row. + + + The following table lists the possible child types: + + <x14:rowItem> + + + + + + Initializes a new instance of the TupleSetRow class. + + + + + Initializes a new instance of the TupleSetRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSetRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleSetRow class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TupleSetRowItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:rowItem. + + + + + Initializes a new instance of the TupleSetRowItem class. + + + + + u, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: u + + + + + d, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: d + + + + + + + + Defines the SetLevel Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:setLevel. + + + + + Initializes a new instance of the SetLevel class. + + + + + hierarchy, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: hierarchy + + + + + + + + Defines the SetLevels Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:setLevels. + + + The following table lists the possible child types: + + <x14:setLevel> + + + + + + Initializes a new instance of the SetLevels class. + + + + + Initializes a new instance of the SetLevels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SetLevels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SetLevels class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the ColorScale Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:colorScale. + + + The following table lists the possible child types: + + <x14:color> + <x14:cfvo> + + + + + + Initializes a new instance of the ColorScale class. + + + + + Initializes a new instance of the ColorScale class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorScale class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorScale class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataBar Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:dataBar. + + + The following table lists the possible child types: + + <x14:fillColor> + <x14:borderColor> + <x14:negativeFillColor> + <x14:negativeBorderColor> + <x14:axisColor> + <x14:cfvo> + + + + + + Initializes a new instance of the DataBar class. + + + + + Initializes a new instance of the DataBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataBar class from outer XML. + + Specifies the outer XML of the element. + + + + minLength, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: minLength + + + + + maxLength, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: maxLength + + + + + showValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showValue + + + + + border, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: border + + + + + gradient, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: gradient + + + + + direction, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: direction + + + + + negativeBarColorSameAsPositive, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: negativeBarColorSameAsPositive + + + + + negativeBarBorderColorSameAsPositive, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: negativeBarBorderColorSameAsPositive + + + + + axisPosition, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: axisPosition + + + + + + + + Defines the IconSet Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:iconSet. + + + The following table lists the possible child types: + + <x14:cfIcon> + <x14:cfvo> + + + + + + Initializes a new instance of the IconSet class. + + + + + Initializes a new instance of the IconSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IconSet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IconSet class from outer XML. + + Specifies the outer XML of the element. + + + + iconSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconSet + + + + + showValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showValue + + + + + percent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: percent + + + + + reverse, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: reverse + + + + + custom, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: custom + + + + + + + + Defines the DifferentialType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:dxf. + + + The following table lists the possible child types: + + <x:border> + <x:alignment> + <x:protection> + <x:extLst> + <x:fill> + <x:font> + <x:numFmt> + + + + + + Initializes a new instance of the DifferentialType class. + + + + + Initializes a new instance of the DifferentialType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialType class from outer XML. + + Specifies the outer XML of the element. + + + + Font Properties. + Represents the following element tag in the schema: x:font. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Number Format. + Represents the following element tag in the schema: x:numFmt. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Fill. + Represents the following element tag in the schema: x:fill. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Alignment. + Represents the following element tag in the schema: x:alignment. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Border Properties. + Represents the following element tag in the schema: x:border. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Protection Properties. + Represents the following element tag in the schema: x:protection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the ConditionalFormattingValueObject Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:cfvo. + + + The following table lists the possible child types: + + <x14:extLst> + <xne:f> + + + + + + Initializes a new instance of the ConditionalFormattingValueObject class. + + + + + Initializes a new instance of the ConditionalFormattingValueObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingValueObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormattingValueObject class from outer XML. + + Specifies the outer XML of the element. + + + + type, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: type + + + + + gte, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: gte + + + + + Formula. + Represents the following element tag in the schema: xne:f. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the ConditionalFormattingIcon Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:cfIcon. + + + + + Initializes a new instance of the ConditionalFormattingIcon class. + + + + + iconSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconSet + + + + + iconId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconId + + + + + + + + Defines the PivotEdits Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotEdits. + + + The following table lists the possible child types: + + <x14:pivotEdit> + + + + + + Initializes a new instance of the PivotEdits class. + + + + + Initializes a new instance of the PivotEdits class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotEdits class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotEdits class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotChanges Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotChanges. + + + The following table lists the possible child types: + + <x14:pivotChange> + + + + + + Initializes a new instance of the PivotChanges class. + + + + + Initializes a new instance of the PivotChanges class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotChanges class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotChanges class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ConditionalFormats Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:conditionalFormats. + + + The following table lists the possible child types: + + <x14:conditionalFormat> + + + + + + Initializes a new instance of the ConditionalFormats class. + + + + + Initializes a new instance of the ConditionalFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormats class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the CalculatedMembers Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:calculatedMembers. + + + The following table lists the possible child types: + + <x:calculatedMember> + + + + + + Initializes a new instance of the CalculatedMembers class. + + + + + Initializes a new instance of the CalculatedMembers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMembers class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalculatedMembers class from outer XML. + + Specifies the outer XML of the element. + + + + Calculated Members Count + Represents the following attribute in the schema: count + + + + + + + + Defines the PivotEdit Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotEdit. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:pivotArea> + <x14:userEdit> + <x14:tupleItems> + + + + + + Initializes a new instance of the PivotEdit class. + + + + + Initializes a new instance of the PivotEdit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotEdit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotEdit class from outer XML. + + Specifies the outer XML of the element. + + + + PivotUserEdit. + Represents the following element tag in the schema: x14:userEdit. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + TupleItems. + Represents the following element tag in the schema: x14:tupleItems. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + PivotArea. + Represents the following element tag in the schema: x14:pivotArea. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the PivotUserEdit Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:userEdit. + + + The following table lists the possible child types: + + <xne:f> + <x14:editValue> + + + + + + Initializes a new instance of the PivotUserEdit class. + + + + + Initializes a new instance of the PivotUserEdit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotUserEdit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotUserEdit class from outer XML. + + Specifies the outer XML of the element. + + + + Formula. + Represents the following element tag in the schema: xne:f. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + PivotEditValue. + Represents the following element tag in the schema: x14:editValue. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the TupleItems Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:tupleItems. + + + The following table lists the possible child types: + + <x14:tupleItem> + + + + + + Initializes a new instance of the TupleItems class. + + + + + Initializes a new instance of the TupleItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TupleItems class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotArea Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotArea. + + + The following table lists the possible child types: + + <x:extLst> + <x:references> + + + + + + Initializes a new instance of the PivotArea class. + + + + + Initializes a new instance of the PivotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotArea class from outer XML. + + Specifies the outer XML of the element. + + + + Field Index + Represents the following attribute in the schema: field + + + + + Rule Type + Represents the following attribute in the schema: type + + + + + Data Only + Represents the following attribute in the schema: dataOnly + + + + + Labels Only + Represents the following attribute in the schema: labelOnly + + + + + Include Row Grand Total + Represents the following attribute in the schema: grandRow + + + + + Include Column Grand Total + Represents the following attribute in the schema: grandCol + + + + + Cache Index + Represents the following attribute in the schema: cacheIndex + + + + + Outline + Represents the following attribute in the schema: outline + + + + + Offset Reference + Represents the following attribute in the schema: offset + + + + + Collapsed Levels Are Subtotals + Represents the following attribute in the schema: collapsedLevelsAreSubtotals + + + + + Axis + Represents the following attribute in the schema: axis + + + + + Field Position + Represents the following attribute in the schema: fieldPosition + + + + + References. + Represents the following element tag in the schema: x:references. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the PivotChange Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotChange. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:editValue> + <x14:tupleItems> + + + + + + Initializes a new instance of the PivotChange class. + + + + + Initializes a new instance of the PivotChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotChange class from outer XML. + + Specifies the outer XML of the element. + + + + allocationMethod, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: allocationMethod + + + + + weightExpression, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: weightExpression + + + + + PivotEditValue. + Represents the following element tag in the schema: x14:editValue. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + TupleItems. + Represents the following element tag in the schema: x14:tupleItems. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the PivotEditValue Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:editValue. + + + + + Initializes a new instance of the PivotEditValue class. + + + + + Initializes a new instance of the PivotEditValue class with the specified text content. + + Specifies the text content of the element. + + + + valueType, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: valueType + + + + + + + + Defines the Xstring Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:tupleItem. + + + + + Initializes a new instance of the Xstring class. + + + + + Initializes a new instance of the Xstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the SlicerStyleElements Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicerStyleElements. + + + The following table lists the possible child types: + + <x14:slicerStyleElement> + + + + + + Initializes a new instance of the SlicerStyleElements class. + + + + + Initializes a new instance of the SlicerStyleElements class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerStyleElements class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerStyleElements class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DdeValues Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:values. + + + The following table lists the possible child types: + + <x:value> + + + + + + Initializes a new instance of the DdeValues class. + + + + + Initializes a new instance of the DdeValues class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DdeValues class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DdeValues class from outer XML. + + Specifies the outer XML of the element. + + + + Rows + Represents the following attribute in the schema: rows + + + + + Columns + Represents the following attribute in the schema: cols + + + + + + + + Defines the ConditionalFormat Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:conditionalFormat. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:pivotAreas> + + + + + + Initializes a new instance of the ConditionalFormat class. + + + + + Initializes a new instance of the ConditionalFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConditionalFormat class from outer XML. + + Specifies the outer XML of the element. + + + + scope, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: scope + + + + + type, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: type + + + + + priority, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: priority + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + PivotAreas. + Represents the following element tag in the schema: x14:pivotAreas. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the PivotAreas Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotAreas. + + + The following table lists the possible child types: + + <x:pivotArea> + + + + + + Initializes a new instance of the PivotAreas class. + + + + + Initializes a new instance of the PivotAreas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotAreas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotAreas class from outer XML. + + Specifies the outer XML of the element. + + + + Pivot Area Count + Represents the following attribute in the schema: count + + + + + + + + Defines the SlicerStyle Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicerStyle. + + + The following table lists the possible child types: + + <x14:slicerStyleElements> + + + + + + Initializes a new instance of the SlicerStyle class. + + + + + Initializes a new instance of the SlicerStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerStyle class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + SlicerStyleElements. + Represents the following element tag in the schema: x14:slicerStyleElements. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the SlicerStyleElement Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicerStyleElement. + + + + + Initializes a new instance of the SlicerStyleElement class. + + + + + type, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: type + + + + + dxfId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dxfId + + + + + + + + Defines the IgnoredError Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:ignoredError. + + + The following table lists the possible child types: + + <xne:sqref> + + + + + + Initializes a new instance of the IgnoredError class. + + + + + Initializes a new instance of the IgnoredError class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IgnoredError class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the IgnoredError class from outer XML. + + Specifies the outer XML of the element. + + + + evalError, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: evalError + + + + + twoDigitTextYear, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: twoDigitTextYear + + + + + numberStoredAsText, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: numberStoredAsText + + + + + formula, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: formula + + + + + formulaRange, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: formulaRange + + + + + unlockedFormula, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: unlockedFormula + + + + + emptyCellReference, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: emptyCellReference + + + + + listDataValidation, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: listDataValidation + + + + + calculatedColumn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: calculatedColumn + + + + + ReferenceSequence. + Represents the following element tag in the schema: xne:sqref. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + + + + Defines the ProtectedRange Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:protectedRange. + + + The following table lists the possible child types: + + <xne:sqref> + + + + + + Initializes a new instance of the ProtectedRange class. + + + + + Initializes a new instance of the ProtectedRange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ProtectedRange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ProtectedRange class from outer XML. + + Specifies the outer XML of the element. + + + + password, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: password + + + + + algorithmName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: algorithmName + + + + + hashValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: hashValue + + + + + saltValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: saltValue + + + + + spinCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: spinCount + + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + securityDescriptor, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: securityDescriptor + + + + + ReferenceSequence. + Represents the following element tag in the schema: xne:sqref. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + + + + Defines the CustomFilter Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:customFilter. + + + + + Initializes a new instance of the CustomFilter class. + + + + + operator, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: operator + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ListItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:item. + + + + + Initializes a new instance of the ListItem class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ListItems Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:itemLst. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:item> + + + + + + Initializes a new instance of the ListItems class. + + + + + Initializes a new instance of the ListItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ListItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ListItems class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Slicer Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:slicer. + + + The following table lists the possible child types: + + <x14:extLst> + + + + + + Initializes a new instance of the Slicer class. + + + + + Initializes a new instance of the Slicer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Slicer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Slicer class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + cache, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: cache + + + + + caption, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: caption + + + + + startItem, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: startItem + + + + + columnCount, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: columnCount + + + + + showCaption, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showCaption + + + + + level, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: level + + + + + style, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: style + + + + + lockedPosition, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: lockedPosition + + + + + rowHeight, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: rowHeight + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the OlapSlicerCache Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:olap. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:levels> + <x14:selections> + + + + + + Initializes a new instance of the OlapSlicerCache class. + + + + + Initializes a new instance of the OlapSlicerCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCache class from outer XML. + + Specifies the outer XML of the element. + + + + pivotCacheId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pivotCacheId + + + + + OlapSlicerCacheLevelsData. + Represents the following element tag in the schema: x14:levels. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + OlapSlicerCacheSelections. + Represents the following element tag in the schema: x14:selections. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the TabularSlicerCache Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:tabular. + + + The following table lists the possible child types: + + <x14:extLst> + <x14:items> + + + + + + Initializes a new instance of the TabularSlicerCache class. + + + + + Initializes a new instance of the TabularSlicerCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TabularSlicerCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TabularSlicerCache class from outer XML. + + Specifies the outer XML of the element. + + + + pivotCacheId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pivotCacheId + + + + + sortOrder, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sortOrder + + + + + customListSort, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: customListSort + + + + + showMissing, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showMissing + + + + + crossFilter, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: crossFilter + + + + + TabularSlicerCacheItems. + Represents the following element tag in the schema: x14:items. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + ExtensionList. + Represents the following element tag in the schema: x14:extLst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the SlicerCachePivotTable Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotTable. + + + + + Initializes a new instance of the SlicerCachePivotTable class. + + + + + tabId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: tabId + + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the OlapSlicerCacheItemParent Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:p. + + + + + Initializes a new instance of the OlapSlicerCacheItemParent class. + + + + + n, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: n + + + + + + + + Defines the OlapSlicerCacheItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:i. + + + The following table lists the possible child types: + + <x14:p> + + + + + + Initializes a new instance of the OlapSlicerCacheItem class. + + + + + Initializes a new instance of the OlapSlicerCacheItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheItem class from outer XML. + + Specifies the outer XML of the element. + + + + n, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: n + + + + + c, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: c + + + + + nd, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: nd + + + + + + + + Defines the OlapSlicerCacheRange Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:range. + + + The following table lists the possible child types: + + <x14:i> + + + + + + Initializes a new instance of the OlapSlicerCacheRange class. + + + + + Initializes a new instance of the OlapSlicerCacheRange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheRange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheRange class from outer XML. + + Specifies the outer XML of the element. + + + + startItem, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: startItem + + + + + + + + Defines the OlapSlicerCacheRanges Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:ranges. + + + The following table lists the possible child types: + + <x14:range> + + + + + + Initializes a new instance of the OlapSlicerCacheRanges class. + + + + + Initializes a new instance of the OlapSlicerCacheRanges class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheRanges class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheRanges class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OlapSlicerCacheLevelData Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:level. + + + The following table lists the possible child types: + + <x14:ranges> + + + + + + Initializes a new instance of the OlapSlicerCacheLevelData class. + + + + + Initializes a new instance of the OlapSlicerCacheLevelData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheLevelData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheLevelData class from outer XML. + + Specifies the outer XML of the element. + + + + uniqueName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: uniqueName + + + + + sourceCaption, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sourceCaption + + + + + count, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: count + + + + + sortOrder, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sortOrder + + + + + crossFilter, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: crossFilter + + + + + OlapSlicerCacheRanges. + Represents the following element tag in the schema: x14:ranges. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the OlapSlicerCacheLevelsData Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:levels. + + + The following table lists the possible child types: + + <x14:level> + + + + + + Initializes a new instance of the OlapSlicerCacheLevelsData class. + + + + + Initializes a new instance of the OlapSlicerCacheLevelsData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheLevelsData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheLevelsData class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the OlapSlicerCacheSelections Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:selections. + + + The following table lists the possible child types: + + <x14:selection> + + + + + + Initializes a new instance of the OlapSlicerCacheSelections class. + + + + + Initializes a new instance of the OlapSlicerCacheSelections class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheSelections class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheSelections class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the OlapSlicerCacheSelection Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:selection. + + + The following table lists the possible child types: + + <x14:p> + + + + + + Initializes a new instance of the OlapSlicerCacheSelection class. + + + + + Initializes a new instance of the OlapSlicerCacheSelection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheSelection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OlapSlicerCacheSelection class from outer XML. + + Specifies the outer XML of the element. + + + + n, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: n + + + + + + + + Defines the TabularSlicerCacheItems Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:items. + + + The following table lists the possible child types: + + <x14:i> + + + + + + Initializes a new instance of the TabularSlicerCacheItems class. + + + + + Initializes a new instance of the TabularSlicerCacheItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TabularSlicerCacheItems class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TabularSlicerCacheItems class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the TabularSlicerCacheItem Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:i. + + + + + Initializes a new instance of the TabularSlicerCacheItem class. + + + + + x, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x + + + + + s, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: s + + + + + nd, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: nd + + + + + + + + Defines the SlicerCachePivotTables Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:pivotTables. + + + The following table lists the possible child types: + + <x14:pivotTable> + + + + + + Initializes a new instance of the SlicerCachePivotTables class. + + + + + Initializes a new instance of the SlicerCachePivotTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCachePivotTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCachePivotTables class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlicerCacheData Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:data. + + + The following table lists the possible child types: + + <x14:olap> + <x14:tabular> + + + + + + Initializes a new instance of the SlicerCacheData class. + + + + + Initializes a new instance of the SlicerCacheData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheData class from outer XML. + + Specifies the outer XML of the element. + + + + OlapSlicerCache. + Represents the following element tag in the schema: x14:olap. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + TabularSlicerCache. + Represents the following element tag in the schema: x14:tabular. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Defines the SlicerCacheDefinitionExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is x14:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the SlicerCacheDefinitionExtensionList class. + + + + + Initializes a new instance of the SlicerCacheDefinitionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheDefinitionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheDefinitionExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DisplayBlanksAsValues enumeration. + + + + + Creates a new DisplayBlanksAsValues enum instance + + + + + span. + When the item is serialized out as xml, its value is "span". + + + + + gap. + When the item is serialized out as xml, its value is "gap". + + + + + zero. + When the item is serialized out as xml, its value is "zero". + + + + + Defines the SparklineAxisMinMaxValues enumeration. + + + + + Creates a new SparklineAxisMinMaxValues enum instance + + + + + individual. + When the item is serialized out as xml, its value is "individual". + + + + + group. + When the item is serialized out as xml, its value is "group". + + + + + custom. + When the item is serialized out as xml, its value is "custom". + + + + + Defines the SparklineTypeValues enumeration. + + + + + Creates a new SparklineTypeValues enum instance + + + + + line. + When the item is serialized out as xml, its value is "line". + + + + + column. + When the item is serialized out as xml, its value is "column". + + + + + stacked. + When the item is serialized out as xml, its value is "stacked". + + + + + Defines the PivotShowAsValues enumeration. + + + + + Creates a new PivotShowAsValues enum instance + + + + + percentOfParent. + When the item is serialized out as xml, its value is "percentOfParent". + + + + + percentOfParentRow. + When the item is serialized out as xml, its value is "percentOfParentRow". + + + + + percentOfParentCol. + When the item is serialized out as xml, its value is "percentOfParentCol". + + + + + percentOfRunningTotal. + When the item is serialized out as xml, its value is "percentOfRunningTotal". + + + + + rankAscending. + When the item is serialized out as xml, its value is "rankAscending". + + + + + rankDescending. + When the item is serialized out as xml, its value is "rankDescending". + + + + + Defines the DataBarDirectionValues enumeration. + + + + + Creates a new DataBarDirectionValues enum instance + + + + + context. + When the item is serialized out as xml, its value is "context". + + + + + leftToRight. + When the item is serialized out as xml, its value is "leftToRight". + + + + + rightToLeft. + When the item is serialized out as xml, its value is "rightToLeft". + + + + + Defines the DataBarAxisPositionValues enumeration. + + + + + Creates a new DataBarAxisPositionValues enum instance + + + + + automatic. + When the item is serialized out as xml, its value is "automatic". + + + + + middle. + When the item is serialized out as xml, its value is "middle". + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + Defines the ConditionalFormattingValueObjectTypeValues enumeration. + + + + + Creates a new ConditionalFormattingValueObjectTypeValues enum instance + + + + + num. + When the item is serialized out as xml, its value is "num". + + + + + percent. + When the item is serialized out as xml, its value is "percent". + + + + + max. + When the item is serialized out as xml, its value is "max". + + + + + min. + When the item is serialized out as xml, its value is "min". + + + + + formula. + When the item is serialized out as xml, its value is "formula". + + + + + percentile. + When the item is serialized out as xml, its value is "percentile". + + + + + autoMin. + When the item is serialized out as xml, its value is "autoMin". + + + + + autoMax. + When the item is serialized out as xml, its value is "autoMax". + + + + + Defines the IconSetTypeValues enumeration. + + + + + Creates a new IconSetTypeValues enum instance + + + + + 3Arrows. + When the item is serialized out as xml, its value is "3Arrows". + + + + + 3ArrowsGray. + When the item is serialized out as xml, its value is "3ArrowsGray". + + + + + 3Flags. + When the item is serialized out as xml, its value is "3Flags". + + + + + 3TrafficLights1. + When the item is serialized out as xml, its value is "3TrafficLights1". + + + + + 3TrafficLights2. + When the item is serialized out as xml, its value is "3TrafficLights2". + + + + + 3Signs. + When the item is serialized out as xml, its value is "3Signs". + + + + + 3Symbols. + When the item is serialized out as xml, its value is "3Symbols". + + + + + 3Symbols2. + When the item is serialized out as xml, its value is "3Symbols2". + + + + + 4Arrows. + When the item is serialized out as xml, its value is "4Arrows". + + + + + 4ArrowsGray. + When the item is serialized out as xml, its value is "4ArrowsGray". + + + + + 4RedToBlack. + When the item is serialized out as xml, its value is "4RedToBlack". + + + + + 4Rating. + When the item is serialized out as xml, its value is "4Rating". + + + + + 4TrafficLights. + When the item is serialized out as xml, its value is "4TrafficLights". + + + + + 5Arrows. + When the item is serialized out as xml, its value is "5Arrows". + + + + + 5ArrowsGray. + When the item is serialized out as xml, its value is "5ArrowsGray". + + + + + 5Rating. + When the item is serialized out as xml, its value is "5Rating". + + + + + 5Quarters. + When the item is serialized out as xml, its value is "5Quarters". + + + + + 3Stars. + When the item is serialized out as xml, its value is "3Stars". + + + + + 3Triangles. + When the item is serialized out as xml, its value is "3Triangles". + + + + + 5Boxes. + When the item is serialized out as xml, its value is "5Boxes". + + + + + NoIcons. + When the item is serialized out as xml, its value is "NoIcons". + + + + + Defines the PivotEditValueTypeValues enumeration. + + + + + Creates a new PivotEditValueTypeValues enum instance + + + + + number. + When the item is serialized out as xml, its value is "number". + + + + + dateTime. + When the item is serialized out as xml, its value is "dateTime". + + + + + string. + When the item is serialized out as xml, its value is "string". + + + + + boolean. + When the item is serialized out as xml, its value is "boolean". + + + + + error. + When the item is serialized out as xml, its value is "error". + + + + + Defines the AllocationMethodValues enumeration. + + + + + Creates a new AllocationMethodValues enum instance + + + + + equalAllocation. + When the item is serialized out as xml, its value is "equalAllocation". + + + + + equalIncrement. + When the item is serialized out as xml, its value is "equalIncrement". + + + + + weightedAllocation. + When the item is serialized out as xml, its value is "weightedAllocation". + + + + + weightedIncrement. + When the item is serialized out as xml, its value is "weightedIncrement". + + + + + Defines the SlicerStyleTypeValues enumeration. + + + + + Creates a new SlicerStyleTypeValues enum instance + + + + + unselectedItemWithData. + When the item is serialized out as xml, its value is "unselectedItemWithData". + + + + + selectedItemWithData. + When the item is serialized out as xml, its value is "selectedItemWithData". + + + + + unselectedItemWithNoData. + When the item is serialized out as xml, its value is "unselectedItemWithNoData". + + + + + selectedItemWithNoData. + When the item is serialized out as xml, its value is "selectedItemWithNoData". + + + + + hoveredUnselectedItemWithData. + When the item is serialized out as xml, its value is "hoveredUnselectedItemWithData". + + + + + hoveredSelectedItemWithData. + When the item is serialized out as xml, its value is "hoveredSelectedItemWithData". + + + + + hoveredUnselectedItemWithNoData. + When the item is serialized out as xml, its value is "hoveredUnselectedItemWithNoData". + + + + + hoveredSelectedItemWithNoData. + When the item is serialized out as xml, its value is "hoveredSelectedItemWithNoData". + + + + + Defines the CheckedValues enumeration. + + + + + Creates a new CheckedValues enum instance + + + + + Unchecked. + When the item is serialized out as xml, its value is "Unchecked". + + + + + Checked. + When the item is serialized out as xml, its value is "Checked". + + + + + Mixed. + When the item is serialized out as xml, its value is "Mixed". + + + + + Defines the DropStyleValues enumeration. + + + + + Creates a new DropStyleValues enum instance + + + + + combo. + When the item is serialized out as xml, its value is "combo". + + + + + comboedit. + When the item is serialized out as xml, its value is "comboedit". + + + + + simple. + When the item is serialized out as xml, its value is "simple". + + + + + Defines the SelectionTypeValues enumeration. + + + + + Creates a new SelectionTypeValues enum instance + + + + + single. + When the item is serialized out as xml, its value is "single". + + + + + multi. + When the item is serialized out as xml, its value is "multi". + + + + + extended. + When the item is serialized out as xml, its value is "extended". + + + + + Defines the TextHorizontalAlignmentValues enumeration. + + + + + Creates a new TextHorizontalAlignmentValues enum instance + + + + + left. + When the item is serialized out as xml, its value is "left". + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + right. + When the item is serialized out as xml, its value is "right". + + + + + justify. + When the item is serialized out as xml, its value is "justify". + + + + + distributed. + When the item is serialized out as xml, its value is "distributed". + + + + + Defines the TextVerticalAlignmentValues enumeration. + + + + + Creates a new TextVerticalAlignmentValues enum instance + + + + + top. + When the item is serialized out as xml, its value is "top". + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + justify. + When the item is serialized out as xml, its value is "justify". + + + + + distributed. + When the item is serialized out as xml, its value is "distributed". + + + + + Defines the EditValidationValues enumeration. + + + + + Creates a new EditValidationValues enum instance + + + + + text. + When the item is serialized out as xml, its value is "text". + + + + + integer. + When the item is serialized out as xml, its value is "integer". + + + + + number. + When the item is serialized out as xml, its value is "number". + + + + + reference. + When the item is serialized out as xml, its value is "reference". + + + + + formula. + When the item is serialized out as xml, its value is "formula". + + + + + Defines the OlapSlicerCacheSortOrderValues enumeration. + + + + + Creates a new OlapSlicerCacheSortOrderValues enum instance + + + + + natural. + When the item is serialized out as xml, its value is "natural". + + + + + ascending. + When the item is serialized out as xml, its value is "ascending". + + + + + descending. + When the item is serialized out as xml, its value is "descending". + + + + + Defines the TabularSlicerCacheSortOrderValues enumeration. + + + + + Creates a new TabularSlicerCacheSortOrderValues enum instance + + + + + ascending. + When the item is serialized out as xml, its value is "ascending". + + + + + descending. + When the item is serialized out as xml, its value is "descending". + + + + + Defines the SlicerCacheCrossFilterValues enumeration. + + + + + Creates a new SlicerCacheCrossFilterValues enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + showItemsWithDataAtTop. + When the item is serialized out as xml, its value is "showItemsWithDataAtTop". + + + + + showItemsWithNoData. + When the item is serialized out as xml, its value is "showItemsWithNoData". + + + + + Defines the ObjectTypeValues enumeration. + + + + + Creates a new ObjectTypeValues enum instance + + + + + Button. + When the item is serialized out as xml, its value is "Button". + + + + + CheckBox. + When the item is serialized out as xml, its value is "CheckBox". + + + + + Drop. + When the item is serialized out as xml, its value is "Drop". + + + + + GBox. + When the item is serialized out as xml, its value is "GBox". + + + + + Label. + When the item is serialized out as xml, its value is "Label". + + + + + List. + When the item is serialized out as xml, its value is "List". + + + + + Radio. + When the item is serialized out as xml, its value is "Radio". + + + + + Scroll. + When the item is serialized out as xml, its value is "Scroll". + + + + + Spin. + When the item is serialized out as xml, its value is "Spin". + + + + + EditBox. + When the item is serialized out as xml, its value is "EditBox". + + + + + Dialog. + When the item is serialized out as xml, its value is "Dialog". + + + + + Defines the NonVisualContentPartProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:nvContentPartPr. + + + The following table lists the possible child types: + + <p14:cNvPr> + <p14:cNvContentPartPr> + <p14:nvPr> + + + + + + Initializes a new instance of the NonVisualContentPartProperties class. + + + + + Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualContentPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: p14:cNvPr. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + NonVisualInkContentPartProperties. + Represents the following element tag in the schema: p14:cNvContentPartPr. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + ApplicationNonVisualDrawingProperties. + Represents the following element tag in the schema: p14:nvPr. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + + + + Defines the Transform2D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ExtensionListModify Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionListModify class. + + + + + Initializes a new instance of the ExtensionListModify class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionListModify class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionListModify class from outer XML. + + Specifies the outer XML of the element. + + + + Modify + Represents the following attribute in the schema: mod + + + + + + + + Defines the Media Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:media. + + + The following table lists the possible child types: + + <p14:extLst> + <p14:bmkLst> + <p14:fade> + <p14:trim> + + + + + + Initializes a new instance of the Media class. + + + + + Initializes a new instance of the Media class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Media class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Media class from outer XML. + + Specifies the outer XML of the element. + + + + Embedded Picture Reference + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Linked Picture Reference + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + MediaTrim. + Represents the following element tag in the schema: p14:trim. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + MediaFade. + Represents the following element tag in the schema: p14:fade. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + MediaBookmarkList. + Represents the following element tag in the schema: p14:bmkLst. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + ExtensionList. + Represents the following element tag in the schema: p14:extLst. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + + + + Defines the VortexTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:vortex. + + + + + Initializes a new instance of the VortexTransition class. + + + + + + + + Defines the PanTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:pan. + + + + + Initializes a new instance of the PanTransition class. + + + + + + + + Defines the SideDirectionTransitionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the SideDirectionTransitionType class. + + + + + Direction + Represents the following attribute in the schema: dir + + + + + Defines the SwitchTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:switch. + + + + + Initializes a new instance of the SwitchTransition class. + + + + + + + + Defines the FlipTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:flip. + + + + + Initializes a new instance of the FlipTransition class. + + + + + + + + Defines the FerrisTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:ferris. + + + + + Initializes a new instance of the FerrisTransition class. + + + + + + + + Defines the GalleryTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:gallery. + + + + + Initializes a new instance of the GalleryTransition class. + + + + + + + + Defines the ConveyorTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:conveyor. + + + + + Initializes a new instance of the ConveyorTransition class. + + + + + + + + Defines the LeftRightDirectionTransitionType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the LeftRightDirectionTransitionType class. + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dir + + + + + Defines the RippleTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:ripple. + + + + + Initializes a new instance of the RippleTransition class. + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dir + + + + + + + + Defines the HoneycombTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:honeycomb. + + + + + Initializes a new instance of the HoneycombTransition class. + + + + + + + + Defines the FlashTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:flash. + + + + + Initializes a new instance of the FlashTransition class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Defines the PrismTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:prism. + + + + + Initializes a new instance of the PrismTransition class. + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dir + + + + + isContent, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isContent + + + + + isInverted, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isInverted + + + + + + + + Defines the DoorsTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:doors. + + + + + Initializes a new instance of the DoorsTransition class. + + + + + + + + Defines the WindowTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:window. + + + + + Initializes a new instance of the WindowTransition class. + + + + + + + + Defines the OrientationTransitionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OrientationTransitionType class. + + + + + Transition Direction + Represents the following attribute in the schema: dir + + + + + Defines the GlitterTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:glitter. + + + + + Initializes a new instance of the GlitterTransition class. + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dir + + + + + pattern, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pattern + + + + + + + + Defines the WarpTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:warp. + + + + + Initializes a new instance of the WarpTransition class. + + + + + Direction + Represents the following attribute in the schema: dir + + + + + + + + Defines the FlythroughTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:flythrough. + + + + + Initializes a new instance of the FlythroughTransition class. + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dir + + + + + hasBounce, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: hasBounce + + + + + + + + Defines the ShredTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:shred. + + + + + Initializes a new instance of the ShredTransition class. + + + + + pattern, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: pattern + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dir + + + + + + + + Defines the RevealTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:reveal. + + + + + Initializes a new instance of the RevealTransition class. + + + + + thruBlk, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: thruBlk + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dir + + + + + + + + Defines the WheelReverseTransition Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:wheelReverse. + + + + + Initializes a new instance of the WheelReverseTransition class. + + + + + Spokes + Represents the following attribute in the schema: spokes + + + + + + + + Defines the BookmarkTarget Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:bmkTgt. + + + + + Initializes a new instance of the BookmarkTarget class. + + + + + spid, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: spid + + + + + bmkName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: bmkName + + + + + + + + Defines the SectionProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:sectionPr. + + + The following table lists the possible child types: + + <p14:section> + + + + + + Initializes a new instance of the SectionProperties class. + + + + + Initializes a new instance of the SectionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SectionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:sectionLst. + + + The following table lists the possible child types: + + <p14:section> + + + + + + Initializes a new instance of the SectionList class. + + + + + Initializes a new instance of the SectionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BrowseMode Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:browseMode. + + + + + Initializes a new instance of the BrowseMode class. + + + + + showStatus, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: showStatus + + + + + + + + Defines the LaserColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:laserClr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the LaserColor class. + + + + + Initializes a new instance of the LaserColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LaserColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LaserColor class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the DefaultImageDpi Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:defaultImageDpi. + + + + + Initializes a new instance of the DefaultImageDpi class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the DiscardImageEditData Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:discardImageEditData. + + + + + Initializes a new instance of the DiscardImageEditData class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ShowMediaControls Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:showMediaCtrls. + + + + + Initializes a new instance of the ShowMediaControls class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the LaserTraceList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:laserTraceLst. + + + The following table lists the possible child types: + + <p14:tracePtLst> + + + + + + Initializes a new instance of the LaserTraceList class. + + + + + Initializes a new instance of the LaserTraceList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LaserTraceList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LaserTraceList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CreationId Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:creationId. + + + + + Initializes a new instance of the CreationId class. + + + + + + + + Defines the ModificationId Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:modId. + + + + + Initializes a new instance of the ModificationId class. + + + + + + + + Defines the RandomIdType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the RandomIdType class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: val + + + + + Defines the ShowEventRecordList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:showEvtLst. + + + The following table lists the possible child types: + + <p14:playEvt> + <p14:stopEvt> + <p14:pauseEvt> + <p14:resumeEvt> + <p14:seekEvt> + <p14:nullEvt> + <p14:triggerEvt> + + + + + + Initializes a new instance of the ShowEventRecordList class. + + + + + Initializes a new instance of the ShowEventRecordList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShowEventRecordList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShowEventRecordList class from outer XML. + + Specifies the outer XML of the element. + + + + TriggerEventRecord. + Represents the following element tag in the schema: p14:triggerEvt. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + PlayEventRecord. + Represents the following element tag in the schema: p14:playEvt. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + StopEventRecord. + Represents the following element tag in the schema: p14:stopEvt. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + PauseEventRecord. + Represents the following element tag in the schema: p14:pauseEvt. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + ResumeEventRecord. + Represents the following element tag in the schema: p14:resumeEvt. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + SeekEventRecord. + Represents the following element tag in the schema: p14:seekEvt. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + NullEventRecord. + Represents the following element tag in the schema: p14:nullEvt. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualInkContentPartProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:cNvContentPartPr. + + + The following table lists the possible child types: + + <a14:extLst> + <a14:cpLocks> + + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class. + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + isComment, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isComment + + + + + ContentPartLocks. + Represents the following element tag in the schema: a14:cpLocks. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: a14:extLst. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the ApplicationNonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:nvPr. + + + The following table lists the possible child types: + + <a:audioCd> + <a:audioFile> + <a:wavAudioFile> + <a:quickTimeFile> + <a:videoFile> + <p:extLst> + <p:custDataLst> + <p:ph> + + + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class. + + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Is a Photo Album + Represents the following attribute in the schema: isPhoto + + + + + Is User Drawn + Represents the following attribute in the schema: userDrawn + + + + + Placeholder Shape. + Represents the following element tag in the schema: p:ph. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the MediaBookmark Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:bmk. + + + + + Initializes a new instance of the MediaBookmark class. + + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + time, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: time + + + + + + + + Defines the MediaTrim Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:trim. + + + + + Initializes a new instance of the MediaTrim class. + + + + + st, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: st + + + + + end, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: end + + + + + + + + Defines the MediaFade Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:fade. + + + + + Initializes a new instance of the MediaFade class. + + + + + in, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: in + + + + + out, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: out + + + + + + + + Defines the MediaBookmarkList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:bmkLst. + + + The following table lists the possible child types: + + <p14:bmk> + + + + + + Initializes a new instance of the MediaBookmarkList class. + + + + + Initializes a new instance of the MediaBookmarkList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MediaBookmarkList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MediaBookmarkList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SectionOld Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:section. + + + The following table lists the possible child types: + + <p14:extLst> + + + + + + Initializes a new instance of the SectionOld class. + + + + + Initializes a new instance of the SectionOld class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionOld class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionOld class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + slideIdLst, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: slideIdLst + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + ExtensionList. + Represents the following element tag in the schema: p14:extLst. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + + + + Defines the SectionSlideIdListEntry Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:sldId. + + + + + Initializes a new instance of the SectionSlideIdListEntry class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the SectionSlideIdList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:sldIdLst. + + + The following table lists the possible child types: + + <p14:sldId> + + + + + + Initializes a new instance of the SectionSlideIdList class. + + + + + Initializes a new instance of the SectionSlideIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionSlideIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionSlideIdList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Section Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:section. + + + The following table lists the possible child types: + + <p14:extLst> + <p14:sldIdLst> + + + + + + Initializes a new instance of the Section class. + + + + + Initializes a new instance of the Section class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Section class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Section class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: name + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + SectionSlideIdList. + Represents the following element tag in the schema: p14:sldIdLst. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + ExtensionList. + Represents the following element tag in the schema: p14:extLst. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + + + + Defines the TracePoint Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:tracePt. + + + + + Initializes a new instance of the TracePoint class. + + + + + t, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: t + + + + + x, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: x + + + + + y, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: y + + + + + + + + Defines the TracePointList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:tracePtLst. + + + The following table lists the possible child types: + + <p14:tracePt> + + + + + + Initializes a new instance of the TracePointList class. + + + + + Initializes a new instance of the TracePointList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TracePointList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TracePointList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TriggerEventRecord Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:triggerEvt. + + + + + Initializes a new instance of the TriggerEventRecord class. + + + + + type, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: type + + + + + time, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: time + + + + + objId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: objId + + + + + + + + Defines the PlayEventRecord Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:playEvt. + + + + + Initializes a new instance of the PlayEventRecord class. + + + + + + + + Defines the StopEventRecord Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:stopEvt. + + + + + Initializes a new instance of the StopEventRecord class. + + + + + + + + Defines the PauseEventRecord Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:pauseEvt. + + + + + Initializes a new instance of the PauseEventRecord class. + + + + + + + + Defines the ResumeEventRecord Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:resumeEvt. + + + + + Initializes a new instance of the ResumeEventRecord class. + + + + + + + + Defines the MediaPlaybackEventRecordType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the MediaPlaybackEventRecordType class. + + + + + time, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: time + + + + + objId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: objId + + + + + Defines the SeekEventRecord Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:seekEvt. + + + + + Initializes a new instance of the SeekEventRecord class. + + + + + time, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: time + + + + + objId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: objId + + + + + seek, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: seek + + + + + + + + Defines the NullEventRecord Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p14:nullEvt. + + + + + Initializes a new instance of the NullEventRecord class. + + + + + time, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: time + + + + + objId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: objId + + + + + + + + Defines the TransitionPatternValues enumeration. + + + + + Creates a new TransitionPatternValues enum instance + + + + + diamond. + When the item is serialized out as xml, its value is "diamond". + + + + + hexagon. + When the item is serialized out as xml, its value is "hexagon". + + + + + Defines the TransitionCenterDirectionTypeValues enumeration. + + + + + Creates a new TransitionCenterDirectionTypeValues enum instance + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + Defines the TransitionShredPatternValues enumeration. + + + + + Creates a new TransitionShredPatternValues enum instance + + + + + strip. + When the item is serialized out as xml, its value is "strip". + + + + + rectangle. + When the item is serialized out as xml, its value is "rectangle". + + + + + Defines the TransitionLeftRightDirectionTypeValues enumeration. + + + + + Creates a new TransitionLeftRightDirectionTypeValues enum instance + + + + + l. + When the item is serialized out as xml, its value is "l". + + + + + r. + When the item is serialized out as xml, its value is "r". + + + + + Defines the List Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x12ac:list. + + + + + Initializes a new instance of the List class. + + + + + Initializes a new instance of the List class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the RunConflictInsertion Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:conflictIns. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:dir> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the RunConflictInsertion class. + + + + + Initializes a new instance of the RunConflictInsertion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunConflictInsertion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunConflictInsertion class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RunConflictDeletion Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:conflictDel. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:dir> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the RunConflictDeletion class. + + + + + Initializes a new instance of the RunConflictDeletion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunConflictDeletion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunConflictDeletion class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RunTrackChangeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bdo> + <w:bookmarkStart> + <w:contentPart> + <w:dir> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the RunTrackChangeType class. + + + + + Initializes a new instance of the RunTrackChangeType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunTrackChangeType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunTrackChangeType class from outer XML. + + Specifies the outer XML of the element. + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the ConflictInsertion Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:conflictIns. + + + + + Initializes a new instance of the ConflictInsertion class. + + + + + + + + Defines the ConflictDeletion Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:conflictDel. + + + + + Initializes a new instance of the ConflictDeletion class. + + + + + + + + Defines the CustomXmlConflictInsertionRangeStart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:customXmlConflictInsRangeStart. + + + + + Initializes a new instance of the CustomXmlConflictInsertionRangeStart class. + + + + + + + + Defines the CustomXmlConflictDeletionRangeStart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:customXmlConflictDelRangeStart. + + + + + Initializes a new instance of the CustomXmlConflictDeletionRangeStart class. + + + + + + + + Defines the TrackChangeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TrackChangeType class. + + + + + author + Represents the following attribute in the schema: w:author + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + date + Represents the following attribute in the schema: w:date + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + dateUtc, this property is only available in Microsoft365 and later. + Represents the following attribute in the schema: w16du:dateUtc + + + xmlns:w16du=http://schemas.microsoft.com/office/word/2023/wordml/word16du + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the Tint Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:tint. + + + + + Initializes a new instance of the Tint class. + + + + + + + + Defines the Shade Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:shade. + + + + + Initializes a new instance of the Shade class. + + + + + + + + Defines the Alpha Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:alpha. + + + + + Initializes a new instance of the Alpha class. + + + + + + + + Defines the PositiveFixedPercentageType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the PositiveFixedPercentageType class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + Defines the HueModulation Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:hueMod. + + + + + Initializes a new instance of the HueModulation class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Saturation Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:sat. + + + + + Initializes a new instance of the Saturation class. + + + + + + + + Defines the SaturationOffset Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:satOff. + + + + + Initializes a new instance of the SaturationOffset class. + + + + + + + + Defines the SaturationModulation Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:satMod. + + + + + Initializes a new instance of the SaturationModulation class. + + + + + + + + Defines the Luminance Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:lum. + + + + + Initializes a new instance of the Luminance class. + + + + + + + + Defines the LuminanceOffset Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:lumOff. + + + + + Initializes a new instance of the LuminanceOffset class. + + + + + + + + Defines the LuminanceModulation Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:lumMod. + + + + + Initializes a new instance of the LuminanceModulation class. + + + + + + + + Defines the PercentageType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the PercentageType class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + Defines the RgbColorModelHex Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:srgbClr. + + + The following table lists the possible child types: + + <w14:sat> + <w14:satOff> + <w14:satMod> + <w14:lum> + <w14:lumOff> + <w14:lumMod> + <w14:tint> + <w14:shade> + <w14:alpha> + <w14:hueMod> + + + + + + Initializes a new instance of the RgbColorModelHex class. + + + + + Initializes a new instance of the RgbColorModelHex class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RgbColorModelHex class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RgbColorModelHex class from outer XML. + + Specifies the outer XML of the element. + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the SchemeColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:schemeClr. + + + The following table lists the possible child types: + + <w14:sat> + <w14:satOff> + <w14:satMod> + <w14:lum> + <w14:lumOff> + <w14:lumMod> + <w14:tint> + <w14:shade> + <w14:alpha> + <w14:hueMod> + + + + + + Initializes a new instance of the SchemeColor class. + + + + + Initializes a new instance of the SchemeColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SchemeColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SchemeColor class from outer XML. + + Specifies the outer XML of the element. + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the LinearShadeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:lin. + + + + + Initializes a new instance of the LinearShadeProperties class. + + + + + ang, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:ang + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + scaled, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:scaled + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the PathShadeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:path. + + + The following table lists the possible child types: + + <w14:fillToRect> + + + + + + Initializes a new instance of the PathShadeProperties class. + + + + + Initializes a new instance of the PathShadeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PathShadeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PathShadeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + path, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:path + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + FillToRectangle. + Represents the following element tag in the schema: w14:fillToRect. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the NoFillEmpty Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:noFill. + + + + + Initializes a new instance of the NoFillEmpty class. + + + + + + + + Defines the RoundEmpty Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:round. + + + + + Initializes a new instance of the RoundEmpty class. + + + + + + + + Defines the BevelEmpty Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:bevel. + + + + + Initializes a new instance of the BevelEmpty class. + + + + + + + + Defines the EntityPickerEmpty Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:entityPicker. + + + + + Initializes a new instance of the EntityPickerEmpty class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Defines the SolidColorFillProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:solidFill. + + + The following table lists the possible child types: + + <w14:schemeClr> + <w14:srgbClr> + + + + + + Initializes a new instance of the SolidColorFillProperties class. + + + + + Initializes a new instance of the SolidColorFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SolidColorFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SolidColorFillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + RgbColorModelHex. + Represents the following element tag in the schema: w14:srgbClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + SchemeColor. + Represents the following element tag in the schema: w14:schemeClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the GradientFillProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:gradFill. + + + The following table lists the possible child types: + + <w14:gsLst> + <w14:lin> + <w14:path> + + + + + + Initializes a new instance of the GradientFillProperties class. + + + + + Initializes a new instance of the GradientFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientFillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + GradientStopList. + Represents the following element tag in the schema: w14:gsLst. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the PresetLineDashProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:prstDash. + + + + + Initializes a new instance of the PresetLineDashProperties class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the LineJoinMiterProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:miter. + + + + + Initializes a new instance of the LineJoinMiterProperties class. + + + + + lim, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:lim + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Glow Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:glow. + + + The following table lists the possible child types: + + <w14:schemeClr> + <w14:srgbClr> + + + + + + Initializes a new instance of the Glow class. + + + + + Initializes a new instance of the Glow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Glow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Glow class from outer XML. + + Specifies the outer XML of the element. + + + + rad, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:rad + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + RgbColorModelHex. + Represents the following element tag in the schema: w14:srgbClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + SchemeColor. + Represents the following element tag in the schema: w14:schemeClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Shadow Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:shadow. + + + The following table lists the possible child types: + + <w14:schemeClr> + <w14:srgbClr> + + + + + + Initializes a new instance of the Shadow class. + + + + + Initializes a new instance of the Shadow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shadow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shadow class from outer XML. + + Specifies the outer XML of the element. + + + + blurRad, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:blurRad + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + dist, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:dist + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:dir + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + sx, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:sx + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + sy, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:sy + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + kx, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:kx + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + ky, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:ky + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + algn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:algn + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + RgbColorModelHex. + Represents the following element tag in the schema: w14:srgbClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + SchemeColor. + Represents the following element tag in the schema: w14:schemeClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Reflection Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:reflection. + + + + + Initializes a new instance of the Reflection class. + + + + + blurRad, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:blurRad + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + stA, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:stA + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + stPos, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:stPos + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + endA, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:endA + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + endPos, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:endPos + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + dist, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:dist + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:dir + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + fadeDir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:fadeDir + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + sx, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:sx + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + sy, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:sy + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + kx, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:kx + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + ky, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:ky + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + algn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:algn + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the TextOutlineEffect Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:textOutline. + + + The following table lists the possible child types: + + <w14:noFill> + <w14:round> + <w14:bevel> + <w14:gradFill> + <w14:miter> + <w14:prstDash> + <w14:solidFill> + + + + + + Initializes a new instance of the TextOutlineEffect class. + + + + + Initializes a new instance of the TextOutlineEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextOutlineEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextOutlineEffect class from outer XML. + + Specifies the outer XML of the element. + + + + w, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:w + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + cap, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:cap + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + cmpd, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:cmpd + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + algn, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:algn + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the FillTextEffect Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:textFill. + + + The following table lists the possible child types: + + <w14:noFill> + <w14:gradFill> + <w14:solidFill> + + + + + + Initializes a new instance of the FillTextEffect class. + + + + + Initializes a new instance of the FillTextEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillTextEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillTextEffect class from outer XML. + + Specifies the outer XML of the element. + + + + NoFillEmpty. + Represents the following element tag in the schema: w14:noFill. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + SolidColorFillProperties. + Represents the following element tag in the schema: w14:solidFill. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + GradientFillProperties. + Represents the following element tag in the schema: w14:gradFill. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Scene3D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:scene3d. + + + The following table lists the possible child types: + + <w14:camera> + <w14:lightRig> + + + + + + Initializes a new instance of the Scene3D class. + + + + + Initializes a new instance of the Scene3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scene3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scene3D class from outer XML. + + Specifies the outer XML of the element. + + + + Camera. + Represents the following element tag in the schema: w14:camera. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + LightRig. + Represents the following element tag in the schema: w14:lightRig. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Properties3D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:props3d. + + + The following table lists the possible child types: + + <w14:bevelT> + <w14:bevelB> + <w14:extrusionClr> + <w14:contourClr> + + + + + + Initializes a new instance of the Properties3D class. + + + + + Initializes a new instance of the Properties3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Properties3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Properties3D class from outer XML. + + Specifies the outer XML of the element. + + + + extrusionH, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:extrusionH + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + contourW, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:contourW + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + prstMaterial, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:prstMaterial + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + BevelTop. + Represents the following element tag in the schema: w14:bevelT. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + BevelBottom. + Represents the following element tag in the schema: w14:bevelB. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + ExtrusionColor. + Represents the following element tag in the schema: w14:extrusionClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + ContourColor. + Represents the following element tag in the schema: w14:contourClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Ligatures Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:ligatures. + + + + + Initializes a new instance of the Ligatures class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the NumberingFormat Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:numForm. + + + + + Initializes a new instance of the NumberingFormat class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the NumberSpacing Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:numSpacing. + + + + + Initializes a new instance of the NumberSpacing class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the StylisticSets Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:stylisticSets. + + + The following table lists the possible child types: + + <w14:styleSet> + + + + + + Initializes a new instance of the StylisticSets class. + + + + + Initializes a new instance of the StylisticSets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StylisticSets class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StylisticSets class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ContextualAlternatives Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:cntxtAlts. + + + + + Initializes a new instance of the ContextualAlternatives class. + + + + + + + + Defines the ConflictMode Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:conflictMode. + + + + + Initializes a new instance of the ConflictMode class. + + + + + + + + Defines the DiscardImageEditingData Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:discardImageEditingData. + + + + + Initializes a new instance of the DiscardImageEditingData class. + + + + + + + + Defines the Checked Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:checked. + + + + + Initializes a new instance of the Checked class. + + + + + + + + Defines the OnOffType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OnOffType class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + Defines the ContentPart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:contentPart. + + + The following table lists the possible child types: + + <w14:extLst> + <w14:xfrm> + <w14:nvContentPartPr> + + + + + + Initializes a new instance of the ContentPart class. + + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class from outer XML. + + Specifies the outer XML of the element. + + + + bwMode, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:bwMode + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + WordNonVisualContentPartShapeProperties. + Represents the following element tag in the schema: w14:nvContentPartPr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + Transform2D. + Represents the following element tag in the schema: w14:xfrm. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: w14:extLst. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the DocumentId Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:docId. + + + + + Initializes a new instance of the DocumentId class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the CustomXmlConflictInsertionRangeEnd Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:customXmlConflictInsRangeEnd. + + + + + Initializes a new instance of the CustomXmlConflictInsertionRangeEnd class. + + + + + + + + Defines the CustomXmlConflictDeletionRangeEnd Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:customXmlConflictDelRangeEnd. + + + + + Initializes a new instance of the CustomXmlConflictDeletionRangeEnd class. + + + + + + + + Defines the MarkupType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the MarkupType class. + + + + + Annotation Identifier + Represents the following attribute in the schema: w:id + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the DefaultImageDpi Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:defaultImageDpi. + + + + + Initializes a new instance of the DefaultImageDpi class. + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the SdtContentCheckBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:checkbox. + + + The following table lists the possible child types: + + <w14:checked> + <w14:checkedState> + <w14:uncheckedState> + + + + + + Initializes a new instance of the SdtContentCheckBox class. + + + + + Initializes a new instance of the SdtContentCheckBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentCheckBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtContentCheckBox class from outer XML. + + Specifies the outer XML of the element. + + + + Checked. + Represents the following element tag in the schema: w14:checked. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + CheckedState. + Represents the following element tag in the schema: w14:checkedState. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + UncheckedState. + Represents the following element tag in the schema: w14:uncheckedState. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the GradientStop Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:gs. + + + The following table lists the possible child types: + + <w14:schemeClr> + <w14:srgbClr> + + + + + + Initializes a new instance of the GradientStop class. + + + + + Initializes a new instance of the GradientStop class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStop class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStop class from outer XML. + + Specifies the outer XML of the element. + + + + pos, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:pos + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + RgbColorModelHex. + Represents the following element tag in the schema: w14:srgbClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + SchemeColor. + Represents the following element tag in the schema: w14:schemeClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the FillToRectangle Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:fillToRect. + + + + + Initializes a new instance of the FillToRectangle class. + + + + + l, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:l + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + t, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:t + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + r, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:r + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + b, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:b + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the GradientStopList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:gsLst. + + + The following table lists the possible child types: + + <w14:gs> + + + + + + Initializes a new instance of the GradientStopList class. + + + + + Initializes a new instance of the GradientStopList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStopList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStopList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SphereCoordinates Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:rot. + + + + + Initializes a new instance of the SphereCoordinates class. + + + + + lat, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:lat + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + lon, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:lon + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + rev, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:rev + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Camera Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:camera. + + + + + Initializes a new instance of the Camera class. + + + + + prst, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:prst + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the LightRig Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:lightRig. + + + The following table lists the possible child types: + + <w14:rot> + + + + + + Initializes a new instance of the LightRig class. + + + + + Initializes a new instance of the LightRig class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LightRig class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LightRig class from outer XML. + + Specifies the outer XML of the element. + + + + rig, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:rig + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + dir, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:dir + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + SphereCoordinates. + Represents the following element tag in the schema: w14:rot. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the BevelTop Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:bevelT. + + + + + Initializes a new instance of the BevelTop class. + + + + + + + + Defines the BevelBottom Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:bevelB. + + + + + Initializes a new instance of the BevelBottom class. + + + + + + + + Defines the BevelType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BevelType class. + + + + + w, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:w + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + h, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:h + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + prst, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:prst + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + Defines the ExtrusionColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:extrusionClr. + + + The following table lists the possible child types: + + <w14:schemeClr> + <w14:srgbClr> + + + + + + Initializes a new instance of the ExtrusionColor class. + + + + + Initializes a new instance of the ExtrusionColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtrusionColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtrusionColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ContourColor Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:contourClr. + + + The following table lists the possible child types: + + <w14:schemeClr> + <w14:srgbClr> + + + + + + Initializes a new instance of the ContourColor class. + + + + + Initializes a new instance of the ContourColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContourColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContourColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColorType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <w14:schemeClr> + <w14:srgbClr> + + + + + + Initializes a new instance of the ColorType class. + + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class from outer XML. + + Specifies the outer XML of the element. + + + + RgbColorModelHex. + Represents the following element tag in the schema: w14:srgbClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + SchemeColor. + Represents the following element tag in the schema: w14:schemeClr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + Defines the StyleSet Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:styleSet. + + + + + Initializes a new instance of the StyleSet class. + + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:id + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the CheckedState Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:checkedState. + + + + + Initializes a new instance of the CheckedState class. + + + + + + + + Defines the UncheckedState Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:uncheckedState. + + + + + Initializes a new instance of the UncheckedState class. + + + + + + + + Defines the CheckBoxSymbolType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the CheckBoxSymbolType class. + + + + + font, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:font + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + val, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: w14:val + + + xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualInkContentPartProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:cNvContentPartPr. + + + The following table lists the possible child types: + + <a14:extLst> + <a14:cpLocks> + + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class. + + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. + + Specifies the outer XML of the element. + + + + isComment, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: isComment + + + + + ContentPartLocks. + Represents the following element tag in the schema: a14:cpLocks. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: a14:extLst. + + + xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Defines the WordNonVisualContentPartShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:nvContentPartPr. + + + The following table lists the possible child types: + + <w14:cNvPr> + <w14:cNvContentPartPr> + + + + + + Initializes a new instance of the WordNonVisualContentPartShapeProperties class. + + + + + Initializes a new instance of the WordNonVisualContentPartShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordNonVisualContentPartShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordNonVisualContentPartShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: w14:cNvPr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + NonVisualInkContentPartProperties. + Represents the following element tag in the schema: w14:cNvContentPartPr. + + + xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml + + + + + + + + Defines the Transform2D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is w14:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OnOffValues enumeration. + + + + + Creates a new OnOffValues enum instance + + + + + true. + When the item is serialized out as xml, its value is "true". + + + + + false. + When the item is serialized out as xml, its value is "false". + + + + + 0. + When the item is serialized out as xml, its value is "0". + + + + + 1. + When the item is serialized out as xml, its value is "1". + + + + + Defines the SchemeColorValues enumeration. + + + + + Creates a new SchemeColorValues enum instance + + + + + bg1. + When the item is serialized out as xml, its value is "bg1". + + + + + tx1. + When the item is serialized out as xml, its value is "tx1". + + + + + bg2. + When the item is serialized out as xml, its value is "bg2". + + + + + tx2. + When the item is serialized out as xml, its value is "tx2". + + + + + accent1. + When the item is serialized out as xml, its value is "accent1". + + + + + accent2. + When the item is serialized out as xml, its value is "accent2". + + + + + accent3. + When the item is serialized out as xml, its value is "accent3". + + + + + accent4. + When the item is serialized out as xml, its value is "accent4". + + + + + accent5. + When the item is serialized out as xml, its value is "accent5". + + + + + accent6. + When the item is serialized out as xml, its value is "accent6". + + + + + hlink. + When the item is serialized out as xml, its value is "hlink". + + + + + folHlink. + When the item is serialized out as xml, its value is "folHlink". + + + + + dk1. + When the item is serialized out as xml, its value is "dk1". + + + + + lt1. + When the item is serialized out as xml, its value is "lt1". + + + + + dk2. + When the item is serialized out as xml, its value is "dk2". + + + + + lt2. + When the item is serialized out as xml, its value is "lt2". + + + + + phClr. + When the item is serialized out as xml, its value is "phClr". + + + + + Defines the RectangleAlignmentValues enumeration. + + + + + Creates a new RectangleAlignmentValues enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + tl. + When the item is serialized out as xml, its value is "tl". + + + + + t. + When the item is serialized out as xml, its value is "t". + + + + + tr. + When the item is serialized out as xml, its value is "tr". + + + + + l. + When the item is serialized out as xml, its value is "l". + + + + + ctr. + When the item is serialized out as xml, its value is "ctr". + + + + + r. + When the item is serialized out as xml, its value is "r". + + + + + bl. + When the item is serialized out as xml, its value is "bl". + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + br. + When the item is serialized out as xml, its value is "br". + + + + + Defines the PathShadeTypeValues enumeration. + + + + + Creates a new PathShadeTypeValues enum instance + + + + + shape. + When the item is serialized out as xml, its value is "shape". + + + + + circle. + When the item is serialized out as xml, its value is "circle". + + + + + rect. + When the item is serialized out as xml, its value is "rect". + + + + + Defines the LineCapValues enumeration. + + + + + Creates a new LineCapValues enum instance + + + + + rnd. + When the item is serialized out as xml, its value is "rnd". + + + + + sq. + When the item is serialized out as xml, its value is "sq". + + + + + flat. + When the item is serialized out as xml, its value is "flat". + + + + + Defines the PresetLineDashValues enumeration. + + + + + Creates a new PresetLineDashValues enum instance + + + + + solid. + When the item is serialized out as xml, its value is "solid". + + + + + dot. + When the item is serialized out as xml, its value is "dot". + + + + + sysDot. + When the item is serialized out as xml, its value is "sysDot". + + + + + dash. + When the item is serialized out as xml, its value is "dash". + + + + + sysDash. + When the item is serialized out as xml, its value is "sysDash". + + + + + lgDash. + When the item is serialized out as xml, its value is "lgDash". + + + + + dashDot. + When the item is serialized out as xml, its value is "dashDot". + + + + + sysDashDot. + When the item is serialized out as xml, its value is "sysDashDot". + + + + + lgDashDot. + When the item is serialized out as xml, its value is "lgDashDot". + + + + + lgDashDotDot. + When the item is serialized out as xml, its value is "lgDashDotDot". + + + + + sysDashDotDot. + When the item is serialized out as xml, its value is "sysDashDotDot". + + + + + Defines the PenAlignmentValues enumeration. + + + + + Creates a new PenAlignmentValues enum instance + + + + + ctr. + When the item is serialized out as xml, its value is "ctr". + + + + + in. + When the item is serialized out as xml, its value is "in". + + + + + Defines the CompoundLineValues enumeration. + + + + + Creates a new CompoundLineValues enum instance + + + + + sng. + When the item is serialized out as xml, its value is "sng". + + + + + dbl. + When the item is serialized out as xml, its value is "dbl". + + + + + thickThin. + When the item is serialized out as xml, its value is "thickThin". + + + + + thinThick. + When the item is serialized out as xml, its value is "thinThick". + + + + + tri. + When the item is serialized out as xml, its value is "tri". + + + + + Defines the PresetCameraTypeValues enumeration. + + + + + Creates a new PresetCameraTypeValues enum instance + + + + + legacyObliqueTopLeft. + When the item is serialized out as xml, its value is "legacyObliqueTopLeft". + + + + + legacyObliqueTop. + When the item is serialized out as xml, its value is "legacyObliqueTop". + + + + + legacyObliqueTopRight. + When the item is serialized out as xml, its value is "legacyObliqueTopRight". + + + + + legacyObliqueLeft. + When the item is serialized out as xml, its value is "legacyObliqueLeft". + + + + + legacyObliqueFront. + When the item is serialized out as xml, its value is "legacyObliqueFront". + + + + + legacyObliqueRight. + When the item is serialized out as xml, its value is "legacyObliqueRight". + + + + + legacyObliqueBottomLeft. + When the item is serialized out as xml, its value is "legacyObliqueBottomLeft". + + + + + legacyObliqueBottom. + When the item is serialized out as xml, its value is "legacyObliqueBottom". + + + + + legacyObliqueBottomRight. + When the item is serialized out as xml, its value is "legacyObliqueBottomRight". + + + + + legacyPerspectiveTopLeft. + When the item is serialized out as xml, its value is "legacyPerspectiveTopLeft". + + + + + legacyPerspectiveTop. + When the item is serialized out as xml, its value is "legacyPerspectiveTop". + + + + + legacyPerspectiveTopRight. + When the item is serialized out as xml, its value is "legacyPerspectiveTopRight". + + + + + legacyPerspectiveLeft. + When the item is serialized out as xml, its value is "legacyPerspectiveLeft". + + + + + legacyPerspectiveFront. + When the item is serialized out as xml, its value is "legacyPerspectiveFront". + + + + + legacyPerspectiveRight. + When the item is serialized out as xml, its value is "legacyPerspectiveRight". + + + + + legacyPerspectiveBottomLeft. + When the item is serialized out as xml, its value is "legacyPerspectiveBottomLeft". + + + + + legacyPerspectiveBottom. + When the item is serialized out as xml, its value is "legacyPerspectiveBottom". + + + + + legacyPerspectiveBottomRight. + When the item is serialized out as xml, its value is "legacyPerspectiveBottomRight". + + + + + orthographicFront. + When the item is serialized out as xml, its value is "orthographicFront". + + + + + isometricTopUp. + When the item is serialized out as xml, its value is "isometricTopUp". + + + + + isometricTopDown. + When the item is serialized out as xml, its value is "isometricTopDown". + + + + + isometricBottomUp. + When the item is serialized out as xml, its value is "isometricBottomUp". + + + + + isometricBottomDown. + When the item is serialized out as xml, its value is "isometricBottomDown". + + + + + isometricLeftUp. + When the item is serialized out as xml, its value is "isometricLeftUp". + + + + + isometricLeftDown. + When the item is serialized out as xml, its value is "isometricLeftDown". + + + + + isometricRightUp. + When the item is serialized out as xml, its value is "isometricRightUp". + + + + + isometricRightDown. + When the item is serialized out as xml, its value is "isometricRightDown". + + + + + isometricOffAxis1Left. + When the item is serialized out as xml, its value is "isometricOffAxis1Left". + + + + + isometricOffAxis1Right. + When the item is serialized out as xml, its value is "isometricOffAxis1Right". + + + + + isometricOffAxis1Top. + When the item is serialized out as xml, its value is "isometricOffAxis1Top". + + + + + isometricOffAxis2Left. + When the item is serialized out as xml, its value is "isometricOffAxis2Left". + + + + + isometricOffAxis2Right. + When the item is serialized out as xml, its value is "isometricOffAxis2Right". + + + + + isometricOffAxis2Top. + When the item is serialized out as xml, its value is "isometricOffAxis2Top". + + + + + isometricOffAxis3Left. + When the item is serialized out as xml, its value is "isometricOffAxis3Left". + + + + + isometricOffAxis3Right. + When the item is serialized out as xml, its value is "isometricOffAxis3Right". + + + + + isometricOffAxis3Bottom. + When the item is serialized out as xml, its value is "isometricOffAxis3Bottom". + + + + + isometricOffAxis4Left. + When the item is serialized out as xml, its value is "isometricOffAxis4Left". + + + + + isometricOffAxis4Right. + When the item is serialized out as xml, its value is "isometricOffAxis4Right". + + + + + isometricOffAxis4Bottom. + When the item is serialized out as xml, its value is "isometricOffAxis4Bottom". + + + + + obliqueTopLeft. + When the item is serialized out as xml, its value is "obliqueTopLeft". + + + + + obliqueTop. + When the item is serialized out as xml, its value is "obliqueTop". + + + + + obliqueTopRight. + When the item is serialized out as xml, its value is "obliqueTopRight". + + + + + obliqueLeft. + When the item is serialized out as xml, its value is "obliqueLeft". + + + + + obliqueRight. + When the item is serialized out as xml, its value is "obliqueRight". + + + + + obliqueBottomLeft. + When the item is serialized out as xml, its value is "obliqueBottomLeft". + + + + + obliqueBottom. + When the item is serialized out as xml, its value is "obliqueBottom". + + + + + obliqueBottomRight. + When the item is serialized out as xml, its value is "obliqueBottomRight". + + + + + perspectiveFront. + When the item is serialized out as xml, its value is "perspectiveFront". + + + + + perspectiveLeft. + When the item is serialized out as xml, its value is "perspectiveLeft". + + + + + perspectiveRight. + When the item is serialized out as xml, its value is "perspectiveRight". + + + + + perspectiveAbove. + When the item is serialized out as xml, its value is "perspectiveAbove". + + + + + perspectiveBelow. + When the item is serialized out as xml, its value is "perspectiveBelow". + + + + + perspectiveAboveLeftFacing. + When the item is serialized out as xml, its value is "perspectiveAboveLeftFacing". + + + + + perspectiveAboveRightFacing. + When the item is serialized out as xml, its value is "perspectiveAboveRightFacing". + + + + + perspectiveContrastingLeftFacing. + When the item is serialized out as xml, its value is "perspectiveContrastingLeftFacing". + + + + + perspectiveContrastingRightFacing. + When the item is serialized out as xml, its value is "perspectiveContrastingRightFacing". + + + + + perspectiveHeroicLeftFacing. + When the item is serialized out as xml, its value is "perspectiveHeroicLeftFacing". + + + + + perspectiveHeroicRightFacing. + When the item is serialized out as xml, its value is "perspectiveHeroicRightFacing". + + + + + perspectiveHeroicExtremeLeftFacing. + When the item is serialized out as xml, its value is "perspectiveHeroicExtremeLeftFacing". + + + + + perspectiveHeroicExtremeRightFacing. + When the item is serialized out as xml, its value is "perspectiveHeroicExtremeRightFacing". + + + + + perspectiveRelaxed. + When the item is serialized out as xml, its value is "perspectiveRelaxed". + + + + + perspectiveRelaxedModerately. + When the item is serialized out as xml, its value is "perspectiveRelaxedModerately". + + + + + Defines the LightRigTypeValues enumeration. + + + + + Creates a new LightRigTypeValues enum instance + + + + + legacyFlat1. + When the item is serialized out as xml, its value is "legacyFlat1". + + + + + legacyFlat2. + When the item is serialized out as xml, its value is "legacyFlat2". + + + + + legacyFlat3. + When the item is serialized out as xml, its value is "legacyFlat3". + + + + + legacyFlat4. + When the item is serialized out as xml, its value is "legacyFlat4". + + + + + legacyNormal1. + When the item is serialized out as xml, its value is "legacyNormal1". + + + + + legacyNormal2. + When the item is serialized out as xml, its value is "legacyNormal2". + + + + + legacyNormal3. + When the item is serialized out as xml, its value is "legacyNormal3". + + + + + legacyNormal4. + When the item is serialized out as xml, its value is "legacyNormal4". + + + + + legacyHarsh1. + When the item is serialized out as xml, its value is "legacyHarsh1". + + + + + legacyHarsh2. + When the item is serialized out as xml, its value is "legacyHarsh2". + + + + + legacyHarsh3. + When the item is serialized out as xml, its value is "legacyHarsh3". + + + + + legacyHarsh4. + When the item is serialized out as xml, its value is "legacyHarsh4". + + + + + threePt. + When the item is serialized out as xml, its value is "threePt". + + + + + balanced. + When the item is serialized out as xml, its value is "balanced". + + + + + soft. + When the item is serialized out as xml, its value is "soft". + + + + + harsh. + When the item is serialized out as xml, its value is "harsh". + + + + + flood. + When the item is serialized out as xml, its value is "flood". + + + + + contrasting. + When the item is serialized out as xml, its value is "contrasting". + + + + + morning. + When the item is serialized out as xml, its value is "morning". + + + + + sunrise. + When the item is serialized out as xml, its value is "sunrise". + + + + + sunset. + When the item is serialized out as xml, its value is "sunset". + + + + + chilly. + When the item is serialized out as xml, its value is "chilly". + + + + + freezing. + When the item is serialized out as xml, its value is "freezing". + + + + + flat. + When the item is serialized out as xml, its value is "flat". + + + + + twoPt. + When the item is serialized out as xml, its value is "twoPt". + + + + + glow. + When the item is serialized out as xml, its value is "glow". + + + + + brightRoom. + When the item is serialized out as xml, its value is "brightRoom". + + + + + Defines the LightRigDirectionValues enumeration. + + + + + Creates a new LightRigDirectionValues enum instance + + + + + tl. + When the item is serialized out as xml, its value is "tl". + + + + + t. + When the item is serialized out as xml, its value is "t". + + + + + tr. + When the item is serialized out as xml, its value is "tr". + + + + + l. + When the item is serialized out as xml, its value is "l". + + + + + r. + When the item is serialized out as xml, its value is "r". + + + + + bl. + When the item is serialized out as xml, its value is "bl". + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + br. + When the item is serialized out as xml, its value is "br". + + + + + Defines the BevelPresetTypeValues enumeration. + + + + + Creates a new BevelPresetTypeValues enum instance + + + + + relaxedInset. + When the item is serialized out as xml, its value is "relaxedInset". + + + + + circle. + When the item is serialized out as xml, its value is "circle". + + + + + slope. + When the item is serialized out as xml, its value is "slope". + + + + + cross. + When the item is serialized out as xml, its value is "cross". + + + + + angle. + When the item is serialized out as xml, its value is "angle". + + + + + softRound. + When the item is serialized out as xml, its value is "softRound". + + + + + convex. + When the item is serialized out as xml, its value is "convex". + + + + + coolSlant. + When the item is serialized out as xml, its value is "coolSlant". + + + + + divot. + When the item is serialized out as xml, its value is "divot". + + + + + riblet. + When the item is serialized out as xml, its value is "riblet". + + + + + hardEdge. + When the item is serialized out as xml, its value is "hardEdge". + + + + + artDeco. + When the item is serialized out as xml, its value is "artDeco". + + + + + Defines the PresetMaterialTypeValues enumeration. + + + + + Creates a new PresetMaterialTypeValues enum instance + + + + + legacyMatte. + When the item is serialized out as xml, its value is "legacyMatte". + + + + + legacyPlastic. + When the item is serialized out as xml, its value is "legacyPlastic". + + + + + legacyMetal. + When the item is serialized out as xml, its value is "legacyMetal". + + + + + legacyWireframe. + When the item is serialized out as xml, its value is "legacyWireframe". + + + + + matte. + When the item is serialized out as xml, its value is "matte". + + + + + plastic. + When the item is serialized out as xml, its value is "plastic". + + + + + metal. + When the item is serialized out as xml, its value is "metal". + + + + + warmMatte. + When the item is serialized out as xml, its value is "warmMatte". + + + + + translucentPowder. + When the item is serialized out as xml, its value is "translucentPowder". + + + + + powder. + When the item is serialized out as xml, its value is "powder". + + + + + dkEdge. + When the item is serialized out as xml, its value is "dkEdge". + + + + + softEdge. + When the item is serialized out as xml, its value is "softEdge". + + + + + clear. + When the item is serialized out as xml, its value is "clear". + + + + + flat. + When the item is serialized out as xml, its value is "flat". + + + + + softmetal. + When the item is serialized out as xml, its value is "softmetal". + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + Defines the LigaturesValues enumeration. + + + + + Creates a new LigaturesValues enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + standard. + When the item is serialized out as xml, its value is "standard". + + + + + contextual. + When the item is serialized out as xml, its value is "contextual". + + + + + historical. + When the item is serialized out as xml, its value is "historical". + + + + + discretional. + When the item is serialized out as xml, its value is "discretional". + + + + + standardContextual. + When the item is serialized out as xml, its value is "standardContextual". + + + + + standardHistorical. + When the item is serialized out as xml, its value is "standardHistorical". + + + + + contextualHistorical. + When the item is serialized out as xml, its value is "contextualHistorical". + + + + + standardDiscretional. + When the item is serialized out as xml, its value is "standardDiscretional". + + + + + contextualDiscretional. + When the item is serialized out as xml, its value is "contextualDiscretional". + + + + + historicalDiscretional. + When the item is serialized out as xml, its value is "historicalDiscretional". + + + + + standardContextualHistorical. + When the item is serialized out as xml, its value is "standardContextualHistorical". + + + + + standardContextualDiscretional. + When the item is serialized out as xml, its value is "standardContextualDiscretional". + + + + + standardHistoricalDiscretional. + When the item is serialized out as xml, its value is "standardHistoricalDiscretional". + + + + + contextualHistoricalDiscretional. + When the item is serialized out as xml, its value is "contextualHistoricalDiscretional". + + + + + all. + When the item is serialized out as xml, its value is "all". + + + + + Defines the NumberFormValues enumeration. + + + + + Creates a new NumberFormValues enum instance + + + + + default. + When the item is serialized out as xml, its value is "default". + + + + + lining. + When the item is serialized out as xml, its value is "lining". + + + + + oldStyle. + When the item is serialized out as xml, its value is "oldStyle". + + + + + Defines the NumberSpacingValues enumeration. + + + + + Creates a new NumberSpacingValues enum instance + + + + + default. + When the item is serialized out as xml, its value is "default". + + + + + proportional. + When the item is serialized out as xml, its value is "proportional". + + + + + tabular. + When the item is serialized out as xml, its value is "tabular". + + + + + Defines the WordprocessingCanvas Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpc:wpc. + + + The following table lists the possible child types: + + <wpc:bg> + <wpc:extLst> + <wpc:whole> + <pic:pic> + <w14:contentPart> + <wpc:graphicFrame> + <wpg:wgp> + <wps:wsp> + + + + + + Initializes a new instance of the WordprocessingCanvas class. + + + + + Initializes a new instance of the WordprocessingCanvas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordprocessingCanvas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordprocessingCanvas class from outer XML. + + Specifies the outer XML of the element. + + + + BackgroundFormatting. + Represents the following element tag in the schema: wpc:bg. + + + xmlns:wpc = http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas + + + + + WholeFormatting. + Represents the following element tag in the schema: wpc:whole. + + + xmlns:wpc = http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas + + + + + + + + Defines the BackgroundFormatting Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpc:bg. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the BackgroundFormatting class. + + + + + Initializes a new instance of the BackgroundFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundFormatting class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WholeFormatting Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpc:whole. + + + The following table lists the possible child types: + + <a:effectDag> + <a:effectLst> + <a:ln> + + + + + + Initializes a new instance of the WholeFormatting class. + + + + + Initializes a new instance of the WholeFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WholeFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WholeFormatting class from outer XML. + + Specifies the outer XML of the element. + + + + Outline. + Represents the following element tag in the schema: a:ln. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the GraphicFrameType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpc:graphicFrame. + + + The following table lists the possible child types: + + <a:graphic> + <wpg:cNvPr> + <wpg:cNvFrPr> + <wpg:extLst> + <wpg:xfrm> + + + + + + Initializes a new instance of the GraphicFrameType class. + + + + + Initializes a new instance of the GraphicFrameType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrameType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrameType class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: wpg:cNvPr. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + NonVisualGraphicFrameProperties. + Represents the following element tag in the schema: wpg:cNvFrPr. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + Transform2D. + Represents the following element tag in the schema: wpg:xfrm. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + Graphic. + Represents the following element tag in the schema: a:graphic. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: wpg:extLst. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpc:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PercentagePositionHeightOffset Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wp14:pctPosHOffset. + + + + + Initializes a new instance of the PercentagePositionHeightOffset class. + + + + + Initializes a new instance of the PercentagePositionHeightOffset class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the PercentagePositionVerticalOffset Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wp14:pctPosVOffset. + + + + + Initializes a new instance of the PercentagePositionVerticalOffset class. + + + + + Initializes a new instance of the PercentagePositionVerticalOffset class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the RelativeWidth Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wp14:sizeRelH. + + + The following table lists the possible child types: + + <wp14:pctWidth> + + + + + + Initializes a new instance of the RelativeWidth class. + + + + + Initializes a new instance of the RelativeWidth class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RelativeWidth class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RelativeWidth class from outer XML. + + Specifies the outer XML of the element. + + + + relativeFrom, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: relativeFrom + + + + + PercentageWidth. + Represents the following element tag in the schema: wp14:pctWidth. + + + xmlns:wp14 = http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing + + + + + + + + Defines the RelativeHeight Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wp14:sizeRelV. + + + The following table lists the possible child types: + + <wp14:pctHeight> + + + + + + Initializes a new instance of the RelativeHeight class. + + + + + Initializes a new instance of the RelativeHeight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RelativeHeight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RelativeHeight class from outer XML. + + Specifies the outer XML of the element. + + + + relativeFrom, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: relativeFrom + + + + + PercentageHeight. + Represents the following element tag in the schema: wp14:pctHeight. + + + xmlns:wp14 = http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing + + + + + + + + Defines the PercentageWidth Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wp14:pctWidth. + + + + + Initializes a new instance of the PercentageWidth class. + + + + + Initializes a new instance of the PercentageWidth class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the PercentageHeight Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wp14:pctHeight. + + + + + Initializes a new instance of the PercentageHeight class. + + + + + Initializes a new instance of the PercentageHeight class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the SizeRelativeHorizontallyValues enumeration. + + + + + Creates a new SizeRelativeHorizontallyValues enum instance + + + + + margin. + When the item is serialized out as xml, its value is "margin". + + + + + page. + When the item is serialized out as xml, its value is "page". + + + + + leftMargin. + When the item is serialized out as xml, its value is "leftMargin". + + + + + rightMargin. + When the item is serialized out as xml, its value is "rightMargin". + + + + + insideMargin. + When the item is serialized out as xml, its value is "insideMargin". + + + + + outsideMargin. + When the item is serialized out as xml, its value is "outsideMargin". + + + + + Defines the SizeRelativeVerticallyValues enumeration. + + + + + Creates a new SizeRelativeVerticallyValues enum instance + + + + + margin. + When the item is serialized out as xml, its value is "margin". + + + + + page. + When the item is serialized out as xml, its value is "page". + + + + + topMargin. + When the item is serialized out as xml, its value is "topMargin". + + + + + bottomMargin. + When the item is serialized out as xml, its value is "bottomMargin". + + + + + insideMargin. + When the item is serialized out as xml, its value is "insideMargin". + + + + + outsideMargin. + When the item is serialized out as xml, its value is "outsideMargin". + + + + + Defines the WordprocessingGroup Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:wgp. + + + The following table lists the possible child types: + + <wpg:grpSpPr> + <wpg:cNvPr> + <wpg:cNvGrpSpPr> + <wpg:extLst> + <pic:pic> + <w14:contentPart> + <wpg:graphicFrame> + <wpg:grpSp> + <wps:wsp> + + + + + + Initializes a new instance of the WordprocessingGroup class. + + + + + Initializes a new instance of the WordprocessingGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordprocessingGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordprocessingGroup class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GroupShape Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:grpSp. + + + The following table lists the possible child types: + + <wpg:grpSpPr> + <wpg:cNvPr> + <wpg:cNvGrpSpPr> + <wpg:extLst> + <pic:pic> + <w14:contentPart> + <wpg:graphicFrame> + <wpg:grpSp> + <wps:wsp> + + + + + + Initializes a new instance of the GroupShape class. + + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WordprocessingGroupType Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <wpg:grpSpPr> + <wpg:cNvPr> + <wpg:cNvGrpSpPr> + <wpg:extLst> + <pic:pic> + <w14:contentPart> + <wpg:graphicFrame> + <wpg:grpSp> + <wps:wsp> + + + + + + Initializes a new instance of the WordprocessingGroupType class. + + + + + Initializes a new instance of the WordprocessingGroupType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordprocessingGroupType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordprocessingGroupType class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: wpg:cNvPr. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + NonVisualGroupDrawingShapeProperties. + Represents the following element tag in the schema: wpg:cNvGrpSpPr. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + GroupShapeProperties. + Represents the following element tag in the schema: wpg:grpSpPr. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualGraphicFrameProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:cNvFrPr. + + + The following table lists the possible child types: + + <a:graphicFrameLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Graphic Frame Locks. + Represents the following element tag in the schema: a:graphicFrameLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the Transform2D Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NonVisualGroupDrawingShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:cNvGrpSpPr. + + + The following table lists the possible child types: + + <a:grpSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProperties class. + + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + GroupShapeLocks. + Represents the following element tag in the schema: a:grpSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualGroupDrawingShapePropsExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the GroupShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:grpSpPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:xfrm> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:scene3d> + <a:solidFill> + + + + + + Initializes a new instance of the GroupShapeProperties class. + + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Grouped Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the GraphicFrame Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wpg:graphicFrame. + + + The following table lists the possible child types: + + <a:graphic> + <wpg:cNvPr> + <wpg:cNvFrPr> + <wpg:extLst> + <wpg:xfrm> + + + + + + Initializes a new instance of the GraphicFrame class. + + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: wpg:cNvPr. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + NonVisualGraphicFrameProperties. + Represents the following element tag in the schema: wpg:cNvFrPr. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + Transform2D. + Represents the following element tag in the schema: wpg:xfrm. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + Graphic. + Represents the following element tag in the schema: a:graphic. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: wpg:extLst. + + + xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup + + + + + + + + Defines the WordprocessingShape Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:wsp. + + + The following table lists the possible child types: + + <wps:cNvCnPr> + <wps:cNvPr> + <wps:cNvSpPr> + <wps:extLst> + <wps:spPr> + <wps:style> + <wps:bodyPr> + <wps:linkedTxbx> + <wps:txbx> + + + + + + Initializes a new instance of the WordprocessingShape class. + + + + + Initializes a new instance of the WordprocessingShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordprocessingShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WordprocessingShape class from outer XML. + + Specifies the outer XML of the element. + + + + normalEastAsianFlow, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: normalEastAsianFlow + + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: wps:cNvPr. + + + xmlns:wps = http://schemas.microsoft.com/office/word/2010/wordprocessingShape + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualDrawingShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:cNvSpPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:spLocks> + + + + + + Initializes a new instance of the NonVisualDrawingShapeProperties class. + + + + + Initializes a new instance of the NonVisualDrawingShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Text Box + Represents the following attribute in the schema: txBox + + + + + Shape Locks. + Represents the following element tag in the schema: a:spLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualConnectorProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:cNvCnPr. + + + The following table lists the possible child types: + + <a:stCxn> + <a:endCxn> + <a:cxnSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualConnectorProperties class. + + + + + Initializes a new instance of the NonVisualConnectorProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Shape Locks. + Represents the following element tag in the schema: a:cxnSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection Start. + Represents the following element tag in the schema: a:stCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection End. + Represents the following element tag in the schema: a:endCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ShapeStyle Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:style. + + + The following table lists the possible child types: + + <a:fontRef> + <a:lnRef> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the ShapeStyle class. + + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class from outer XML. + + Specifies the outer XML of the element. + + + + LineReference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillReference. + Represents the following element tag in the schema: a:fillRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + EffectReference. + Represents the following element tag in the schema: a:effectRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Reference. + Represents the following element tag in the schema: a:fontRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the TextBoxInfo2 Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:txbx. + + + The following table lists the possible child types: + + <wps:extLst> + <w:txbxContent> + + + + + + Initializes a new instance of the TextBoxInfo2 class. + + + + + Initializes a new instance of the TextBoxInfo2 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBoxInfo2 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBoxInfo2 class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + TextBoxContent. + Represents the following element tag in the schema: w:txbxContent. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: wps:extLst. + + + xmlns:wps = http://schemas.microsoft.com/office/word/2010/wordprocessingShape + + + + + + + + Defines the LinkedTextBox Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:linkedTxbx. + + + The following table lists the possible child types: + + <wps:extLst> + + + + + + Initializes a new instance of the LinkedTextBox class. + + + + + Initializes a new instance of the LinkedTextBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinkedTextBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinkedTextBox class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: id + + + + + seq, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: seq + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: wps:extLst. + + + xmlns:wps = http://schemas.microsoft.com/office/word/2010/wordprocessingShape + + + + + + + + Defines the TextBodyProperties Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is wps:bodyPr. + + + The following table lists the possible child types: + + <a:flatTx> + <a:extLst> + <a:prstTxWarp> + <a:scene3d> + <a:sp3d> + <a:noAutofit> + <a:normAutofit> + <a:spAutoFit> + + + + + + Initializes a new instance of the TextBodyProperties class. + + + + + Initializes a new instance of the TextBodyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Paragraph Spacing + Represents the following attribute in the schema: spcFirstLastPara + + + + + Text Vertical Overflow + Represents the following attribute in the schema: vertOverflow + + + + + Text Horizontal Overflow + Represents the following attribute in the schema: horzOverflow + + + + + Vertical Text + Represents the following attribute in the schema: vert + + + + + Text Wrapping Type + Represents the following attribute in the schema: wrap + + + + + Left Inset + Represents the following attribute in the schema: lIns + + + + + Top Inset + Represents the following attribute in the schema: tIns + + + + + Right Inset + Represents the following attribute in the schema: rIns + + + + + Bottom Inset + Represents the following attribute in the schema: bIns + + + + + Number of Columns + Represents the following attribute in the schema: numCol + + + + + Space Between Columns + Represents the following attribute in the schema: spcCol + + + + + Columns Right-To-Left + Represents the following attribute in the schema: rtlCol + + + + + From WordArt + Represents the following attribute in the schema: fromWordArt + + + + + Anchor + Represents the following attribute in the schema: anchor + + + + + Anchor Center + Represents the following attribute in the schema: anchorCtr + + + + + Force Anti-Alias + Represents the following attribute in the schema: forceAA + + + + + Text Upright + Represents the following attribute in the schema: upright + + + + + Compatible Line Spacing + Represents the following attribute in the schema: compatLnSpc + + + + + Preset Text Shape. + Represents the following element tag in the schema: a:prstTxWarp. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the PivotSource Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:pivotSource. + + + The following table lists the possible child types: + + <c:extLst> + <c:fmtId> + <c:name> + + + + + + Initializes a new instance of the PivotSource class. + + + + + Initializes a new instance of the PivotSource class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotSource class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotSource class from outer XML. + + Specifies the outer XML of the element. + + + + Pivot Name. + Represents the following element tag in the schema: c:name. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Format ID. + Represents the following element tag in the schema: c:fmtId. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the NumberingFormat Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:numFmt. + + + + + Initializes a new instance of the NumberingFormat class. + + + + + Number Format Code + Represents the following attribute in the schema: formatCode + + + + + Linked to Source + Represents the following attribute in the schema: sourceLinked + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the Layout Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:layout. + + + The following table lists the possible child types: + + <c:extLst> + <c:manualLayout> + + + + + + Initializes a new instance of the Layout class. + + + + + Initializes a new instance of the Layout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Layout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Layout class from outer XML. + + Specifies the outer XML of the element. + + + + Manual Layout. + Represents the following element tag in the schema: c:manualLayout. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the FullReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:fullRef. + + + The following table lists the possible child types: + + <c15:sqref> + + + + + + Initializes a new instance of the FullReference class. + + + + + Initializes a new instance of the FullReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FullReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FullReference class from outer XML. + + Specifies the outer XML of the element. + + + + SequenceOfReferences. + Represents the following element tag in the schema: c15:sqref. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the LevelReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:levelRef. + + + The following table lists the possible child types: + + <c15:sqref> + + + + + + Initializes a new instance of the LevelReference class. + + + + + Initializes a new instance of the LevelReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LevelReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LevelReference class from outer XML. + + Specifies the outer XML of the element. + + + + SequenceOfReferences. + Represents the following element tag in the schema: c15:sqref. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FormulaReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:formulaRef. + + + The following table lists the possible child types: + + <c15:sqref> + + + + + + Initializes a new instance of the FormulaReference class. + + + + + Initializes a new instance of the FormulaReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormulaReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormulaReference class from outer XML. + + Specifies the outer XML of the element. + + + + SequenceOfReferences. + Represents the following element tag in the schema: c15:sqref. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredSeriesTitle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredSeriesTitle. + + + The following table lists the possible child types: + + <c15:tx> + + + + + + Initializes a new instance of the FilteredSeriesTitle class. + + + + + Initializes a new instance of the FilteredSeriesTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredSeriesTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredSeriesTitle class from outer XML. + + Specifies the outer XML of the element. + + + + ChartText. + Represents the following element tag in the schema: c15:tx. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredCategoryTitle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredCategoryTitle. + + + The following table lists the possible child types: + + <c15:cat> + + + + + + Initializes a new instance of the FilteredCategoryTitle class. + + + + + Initializes a new instance of the FilteredCategoryTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredCategoryTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredCategoryTitle class from outer XML. + + Specifies the outer XML of the element. + + + + AxisDataSourceType. + Represents the following element tag in the schema: c15:cat. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredAreaSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredAreaSeries. + + + The following table lists the possible child types: + + <c15:ser> + + + + + + Initializes a new instance of the FilteredAreaSeries class. + + + + + Initializes a new instance of the FilteredAreaSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredAreaSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredAreaSeries class from outer XML. + + Specifies the outer XML of the element. + + + + AreaChartSeries. + Represents the following element tag in the schema: c15:ser. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredBarSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredBarSeries. + + + The following table lists the possible child types: + + <c15:ser> + + + + + + Initializes a new instance of the FilteredBarSeries class. + + + + + Initializes a new instance of the FilteredBarSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredBarSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredBarSeries class from outer XML. + + Specifies the outer XML of the element. + + + + BarChartSeries. + Represents the following element tag in the schema: c15:ser. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredBubbleSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredBubbleSeries. + + + The following table lists the possible child types: + + <c15:ser> + + + + + + Initializes a new instance of the FilteredBubbleSeries class. + + + + + Initializes a new instance of the FilteredBubbleSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredBubbleSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredBubbleSeries class from outer XML. + + Specifies the outer XML of the element. + + + + BubbleChartSeries. + Represents the following element tag in the schema: c15:ser. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredLineSeriesExtension Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredLineSeries. + + + The following table lists the possible child types: + + <c15:ser> + + + + + + Initializes a new instance of the FilteredLineSeriesExtension class. + + + + + Initializes a new instance of the FilteredLineSeriesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredLineSeriesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredLineSeriesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + LineChartSeries. + Represents the following element tag in the schema: c15:ser. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredPieSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredPieSeries. + + + The following table lists the possible child types: + + <c15:ser> + + + + + + Initializes a new instance of the FilteredPieSeries class. + + + + + Initializes a new instance of the FilteredPieSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredPieSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredPieSeries class from outer XML. + + Specifies the outer XML of the element. + + + + PieChartSeries. + Represents the following element tag in the schema: c15:ser. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredRadarSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredRadarSeries. + + + The following table lists the possible child types: + + <c15:ser> + + + + + + Initializes a new instance of the FilteredRadarSeries class. + + + + + Initializes a new instance of the FilteredRadarSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredRadarSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredRadarSeries class from outer XML. + + Specifies the outer XML of the element. + + + + RadarChartSeries. + Represents the following element tag in the schema: c15:ser. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredScatterSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredScatterSeries. + + + The following table lists the possible child types: + + <c15:ser> + + + + + + Initializes a new instance of the FilteredScatterSeries class. + + + + + Initializes a new instance of the FilteredScatterSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredScatterSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredScatterSeries class from outer XML. + + Specifies the outer XML of the element. + + + + ScatterChartSeries. + Represents the following element tag in the schema: c15:ser. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the FilteredSurfaceSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:filteredSurfaceSeries. + + + The following table lists the possible child types: + + <c15:ser> + + + + + + Initializes a new instance of the FilteredSurfaceSeries class. + + + + + Initializes a new instance of the FilteredSurfaceSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredSurfaceSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FilteredSurfaceSeries class from outer XML. + + Specifies the outer XML of the element. + + + + SurfaceChartSeries. + Represents the following element tag in the schema: c15:ser. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the DataLabelsRange Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:datalabelsRange. + + + The following table lists the possible child types: + + <c15:dlblRangeCache> + <c15:f> + + + + + + Initializes a new instance of the DataLabelsRange class. + + + + + Initializes a new instance of the DataLabelsRange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelsRange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelsRange class from outer XML. + + Specifies the outer XML of the element. + + + + Formula. + Represents the following element tag in the schema: c15:f. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + DataLabelsRangeChache. + Represents the following element tag in the schema: c15:dlblRangeCache. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the CategoryFilterExceptions Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:categoryFilterExceptions. + + + The following table lists the possible child types: + + <c15:categoryFilterException> + + + + + + Initializes a new instance of the CategoryFilterExceptions class. + + + + + Initializes a new instance of the CategoryFilterExceptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryFilterExceptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryFilterExceptions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataLabelFieldTable Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:dlblFieldTable. + + + The following table lists the possible child types: + + <c15:dlblFTEntry> + + + + + + Initializes a new instance of the DataLabelFieldTable class. + + + + + Initializes a new instance of the DataLabelFieldTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelFieldTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelFieldTable class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExceptionForSave Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:xForSave. + + + + + Initializes a new instance of the ExceptionForSave class. + + + + + + + + Defines the ShowDataLabelsRange Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:showDataLabelsRange. + + + + + Initializes a new instance of the ShowDataLabelsRange class. + + + + + + + + Defines the ShowLeaderLines Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:showLeaderLines. + + + + + Initializes a new instance of the ShowLeaderLines class. + + + + + + + + Defines the AutoGeneneratedCategories Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:autoCat. + + + + + Initializes a new instance of the AutoGeneneratedCategories class. + + + + + + + + Defines the InvertIfNegativeBoolean Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:invertIfNegative. + + + + + Initializes a new instance of the InvertIfNegativeBoolean class. + + + + + + + + Defines the Bubble3D Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:bubble3D. + + + + + Initializes a new instance of the Bubble3D class. + + + + + + + + Defines the BooleanType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BooleanType class. + + + + + Boolean Value + Represents the following attribute in the schema: val + + + + + Defines the ChartText Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:tx. + + + The following table lists the possible child types: + + <c:rich> + <c:strLit> + <c:strRef> + + + + + + Initializes a new instance of the ChartText class. + + + + + Initializes a new instance of the ChartText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartText class from outer XML. + + Specifies the outer XML of the element. + + + + String Reference. + Represents the following element tag in the schema: c:strRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Rich Text. + Represents the following element tag in the schema: c:rich. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + String Literal. + Represents the following element tag in the schema: c:strLit. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the LeaderLines Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:leaderLines. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the LeaderLines class. + + + + + Initializes a new instance of the LeaderLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeaderLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeaderLines class from outer XML. + + Specifies the outer XML of the element. + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the SequenceOfReferences Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:sqref. + + + + + Initializes a new instance of the SequenceOfReferences class. + + + + + Initializes a new instance of the SequenceOfReferences class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Formula Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:f. + + + + + Initializes a new instance of the Formula class. + + + + + Initializes a new instance of the Formula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the TextFieldGuid Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:txfldGUID. + + + + + Initializes a new instance of the TextFieldGuid class. + + + + + Initializes a new instance of the TextFieldGuid class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the AxisDataSourceType Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:cat. + + + The following table lists the possible child types: + + <c:multiLvlStrRef> + <c:numLit> + <c:numRef> + <c:strLit> + <c:strRef> + + + + + + Initializes a new instance of the AxisDataSourceType class. + + + + + Initializes a new instance of the AxisDataSourceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisDataSourceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisDataSourceType class from outer XML. + + Specifies the outer XML of the element. + + + + Multi Level String Reference. + Represents the following element tag in the schema: c:multiLvlStrRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Reference. + Represents the following element tag in the schema: c:numRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Literal. + Represents the following element tag in the schema: c:numLit. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + StringReference. + Represents the following element tag in the schema: c:strRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + String Literal. + Represents the following element tag in the schema: c:strLit. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the BarChartSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:extLst> + <c:invertIfNegative> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:val> + <c:pictureOptions> + <c:tx> + <c:shape> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the BarChartSeries class. + + + + + Initializes a new instance of the BarChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + InvertIfNegative. + Represents the following element tag in the schema: c:invertIfNegative. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the LineChartSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:smooth> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:extLst> + <c:marker> + <c:val> + <c:pictureOptions> + <c:tx> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the LineChartSeries class. + + + + + Initializes a new instance of the LineChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Marker. + Represents the following element tag in the schema: c:marker. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the ScatterChartSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:xVal> + <c:smooth> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:marker> + <c:yVal> + <c:extLst> + <c:tx> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the ScatterChartSeries class. + + + + + Initializes a new instance of the ScatterChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Marker. + Represents the following element tag in the schema: c:marker. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the AreaChartSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:cat> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:val> + <c:pictureOptions> + <c:tx> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the AreaChartSeries class. + + + + + Initializes a new instance of the AreaChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the PieChartSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:dLbls> + <c:dPt> + <c:val> + <c:pictureOptions> + <c:extLst> + <c:tx> + <c:idx> + <c:order> + <c:explosion> + + + + + + Initializes a new instance of the PieChartSeries class. + + + + + Initializes a new instance of the PieChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Explosion. + Represents the following element tag in the schema: c:explosion. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the BubbleChartSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:xVal> + <c:invertIfNegative> + <c:bubble3D> + <c:extLst> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:yVal> + <c:bubbleSize> + <c:pictureOptions> + <c:tx> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the BubbleChartSeries class. + + + + + Initializes a new instance of the BubbleChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + InvertIfNegative. + Represents the following element tag in the schema: c:invertIfNegative. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the RadarChartSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:dLbls> + <c:dPt> + <c:marker> + <c:val> + <c:pictureOptions> + <c:extLst> + <c:tx> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the RadarChartSeries class. + + + + + Initializes a new instance of the RadarChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Marker. + Represents the following element tag in the schema: c:marker. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the SurfaceChartSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:bubble3D> + <c:val> + <c:pictureOptions> + <c:tx> + <c:extLst> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the SurfaceChartSeries class. + + + + + Initializes a new instance of the SurfaceChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + CategoryAxisData. + Represents the following element tag in the schema: c:cat. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Values. + Represents the following element tag in the schema: c:val. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Bubble3D. + Represents the following element tag in the schema: c:bubble3D. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + SurfaceSerExtensionList. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the DataLabelsRangeChache Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:dlblRangeCache. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + + + + + + Initializes a new instance of the DataLabelsRangeChache class. + + + + + Initializes a new instance of the DataLabelsRangeChache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelsRangeChache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelsRangeChache class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataLabelFieldTableCache Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:dlblFieldTableCache. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + + + + + + Initializes a new instance of the DataLabelFieldTableCache class. + + + + + Initializes a new instance of the DataLabelFieldTableCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelFieldTableCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelFieldTableCache class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StringDataType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + + + + + + Initializes a new instance of the StringDataType class. + + + + + Initializes a new instance of the StringDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringDataType class from outer XML. + + Specifies the outer XML of the element. + + + + PointCount. + Represents the following element tag in the schema: c:ptCount. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Defines the Explosion Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:explosion. + + + + + Initializes a new instance of the Explosion class. + + + + + Integer Value + Represents the following attribute in the schema: val + + + + + + + + Defines the Marker Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:marker. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:size> + <c:symbol> + + + + + + Initializes a new instance of the Marker class. + + + + + Initializes a new instance of the Marker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Marker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Marker class from outer XML. + + Specifies the outer XML of the element. + + + + Symbol. + Represents the following element tag in the schema: c:symbol. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Size. + Represents the following element tag in the schema: c:size. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the DataLabel Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:dLbl. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:delete> + <c:showLegendKey> + <c:showVal> + <c:showCatName> + <c:showSerName> + <c:showPercent> + <c:showBubbleSize> + <c:extLst> + <c:dLblPos> + <c:layout> + <c:numFmt> + <c:tx> + <c:idx> + <c:separator> + + + + + + Initializes a new instance of the DataLabel class. + + + + + Initializes a new instance of the DataLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabel class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the CategoryFilterException Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:categoryFilterException. + + + The following table lists the possible child types: + + <c15:spPr> + <c15:invertIfNegative> + <c15:bubble3D> + <c15:dLbl> + <c15:marker> + <c15:explosion> + <c15:sqref> + + + + + + Initializes a new instance of the CategoryFilterException class. + + + + + Initializes a new instance of the CategoryFilterException class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryFilterException class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryFilterException class from outer XML. + + Specifies the outer XML of the element. + + + + SequenceOfReferences. + Represents the following element tag in the schema: c15:sqref. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + ShapeProperties. + Represents the following element tag in the schema: c15:spPr. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + Explosion. + Represents the following element tag in the schema: c15:explosion. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + InvertIfNegativeBoolean. + Represents the following element tag in the schema: c15:invertIfNegative. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + Bubble3D. + Represents the following element tag in the schema: c15:bubble3D. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + Marker. + Represents the following element tag in the schema: c15:marker. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + DataLabel. + Represents the following element tag in the schema: c15:dLbl. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the DataLabelFieldTableEntry Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is c15:dlblFTEntry. + + + The following table lists the possible child types: + + <c15:dlblFieldTableCache> + <c15:txfldGUID> + <c15:f> + + + + + + Initializes a new instance of the DataLabelFieldTableEntry class. + + + + + Initializes a new instance of the DataLabelFieldTableEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelFieldTableEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelFieldTableEntry class from outer XML. + + Specifies the outer XML of the element. + + + + TextFieldGuid. + Represents the following element tag in the schema: c15:txfldGUID. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + Formula. + Represents the following element tag in the schema: c15:f. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + DataLabelFieldTableCache. + Represents the following element tag in the schema: c15:dlblFieldTableCache. + + + xmlns:c15 = http://schemas.microsoft.com/office/drawing/2012/chart + + + + + + + + Defines the ColorStyle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:colorStyle. + + + The following table lists the possible child types: + + <a:hslClr> + <cs:extLst> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + <cs:variation> + + + + + + Initializes a new instance of the ColorStyle class. + + + + + Initializes a new instance of the ColorStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorStyle class from outer XML. + + Specifies the outer XML of the element. + + + + meth, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: meth + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + + + + Loads the DOM from the ChartColorStylePart + + Specifies the part to be loaded. + + + + Saves the DOM into the ChartColorStylePart. + + Specifies the part to save to. + + + + Gets the ChartColorStylePart associated with this element. + + + + + Defines the ChartStyle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:chartStyle. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:dataPointMarkerLayout> + <cs:axisTitle> + <cs:categoryAxis> + <cs:chartArea> + <cs:dataLabel> + <cs:dataLabelCallout> + <cs:dataPoint> + <cs:dataPoint3D> + <cs:dataPointLine> + <cs:dataPointMarker> + <cs:dataPointWireframe> + <cs:dataTable> + <cs:downBar> + <cs:dropLine> + <cs:errorBar> + <cs:floor> + <cs:gridlineMajor> + <cs:gridlineMinor> + <cs:hiLoLine> + <cs:leaderLine> + <cs:legend> + <cs:plotArea> + <cs:plotArea3D> + <cs:seriesAxis> + <cs:seriesLine> + <cs:title> + <cs:trendline> + <cs:trendlineLabel> + <cs:upBar> + <cs:valueAxis> + <cs:wall> + + + + + + Initializes a new instance of the ChartStyle class. + + + + + Initializes a new instance of the ChartStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartStyle class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + AxisTitle. + Represents the following element tag in the schema: cs:axisTitle. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + CategoryAxis. + Represents the following element tag in the schema: cs:categoryAxis. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + ChartArea. + Represents the following element tag in the schema: cs:chartArea. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DataLabel. + Represents the following element tag in the schema: cs:dataLabel. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DataLabelCallout. + Represents the following element tag in the schema: cs:dataLabelCallout. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DataPoint. + Represents the following element tag in the schema: cs:dataPoint. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DataPoint3D. + Represents the following element tag in the schema: cs:dataPoint3D. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DataPointLine. + Represents the following element tag in the schema: cs:dataPointLine. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DataPointMarker. + Represents the following element tag in the schema: cs:dataPointMarker. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + MarkerLayoutProperties. + Represents the following element tag in the schema: cs:dataPointMarkerLayout. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DataPointWireframe. + Represents the following element tag in the schema: cs:dataPointWireframe. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DataTableStyle. + Represents the following element tag in the schema: cs:dataTable. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DownBar. + Represents the following element tag in the schema: cs:downBar. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + DropLine. + Represents the following element tag in the schema: cs:dropLine. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + ErrorBar. + Represents the following element tag in the schema: cs:errorBar. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + Floor. + Represents the following element tag in the schema: cs:floor. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + GridlineMajor. + Represents the following element tag in the schema: cs:gridlineMajor. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + GridlineMinor. + Represents the following element tag in the schema: cs:gridlineMinor. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + HiLoLine. + Represents the following element tag in the schema: cs:hiLoLine. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + LeaderLine. + Represents the following element tag in the schema: cs:leaderLine. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + LegendStyle. + Represents the following element tag in the schema: cs:legend. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + PlotArea. + Represents the following element tag in the schema: cs:plotArea. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + PlotArea3D. + Represents the following element tag in the schema: cs:plotArea3D. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + SeriesAxis. + Represents the following element tag in the schema: cs:seriesAxis. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + SeriesLine. + Represents the following element tag in the schema: cs:seriesLine. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + TitleStyle. + Represents the following element tag in the schema: cs:title. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + TrendlineStyle. + Represents the following element tag in the schema: cs:trendline. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + TrendlineLabel. + Represents the following element tag in the schema: cs:trendlineLabel. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + UpBar. + Represents the following element tag in the schema: cs:upBar. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + ValueAxis. + Represents the following element tag in the schema: cs:valueAxis. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + Wall. + Represents the following element tag in the schema: cs:wall. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: cs:extLst. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + + + + Loads the DOM from the ChartStylePart + + Specifies the part to be loaded. + + + + Saves the DOM into the ChartStylePart. + + Specifies the part to save to. + + + + Gets the ChartStylePart associated with this element. + + + + + Defines the ColorStyleVariation Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:variation. + + + The following table lists the possible child types: + + <a:hueOff> + <a:comp> + <a:alphaOff> + <a:gamma> + <a:gray> + <a:invGamma> + <a:inv> + <a:sat> + <a:satOff> + <a:satMod> + <a:lum> + <a:lumOff> + <a:lumMod> + <a:red> + <a:redOff> + <a:redMod> + <a:green> + <a:greenOff> + <a:greenMod> + <a:blue> + <a:blueOff> + <a:blueMod> + <a:hue> + <a:tint> + <a:shade> + <a:alpha> + <a:alphaMod> + <a:hueMod> + + + + + + Initializes a new instance of the ColorStyleVariation class. + + + + + Initializes a new instance of the ColorStyleVariation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorStyleVariation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorStyleVariation class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StyleColor Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:styleClr. + + + The following table lists the possible child types: + + <a:hueOff> + <a:comp> + <a:alphaOff> + <a:gamma> + <a:gray> + <a:invGamma> + <a:inv> + <a:sat> + <a:satOff> + <a:satMod> + <a:lum> + <a:lumOff> + <a:lumMod> + <a:red> + <a:redOff> + <a:redMod> + <a:green> + <a:greenOff> + <a:greenMod> + <a:blue> + <a:blueOff> + <a:blueMod> + <a:hue> + <a:tint> + <a:shade> + <a:alpha> + <a:alphaMod> + <a:hueMod> + + + + + + Initializes a new instance of the StyleColor class. + + + + + Initializes a new instance of the StyleColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleColor class from outer XML. + + Specifies the outer XML of the element. + + + + val, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the LineReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:lnRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + <cs:styleClr> + + + + + + Initializes a new instance of the LineReference class. + + + + + Initializes a new instance of the LineReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the FillReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:fillRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + <cs:styleClr> + + + + + + Initializes a new instance of the FillReference class. + + + + + Initializes a new instance of the FillReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the EffectReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:effectRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + <cs:styleClr> + + + + + + Initializes a new instance of the EffectReference class. + + + + + Initializes a new instance of the EffectReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StyleReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + <cs:styleClr> + + + + + + Initializes a new instance of the StyleReference class. + + + + + Initializes a new instance of the StyleReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleReference class from outer XML. + + Specifies the outer XML of the element. + + + + idx, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: idx + + + + + mods, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: mods + + + + + Defines the LineWidthScale Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:lineWidthScale. + + + + + Initializes a new instance of the LineWidthScale class. + + + + + Initializes a new instance of the LineWidthScale class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the FontReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:fontRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + <cs:styleClr> + + + + + + Initializes a new instance of the FontReference class. + + + + + Initializes a new instance of the FontReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontReference class from outer XML. + + Specifies the outer XML of the element. + + + + idx, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: idx + + + + + mods, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: mods + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the TextCharacterPropertiesType Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:defRPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:rtl> + <a:highlight> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:hlinkClick> + <a:hlinkMouseOver> + <a:ln> + <a:uLn> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:solidFill> + <a:latin> + <a:ea> + <a:cs> + <a:sym> + <a:uFillTx> + <a:uFill> + <a:uLnTx> + + + + + + Initializes a new instance of the TextCharacterPropertiesType class. + + + + + Initializes a new instance of the TextCharacterPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextCharacterPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextCharacterPropertiesType class from outer XML. + + Specifies the outer XML of the element. + + + + kumimoji + Represents the following attribute in the schema: kumimoji + + + + + lang + Represents the following attribute in the schema: lang + + + + + altLang + Represents the following attribute in the schema: altLang + + + + + sz + Represents the following attribute in the schema: sz + + + + + b + Represents the following attribute in the schema: b + + + + + i + Represents the following attribute in the schema: i + + + + + u + Represents the following attribute in the schema: u + + + + + strike + Represents the following attribute in the schema: strike + + + + + kern + Represents the following attribute in the schema: kern + + + + + cap + Represents the following attribute in the schema: cap + + + + + spc + Represents the following attribute in the schema: spc + + + + + normalizeH + Represents the following attribute in the schema: normalizeH + + + + + baseline + Represents the following attribute in the schema: baseline + + + + + noProof + Represents the following attribute in the schema: noProof + + + + + dirty + Represents the following attribute in the schema: dirty + + + + + err + Represents the following attribute in the schema: err + + + + + smtClean + Represents the following attribute in the schema: smtClean + + + + + smtId + Represents the following attribute in the schema: smtId + + + + + bmk + Represents the following attribute in the schema: bmk + + + + + Outline. + Represents the following element tag in the schema: a:ln. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the TextBodyProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:bodyPr. + + + The following table lists the possible child types: + + <a:flatTx> + <a:extLst> + <a:prstTxWarp> + <a:scene3d> + <a:sp3d> + <a:noAutofit> + <a:normAutofit> + <a:spAutoFit> + + + + + + Initializes a new instance of the TextBodyProperties class. + + + + + Initializes a new instance of the TextBodyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Paragraph Spacing + Represents the following attribute in the schema: spcFirstLastPara + + + + + Text Vertical Overflow + Represents the following attribute in the schema: vertOverflow + + + + + Text Horizontal Overflow + Represents the following attribute in the schema: horzOverflow + + + + + Vertical Text + Represents the following attribute in the schema: vert + + + + + Text Wrapping Type + Represents the following attribute in the schema: wrap + + + + + Left Inset + Represents the following attribute in the schema: lIns + + + + + Top Inset + Represents the following attribute in the schema: tIns + + + + + Right Inset + Represents the following attribute in the schema: rIns + + + + + Bottom Inset + Represents the following attribute in the schema: bIns + + + + + Number of Columns + Represents the following attribute in the schema: numCol + + + + + Space Between Columns + Represents the following attribute in the schema: spcCol + + + + + Columns Right-To-Left + Represents the following attribute in the schema: rtlCol + + + + + From WordArt + Represents the following attribute in the schema: fromWordArt + + + + + Anchor + Represents the following attribute in the schema: anchor + + + + + Anchor Center + Represents the following attribute in the schema: anchorCtr + + + + + Force Anti-Alias + Represents the following attribute in the schema: forceAA + + + + + Text Upright + Represents the following attribute in the schema: upright + + + + + Compatible Line Spacing + Represents the following attribute in the schema: compatLnSpc + + + + + Preset Text Shape. + Represents the following element tag in the schema: a:prstTxWarp. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the CategoryAxisProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:categoryAxis. + + + + + Initializes a new instance of the CategoryAxisProperties class. + + + + + + + + Defines the SeriesAxisProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:seriesAxis. + + + + + Initializes a new instance of the SeriesAxisProperties class. + + + + + + + + Defines the ValueAxisProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:valueAxis. + + + + + Initializes a new instance of the ValueAxisProperties class. + + + + + + + + Defines the AxisProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the AxisProperties class. + + + + + visible, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: visible + + + + + majorTick, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: majorTick + + + + + minorTick, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: minorTick + + + + + labelPosition, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: labelPosition + + + + + majorGridlines, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: majorGridlines + + + + + minorGridlines, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: minorGridlines + + + + + title, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: title + + + + + Defines the DataSeries Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataSeries. + + + + + Initializes a new instance of the DataSeries class. + + + + + overlap, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: overlap + + + + + gapWidth, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: gapWidth + + + + + gapDepth, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: gapDepth + + + + + doughnutHoleSize, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: doughnutHoleSize + + + + + markerVisible, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: markerVisible + + + + + hiloLines, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: hiloLines + + + + + dropLines, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: dropLines + + + + + seriesLines, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: seriesLines + + + + + + + + Defines the DataLabels Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataLabels. + + + + + Initializes a new instance of the DataLabels class. + + + + + position, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: position + + + + + value, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: value + + + + + seriesName, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: seriesName + + + + + categoryName, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: categoryName + + + + + legendKey, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: legendKey + + + + + percentage, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: percentage + + + + + + + + Defines the DataTable Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataTable. + + + + + Initializes a new instance of the DataTable class. + + + + + legendKeys, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: legendKeys + + + + + horizontalBorder, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: horizontalBorder + + + + + verticalBorder, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: verticalBorder + + + + + outlineBorder, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: outlineBorder + + + + + + + + Defines the Legend Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:legend. + + + + + Initializes a new instance of the Legend class. + + + + + visible, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: visible + + + + + includeInLayout, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: includeInLayout + + + + + position, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: position + + + + + + + + Defines the Title Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:title. + + + + + Initializes a new instance of the Title class. + + + + + position, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: position + + + + + + + + Defines the Trendline Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:trendline. + + + + + Initializes a new instance of the Trendline class. + + + + + add, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: add + + + + + equation, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: equation + + + + + rsquared, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: rsquared + + + + + + + + Defines the View3DProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:view3D. + + + + + Initializes a new instance of the View3DProperties class. + + + + + rotX, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: rotX + + + + + rotY, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: rotY + + + + + rAngAx, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: rAngAx + + + + + perspective, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: perspective + + + + + heightPercent, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: heightPercent + + + + + depthPercent, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: depthPercent + + + + + + + + Defines the AxisTitle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:axisTitle. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the AxisTitle class. + + + + + Initializes a new instance of the AxisTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisTitle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CategoryAxis Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:categoryAxis. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the CategoryAxis class. + + + + + Initializes a new instance of the CategoryAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryAxis class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ChartArea Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:chartArea. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the ChartArea class. + + + + + Initializes a new instance of the ChartArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartArea class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataLabel Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataLabel. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DataLabel class. + + + + + Initializes a new instance of the DataLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabel class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataLabelCallout Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataLabelCallout. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DataLabelCallout class. + + + + + Initializes a new instance of the DataLabelCallout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelCallout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabelCallout class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataPoint Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataPoint. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DataPoint class. + + + + + Initializes a new instance of the DataPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPoint class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataPoint3D Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataPoint3D. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DataPoint3D class. + + + + + Initializes a new instance of the DataPoint3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPoint3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPoint3D class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataPointLine Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataPointLine. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DataPointLine class. + + + + + Initializes a new instance of the DataPointLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPointLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPointLine class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataPointMarker Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataPointMarker. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DataPointMarker class. + + + + + Initializes a new instance of the DataPointMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPointMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPointMarker class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataPointWireframe Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataPointWireframe. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DataPointWireframe class. + + + + + Initializes a new instance of the DataPointWireframe class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPointWireframe class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPointWireframe class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataTableStyle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataTable. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DataTableStyle class. + + + + + Initializes a new instance of the DataTableStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataTableStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataTableStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DownBar Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:downBar. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DownBar class. + + + + + Initializes a new instance of the DownBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DownBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DownBar class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DropLine Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dropLine. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the DropLine class. + + + + + Initializes a new instance of the DropLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropLine class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ErrorBar Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:errorBar. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the ErrorBar class. + + + + + Initializes a new instance of the ErrorBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ErrorBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ErrorBar class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Floor Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:floor. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the Floor class. + + + + + Initializes a new instance of the Floor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Floor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Floor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GridlineMajor Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:gridlineMajor. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the GridlineMajor class. + + + + + Initializes a new instance of the GridlineMajor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GridlineMajor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GridlineMajor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GridlineMinor Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:gridlineMinor. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the GridlineMinor class. + + + + + Initializes a new instance of the GridlineMinor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GridlineMinor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GridlineMinor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HiLoLine Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:hiLoLine. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the HiLoLine class. + + + + + Initializes a new instance of the HiLoLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiLoLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HiLoLine class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LeaderLine Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:leaderLine. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the LeaderLine class. + + + + + Initializes a new instance of the LeaderLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeaderLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeaderLine class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LegendStyle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:legend. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the LegendStyle class. + + + + + Initializes a new instance of the LegendStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LegendStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LegendStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PlotArea Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:plotArea. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the PlotArea class. + + + + + Initializes a new instance of the PlotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotArea class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PlotArea3D Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:plotArea3D. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the PlotArea3D class. + + + + + Initializes a new instance of the PlotArea3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotArea3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotArea3D class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SeriesAxis Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:seriesAxis. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the SeriesAxis class. + + + + + Initializes a new instance of the SeriesAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesAxis class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SeriesLine Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:seriesLine. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the SeriesLine class. + + + + + Initializes a new instance of the SeriesLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesLine class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesLine class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TitleStyle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:title. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the TitleStyle class. + + + + + Initializes a new instance of the TitleStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TitleStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TitleStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TrendlineStyle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:trendline. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the TrendlineStyle class. + + + + + Initializes a new instance of the TrendlineStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TrendlineStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TrendlineStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TrendlineLabel Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:trendlineLabel. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the TrendlineLabel class. + + + + + Initializes a new instance of the TrendlineLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TrendlineLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TrendlineLabel class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the UpBar Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:upBar. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the UpBar class. + + + + + Initializes a new instance of the UpBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UpBar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UpBar class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ValueAxis Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:valueAxis. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the ValueAxis class. + + + + + Initializes a new instance of the ValueAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueAxis class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Wall Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:wall. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the Wall class. + + + + + Initializes a new instance of the Wall class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Wall class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Wall class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StyleEntry Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <cs:extLst> + <cs:spPr> + <cs:bodyPr> + <cs:defRPr> + <cs:fontRef> + <cs:lnRef> + <cs:fillRef> + <cs:effectRef> + <cs:lineWidthScale> + + + + + + Initializes a new instance of the StyleEntry class. + + + + + Initializes a new instance of the StyleEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleEntry class from outer XML. + + Specifies the outer XML of the element. + + + + mods, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: mods + + + + + LineReference. + Represents the following element tag in the schema: cs:lnRef. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + LineWidthScale. + Represents the following element tag in the schema: cs:lineWidthScale. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + FillReference. + Represents the following element tag in the schema: cs:fillRef. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + EffectReference. + Represents the following element tag in the schema: cs:effectRef. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + FontReference. + Represents the following element tag in the schema: cs:fontRef. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + ShapeProperties. + Represents the following element tag in the schema: cs:spPr. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + TextCharacterPropertiesType. + Represents the following element tag in the schema: cs:defRPr. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + TextBodyProperties. + Represents the following element tag in the schema: cs:bodyPr. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: cs:extLst. + + + xmlns:cs = http://schemas.microsoft.com/office/drawing/2012/chartStyle + + + + + Defines the MarkerLayoutProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is cs:dataPointMarkerLayout. + + + + + Initializes a new instance of the MarkerLayoutProperties class. + + + + + symbol, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: symbol + + + + + size, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: size + + + + + + + + Defines the ColorStyleMethodEnum enumeration. + + + + + Creates a new ColorStyleMethodEnum enum instance + + + + + cycle. + When the item is serialized out as xml, its value is "cycle". + + + + + withinLinear. + When the item is serialized out as xml, its value is "withinLinear". + + + + + acrossLinear. + When the item is serialized out as xml, its value is "acrossLinear". + + + + + withinLinearReversed. + When the item is serialized out as xml, its value is "withinLinearReversed". + + + + + acrossLinearReversed. + When the item is serialized out as xml, its value is "acrossLinearReversed". + + + + + Defines the StyleReferenceModifierEnum enumeration. + + + + + Creates a new StyleReferenceModifierEnum enum instance + + + + + ignoreCSTransforms. + When the item is serialized out as xml, its value is "ignoreCSTransforms". + + + + + Defines the StyleColorEnum enumeration. + + + + + Creates a new StyleColorEnum enum instance + + + + + auto. + When the item is serialized out as xml, its value is "auto". + + + + + Defines the StyleEntryModifierEnum enumeration. + + + + + Creates a new StyleEntryModifierEnum enum instance + + + + + allowNoFillOverride. + When the item is serialized out as xml, its value is "allowNoFillOverride". + + + + + allowNoLineOverride. + When the item is serialized out as xml, its value is "allowNoLineOverride". + + + + + Defines the MarkerStyle enumeration. + + + + + Creates a new MarkerStyle enum instance + + + + + circle. + When the item is serialized out as xml, its value is "circle". + + + + + dash. + When the item is serialized out as xml, its value is "dash". + + + + + diamond. + When the item is serialized out as xml, its value is "diamond". + + + + + dot. + When the item is serialized out as xml, its value is "dot". + + + + + plus. + When the item is serialized out as xml, its value is "plus". + + + + + square. + When the item is serialized out as xml, its value is "square". + + + + + star. + When the item is serialized out as xml, its value is "star". + + + + + triangle. + When the item is serialized out as xml, its value is "triangle". + + + + + x. + When the item is serialized out as xml, its value is "x". + + + + + Defines the Boolean enumeration. + + + + + Creates a new Boolean enum instance + + + + + false. + When the item is serialized out as xml, its value is "false". + + + + + true. + When the item is serialized out as xml, its value is "true". + + + + + ninch. + When the item is serialized out as xml, its value is "ninch". + + + + + Defines the TickMarkNinch enumeration. + + + + + Creates a new TickMarkNinch enum instance + + + + + cross. + When the item is serialized out as xml, its value is "cross". + + + + + inside. + When the item is serialized out as xml, its value is "inside". + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + outside. + When the item is serialized out as xml, its value is "outside". + + + + + ninch. + When the item is serialized out as xml, its value is "ninch". + + + + + Defines the TickLabelPositionNinch enumeration. + + + + + Creates a new TickLabelPositionNinch enum instance + + + + + high. + When the item is serialized out as xml, its value is "high". + + + + + low. + When the item is serialized out as xml, its value is "low". + + + + + nextToAxis. + When the item is serialized out as xml, its value is "nextToAxis". + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + ninch. + When the item is serialized out as xml, its value is "ninch". + + + + + Defines the DataLabelsPosition enumeration. + + + + + Creates a new DataLabelsPosition enum instance + + + + + center. + When the item is serialized out as xml, its value is "center". + + + + + insideEnd. + When the item is serialized out as xml, its value is "insideEnd". + + + + + insideBase. + When the item is serialized out as xml, its value is "insideBase". + + + + + outsideEnd. + When the item is serialized out as xml, its value is "outsideEnd". + + + + + ninch. + When the item is serialized out as xml, its value is "ninch". + + + + + Defines the LegendPosition enumeration. + + + + + Creates a new LegendPosition enum instance + + + + + right. + When the item is serialized out as xml, its value is "right". + + + + + top. + When the item is serialized out as xml, its value is "top". + + + + + left. + When the item is serialized out as xml, its value is "left". + + + + + bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + ninch. + When the item is serialized out as xml, its value is "ninch". + + + + + Defines the TitlePosition enumeration. + + + + + Creates a new TitlePosition enum instance + + + + + above. + When the item is serialized out as xml, its value is "above". + + + + + overlay. + When the item is serialized out as xml, its value is "overlay". + + + + + off. + When the item is serialized out as xml, its value is "off". + + + + + ninch. + When the item is serialized out as xml, its value is "ninch". + + + + + Defines the BackgroundProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is a15:backgroundPr. + + + + + Initializes a new instance of the BackgroundProperties class. + + + + + bwMode, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: bwMode + + + + + bwPure, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: bwPure + + + + + bwNormal, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: bwNormal + + + + + targetScreenSize, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: targetScreenSize + + + + + + + + Defines the NonVisualGroupProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is a15:nonVisualGroupProps. + + + + + Initializes a new instance of the NonVisualGroupProperties class. + + + + + isLegacyGroup, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: isLegacyGroup + + + + + + + + Defines the ObjectProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is a15:objectPr. + + + + + Initializes a new instance of the ObjectProperties class. + + + + + objectId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: objectId + + + + + isActiveX, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: isActiveX + + + + + linkType, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: linkType + + + + + + + + Defines the SignatureLine Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is a15:signatureLine. + + + + + Initializes a new instance of the SignatureLine class. + + + + + isSignatureLine, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: isSignatureLine + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + provId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: provId + + + + + signingInstructionsSet, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: signingInstructionsSet + + + + + allowComments, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: allowComments + + + + + showSignDate, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: showSignDate + + + + + suggestedSigner, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: suggestedSigner + + + + + suggestedSigner2, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: suggestedSigner2 + + + + + suggestedSignerEmail, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: suggestedSignerEmail + + + + + signingInstructions, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: signingInstructions + + + + + addlXml, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: addlXml + + + + + sigProvUrl, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: sigProvUrl + + + + + + + + Defines the TargetScreenSize enumeration. + + + + + Creates a new TargetScreenSize enum instance + + + + + 544x376. + When the item is serialized out as xml, its value is "544x376". + + + + + 640x480. + When the item is serialized out as xml, its value is "640x480". + + + + + 720x512. + When the item is serialized out as xml, its value is "720x512". + + + + + 800x600. + When the item is serialized out as xml, its value is "800x600". + + + + + 1024x768. + When the item is serialized out as xml, its value is "1024x768". + + + + + 1152x882. + When the item is serialized out as xml, its value is "1152x882". + + + + + 1152x900. + When the item is serialized out as xml, its value is "1152x900". + + + + + 1280x1024. + When the item is serialized out as xml, its value is "1280x1024". + + + + + 1600x1200. + When the item is serialized out as xml, its value is "1600x1200". + + + + + 1800x1440. + When the item is serialized out as xml, its value is "1800x1440". + + + + + 1920x1200. + When the item is serialized out as xml, its value is "1920x1200". + + + + + Defines the TimeSlicer Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is tsle:timeslicer. + + + The following table lists the possible child types: + + <tsle:extLst> + + + + + + Initializes a new instance of the TimeSlicer class. + + + + + Initializes a new instance of the TimeSlicer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeSlicer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeSlicer class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: tsle:extLst. + + + xmlns:tsle = http://schemas.microsoft.com/office/drawing/2012/timeslicer + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is tsle:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PresetTransition Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:prstTrans. + + + + + Initializes a new instance of the PresetTransition class. + + + + + prst, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: prst + + + + + invX, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: invX + + + + + invY, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: invY + + + + + + + + Defines the PresenceInfo Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:presenceInfo. + + + + + Initializes a new instance of the PresenceInfo class. + + + + + userId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: userId + + + + + providerId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: providerId + + + + + + + + Defines the ThreadingInfo Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:threadingInfo. + + + The following table lists the possible child types: + + <p15:parentCm> + + + + + + Initializes a new instance of the ThreadingInfo class. + + + + + Initializes a new instance of the ThreadingInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThreadingInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThreadingInfo class from outer XML. + + Specifies the outer XML of the element. + + + + timeZoneBias, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: timeZoneBias + + + + + ParentCommentIdentifier. + Represents the following element tag in the schema: p15:parentCm. + + + xmlns:p15 = http://schemas.microsoft.com/office/powerpoint/2012/main + + + + + + + + Defines the SlideGuideList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:sldGuideLst. + + + The following table lists the possible child types: + + <p15:extLst> + <p15:guide> + + + + + + Initializes a new instance of the SlideGuideList class. + + + + + Initializes a new instance of the SlideGuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideGuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideGuideList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NotesGuideList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:notesGuideLst. + + + The following table lists the possible child types: + + <p15:extLst> + <p15:guide> + + + + + + Initializes a new instance of the NotesGuideList class. + + + + + Initializes a new instance of the NotesGuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesGuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesGuideList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExtendedGuideList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <p15:extLst> + <p15:guide> + + + + + + Initializes a new instance of the ExtendedGuideList class. + + + + + Initializes a new instance of the ExtendedGuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtendedGuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtendedGuideList class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the ChartTrackingReferenceBased Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:chartTrackingRefBased. + + + + + Initializes a new instance of the ChartTrackingReferenceBased class. + + + + + val, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ParentCommentIdentifier Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:parentCm. + + + + + Initializes a new instance of the ParentCommentIdentifier class. + + + + + authorId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: authorId + + + + + idx, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: idx + + + + + + + + Defines the ColorType Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:clr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorType class. + + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExtendedGuide Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is p15:guide. + + + The following table lists the possible child types: + + <p15:clr> + <p15:extLst> + + + + + + Initializes a new instance of the ExtendedGuide class. + + + + + Initializes a new instance of the ExtendedGuide class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtendedGuide class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtendedGuide class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + orient, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: orient + + + + + pos, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: pos + + + + + userDrawn, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: userDrawn + + + + + ColorType. + Represents the following element tag in the schema: p15:clr. + + + xmlns:p15 = http://schemas.microsoft.com/office/powerpoint/2012/main + + + + + ExtensionList. + Represents the following element tag in the schema: p15:extLst. + + + xmlns:p15 = http://schemas.microsoft.com/office/powerpoint/2012/main + + + + + + + + Defines the Key Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is pRoam:key. + + + + + Initializes a new instance of the Key class. + + + + + Initializes a new instance of the Key class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Value Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is pRoam:value. + + + + + Initializes a new instance of the Value class. + + + + + Initializes a new instance of the Value class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the RoamingProperty Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is pRoam:props. + + + The following table lists the possible child types: + + <pRoam:key> + <pRoam:value> + + + + + + Initializes a new instance of the RoamingProperty class. + + + + + Initializes a new instance of the RoamingProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RoamingProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RoamingProperty class from outer XML. + + Specifies the outer XML of the element. + + + + Key. + Represents the following element tag in the schema: pRoam:key. + + + xmlns:pRoam = http://schemas.microsoft.com/office/powerpoint/2012/roamingSettings + + + + + Value. + Represents the following element tag in the schema: pRoam:value. + + + xmlns:pRoam = http://schemas.microsoft.com/office/powerpoint/2012/roamingSettings + + + + + + + + Defines the AbsolutePath Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15ac:absPath. + + + + + Initializes a new instance of the AbsolutePath class. + + + + + url, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: url + + + + + + + + Defines the PivotCaches Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotCaches. + + + The following table lists the possible child types: + + <x:pivotCache> + + + + + + Initializes a new instance of the PivotCaches class. + + + + + Initializes a new instance of the PivotCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotCaches class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TimelineCachePivotCaches Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineCachePivotCaches. + + + The following table lists the possible child types: + + <x:pivotCache> + + + + + + Initializes a new instance of the TimelineCachePivotCaches class. + + + + + Initializes a new instance of the TimelineCachePivotCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineCachePivotCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineCachePivotCaches class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlPivotCachesElement Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x:pivotCache> + + + + + + Initializes a new instance of the OpenXmlPivotCachesElement class. + + + + + Initializes a new instance of the OpenXmlPivotCachesElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlPivotCachesElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlPivotCachesElement class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the PivotTableReferences Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotTableReferences. + + + The following table lists the possible child types: + + <x15:pivotTableReference> + + + + + + Initializes a new instance of the PivotTableReferences class. + + + + + Initializes a new instance of the PivotTableReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableReferences class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the QueryTable Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:queryTable. + + + + + Initializes a new instance of the QueryTable class. + + + + + clipped, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: clipped + + + + + sourceDataName, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: sourceDataName + + + + + drillThrough, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: drillThrough + + + + + + + + Defines the WebExtensions Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:webExtensions. + + + The following table lists the possible child types: + + <x15:webExtension> + + + + + + Initializes a new instance of the WebExtensions class. + + + + + Initializes a new instance of the WebExtensions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TimelineCacheReferences Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineCacheRefs. + + + The following table lists the possible child types: + + <x15:timelineCacheRef> + + + + + + Initializes a new instance of the TimelineCacheReferences class. + + + + + Initializes a new instance of the TimelineCacheReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineCacheReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineCacheReferences class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TimelineReferences Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineRefs. + + + The following table lists the possible child types: + + <x15:timelineRef> + + + + + + Initializes a new instance of the TimelineReferences class. + + + + + Initializes a new instance of the TimelineReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineReferences class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WorkbookProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:workbookPr. + + + + + Initializes a new instance of the WorkbookProperties class. + + + + + chartTrackingRefBase, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: chartTrackingRefBase + + + + + + + + Defines the TimelineStyles Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineStyles. + + + The following table lists the possible child types: + + <x15:timelineStyle> + + + + + + Initializes a new instance of the TimelineStyles class. + + + + + Initializes a new instance of the TimelineStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineStyles class from outer XML. + + Specifies the outer XML of the element. + + + + defaultTimelineStyle, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: defaultTimelineStyle + + + + + + + + Defines the DifferentialFormats Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:dxfs. + + + The following table lists the possible child types: + + <x:dxf> + + + + + + Initializes a new instance of the DifferentialFormats class. + + + + + Initializes a new instance of the DifferentialFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormats class from outer XML. + + Specifies the outer XML of the element. + + + + Format Count + Represents the following attribute in the schema: count + + + + + + + + Defines the Connection Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:connection. + + + The following table lists the possible child types: + + <x15:textPr> + <x15:dataFeedPr> + <x15:modelTextPr> + <x15:oledbPr> + <x15:rangePr> + + + + + + Initializes a new instance of the Connection class. + + + + + Initializes a new instance of the Connection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connection class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + model, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: model + + + + + excludeFromRefreshAll, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: excludeFromRefreshAll + + + + + autoDelete, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: autoDelete + + + + + usedByAddin, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: usedByAddin + + + + + TextProperties. + Represents the following element tag in the schema: x15:textPr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + ModelTextProperties. + Represents the following element tag in the schema: x15:modelTextPr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + RangeProperties. + Represents the following element tag in the schema: x15:rangePr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + OleDbPrpoperties. + Represents the following element tag in the schema: x15:oledbPr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + DataFeedProperties. + Represents the following element tag in the schema: x15:dataFeedPr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the CalculatedMember Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:calculatedMember. + + + + + Initializes a new instance of the CalculatedMember class. + + + + + measureGroup, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: measureGroup + + + + + numberFormat, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: numberFormat + + + + + measure, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: measure + + + + + + + + Defines the PivotTableUISettings Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotTableUISettings. + + + The following table lists the possible child types: + + <x15:extLst> + <x15:activeTabTopLevelEntity> + + + + + + Initializes a new instance of the PivotTableUISettings class. + + + + + Initializes a new instance of the PivotTableUISettings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableUISettings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableUISettings class from outer XML. + + Specifies the outer XML of the element. + + + + sourceDataName, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: sourceDataName + + + + + relNeededHidden, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: relNeededHidden + + + + + + + + Defines the PivotFilter Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotFilter. + + + + + Initializes a new instance of the PivotFilter class. + + + + + useWholeDay, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: useWholeDay + + + + + + + + Defines the CachedUniqueNames Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:cachedUniqueNames. + + + The following table lists the possible child types: + + <x15:cachedUniqueName> + + + + + + Initializes a new instance of the CachedUniqueNames class. + + + + + Initializes a new instance of the CachedUniqueNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CachedUniqueNames class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CachedUniqueNames class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CacheHierarchy Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:cacheHierarchy. + + + + + Initializes a new instance of the CacheHierarchy class. + + + + + aggregatedColumn, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: aggregatedColumn + + + + + + + + Defines the TimelinePivotCacheDefinition Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelinePivotCacheDefinition. + + + + + Initializes a new instance of the TimelinePivotCacheDefinition class. + + + + + timelineData, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: timelineData + + + + + + + + Defines the PivotCacheIdVersion Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotCacheIdVersion. + + + + + Initializes a new instance of the PivotCacheIdVersion class. + + + + + cacheIdSupportedVersion, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: cacheIdSupportedVersion + + + + + cacheIdCreatedVersion, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: cacheIdCreatedVersion + + + + + + + + Defines the DataModel Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:dataModel. + + + The following table lists the possible child types: + + <x15:extLst> + <x15:modelRelationships> + <x15:modelTables> + + + + + + Initializes a new instance of the DataModel class. + + + + + Initializes a new instance of the DataModel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModel class from outer XML. + + Specifies the outer XML of the element. + + + + minVersionLoad, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: minVersionLoad + + + + + ModelTables. + Represents the following element tag in the schema: x15:modelTables. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + ModelRelationships. + Represents the following element tag in the schema: x15:modelRelationships. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + ExtensionList. + Represents the following element tag in the schema: x15:extLst. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the PivotTableData Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotTableData. + + + The following table lists the possible child types: + + <x15:pivotRow> + + + + + + Initializes a new instance of the PivotTableData class. + + + + + Initializes a new instance of the PivotTableData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableData class from outer XML. + + Specifies the outer XML of the element. + + + + rowCount, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: rowCount + + + + + columnCount, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: columnCount + + + + + cacheId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: cacheId + + + + + + + + Defines the PivotCacheDecoupled Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotCacheDecoupled. + + + + + Initializes a new instance of the PivotCacheDecoupled class. + + + + + decoupled, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: decoupled + + + + + + + + Defines the DataField Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:dataField. + + + + + Initializes a new instance of the DataField class. + + + + + isCountDistinct, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: isCountDistinct + + + + + + + + Defines the MovingPeriodState Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:movingPeriodState. + + + + + Initializes a new instance of the MovingPeriodState class. + + + + + referenceDateBegin, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: referenceDateBegin + + + + + referencePeriod, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: referencePeriod + + + + + referenceMultiple, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: referenceMultiple + + + + + movingPeriod, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: movingPeriod + + + + + movingMultiple, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: movingMultiple + + + + + + + + Defines the SlicerCaches Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:slicerCaches. + + + The following table lists the possible child types: + + <x14:slicerCache> + + + + + + Initializes a new instance of the SlicerCaches class. + + + + + Initializes a new instance of the SlicerCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCaches class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCaches class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableSlicerCache Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:tableSlicerCache. + + + The following table lists the possible child types: + + <x15:extLst> + + + + + + Initializes a new instance of the TableSlicerCache class. + + + + + Initializes a new instance of the TableSlicerCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableSlicerCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableSlicerCache class from outer XML. + + Specifies the outer XML of the element. + + + + tableId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: tableId + + + + + column, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: column + + + + + sortOrder, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sortOrder + + + + + customListSort, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: customListSort + + + + + crossFilter, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: crossFilter + + + + + ExtensionList. + Represents the following element tag in the schema: x15:extLst. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the SlicerCacheHideItemsWithNoData Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:slicerCacheHideItemsWithNoData. + + + The following table lists the possible child types: + + <x15:slicerCacheOlapLevelName> + + + + + + Initializes a new instance of the SlicerCacheHideItemsWithNoData class. + + + + + Initializes a new instance of the SlicerCacheHideItemsWithNoData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheHideItemsWithNoData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCacheHideItemsWithNoData class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the SlicerCachePivotTables Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:slicerCachePivotTables. + + + The following table lists the possible child types: + + <x14:pivotTable> + + + + + + Initializes a new instance of the SlicerCachePivotTables class. + + + + + Initializes a new instance of the SlicerCachePivotTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCachePivotTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlicerCachePivotTables class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Survey Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:survey. + + + The following table lists the possible child types: + + <x15:extLst> + <x15:surveyPr> + <x15:titlePr> + <x15:descriptionPr> + <x15:questions> + + + + + + Initializes a new instance of the Survey class. + + + + + Initializes a new instance of the Survey class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Survey class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Survey class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + guid, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: guid + + + + + title, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: title + + + + + description, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: description + + + + + SurveyPrSurveyElementPr. + Represents the following element tag in the schema: x15:surveyPr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + TitlePrSurveyElementPr. + Represents the following element tag in the schema: x15:titlePr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + DescriptionPrSurveyElementPr. + Represents the following element tag in the schema: x15:descriptionPr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + SurveyQuestions. + Represents the following element tag in the schema: x15:questions. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + ExtensionList. + Represents the following element tag in the schema: x15:extLst. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the Timelines Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelines. + + + The following table lists the possible child types: + + <x15:timeline> + + + + + + Initializes a new instance of the Timelines class. + + + + + Initializes a new instance of the Timelines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Timelines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Timelines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the TimeLinePart + + Specifies the part to be loaded. + + + + Saves the DOM into the TimeLinePart. + + Specifies the part to save to. + + + + Gets the TimeLinePart associated with this element. + + + + + Defines the TimelineCacheDefinition Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineCacheDefinition. + + + The following table lists the possible child types: + + <x15:extLst> + <x15:pivotTables> + <x15:state> + + + + + + Initializes a new instance of the TimelineCacheDefinition class. + + + + + Initializes a new instance of the TimelineCacheDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineCacheDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineCacheDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + sourceName, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: sourceName + + + + + TimelineCachePivotTables. + Represents the following element tag in the schema: x15:pivotTables. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + TimelineState. + Represents the following element tag in the schema: x15:state. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + ExtensionList. + Represents the following element tag in the schema: x15:extLst. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Loads the DOM from the TimeLineCachePart + + Specifies the part to be loaded. + + + + Saves the DOM into the TimeLineCachePart. + + Specifies the part to save to. + + + + Gets the TimeLineCachePart associated with this element. + + + + + Defines the PivotTableReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotTableReference. + + + + + Initializes a new instance of the PivotTableReference class. + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the WebExtension Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:webExtension. + + + The following table lists the possible child types: + + <xne:f> + + + + + + Initializes a new instance of the WebExtension class. + + + + + Initializes a new instance of the WebExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtension class from outer XML. + + Specifies the outer XML of the element. + + + + appRef, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: appRef + + + + + Formula. + Represents the following element tag in the schema: xne:f. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + + + + Defines the TimelineCacheReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineCacheRef. + + + + + Initializes a new instance of the TimelineCacheReference class. + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the TimelineReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineRef. + + + + + Initializes a new instance of the TimelineReference class. + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the TimelineStyle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineStyle. + + + The following table lists the possible child types: + + <x15:timelineStyleElements> + + + + + + Initializes a new instance of the TimelineStyle class. + + + + + Initializes a new instance of the TimelineStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineStyle class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + TimelineStyleElements. + Represents the following element tag in the schema: x15:timelineStyleElements. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the TimelineStyleElement Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineStyleElement. + + + + + Initializes a new instance of the TimelineStyleElement class. + + + + + type, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: type + + + + + dxfId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: dxfId + + + + + + + + Defines the TimelineStyleElements Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timelineStyleElements. + + + The following table lists the possible child types: + + <x15:timelineStyleElement> + + + + + + Initializes a new instance of the TimelineStyleElements class. + + + + + Initializes a new instance of the TimelineStyleElements class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineStyleElements class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineStyleElements class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DbTable Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:dbTable. + + + + + Initializes a new instance of the DbTable class. + + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the DbTables Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:dbTables. + + + The following table lists the possible child types: + + <x15:dbTable> + + + + + + Initializes a new instance of the DbTables class. + + + + + Initializes a new instance of the DbTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DbTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DbTables class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DbCommand Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:dbCommand. + + + + + Initializes a new instance of the DbCommand class. + + + + + text, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: text + + + + + + + + Defines the TextProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:textPr. + + + The following table lists the possible child types: + + <x:textFields> + + + + + + Initializes a new instance of the TextProperties class. + + + + + Initializes a new instance of the TextProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextProperties class from outer XML. + + Specifies the outer XML of the element. + + + + prompt + Represents the following attribute in the schema: prompt + + + + + fileType + Represents the following attribute in the schema: fileType + + + + + codePage + Represents the following attribute in the schema: codePage + + + + + characterSet + Represents the following attribute in the schema: characterSet + + + + + firstRow + Represents the following attribute in the schema: firstRow + + + + + sourceFile + Represents the following attribute in the schema: sourceFile + + + + + delimited + Represents the following attribute in the schema: delimited + + + + + decimal + Represents the following attribute in the schema: decimal + + + + + thousands + Represents the following attribute in the schema: thousands + + + + + tab + Represents the following attribute in the schema: tab + + + + + space + Represents the following attribute in the schema: space + + + + + comma + Represents the following attribute in the schema: comma + + + + + semicolon + Represents the following attribute in the schema: semicolon + + + + + consecutive + Represents the following attribute in the schema: consecutive + + + + + qualifier + Represents the following attribute in the schema: qualifier + + + + + delimiter + Represents the following attribute in the schema: delimiter + + + + + TextFields. + Represents the following element tag in the schema: x:textFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the ModelTextProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:modelTextPr. + + + + + Initializes a new instance of the ModelTextProperties class. + + + + + headers, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: headers + + + + + + + + Defines the RangeProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:rangePr. + + + + + Initializes a new instance of the RangeProperties class. + + + + + sourceName, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: sourceName + + + + + + + + Defines the OleDbPrpoperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:oledbPr. + + + The following table lists the possible child types: + + <x15:dbCommand> + <x15:dbTables> + + + + + + Initializes a new instance of the OleDbPrpoperties class. + + + + + Initializes a new instance of the OleDbPrpoperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleDbPrpoperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleDbPrpoperties class from outer XML. + + Specifies the outer XML of the element. + + + + connection, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: connection + + + + + DbTables. + Represents the following element tag in the schema: x15:dbTables. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + DbCommand. + Represents the following element tag in the schema: x15:dbCommand. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the DataFeedProperties Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:dataFeedPr. + + + The following table lists the possible child types: + + <x15:dbTables> + + + + + + Initializes a new instance of the DataFeedProperties class. + + + + + Initializes a new instance of the DataFeedProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataFeedProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataFeedProperties class from outer XML. + + Specifies the outer XML of the element. + + + + connection, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: connection + + + + + DbTables. + Represents the following element tag in the schema: x15:dbTables. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the FieldListActiveTabTopLevelEntity Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:activeTabTopLevelEntity. + + + + + Initializes a new instance of the FieldListActiveTabTopLevelEntity class. + + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + type, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: type + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CachedUniqueName Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:cachedUniqueName. + + + + + Initializes a new instance of the CachedUniqueName class. + + + + + index, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: index + + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the ModelTable Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:modelTable. + + + + + Initializes a new instance of the ModelTable class. + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + connection, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: connection + + + + + + + + Defines the ModelRelationship Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:modelRelationship. + + + + + Initializes a new instance of the ModelRelationship class. + + + + + fromTable, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: fromTable + + + + + fromColumn, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: fromColumn + + + + + toTable, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: toTable + + + + + toColumn, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: toColumn + + + + + + + + Defines the ModelTables Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:modelTables. + + + The following table lists the possible child types: + + <x15:modelTable> + + + + + + Initializes a new instance of the ModelTables class. + + + + + Initializes a new instance of the ModelTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModelTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModelTables class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ModelRelationships Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:modelRelationships. + + + The following table lists the possible child types: + + <x15:modelRelationship> + + + + + + Initializes a new instance of the ModelRelationships class. + + + + + Initializes a new instance of the ModelRelationships class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModelRelationships class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModelRelationships class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotValueCell Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:c. + + + The following table lists the possible child types: + + <x15:v> + <x15:x> + + + + + + Initializes a new instance of the PivotValueCell class. + + + + + Initializes a new instance of the PivotValueCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotValueCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotValueCell class from outer XML. + + Specifies the outer XML of the element. + + + + i, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: i + + + + + t, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: t + + + + + Xstring. + Represents the following element tag in the schema: x15:v. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + PivotValueCellExtra. + Represents the following element tag in the schema: x15:x. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the Xstring Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:v. + + + + + Initializes a new instance of the Xstring class. + + + + + Initializes a new instance of the Xstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the PivotValueCellExtra Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:x. + + + + + Initializes a new instance of the PivotValueCellExtra class. + + + + + in, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: in + + + + + bc, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: bc + + + + + fc, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: fc + + + + + i, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: i + + + + + un, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: un + + + + + st, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: st + + + + + b, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: b + + + + + + + + Defines the PivotTableServerFormats Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotTableServerFormats. + + + The following table lists the possible child types: + + <x15:serverFormat> + + + + + + Initializes a new instance of the PivotTableServerFormats class. + + + + + Initializes a new instance of the PivotTableServerFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableServerFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotTableServerFormats class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the ServerFormat Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:serverFormat. + + + + + Initializes a new instance of the ServerFormat class. + + + + + Culture + Represents the following attribute in the schema: culture + + + + + Format + Represents the following attribute in the schema: format + + + + + + + + Defines the SlicerCacheOlapLevelName Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:slicerCacheOlapLevelName. + + + + + Initializes a new instance of the SlicerCacheOlapLevelName class. + + + + + uniqueName, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: uniqueName + + + + + count, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the SurveyPrSurveyElementPr Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:surveyPr. + + + The following table lists the possible child types: + + <x15:extLst> + + + + + + Initializes a new instance of the SurveyPrSurveyElementPr class. + + + + + Initializes a new instance of the SurveyPrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurveyPrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurveyPrSurveyElementPr class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TitlePrSurveyElementPr Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:titlePr. + + + The following table lists the possible child types: + + <x15:extLst> + + + + + + Initializes a new instance of the TitlePrSurveyElementPr class. + + + + + Initializes a new instance of the TitlePrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TitlePrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TitlePrSurveyElementPr class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DescriptionPrSurveyElementPr Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:descriptionPr. + + + The following table lists the possible child types: + + <x15:extLst> + + + + + + Initializes a new instance of the DescriptionPrSurveyElementPr class. + + + + + Initializes a new instance of the DescriptionPrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DescriptionPrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DescriptionPrSurveyElementPr class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the QuestionsPrSurveyElementPr Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:questionsPr. + + + The following table lists the possible child types: + + <x15:extLst> + + + + + + Initializes a new instance of the QuestionsPrSurveyElementPr class. + + + + + Initializes a new instance of the QuestionsPrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuestionsPrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuestionsPrSurveyElementPr class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the QuestionPrSurveyElementPr Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:questionPr. + + + The following table lists the possible child types: + + <x15:extLst> + + + + + + Initializes a new instance of the QuestionPrSurveyElementPr class. + + + + + Initializes a new instance of the QuestionPrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuestionPrSurveyElementPr class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuestionPrSurveyElementPr class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlSurveyElementPrElement Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <x15:extLst> + + + + + + Initializes a new instance of the OpenXmlSurveyElementPrElement class. + + + + + Initializes a new instance of the OpenXmlSurveyElementPrElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlSurveyElementPrElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlSurveyElementPrElement class from outer XML. + + Specifies the outer XML of the element. + + + + cssClass, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: cssClass + + + + + bottom, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: bottom + + + + + top, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: top + + + + + left, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: left + + + + + right, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: right + + + + + width, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: width + + + + + height, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: height + + + + + position, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: position + + + + + ExtensionList. + Represents the following element tag in the schema: x15:extLst. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + Defines the SurveyQuestions Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:questions. + + + The following table lists the possible child types: + + <x15:questionsPr> + <x15:question> + + + + + + Initializes a new instance of the SurveyQuestions class. + + + + + Initializes a new instance of the SurveyQuestions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurveyQuestions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurveyQuestions class from outer XML. + + Specifies the outer XML of the element. + + + + QuestionsPrSurveyElementPr. + Represents the following element tag in the schema: x15:questionsPr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the SurveyQuestion Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:question. + + + The following table lists the possible child types: + + <x15:extLst> + <x15:questionPr> + + + + + + Initializes a new instance of the SurveyQuestion class. + + + + + Initializes a new instance of the SurveyQuestion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurveyQuestion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurveyQuestion class from outer XML. + + Specifies the outer XML of the element. + + + + binding, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: binding + + + + + text, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: text + + + + + type, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: type + + + + + format, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: format + + + + + helpText, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: helpText + + + + + required, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: required + + + + + defaultValue, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: defaultValue + + + + + decimalPlaces, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: decimalPlaces + + + + + rowSource, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: rowSource + + + + + QuestionPrSurveyElementPr. + Represents the following element tag in the schema: x15:questionPr. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + ExtensionList. + Represents the following element tag in the schema: x15:extLst. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the Timeline Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:timeline. + + + The following table lists the possible child types: + + <x15:extLst> + + + + + + Initializes a new instance of the Timeline class. + + + + + Initializes a new instance of the Timeline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Timeline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Timeline class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + cache, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: cache + + + + + caption, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: caption + + + + + showHeader, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: showHeader + + + + + showSelectionLabel, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: showSelectionLabel + + + + + showTimeLevel, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: showTimeLevel + + + + + showHorizontalScrollbar, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: showHorizontalScrollbar + + + + + level, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: level + + + + + selectionLevel, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: selectionLevel + + + + + scrollPosition, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: scrollPosition + + + + + style, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: style + + + + + ExtensionList. + Represents the following element tag in the schema: x15:extLst. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the TimelineCachePivotTable Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotTable. + + + + + Initializes a new instance of the TimelineCachePivotTable class. + + + + + tabId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: tabId + + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the SelectionTimelineRange Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:selection. + + + + + Initializes a new instance of the SelectionTimelineRange class. + + + + + + + + Defines the BoundsTimelineRange Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:bounds. + + + + + Initializes a new instance of the BoundsTimelineRange class. + + + + + + + + Defines the TimelineRange Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TimelineRange class. + + + + + startDate, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: startDate + + + + + endDate, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: endDate + + + + + Defines the AutoFilter Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:autoFilter. + + + The following table lists the possible child types: + + <x:extLst> + <x:filterColumn> + <x:sortState> + + + + + + Initializes a new instance of the AutoFilter class. + + + + + Initializes a new instance of the AutoFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoFilter class from outer XML. + + Specifies the outer XML of the element. + + + + Cell or Range Reference + Represents the following attribute in the schema: ref + + + + + + + + Defines the TimelineCachePivotTables Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotTables. + + + The following table lists the possible child types: + + <x15:pivotTable> + + + + + + Initializes a new instance of the TimelineCachePivotTables class. + + + + + Initializes a new instance of the TimelineCachePivotTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineCachePivotTables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineCachePivotTables class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TimelineState Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:state. + + + The following table lists the possible child types: + + <x15:extLst> + <x15:movingPeriodState> + <x15:selection> + <x15:bounds> + + + + + + Initializes a new instance of the TimelineState class. + + + + + Initializes a new instance of the TimelineState class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineState class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimelineState class from outer XML. + + Specifies the outer XML of the element. + + + + singleRangeFilterState, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: singleRangeFilterState + + + + + minimalRefreshVersion, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: minimalRefreshVersion + + + + + lastRefreshVersion, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: lastRefreshVersion + + + + + pivotCacheId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: pivotCacheId + + + + + filterType, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: filterType + + + + + filterId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: filterId + + + + + filterTabId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: filterTabId + + + + + filterPivotName, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: filterPivotName + + + + + SelectionTimelineRange. + Represents the following element tag in the schema: x15:selection. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + BoundsTimelineRange. + Represents the following element tag in the schema: x15:bounds. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + MovingPeriodState. + Represents the following element tag in the schema: x15:movingPeriodState. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + ExtensionList. + Represents the following element tag in the schema: x15:extLst. + + + xmlns:x15 = http://schemas.microsoft.com/office/spreadsheetml/2010/11/main + + + + + + + + Defines the PivotRow Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is x15:pivotRow. + + + The following table lists the possible child types: + + <x15:c> + + + + + + Initializes a new instance of the PivotRow class. + + + + + Initializes a new instance of the PivotRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotRow class from outer XML. + + Specifies the outer XML of the element. + + + + r, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: r + + + + + count, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the TimelineStyleType enumeration. + + + + + Creates a new TimelineStyleType enum instance + + + + + selectionLabel. + When the item is serialized out as xml, its value is "selectionLabel". + + + + + timeLevel. + When the item is serialized out as xml, its value is "timeLevel". + + + + + periodLabel1. + When the item is serialized out as xml, its value is "periodLabel1". + + + + + periodLabel2. + When the item is serialized out as xml, its value is "periodLabel2". + + + + + selectedTimeBlock. + When the item is serialized out as xml, its value is "selectedTimeBlock". + + + + + unselectedTimeBlock. + When the item is serialized out as xml, its value is "unselectedTimeBlock". + + + + + selectedTimeBlockSpace. + When the item is serialized out as xml, its value is "selectedTimeBlockSpace". + + + + + Defines the CalculatedMemberNumberFormat enumeration. + + + + + Creates a new CalculatedMemberNumberFormat enum instance + + + + + default. + When the item is serialized out as xml, its value is "default". + + + + + number. + When the item is serialized out as xml, its value is "number". + + + + + percent. + When the item is serialized out as xml, its value is "percent". + + + + + Defines the SXVCellType enumeration. + + + + + Creates a new SXVCellType enum instance + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + n. + When the item is serialized out as xml, its value is "n". + + + + + e. + When the item is serialized out as xml, its value is "e". + + + + + str. + When the item is serialized out as xml, its value is "str". + + + + + d. + When the item is serialized out as xml, its value is "d". + + + + + bl. + When the item is serialized out as xml, its value is "bl". + + + + + Defines the MovingPeriodStep enumeration. + + + + + Creates a new MovingPeriodStep enum instance + + + + + year. + When the item is serialized out as xml, its value is "year". + + + + + quarter. + When the item is serialized out as xml, its value is "quarter". + + + + + month. + When the item is serialized out as xml, its value is "month". + + + + + week. + When the item is serialized out as xml, its value is "week". + + + + + day. + When the item is serialized out as xml, its value is "day". + + + + + Defines the QuestionType enumeration. + + + + + Creates a new QuestionType enum instance + + + + + checkBox. + When the item is serialized out as xml, its value is "checkBox". + + + + + choice. + When the item is serialized out as xml, its value is "choice". + + + + + date. + When the item is serialized out as xml, its value is "date". + + + + + time. + When the item is serialized out as xml, its value is "time". + + + + + multipleLinesOfText. + When the item is serialized out as xml, its value is "multipleLinesOfText". + + + + + number. + When the item is serialized out as xml, its value is "number". + + + + + singleLineOfText. + When the item is serialized out as xml, its value is "singleLineOfText". + + + + + Defines the QuestionFormat enumeration. + + + + + Creates a new QuestionFormat enum instance + + + + + generalDate. + When the item is serialized out as xml, its value is "generalDate". + + + + + longDate. + When the item is serialized out as xml, its value is "longDate". + + + + + shortDate. + When the item is serialized out as xml, its value is "shortDate". + + + + + longTime. + When the item is serialized out as xml, its value is "longTime". + + + + + shortTime. + When the item is serialized out as xml, its value is "shortTime". + + + + + generalNumber. + When the item is serialized out as xml, its value is "generalNumber". + + + + + standard. + When the item is serialized out as xml, its value is "standard". + + + + + fixed. + When the item is serialized out as xml, its value is "fixed". + + + + + percent. + When the item is serialized out as xml, its value is "percent". + + + + + currency. + When the item is serialized out as xml, its value is "currency". + + + + + Defines the SurveyPosition enumeration. + + + + + Creates a new SurveyPosition enum instance + + + + + absolute. + When the item is serialized out as xml, its value is "absolute". + + + + + fixed. + When the item is serialized out as xml, its value is "fixed". + + + + + relative. + When the item is serialized out as xml, its value is "relative". + + + + + static. + When the item is serialized out as xml, its value is "static". + + + + + inherit. + When the item is serialized out as xml, its value is "inherit". + + + + + Defines the ThemeFamily Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is thm15:themeFamily. + + + The following table lists the possible child types: + + <thm15:extLst> + + + + + + Initializes a new instance of the ThemeFamily class. + + + + + Initializes a new instance of the ThemeFamily class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeFamily class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeFamily class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + vid, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: vid + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: thm15:extLst. + + + xmlns:thm15 = http://schemas.microsoft.com/office/thememl/2012/main + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is thm15:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ThemeVariant Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is thm15:themeVariant. + + + The following table lists the possible child types: + + <thm15:extLst> + + + + + + Initializes a new instance of the ThemeVariant class. + + + + + Initializes a new instance of the ThemeVariant class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeVariant class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeVariant class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + vid, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: vid + + + + + cx, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: cx + + + + + cy, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: cy + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: thm15:extLst. + + + xmlns:thm15 = http://schemas.microsoft.com/office/thememl/2012/main + + + + + + + + Defines the ThemeVariantList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is thm15:themeVariantLst. + + + The following table lists the possible child types: + + <thm15:themeVariant> + + + + + + Initializes a new instance of the ThemeVariantList class. + + + + + Initializes a new instance of the ThemeVariantList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeVariantList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeVariantList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Taskpanes Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is wetp:taskpanes. + + + The following table lists the possible child types: + + <wetp:taskpane> + + + + + + Initializes a new instance of the Taskpanes class. + + + + + Initializes a new instance of the Taskpanes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Taskpanes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Taskpanes class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WebExTaskpanesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WebExTaskpanesPart. + + Specifies the part to save to. + + + + Gets the WebExTaskpanesPart associated with this element. + + + + + Defines the WebExtensionPartReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is wetp:webextensionref. + + + + + Initializes a new instance of the WebExtensionPartReference class. + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is wetp:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WebExtensionTaskpane Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is wetp:taskpane. + + + The following table lists the possible child types: + + <wetp:extLst> + <wetp:webextensionref> + + + + + + Initializes a new instance of the WebExtensionTaskpane class. + + + + + Initializes a new instance of the WebExtensionTaskpane class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionTaskpane class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionTaskpane class from outer XML. + + Specifies the outer XML of the element. + + + + dockstate, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: dockstate + + + + + visibility, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: visibility + + + + + width, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: width + + + + + row, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: row + + + + + locked, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: locked + + + + + WebExtensionPartReference. + Represents the following element tag in the schema: wetp:webextensionref. + + + xmlns:wetp = http://schemas.microsoft.com/office/webextensions/taskpanes/2010/11 + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: wetp:extLst. + + + xmlns:wetp = http://schemas.microsoft.com/office/webextensions/taskpanes/2010/11 + + + + + + + + Defines the WebExtension Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:webextension. + + + The following table lists the possible child types: + + <we:snapshot> + <we:extLst> + <we:bindings> + <we:properties> + <we:reference> + <we:alternateReferences> + + + + + + Initializes a new instance of the WebExtension class. + + + + + Initializes a new instance of the WebExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtension class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + frozen, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: frozen + + + + + WebExtensionStoreReference. + Represents the following element tag in the schema: we:reference. + + + xmlns:we = http://schemas.microsoft.com/office/webextensions/webextension/2010/11 + + + + + WebExtensionReferenceList. + Represents the following element tag in the schema: we:alternateReferences. + + + xmlns:we = http://schemas.microsoft.com/office/webextensions/webextension/2010/11 + + + + + WebExtensionPropertyBag. + Represents the following element tag in the schema: we:properties. + + + xmlns:we = http://schemas.microsoft.com/office/webextensions/webextension/2010/11 + + + + + WebExtensionBindingList. + Represents the following element tag in the schema: we:bindings. + + + xmlns:we = http://schemas.microsoft.com/office/webextensions/webextension/2010/11 + + + + + Snapshot. + Represents the following element tag in the schema: we:snapshot. + + + xmlns:we = http://schemas.microsoft.com/office/webextensions/webextension/2010/11 + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: we:extLst. + + + xmlns:we = http://schemas.microsoft.com/office/webextensions/webextension/2010/11 + + + + + + + + Loads the DOM from the WebExtensionPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WebExtensionPart. + + Specifies the part to save to. + + + + Gets the WebExtensionPart associated with this element. + + + + + Defines the WebExtensionReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:webextensionref. + + + + + Initializes a new instance of the WebExtensionReference class. + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the WebExtensionProperty Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:property. + + + + + Initializes a new instance of the WebExtensionProperty class. + + + + + name, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: name + + + + + value, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: value + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WebExtensionBinding Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:binding. + + + The following table lists the possible child types: + + <we:extLst> + + + + + + Initializes a new instance of the WebExtensionBinding class. + + + + + Initializes a new instance of the WebExtensionBinding class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionBinding class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionBinding class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + type, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: type + + + + + appref, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: appref + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: we:extLst. + + + xmlns:we = http://schemas.microsoft.com/office/webextensions/webextension/2010/11 + + + + + + + + Defines the WebExtensionStoreReference Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:reference. + + + The following table lists the possible child types: + + <we:extLst> + + + + + + Initializes a new instance of the WebExtensionStoreReference class. + + + + + Initializes a new instance of the WebExtensionStoreReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionStoreReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionStoreReference class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: id + + + + + version, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: version + + + + + store, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: store + + + + + storeType, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: storeType + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: we:extLst. + + + xmlns:we = http://schemas.microsoft.com/office/webextensions/webextension/2010/11 + + + + + + + + Defines the WebExtensionReferenceList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:alternateReferences. + + + The following table lists the possible child types: + + <we:reference> + + + + + + Initializes a new instance of the WebExtensionReferenceList class. + + + + + Initializes a new instance of the WebExtensionReferenceList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionReferenceList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionReferenceList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WebExtensionPropertyBag Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:properties. + + + The following table lists the possible child types: + + <we:property> + + + + + + Initializes a new instance of the WebExtensionPropertyBag class. + + + + + Initializes a new instance of the WebExtensionPropertyBag class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionPropertyBag class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionPropertyBag class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the WebExtensionBindingList Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:bindings. + + + The following table lists the possible child types: + + <we:binding> + + + + + + Initializes a new instance of the WebExtensionBindingList class. + + + + + Initializes a new instance of the WebExtensionBindingList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionBindingList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebExtensionBindingList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Snapshot Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is we:snapshot. + + + The following table lists the possible child types: + + <a:alphaBiLevel> + <a:alphaCeiling> + <a:alphaFloor> + <a:alphaInv> + <a:alphaMod> + <a:alphaModFix> + <a:alphaRepl> + <a:biLevel> + <a:extLst> + <a:blur> + <a:clrChange> + <a:clrRepl> + <a:duotone> + <a:fillOverlay> + <a:grayscl> + <a:hsl> + <a:lum> + <a:tint> + + + + + + Initializes a new instance of the Snapshot class. + + + + + Initializes a new instance of the Snapshot class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Snapshot class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Snapshot class from outer XML. + + Specifies the outer XML of the element. + + + + Embedded Picture Reference + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Linked Picture Reference + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Compression state for blips. + Represents the following attribute in the schema: cstate + + + + + + + + Defines the Color Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:color. + + + + + Initializes a new instance of the Color class. + + + + + Run Content Color + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Content Theme Color + Represents the following attribute in the schema: w:themeColor + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Content Theme Color Tint + Represents the following attribute in the schema: w:themeTint + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Run Content Theme Color Shade + Represents the following attribute in the schema: w:themeShade + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the DataBinding Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:dataBinding. + + + + + Initializes a new instance of the DataBinding class. + + + + + XML Namespace Prefix Mappings + Represents the following attribute in the schema: w:prefixMappings + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + XPath + Represents the following attribute in the schema: w:xpath + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Custom XML Data Storage ID + Represents the following attribute in the schema: w:storeItemID + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the Appearance Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:appearance. + + + + + Initializes a new instance of the Appearance class. + + + + + val, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w15:val + + + xmlns:w15=http://schemas.microsoft.com/office/word/2012/wordml + + + + + + + + Defines the CommentsEx Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:commentsEx. + + + The following table lists the possible child types: + + <w15:commentEx> + + + + + + Initializes a new instance of the CommentsEx class. + + + + + Initializes a new instance of the CommentsEx class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentsEx class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentsEx class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WordprocessingCommentsExPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WordprocessingCommentsExPart. + + Specifies the part to save to. + + + + Gets the WordprocessingCommentsExPart associated with this element. + + + + + Defines the People Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:people. + + + The following table lists the possible child types: + + <w15:person> + + + + + + Initializes a new instance of the People class. + + + + + Initializes a new instance of the People class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the People class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the People class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WordprocessingPeoplePart + + Specifies the part to be loaded. + + + + Saves the DOM into the WordprocessingPeoplePart. + + Specifies the part to save to. + + + + Gets the WordprocessingPeoplePart associated with this element. + + + + + Defines the SdtRepeatedSection Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:repeatingSection. + + + The following table lists the possible child types: + + <w15:doNotAllowInsertDeleteSection> + <w15:sectionTitle> + + + + + + Initializes a new instance of the SdtRepeatedSection class. + + + + + Initializes a new instance of the SdtRepeatedSection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtRepeatedSection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SdtRepeatedSection class from outer XML. + + Specifies the outer XML of the element. + + + + SectionTitle. + Represents the following element tag in the schema: w15:sectionTitle. + + + xmlns:w15 = http://schemas.microsoft.com/office/word/2012/wordml + + + + + DoNotAllowInsertDeleteSection. + Represents the following element tag in the schema: w15:doNotAllowInsertDeleteSection. + + + xmlns:w15 = http://schemas.microsoft.com/office/word/2012/wordml + + + + + + + + Defines the SdtRepeatedSectionItem Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:repeatingSectionItem. + + + + + Initializes a new instance of the SdtRepeatedSectionItem class. + + + + + + + + Defines the ChartTrackingRefBased Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:chartTrackingRefBased. + + + + + Initializes a new instance of the ChartTrackingRefBased class. + + + + + + + + Defines the DefaultCollapsed Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:collapsed. + + + + + Initializes a new instance of the DefaultCollapsed class. + + + + + + + + Defines the WebExtensionLinked Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:webExtensionLinked. + + + + + Initializes a new instance of the WebExtensionLinked class. + + + + + + + + Defines the WebExtensionCreated Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:webExtensionCreated. + + + + + Initializes a new instance of the WebExtensionCreated class. + + + + + + + + Defines the DoNotAllowInsertDeleteSection Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:doNotAllowInsertDeleteSection. + + + + + Initializes a new instance of the DoNotAllowInsertDeleteSection class. + + + + + + + + Defines the OnOffType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OnOffType class. + + + + + On/Off Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + Defines the PersistentDocumentId Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:docId. + + + + + Initializes a new instance of the PersistentDocumentId class. + + + + + val, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w15:val + + + xmlns:w15=http://schemas.microsoft.com/office/word/2012/wordml + + + + + + + + Defines the FootnoteColumns Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:footnoteColumns. + + + + + Initializes a new instance of the FootnoteColumns class. + + + + + Decimal Number Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the CommentEx Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:commentEx. + + + + + Initializes a new instance of the CommentEx class. + + + + + paraId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w15:paraId + + + xmlns:w15=http://schemas.microsoft.com/office/word/2012/wordml + + + + + paraIdParent, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w15:paraIdParent + + + xmlns:w15=http://schemas.microsoft.com/office/word/2012/wordml + + + + + done, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w15:done + + + xmlns:w15=http://schemas.microsoft.com/office/word/2012/wordml + + + + + + + + Defines the Person Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:person. + + + The following table lists the possible child types: + + <w15:presenceInfo> + + + + + + Initializes a new instance of the Person class. + + + + + Initializes a new instance of the Person class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Person class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Person class from outer XML. + + Specifies the outer XML of the element. + + + + author, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w15:author + + + xmlns:w15=http://schemas.microsoft.com/office/word/2012/wordml + + + + + PresenceInfo. + Represents the following element tag in the schema: w15:presenceInfo. + + + xmlns:w15 = http://schemas.microsoft.com/office/word/2012/wordml + + + + + + + + Defines the PresenceInfo Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:presenceInfo. + + + + + Initializes a new instance of the PresenceInfo class. + + + + + providerId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w15:providerId + + + xmlns:w15=http://schemas.microsoft.com/office/word/2012/wordml + + + + + userId, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w15:userId + + + xmlns:w15=http://schemas.microsoft.com/office/word/2012/wordml + + + + + + + + Defines the SectionTitle Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is w15:sectionTitle. + + + + + Initializes a new instance of the SectionTitle class. + + + + + String Value + Represents the following attribute in the schema: w:val + + + xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Defines the SdtAppearance enumeration. + + + + + Creates a new SdtAppearance enum instance + + + + + boundingBox. + When the item is serialized out as xml, its value is "boundingBox". + + + + + tags. + When the item is serialized out as xml, its value is "tags". + + + + + hidden. + When the item is serialized out as xml, its value is "hidden". + + + + + Defines the WebVideoProperty Class. + This class is available in Office 2013 and above. + When the object is serialized out as xml, it's qualified name is wp15:webVideoPr. + + + + + Initializes a new instance of the WebVideoProperty class. + + + + + embeddedHtml, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: embeddedHtml + + + + + h, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: h + + + + + w, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: w + + + + + + + + Defines the ShapeMoniker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:spMk. + + + + + Initializes a new instance of the ShapeMoniker class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + creationId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: creationId + + + + + + + + Defines the GroupShapeMoniker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:grpSpMk. + + + + + Initializes a new instance of the GroupShapeMoniker class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + creationId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: creationId + + + + + + + + Defines the GraphicFrameMoniker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:graphicFrameMk. + + + + + Initializes a new instance of the GraphicFrameMoniker class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + creationId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: creationId + + + + + + + + Defines the ConnectorMoniker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cxnSpMk. + + + + + Initializes a new instance of the ConnectorMoniker class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + creationId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: creationId + + + + + + + + Defines the PictureMoniker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:picMk. + + + + + Initializes a new instance of the PictureMoniker class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + creationId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: creationId + + + + + + + + Defines the InkMoniker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:inkMk. + + + + + Initializes a new instance of the InkMoniker class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + creationId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: creationId + + + + + + + + Defines the DrawingMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:dgMkLst. + + + + + Initializes a new instance of the DrawingMonikerList class. + + + + + Initializes a new instance of the DrawingMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DrawingMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DrawingMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Transform2D Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the GroupShapeMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:grpSpMkLst. + + + + + Initializes a new instance of the GroupShapeMonikerList class. + + + + + Initializes a new instance of the GroupShapeMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DrawingElementPackage Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:dePkg. + + + + + Initializes a new instance of the DrawingElementPackage class. + + + + + + + + Defines the DeMkLstDrawingElementMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:deMkLst. + + + + + Initializes a new instance of the DeMkLstDrawingElementMonikerList class. + + + + + Initializes a new instance of the DeMkLstDrawingElementMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeMkLstDrawingElementMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeMkLstDrawingElementMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DeMasterMkLstDrawingElementMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:deMasterMkLst. + + + + + Initializes a new instance of the DeMasterMkLstDrawingElementMonikerList class. + + + + + Initializes a new instance of the DeMasterMkLstDrawingElementMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeMasterMkLstDrawingElementMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeMasterMkLstDrawingElementMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DeSrcMkLstDrawingElementMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:deSrcMkLst. + + + + + Initializes a new instance of the DeSrcMkLstDrawingElementMonikerList class. + + + + + Initializes a new instance of the DeSrcMkLstDrawingElementMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeSrcMkLstDrawingElementMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeSrcMkLstDrawingElementMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DeTgtMkLstDrawingElementMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:deTgtMkLst. + + + + + Initializes a new instance of the DeTgtMkLstDrawingElementMonikerList class. + + + + + Initializes a new instance of the DeTgtMkLstDrawingElementMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeTgtMkLstDrawingElementMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DeTgtMkLstDrawingElementMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlDrawingElementMonikerListElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlDrawingElementMonikerListElement class. + + + + + Initializes a new instance of the OpenXmlDrawingElementMonikerListElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlDrawingElementMonikerListElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlDrawingElementMonikerListElement class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the ImgDataImgData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:imgData. + + + + + Initializes a new instance of the ImgDataImgData class. + + + + + Initializes a new instance of the ImgDataImgData class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the OrigImgDataImgData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:origImgData. + + + + + Initializes a new instance of the OrigImgDataImgData class. + + + + + Initializes a new instance of the OrigImgDataImgData class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the SndDataImgData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:sndData. + + + + + Initializes a new instance of the SndDataImgData class. + + + + + Initializes a new instance of the SndDataImgData class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the OpenXmlImgDataElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlImgDataElement class. + + + + + Initializes a new instance of the OpenXmlImgDataElement class with the specified text content. + + Specifies the text content of the element. + + + + Defines the ResourceUrl Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:imgUrl. + + + + + Initializes a new instance of the ResourceUrl class. + + + + + src, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: src + + + + + linkage, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: linkage + + + + + + + + Defines the TextBodyPackage Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:txBodyPkg. + + + + + Initializes a new instance of the TextBodyPackage class. + + + + + + + + Defines the GroupCommand Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:grpCmd. + + + The following table lists the possible child types: + + <oac:grpSpPr> + <oac:cNvPr> + <oac:cNvGrpSpPr> + <oac:cxnSpMk> + <oac:dgMkLst> + <oac:graphicFrameMk> + <oac:grpSpMk> + <oac:inkMk> + <oac:picMk> + <oac:spMk> + + + + + + Initializes a new instance of the GroupCommand class. + + + + + Initializes a new instance of the GroupCommand class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupCommand class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupCommand class from outer XML. + + Specifies the outer XML of the element. + + + + verId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: verId + + + + + preventRegroup, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: preventRegroup + + + + + grpId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: grpId + + + + + DrawingMonikerList. + Represents the following element tag in the schema: oac:dgMkLst. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the ImgLink Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:imgLink. + + + + + Initializes a new instance of the ImgLink class. + + + + + tgt, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: tgt + + + + + + + + Defines the DocumentContextMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:dcMkLst. + + + + + Initializes a new instance of the DocumentContextMonikerList class. + + + + + Initializes a new instance of the DocumentContextMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentContextMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentContextMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GraphicParentMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:graphicParentMkLst. + + + + + Initializes a new instance of the GraphicParentMonikerList class. + + + + + Initializes a new instance of the GraphicParentMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicParentMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicParentMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ShapeMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:spMkLst. + + + + + Initializes a new instance of the ShapeMonikerList class. + + + + + Initializes a new instance of the ShapeMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GraphicFrameMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:graphicFrameMkLst. + + + + + Initializes a new instance of the GraphicFrameMonikerList class. + + + + + Initializes a new instance of the GraphicFrameMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrameMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrameMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ConnectorMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cxnSpMkLst. + + + + + Initializes a new instance of the ConnectorMonikerList class. + + + + + Initializes a new instance of the ConnectorMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectorMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectorMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PictureMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:picMkLst. + + + + + Initializes a new instance of the PictureMonikerList class. + + + + + Initializes a new instance of the PictureMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the InkMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:inkMkLst. + + + + + Initializes a new instance of the InkMonikerList class. + + + + + Initializes a new instance of the InkMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InkMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InkMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextBodyMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:txBodyMkLst. + + + + + Initializes a new instance of the TextBodyMonikerList class. + + + + + Initializes a new instance of the TextBodyMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextCharRangeMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:txMkLst. + + + + + Initializes a new instance of the TextCharRangeMonikerList class. + + + + + Initializes a new instance of the TextCharRangeMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextCharRangeMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextCharRangeMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HyperlinkMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:hlinkMkLst. + + + + + Initializes a new instance of the HyperlinkMonikerList class. + + + + + Initializes a new instance of the HyperlinkMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Model3DMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:model3DMkLst. + + + + + Initializes a new instance of the Model3DMonikerList class. + + + + + Initializes a new instance of the Model3DMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ViewSelectionStgList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:viewSelLst. + + + + + Initializes a new instance of the ViewSelectionStgList class. + + + + + Initializes a new instance of the ViewSelectionStgList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ViewSelectionStgList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ViewSelectionStgList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the EditorSelectionStgList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:editorSelLst. + + + + + Initializes a new instance of the EditorSelectionStgList class. + + + + + Initializes a new instance of the EditorSelectionStgList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EditorSelectionStgList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EditorSelectionStgList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DrawingSelectionStgList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:drSelLst. + + + + + Initializes a new instance of the DrawingSelectionStgList class. + + + + + Initializes a new instance of the DrawingSelectionStgList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DrawingSelectionStgList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DrawingSelectionStgList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:tblMkLst. + + + + + Initializes a new instance of the TableMonikerList class. + + + + + Initializes a new instance of the TableMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableCellMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:tcMkLst. + + + + + Initializes a new instance of the TableCellMonikerList class. + + + + + Initializes a new instance of the TableCellMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableRowMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:trMkLst. + + + + + Initializes a new instance of the TableRowMonikerList class. + + + + + Initializes a new instance of the TableRowMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRowMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRowMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableColumnMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:gridColMkLst. + + + + + Initializes a new instance of the TableColumnMonikerList class. + + + + + Initializes a new instance of the TableColumnMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableColumnMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableColumnMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ModifyNonVisualDrawingProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvPr. + + + + + Initializes a new instance of the ModifyNonVisualDrawingProps class. + + + + + name, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: name + + + + + descr, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: descr + + + + + hidden, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: hidden + + + + + title, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: title + + + + + decor, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: decor + + + + + scriptLink, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: scriptLink + + + + + + + + Defines the ModifyTransformProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:xfrm. + + + + + Initializes a new instance of the ModifyTransformProps class. + + + + + x, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: x + + + + + y, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: y + + + + + cx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cx + + + + + cy, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cy + + + + + rot, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rot + + + + + flipH, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: flipH + + + + + flipV, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: flipV + + + + + + + + Defines the Point2DType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:off. + + + + + Initializes a new instance of the Point2DType class. + + + + + X-Axis Coordinate + Represents the following attribute in the schema: x + + + + + Y-Axis Coordinate + Represents the following attribute in the schema: y + + + + + + + + Defines the TextParagraphPropertiesType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the TextParagraphPropertiesType class. + + + + + Initializes a new instance of the TextParagraphPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextParagraphPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextParagraphPropertiesType class from outer XML. + + Specifies the outer XML of the element. + + + + Left Margin + Represents the following attribute in the schema: marL + + + + + Right Margin + Represents the following attribute in the schema: marR + + + + + Level + Represents the following attribute in the schema: lvl + + + + + Indent + Represents the following attribute in the schema: indent + + + + + Alignment + Represents the following attribute in the schema: algn + + + + + Default Tab Size + Represents the following attribute in the schema: defTabSz + + + + + Right To Left + Represents the following attribute in the schema: rtl + + + + + East Asian Line Break + Represents the following attribute in the schema: eaLnBrk + + + + + Font Alignment + Represents the following attribute in the schema: fontAlgn + + + + + Latin Line Break + Represents the following attribute in the schema: latinLnBrk + + + + + Hanging Punctuation + Represents the following attribute in the schema: hangingPunct + + + + + Line Spacing. + Represents the following element tag in the schema: a:lnSpc. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Space Before. + Represents the following element tag in the schema: a:spcBef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Space After. + Represents the following element tag in the schema: a:spcAft. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the TextBodyProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:bodyPr. + + + The following table lists the possible child types: + + <a:flatTx> + <a:extLst> + <a:prstTxWarp> + <a:scene3d> + <a:sp3d> + <a:noAutofit> + <a:normAutofit> + <a:spAutoFit> + + + + + + Initializes a new instance of the TextBodyProperties class. + + + + + Initializes a new instance of the TextBodyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Paragraph Spacing + Represents the following attribute in the schema: spcFirstLastPara + + + + + Text Vertical Overflow + Represents the following attribute in the schema: vertOverflow + + + + + Text Horizontal Overflow + Represents the following attribute in the schema: horzOverflow + + + + + Vertical Text + Represents the following attribute in the schema: vert + + + + + Text Wrapping Type + Represents the following attribute in the schema: wrap + + + + + Left Inset + Represents the following attribute in the schema: lIns + + + + + Top Inset + Represents the following attribute in the schema: tIns + + + + + Right Inset + Represents the following attribute in the schema: rIns + + + + + Bottom Inset + Represents the following attribute in the schema: bIns + + + + + Number of Columns + Represents the following attribute in the schema: numCol + + + + + Space Between Columns + Represents the following attribute in the schema: spcCol + + + + + Columns Right-To-Left + Represents the following attribute in the schema: rtlCol + + + + + From WordArt + Represents the following attribute in the schema: fromWordArt + + + + + Anchor + Represents the following attribute in the schema: anchor + + + + + Anchor Center + Represents the following attribute in the schema: anchorCtr + + + + + Force Anti-Alias + Represents the following attribute in the schema: forceAA + + + + + Text Upright + Represents the following attribute in the schema: upright + + + + + Compatible Line Spacing + Represents the following attribute in the schema: compatLnSpc + + + + + Preset Text Shape. + Represents the following element tag in the schema: a:prstTxWarp. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ModifyNonVisualDrawingShapeProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvSpPr. + + + + + Initializes a new instance of the ModifyNonVisualDrawingShapeProps class. + + + + + noGrp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noGrp + + + + + noSelect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noSelect + + + + + noRot, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noRot + + + + + noChangeAspect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeAspect + + + + + noMove, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noMove + + + + + noResize, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noResize + + + + + noEditPoints, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noEditPoints + + + + + noAdjustHandles, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noAdjustHandles + + + + + noChangeArrowheads, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeArrowheads + + + + + noChangeShapeType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeShapeType + + + + + noTextEdit, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noTextEdit + + + + + txBox, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: txBox + + + + + + + + Defines the ShapePropsMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:spMkLst. + + + + + Initializes a new instance of the ShapePropsMonikerList class. + + + + + Initializes a new instance of the ShapePropsMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapePropsMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapePropsMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the XfrmEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:xfrm. + + + + + Initializes a new instance of the XfrmEmpty class. + + + + + + + + Defines the GeomEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:geom. + + + + + Initializes a new instance of the GeomEmpty class. + + + + + + + + Defines the FillEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:fill. + + + + + Initializes a new instance of the FillEmpty class. + + + + + + + + Defines the LnEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:ln. + + + + + Initializes a new instance of the LnEmpty class. + + + + + + + + Defines the EffectEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:effect. + + + + + Initializes a new instance of the EffectEmpty class. + + + + + + + + Defines the Scene3dEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:scene3d. + + + + + Initializes a new instance of the Scene3dEmpty class. + + + + + + + + Defines the Sp3dEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:sp3d. + + + + + Initializes a new instance of the Sp3dEmpty class. + + + + + + + + Defines the ExtLstEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:extLst. + + + + + Initializes a new instance of the ExtLstEmpty class. + + + + + + + + Defines the BwModeEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:bwMode. + + + + + Initializes a new instance of the BwModeEmpty class. + + + + + + + + Defines the SrcRectEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:srcRect. + + + + + Initializes a new instance of the SrcRectEmpty class. + + + + + + + + Defines the FillModeEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:fillMode. + + + + + Initializes a new instance of the FillModeEmpty class. + + + + + + + + Defines the DpiEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:dpi. + + + + + Initializes a new instance of the DpiEmpty class. + + + + + + + + Defines the RotWithShapeEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:rotWithShape. + + + + + Initializes a new instance of the RotWithShapeEmpty class. + + + + + + + + Defines the StCxnEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:stCxn. + + + + + Initializes a new instance of the StCxnEmpty class. + + + + + + + + Defines the EndCxnEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:endCxn. + + + + + Initializes a new instance of the EndCxnEmpty class. + + + + + + + + Defines the NoGrpEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noGrp. + + + + + Initializes a new instance of the NoGrpEmpty class. + + + + + + + + Defines the NoSelectEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noSelect. + + + + + Initializes a new instance of the NoSelectEmpty class. + + + + + + + + Defines the NoRotEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noRot. + + + + + Initializes a new instance of the NoRotEmpty class. + + + + + + + + Defines the NoChangeAspectEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noChangeAspect. + + + + + Initializes a new instance of the NoChangeAspectEmpty class. + + + + + + + + Defines the NoMoveEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noMove. + + + + + Initializes a new instance of the NoMoveEmpty class. + + + + + + + + Defines the NoResizeEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noResize. + + + + + Initializes a new instance of the NoResizeEmpty class. + + + + + + + + Defines the NoEditPointsEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noEditPoints. + + + + + Initializes a new instance of the NoEditPointsEmpty class. + + + + + + + + Defines the NoAdjustHandlesEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noAdjustHandles. + + + + + Initializes a new instance of the NoAdjustHandlesEmpty class. + + + + + + + + Defines the NoChangeArrowheadsEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noChangeArrowheads. + + + + + Initializes a new instance of the NoChangeArrowheadsEmpty class. + + + + + + + + Defines the NoChangeShapeTypeEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:noChangeShapeType. + + + + + Initializes a new instance of the NoChangeShapeTypeEmpty class. + + + + + + + + Defines the LfPrEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:lfPr. + + + + + Initializes a new instance of the LfPrEmpty class. + + + + + + + + Defines the HlinkClickEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:hlinkClick. + + + + + Initializes a new instance of the HlinkClickEmpty class. + + + + + + + + Defines the HlinkHoverEmpty Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:hlinkHover. + + + + + Initializes a new instance of the HlinkHoverEmpty class. + + + + + + + + Defines the OpenXmlEmptyElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlEmptyElement class. + + + + + Defines the ResetShapeProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:spPr. + + + The following table lists the possible child types: + + <oac:xfrm> + <oac:geom> + <oac:fill> + <oac:ln> + <oac:effect> + <oac:scene3d> + <oac:sp3d> + <oac:extLst> + <oac:bwMode> + + + + + + Initializes a new instance of the ResetShapeProperties class. + + + + + Initializes a new instance of the ResetShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + XfrmEmpty. + Represents the following element tag in the schema: oac:xfrm. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + GeomEmpty. + Represents the following element tag in the schema: oac:geom. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + FillEmpty. + Represents the following element tag in the schema: oac:fill. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + LnEmpty. + Represents the following element tag in the schema: oac:ln. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + EffectEmpty. + Represents the following element tag in the schema: oac:effect. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + Scene3dEmpty. + Represents the following element tag in the schema: oac:scene3d. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + Sp3dEmpty. + Represents the following element tag in the schema: oac:sp3d. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + ExtLstEmpty. + Represents the following element tag in the schema: oac:extLst. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + BwModeEmpty. + Represents the following element tag in the schema: oac:bwMode. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the LnRefStyleMatrixReference Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:lnRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the LnRefStyleMatrixReference class. + + + + + Initializes a new instance of the LnRefStyleMatrixReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LnRefStyleMatrixReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LnRefStyleMatrixReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the FillRefStyleMatrixReference Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:fillRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the FillRefStyleMatrixReference class. + + + + + Initializes a new instance of the FillRefStyleMatrixReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillRefStyleMatrixReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillRefStyleMatrixReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the EffectRefStyleMatrixReference Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:effectRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the EffectRefStyleMatrixReference class. + + + + + Initializes a new instance of the EffectRefStyleMatrixReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectRefStyleMatrixReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectRefStyleMatrixReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StyleMatrixReferenceType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the StyleMatrixReferenceType class. + + + + + Initializes a new instance of the StyleMatrixReferenceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleMatrixReferenceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleMatrixReferenceType class from outer XML. + + Specifies the outer XML of the element. + + + + Style Matrix Index + Represents the following attribute in the schema: idx + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Defines the FontReference Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:fontRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the FontReference class. + + + + + Initializes a new instance of the FontReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontReference class from outer XML. + + Specifies the outer XML of the element. + + + + Identifier + Represents the following attribute in the schema: idx + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ModifyShapeStyleProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:style. + + + The following table lists the possible child types: + + <oac:fontRef> + <oac:lnRef> + <oac:fillRef> + <oac:effectRef> + + + + + + Initializes a new instance of the ModifyShapeStyleProps class. + + + + + Initializes a new instance of the ModifyShapeStyleProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModifyShapeStyleProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModifyShapeStyleProps class from outer XML. + + Specifies the outer XML of the element. + + + + LnRefStyleMatrixReference. + Represents the following element tag in the schema: oac:lnRef. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + FillRefStyleMatrixReference. + Represents the following element tag in the schema: oac:fillRef. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + EffectRefStyleMatrixReference. + Represents the following element tag in the schema: oac:effectRef. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + FontReference. + Represents the following element tag in the schema: oac:fontRef. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the ResetXsdboolean Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:reset. + + + + + Initializes a new instance of the ResetXsdboolean class. + + + + + Initializes a new instance of the ResetXsdboolean class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the UseBoundsXsdboolean Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:useBounds. + + + + + Initializes a new instance of the UseBoundsXsdboolean class. + + + + + Initializes a new instance of the UseBoundsXsdboolean class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the BlipFillProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:blipFill. + + + The following table lists the possible child types: + + <a:blip> + <a:srcRect> + <a:stretch> + <a:tile> + + + + + + Initializes a new instance of the BlipFillProperties class. + + + + + Initializes a new instance of the BlipFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + DPI Setting + Represents the following attribute in the schema: dpi + + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + Blip. + Represents the following element tag in the schema: a:blip. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Source Rectangle. + Represents the following element tag in the schema: a:srcRect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the FillRectRelativeRectProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:fillRect. + + + + + Initializes a new instance of the FillRectRelativeRectProps class. + + + + + + + + Defines the SrcRectRelativeRectProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:srcRect. + + + + + Initializes a new instance of the SrcRectRelativeRectProps class. + + + + + + + + Defines the OpenXmlRelativeRectPropsElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlRelativeRectPropsElement class. + + + + + l, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: l + + + + + t, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: t + + + + + r, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r + + + + + b, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: b + + + + + Defines the ResetBlipFillProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:blipFill. + + + The following table lists the possible child types: + + <oac:srcRect> + <oac:fillMode> + <oac:dpi> + <oac:rotWithShape> + + + + + + Initializes a new instance of the ResetBlipFillProperties class. + + + + + Initializes a new instance of the ResetBlipFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetBlipFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetBlipFillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + SrcRectEmpty. + Represents the following element tag in the schema: oac:srcRect. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + FillModeEmpty. + Represents the following element tag in the schema: oac:fillMode. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + DpiEmpty. + Represents the following element tag in the schema: oac:dpi. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + RotWithShapeEmpty. + Represents the following element tag in the schema: oac:rotWithShape. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the ModifyNonVisualGroupDrawingShapeProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvGrpSpPr. + + + + + Initializes a new instance of the ModifyNonVisualGroupDrawingShapeProps class. + + + + + noGrp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noGrp + + + + + noUngrp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noUngrp + + + + + noSelect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noSelect + + + + + noRot, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noRot + + + + + noChangeAspect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeAspect + + + + + noMove, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noMove + + + + + noResize, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noResize + + + + + + + + Defines the GroupShapeProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:grpSpPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:xfrm> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:scene3d> + <a:solidFill> + + + + + + Initializes a new instance of the GroupShapeProperties class. + + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Grouped Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ResetGroupShapeProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:grpSpPr. + + + The following table lists the possible child types: + + <oac:xfrm> + <oac:fill> + <oac:effect> + <oac:scene3d> + <oac:extLst> + <oac:bwMode> + + + + + + Initializes a new instance of the ResetGroupShapeProperties class. + + + + + Initializes a new instance of the ResetGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetGroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + XfrmEmpty. + Represents the following element tag in the schema: oac:xfrm. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + FillEmpty. + Represents the following element tag in the schema: oac:fill. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + EffectEmpty. + Represents the following element tag in the schema: oac:effect. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + Scene3dEmpty. + Represents the following element tag in the schema: oac:scene3d. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + ExtLstEmpty. + Represents the following element tag in the schema: oac:extLst. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + BwModeEmpty. + Represents the following element tag in the schema: oac:bwMode. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the NonVisualDrawingProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProps class. + + + + + Initializes a new instance of the NonVisualDrawingProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProps class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualGroupDrawingShapeProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvGrpSpPr. + + + The following table lists the possible child types: + + <a:grpSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProps class. + + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapeProps class from outer XML. + + Specifies the outer XML of the element. + + + + GroupShapeLocks. + Represents the following element tag in the schema: a:grpSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualGroupDrawingShapePropsExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ModifyNonVisualGraphicFrameProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvGraphicFramePr. + + + + + Initializes a new instance of the ModifyNonVisualGraphicFrameProps class. + + + + + noGrp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noGrp + + + + + noDrilldown, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noDrilldown + + + + + noSelect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noSelect + + + + + noChangeAspect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeAspect + + + + + noMove, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noMove + + + + + noResize, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noResize + + + + + + + + Defines the StCxnConnection Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:stCxn. + + + + + Initializes a new instance of the StCxnConnection class. + + + + + + + + Defines the EndCxnConnection Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:endCxn. + + + + + Initializes a new instance of the EndCxnConnection class. + + + + + + + + Defines the ConnectionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the ConnectionType class. + + + + + Identifier + Represents the following attribute in the schema: id + + + + + Index + Represents the following attribute in the schema: idx + + + + + Defines the ModifyNonVisualConnectorProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvCxnSpPr. + + + The following table lists the possible child types: + + <oac:stCxn> + <oac:endCxn> + + + + + + Initializes a new instance of the ModifyNonVisualConnectorProps class. + + + + + Initializes a new instance of the ModifyNonVisualConnectorProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModifyNonVisualConnectorProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModifyNonVisualConnectorProps class from outer XML. + + Specifies the outer XML of the element. + + + + noGrp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noGrp + + + + + noSelect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noSelect + + + + + noRot, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noRot + + + + + noChangeAspect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeAspect + + + + + noMove, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noMove + + + + + noResize, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noResize + + + + + noEditPoints, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noEditPoints + + + + + noAdjustHandles, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noAdjustHandles + + + + + noChangeArrowheads, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeArrowheads + + + + + noChangeShapeType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeShapeType + + + + + StCxnConnection. + Represents the following element tag in the schema: oac:stCxn. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + EndCxnConnection. + Represents the following element tag in the schema: oac:endCxn. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the ResetNonVisualConnectorProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvCxnSpPr. + + + The following table lists the possible child types: + + <oac:stCxn> + <oac:endCxn> + <oac:noGrp> + <oac:noSelect> + <oac:noRot> + <oac:noChangeAspect> + <oac:noMove> + <oac:noResize> + <oac:noEditPoints> + <oac:noAdjustHandles> + <oac:noChangeArrowheads> + <oac:noChangeShapeType> + + + + + + Initializes a new instance of the ResetNonVisualConnectorProps class. + + + + + Initializes a new instance of the ResetNonVisualConnectorProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetNonVisualConnectorProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetNonVisualConnectorProps class from outer XML. + + Specifies the outer XML of the element. + + + + StCxnEmpty. + Represents the following element tag in the schema: oac:stCxn. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + EndCxnEmpty. + Represents the following element tag in the schema: oac:endCxn. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoGrpEmpty. + Represents the following element tag in the schema: oac:noGrp. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoSelectEmpty. + Represents the following element tag in the schema: oac:noSelect. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoRotEmpty. + Represents the following element tag in the schema: oac:noRot. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoChangeAspectEmpty. + Represents the following element tag in the schema: oac:noChangeAspect. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoMoveEmpty. + Represents the following element tag in the schema: oac:noMove. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoResizeEmpty. + Represents the following element tag in the schema: oac:noResize. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoEditPointsEmpty. + Represents the following element tag in the schema: oac:noEditPoints. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoAdjustHandlesEmpty. + Represents the following element tag in the schema: oac:noAdjustHandles. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoChangeArrowheadsEmpty. + Represents the following element tag in the schema: oac:noChangeArrowheads. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + NoChangeShapeTypeEmpty. + Represents the following element tag in the schema: oac:noChangeShapeType. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the CompressPictureProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:compressPicPr. + + + + + Initializes a new instance of the CompressPictureProps class. + + + + + removeCrop, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: removeCrop + + + + + useLocalDpi, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: useLocalDpi + + + + + cstate, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cstate + + + + + + + + Defines the ModifyNonVisualPictureProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvPicPr. + + + + + Initializes a new instance of the ModifyNonVisualPictureProps class. + + + + + noGrp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noGrp + + + + + noSelect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noSelect + + + + + noRot, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noRot + + + + + noChangeAspect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeAspect + + + + + noMove, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noMove + + + + + noResize, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noResize + + + + + noEditPoints, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noEditPoints + + + + + noAdjustHandles, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noAdjustHandles + + + + + noChangeArrowheads, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeArrowheads + + + + + noChangeShapeType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeShapeType + + + + + noCrop, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noCrop + + + + + preferRelativeResize, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: preferRelativeResize + + + + + + + + Defines the ResetNonVisualPictureProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvPicPr. + + + The following table lists the possible child types: + + <oac:lfPr> + + + + + + Initializes a new instance of the ResetNonVisualPictureProps class. + + + + + Initializes a new instance of the ResetNonVisualPictureProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetNonVisualPictureProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetNonVisualPictureProps class from outer XML. + + Specifies the outer XML of the element. + + + + LfPrEmpty. + Represents the following element tag in the schema: oac:lfPr. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the BoundRect Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:bounds. + + + + + Initializes a new instance of the BoundRect class. + + + + + l + Represents the following attribute in the schema: l + + + + + t + Represents the following attribute in the schema: t + + + + + r + Represents the following attribute in the schema: r + + + + + b + Represents the following attribute in the schema: b + + + + + + + + Defines the SVGBlipMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:svgBlipMkLst. + + + + + Initializes a new instance of the SVGBlipMonikerList class. + + + + + Initializes a new instance of the SVGBlipMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SVGBlipMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SVGBlipMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LinePropertiesType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:lineProps. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the LinePropertiesType class. + + + + + Initializes a new instance of the LinePropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinePropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinePropertiesType class from outer XML. + + Specifies the outer XML of the element. + + + + line width + Represents the following attribute in the schema: w + + + + + line cap + Represents the following attribute in the schema: cap + + + + + compound line type + Represents the following attribute in the schema: cmpd + + + + + pen alignment + Represents the following attribute in the schema: algn + + + + + + + + Defines the ModifyNonVisualInkProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:cNvInkPr. + + + + + Initializes a new instance of the ModifyNonVisualInkProps class. + + + + + noGrp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noGrp + + + + + noSelect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noSelect + + + + + noRot, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noRot + + + + + noChangeAspect, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeAspect + + + + + noMove, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noMove + + + + + noResize, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noResize + + + + + noEditPoints, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noEditPoints + + + + + noAdjustHandles, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noAdjustHandles + + + + + noChangeArrowheads, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeArrowheads + + + + + noChangeShapeType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: noChangeShapeType + + + + + isComment, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: isComment + + + + + + + + Defines the HlinkClickHyperlinkProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:hlinkClick. + + + The following table lists the possible child types: + + <oac:sndData> + + + + + + Initializes a new instance of the HlinkClickHyperlinkProps class. + + + + + Initializes a new instance of the HlinkClickHyperlinkProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HlinkClickHyperlinkProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HlinkClickHyperlinkProps class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HlinkHoverHyperlinkProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:hlinkHover. + + + The following table lists the possible child types: + + <oac:sndData> + + + + + + Initializes a new instance of the HlinkHoverHyperlinkProps class. + + + + + Initializes a new instance of the HlinkHoverHyperlinkProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HlinkHoverHyperlinkProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HlinkHoverHyperlinkProps class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlHyperlinkPropsElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <oac:sndData> + + + + + + Initializes a new instance of the OpenXmlHyperlinkPropsElement class. + + + + + Initializes a new instance of the OpenXmlHyperlinkPropsElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlHyperlinkPropsElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlHyperlinkPropsElement class from outer XML. + + Specifies the outer XML of the element. + + + + source, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: source + + + + + action, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: action + + + + + tgtFrame, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: tgtFrame + + + + + tooltip, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: tooltip + + + + + highlightClick, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: highlightClick + + + + + endSnd, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: endSnd + + + + + sndName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sndName + + + + + SndDataImgData. + Represents the following element tag in the schema: oac:sndData. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + Defines the ModifyHyperlinkProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:hlink. + + + The following table lists the possible child types: + + <oac:hlinkClick> + <oac:hlinkHover> + + + + + + Initializes a new instance of the ModifyHyperlinkProps class. + + + + + Initializes a new instance of the ModifyHyperlinkProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModifyHyperlinkProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModifyHyperlinkProps class from outer XML. + + Specifies the outer XML of the element. + + + + HlinkClickHyperlinkProps. + Represents the following element tag in the schema: oac:hlinkClick. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + HlinkHoverHyperlinkProps. + Represents the following element tag in the schema: oac:hlinkHover. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the ResetHyperlinkProps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:hlink. + + + The following table lists the possible child types: + + <oac:hlinkClick> + <oac:hlinkHover> + + + + + + Initializes a new instance of the ResetHyperlinkProps class. + + + + + Initializes a new instance of the ResetHyperlinkProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetHyperlinkProps class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ResetHyperlinkProps class from outer XML. + + Specifies the outer XML of the element. + + + + HlinkClickEmpty. + Represents the following element tag in the schema: oac:hlinkClick. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + HlinkHoverEmpty. + Represents the following element tag in the schema: oac:hlinkHover. + + + xmlns:oac = http://schemas.microsoft.com/office/drawing/2013/main/command + + + + + + + + Defines the TextCharRangeContext Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is oac:context. + + + + + Initializes a new instance of the TextCharRangeContext class. + + + + + len, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: len + + + + + hash, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: hash + + + + + + + + Defines the ResourceLinkage enumeration. + + + + + Creates a new ResourceLinkage enum instance + + + + + embed. + When the item is serialized out as xml, its value is "embed". + + + + + link. + When the item is serialized out as xml, its value is "link". + + + + + linkAndEmbed. + When the item is serialized out as xml, its value is "linkAndEmbed". + + + + + Defines the DetachConnection enumeration. + + + + + Creates a new DetachConnection enum instance + + + + + start. + When the item is serialized out as xml, its value is "start". + + + + + end. + When the item is serialized out as xml, its value is "end". + + + + + both. + When the item is serialized out as xml, its value is "both". + + + + + Defines the ShapeProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the UnsignedIntegerType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:explosion. + + + + + Initializes a new instance of the UnsignedIntegerType class. + + + + + Integer Value + Represents the following attribute in the schema: val + + + + + + + + Defines the InvertIfNegativeBoolean Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:invertIfNegative. + + + + + Initializes a new instance of the InvertIfNegativeBoolean class. + + + + + + + + Defines the Bubble3DBoolean Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:bubble3D. + + + + + Initializes a new instance of the Bubble3DBoolean class. + + + + + + + + Defines the BooleanType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BooleanType class. + + + + + Boolean Value + Represents the following attribute in the schema: val + + + + + Defines the Marker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:marker. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:size> + <c:symbol> + + + + + + Initializes a new instance of the Marker class. + + + + + Initializes a new instance of the Marker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Marker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Marker class from outer XML. + + Specifies the outer XML of the element. + + + + Symbol. + Represents the following element tag in the schema: c:symbol. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Size. + Represents the following element tag in the schema: c:size. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the DLbl Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:dLbl. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:delete> + <c:showLegendKey> + <c:showVal> + <c:showCatName> + <c:showSerName> + <c:showPercent> + <c:showBubbleSize> + <c:extLst> + <c:dLblPos> + <c:layout> + <c:numFmt> + <c:tx> + <c:idx> + <c:separator> + + + + + + Initializes a new instance of the DLbl class. + + + + + Initializes a new instance of the DLbl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLbl class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLbl class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the CategoryFilterExceptions Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:categoryFilterExceptions. + + + The following table lists the possible child types: + + <c16:categoryFilterException> + + + + + + Initializes a new instance of the CategoryFilterExceptions class. + + + + + Initializes a new instance of the CategoryFilterExceptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryFilterExceptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryFilterExceptions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PivotOptions16 Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:pivotOptions16. + + + The following table lists the possible child types: + + <c16:showExpandCollapseFieldButtons> + + + + + + Initializes a new instance of the PivotOptions16 class. + + + + + Initializes a new instance of the PivotOptions16 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotOptions16 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotOptions16 class from outer XML. + + Specifies the outer XML of the element. + + + + BooleanFalse. + Represents the following element tag in the schema: c16:showExpandCollapseFieldButtons. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + + + + Defines the ChartDataPointUniqueIDMap Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:datapointuniqueidmap. + + + The following table lists the possible child types: + + <c16:ptentry> + + + + + + Initializes a new instance of the ChartDataPointUniqueIDMap class. + + + + + Initializes a new instance of the ChartDataPointUniqueIDMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartDataPointUniqueIDMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartDataPointUniqueIDMap class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the UniqueIdChartUniqueID Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:uniqueId. + + + + + Initializes a new instance of the UniqueIdChartUniqueID class. + + + + + + + + Defines the UniqueID Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:uniqueID. + + + + + Initializes a new instance of the UniqueID class. + + + + + + + + Defines the UniqueIDChart Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the UniqueIDChart class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + Defines the CategoryFilterException Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:categoryFilterException. + + + The following table lists the possible child types: + + <c16:spPr> + <c16:invertIfNegative> + <c16:bubble3D> + <c16:dLbl> + <c16:marker> + <c16:explosion> + <c16:uniqueId> + + + + + + Initializes a new instance of the CategoryFilterException class. + + + + + Initializes a new instance of the CategoryFilterException class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryFilterException class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryFilterException class from outer XML. + + Specifies the outer XML of the element. + + + + UniqueIdChartUniqueID. + Represents the following element tag in the schema: c16:uniqueId. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + ShapeProperties. + Represents the following element tag in the schema: c16:spPr. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + UnsignedIntegerType. + Represents the following element tag in the schema: c16:explosion. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + InvertIfNegativeBoolean. + Represents the following element tag in the schema: c16:invertIfNegative. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + Bubble3DBoolean. + Represents the following element tag in the schema: c16:bubble3D. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + Marker. + Represents the following element tag in the schema: c16:marker. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + DLbl. + Represents the following element tag in the schema: c16:dLbl. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + + + + Defines the NumberDataType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:numCache. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + <c:formatCode> + + + + + + Initializes a new instance of the NumberDataType class. + + + + + Initializes a new instance of the NumberDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDataType class from outer XML. + + Specifies the outer XML of the element. + + + + Format Code. + Represents the following element tag in the schema: c:formatCode. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Point Count. + Represents the following element tag in the schema: c:ptCount. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the NumFilteredLiteralCache Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:filteredLitCache. + + + The following table lists the possible child types: + + <c16:numCache> + + + + + + Initializes a new instance of the NumFilteredLiteralCache class. + + + + + Initializes a new instance of the NumFilteredLiteralCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumFilteredLiteralCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumFilteredLiteralCache class from outer XML. + + Specifies the outer XML of the element. + + + + NumberDataType. + Represents the following element tag in the schema: c16:numCache. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + + + + Defines the StringDataType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:strCache. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + + + + + + Initializes a new instance of the StringDataType class. + + + + + Initializes a new instance of the StringDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringDataType class from outer XML. + + Specifies the outer XML of the element. + + + + PointCount. + Represents the following element tag in the schema: c:ptCount. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the StrFilteredLiteralCache Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:filteredLitCache. + + + The following table lists the possible child types: + + <c16:strCache> + + + + + + Initializes a new instance of the StrFilteredLiteralCache class. + + + + + Initializes a new instance of the StrFilteredLiteralCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrFilteredLiteralCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrFilteredLiteralCache class from outer XML. + + Specifies the outer XML of the element. + + + + StringDataType. + Represents the following element tag in the schema: c16:strCache. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + + + + Defines the MultiLvlStrData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:multiLvlStrCache. + + + The following table lists the possible child types: + + <c:extLst> + <c:lvl> + <c:ptCount> + + + + + + Initializes a new instance of the MultiLvlStrData class. + + + + + Initializes a new instance of the MultiLvlStrData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrData class from outer XML. + + Specifies the outer XML of the element. + + + + PointCount. + Represents the following element tag in the schema: c:ptCount. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the MultiLvlStrFilteredLiteralCache Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:filteredLitCache. + + + The following table lists the possible child types: + + <c16:multiLvlStrCache> + + + + + + Initializes a new instance of the MultiLvlStrFilteredLiteralCache class. + + + + + Initializes a new instance of the MultiLvlStrFilteredLiteralCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrFilteredLiteralCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrFilteredLiteralCache class from outer XML. + + Specifies the outer XML of the element. + + + + MultiLvlStrData. + Represents the following element tag in the schema: c16:multiLvlStrCache. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + + + + Defines the LiteralDataChart Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:literalDataChart. + + + + + Initializes a new instance of the LiteralDataChart class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the BooleanFalse Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:showExpandCollapseFieldButtons. + + + + + Initializes a new instance of the BooleanFalse class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the XsdunsignedInt Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:ptidx. + + + + + Initializes a new instance of the XsdunsignedInt class. + + + + + Initializes a new instance of the XsdunsignedInt class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the ChartDataPointUniqueIDMapEntry Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16:ptentry. + + + The following table lists the possible child types: + + <c16:uniqueID> + <c16:ptidx> + + + + + + Initializes a new instance of the ChartDataPointUniqueIDMapEntry class. + + + + + Initializes a new instance of the ChartDataPointUniqueIDMapEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartDataPointUniqueIDMapEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartDataPointUniqueIDMapEntry class from outer XML. + + Specifies the outer XML of the element. + + + + XsdunsignedInt. + Represents the following element tag in the schema: c16:ptidx. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + UniqueID. + Represents the following element tag in the schema: c16:uniqueID. + + + xmlns:c16 = http://schemas.microsoft.com/office/drawing/2014/chart + + + + + + + + Defines the ChartSpace Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:chartSpace. + + + The following table lists the possible child types: + + <cx:clrMapOvr> + <cx:spPr> + <cx:txPr> + <cx:chart> + <cx:chartData> + <cx:extLst> + <cx:fmtOvrs> + <cx:printSettings> + + + + + + Initializes a new instance of the ChartSpace class. + + + + + Initializes a new instance of the ChartSpace class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSpace class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSpace class from outer XML. + + Specifies the outer XML of the element. + + + + ChartData. + Represents the following element tag in the schema: cx:chartData. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + Chart. + Represents the following element tag in the schema: cx:chart. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + TxPrTextBody. + Represents the following element tag in the schema: cx:txPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ColorMappingType. + Represents the following element tag in the schema: cx:clrMapOvr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + FormatOverrides. + Represents the following element tag in the schema: cx:fmtOvrs. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + PrintSettings. + Represents the following element tag in the schema: cx:printSettings. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Loads the DOM from the ExtendedChartPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ExtendedChartPart. + + Specifies the part to save to. + + + + Gets the ExtendedChartPart associated with this element. + + + + + Defines the RelId Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:chart. + + + + + Initializes a new instance of the RelId class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the BinCountXsdunsignedInt Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:binCount. + + + + + Initializes a new instance of the BinCountXsdunsignedInt class. + + + + + Initializes a new instance of the BinCountXsdunsignedInt class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Extension2 Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:ext. + + + + + Initializes a new instance of the Extension2 class. + + + + + Initializes a new instance of the Extension2 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension2 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension2 class from outer XML. + + Specifies the outer XML of the element. + + + + uri, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uri + + + + + + + + Defines the MinColorSolidColorFillProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:minColor. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the MinColorSolidColorFillProperties class. + + + + + Initializes a new instance of the MinColorSolidColorFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinColorSolidColorFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinColorSolidColorFillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MidColorSolidColorFillProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:midColor. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the MidColorSolidColorFillProperties class. + + + + + Initializes a new instance of the MidColorSolidColorFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MidColorSolidColorFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MidColorSolidColorFillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MaxColorSolidColorFillProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:maxColor. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the MaxColorSolidColorFillProperties class. + + + + + Initializes a new instance of the MaxColorSolidColorFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MaxColorSolidColorFillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MaxColorSolidColorFillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlSolidColorFillPropertiesElement Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the OpenXmlSolidColorFillPropertiesElement class. + + + + + Initializes a new instance of the OpenXmlSolidColorFillPropertiesElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlSolidColorFillPropertiesElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlSolidColorFillPropertiesElement class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Defines the ChartStringValue Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:pt. + + + + + Initializes a new instance of the ChartStringValue class. + + + + + Initializes a new instance of the ChartStringValue class with the specified text content. + + Specifies the text content of the element. + + + + idx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: idx + + + + + + + + Defines the Formula Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:f. + + + + + Initializes a new instance of the Formula class. + + + + + Initializes a new instance of the Formula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the NfFormula Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:nf. + + + + + Initializes a new instance of the NfFormula class. + + + + + Initializes a new instance of the NfFormula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the OpenXmlFormulaElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlFormulaElement class. + + + + + Initializes a new instance of the OpenXmlFormulaElement class with the specified text content. + + Specifies the text content of the element. + + + + dir, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: dir + + + + + Defines the StringLevel Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:lvl. + + + The following table lists the possible child types: + + <cx:pt> + + + + + + Initializes a new instance of the StringLevel class. + + + + + Initializes a new instance of the StringLevel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringLevel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringLevel class from outer XML. + + Specifies the outer XML of the element. + + + + ptCount, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ptCount + + + + + name, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the NumericValue Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:pt. + + + + + Initializes a new instance of the NumericValue class. + + + + + Initializes a new instance of the NumericValue class with the specified text content. + + Specifies the text content of the element. + + + + idx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: idx + + + + + + + + Defines the NumericLevel Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:lvl. + + + The following table lists the possible child types: + + <cx:pt> + + + + + + Initializes a new instance of the NumericLevel class. + + + + + Initializes a new instance of the NumericLevel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumericLevel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumericLevel class from outer XML. + + Specifies the outer XML of the element. + + + + ptCount, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ptCount + + + + + formatCode, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: formatCode + + + + + name, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the NumericDimension Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:numDim. + + + The following table lists the possible child types: + + <cx:f> + <cx:nf> + <cx:lvl> + + + + + + Initializes a new instance of the NumericDimension class. + + + + + Initializes a new instance of the NumericDimension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumericDimension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumericDimension class from outer XML. + + Specifies the outer XML of the element. + + + + type, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: type + + + + + + + + Defines the StringDimension Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:strDim. + + + The following table lists the possible child types: + + <cx:f> + <cx:nf> + <cx:lvl> + + + + + + Initializes a new instance of the StringDimension class. + + + + + Initializes a new instance of the StringDimension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringDimension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringDimension class from outer XML. + + Specifies the outer XML of the element. + + + + type, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: type + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:extLst. + + + The following table lists the possible child types: + + <cx:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExternalData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:externalData. + + + + + Initializes a new instance of the ExternalData class. + + + + + RelId of the relationship for the external data, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + True if the external link should automatically update, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cx:autoUpdate + + + xmlns:cx=http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the Data Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:data. + + + The following table lists the possible child types: + + <cx:extLst> + <cx:numDim> + <cx:strDim> + + + + + + Initializes a new instance of the Data class. + + + + + Initializes a new instance of the Data class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Data class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Data class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the VXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:v. + + + + + Initializes a new instance of the VXsdstring class. + + + + + Initializes a new instance of the VXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the CopyrightXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:copyright. + + + + + Initializes a new instance of the CopyrightXsdstring class. + + + + + Initializes a new instance of the CopyrightXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the SeparatorXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:separator. + + + + + Initializes a new instance of the SeparatorXsdstring class. + + + + + Initializes a new instance of the SeparatorXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the OddHeaderXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:oddHeader. + + + + + Initializes a new instance of the OddHeaderXsdstring class. + + + + + Initializes a new instance of the OddHeaderXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the OddFooterXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:oddFooter. + + + + + Initializes a new instance of the OddFooterXsdstring class. + + + + + Initializes a new instance of the OddFooterXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EvenHeaderXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:evenHeader. + + + + + Initializes a new instance of the EvenHeaderXsdstring class. + + + + + Initializes a new instance of the EvenHeaderXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the EvenFooterXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:evenFooter. + + + + + Initializes a new instance of the EvenFooterXsdstring class. + + + + + Initializes a new instance of the EvenFooterXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the FirstHeaderXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:firstHeader. + + + + + Initializes a new instance of the FirstHeaderXsdstring class. + + + + + Initializes a new instance of the FirstHeaderXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the FirstFooterXsdstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:firstFooter. + + + + + Initializes a new instance of the FirstFooterXsdstring class. + + + + + Initializes a new instance of the FirstFooterXsdstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the TextData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:txData. + + + The following table lists the possible child types: + + <cx:f> + <cx:v> + + + + + + Initializes a new instance of the TextData class. + + + + + Initializes a new instance of the TextData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextData class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichTextBody Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:rich. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the RichTextBody class. + + + + + Initializes a new instance of the RichTextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichTextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichTextBody class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TxPrTextBody Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:txPr. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TxPrTextBody class. + + + + + Initializes a new instance of the TxPrTextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TxPrTextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TxPrTextBody class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextBodyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBodyType class. + + + + + Initializes a new instance of the TextBodyType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyType class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Defines the Text Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:tx. + + + The following table lists the possible child types: + + <cx:rich> + <cx:txData> + + + + + + Initializes a new instance of the Text class. + + + + + Initializes a new instance of the Text class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Text class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Text class from outer XML. + + Specifies the outer XML of the element. + + + + TextData. + Represents the following element tag in the schema: cx:txData. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + RichTextBody. + Represents the following element tag in the schema: cx:rich. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the AxisUnitsLabel Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:unitsLabel. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:txPr> + <cx:extLst> + <cx:tx> + + + + + + Initializes a new instance of the AxisUnitsLabel class. + + + + + Initializes a new instance of the AxisUnitsLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisUnitsLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisUnitsLabel class from outer XML. + + Specifies the outer XML of the element. + + + + Text. + Represents the following element tag in the schema: cx:tx. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + TxPrTextBody. + Represents the following element tag in the schema: cx:txPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the CategoryAxisScaling Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:catScaling. + + + + + Initializes a new instance of the CategoryAxisScaling class. + + + + + gapWidth, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: gapWidth + + + + + + + + Defines the ValueAxisScaling Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:valScaling. + + + + + Initializes a new instance of the ValueAxisScaling class. + + + + + max, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: max + + + + + min, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: min + + + + + majorUnit, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: majorUnit + + + + + minorUnit, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: minorUnit + + + + + + + + Defines the AxisTitle Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:title. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:txPr> + <cx:extLst> + <cx:tx> + + + + + + Initializes a new instance of the AxisTitle class. + + + + + Initializes a new instance of the AxisTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisTitle class from outer XML. + + Specifies the outer XML of the element. + + + + Text. + Represents the following element tag in the schema: cx:tx. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + TxPrTextBody. + Represents the following element tag in the schema: cx:txPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the AxisUnits Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:units. + + + The following table lists the possible child types: + + <cx:unitsLabel> + <cx:extLst> + + + + + + Initializes a new instance of the AxisUnits class. + + + + + Initializes a new instance of the AxisUnits class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisUnits class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisUnits class from outer XML. + + Specifies the outer XML of the element. + + + + unit, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: unit + + + + + AxisUnitsLabel. + Represents the following element tag in the schema: cx:unitsLabel. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the MajorGridlinesGridlines Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:majorGridlines. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:extLst> + + + + + + Initializes a new instance of the MajorGridlinesGridlines class. + + + + + Initializes a new instance of the MajorGridlinesGridlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MajorGridlinesGridlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MajorGridlinesGridlines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MinorGridlinesGridlines Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:minorGridlines. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:extLst> + + + + + + Initializes a new instance of the MinorGridlinesGridlines class. + + + + + Initializes a new instance of the MinorGridlinesGridlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinorGridlinesGridlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinorGridlinesGridlines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlGridlinesElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:extLst> + + + + + + Initializes a new instance of the OpenXmlGridlinesElement class. + + + + + Initializes a new instance of the OpenXmlGridlinesElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlGridlinesElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlGridlinesElement class from outer XML. + + Specifies the outer XML of the element. + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + Defines the MajorTickMarksTickMarks Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:majorTickMarks. + + + The following table lists the possible child types: + + <cx:extLst> + + + + + + Initializes a new instance of the MajorTickMarksTickMarks class. + + + + + Initializes a new instance of the MajorTickMarksTickMarks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MajorTickMarksTickMarks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MajorTickMarksTickMarks class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MinorTickMarksTickMarks Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:minorTickMarks. + + + The following table lists the possible child types: + + <cx:extLst> + + + + + + Initializes a new instance of the MinorTickMarksTickMarks class. + + + + + Initializes a new instance of the MinorTickMarksTickMarks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinorTickMarksTickMarks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinorTickMarksTickMarks class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlTickMarksElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <cx:extLst> + + + + + + Initializes a new instance of the OpenXmlTickMarksElement class. + + + + + Initializes a new instance of the OpenXmlTickMarksElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlTickMarksElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlTickMarksElement class from outer XML. + + Specifies the outer XML of the element. + + + + type, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: type + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + Defines the TickLabels Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:tickLabels. + + + The following table lists the possible child types: + + <cx:extLst> + + + + + + Initializes a new instance of the TickLabels class. + + + + + Initializes a new instance of the TickLabels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TickLabels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TickLabels class from outer XML. + + Specifies the outer XML of the element. + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the NumberFormat Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:numFmt. + + + + + Initializes a new instance of the NumberFormat class. + + + + + formatCode, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: formatCode + + + + + sourceLinked, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sourceLinked + + + + + + + + Defines the Xsddouble Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:binSize. + + + + + Initializes a new instance of the Xsddouble class. + + + + + Initializes a new instance of the Xsddouble class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Address Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:address. + + + + + Initializes a new instance of the Address class. + + + + + address1, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: address1 + + + + + countryRegion, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: countryRegion + + + + + adminDistrict1, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: adminDistrict1 + + + + + adminDistrict2, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: adminDistrict2 + + + + + postalCode, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: postalCode + + + + + locality, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: locality + + + + + isoCountryCode, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: isoCountryCode + + + + + + + + Defines the GeoLocation Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoLocation. + + + The following table lists the possible child types: + + <cx:address> + + + + + + Initializes a new instance of the GeoLocation class. + + + + + Initializes a new instance of the GeoLocation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoLocation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoLocation class from outer XML. + + Specifies the outer XML of the element. + + + + latitude, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: latitude + + + + + longitude, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: longitude + + + + + entityName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityName + + + + + entityType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityType + + + + + Address. + Represents the following element tag in the schema: cx:address. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoLocationQuery Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoLocationQuery. + + + + + Initializes a new instance of the GeoLocationQuery class. + + + + + countryRegion, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: countryRegion + + + + + adminDistrict1, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: adminDistrict1 + + + + + adminDistrict2, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: adminDistrict2 + + + + + postalCode, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: postalCode + + + + + entityType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityType + + + + + + + + Defines the GeoLocations Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoLocations. + + + The following table lists the possible child types: + + <cx:geoLocation> + + + + + + Initializes a new instance of the GeoLocations class. + + + + + Initializes a new instance of the GeoLocations class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoLocations class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoLocations class from outer XML. + + Specifies the outer XML of the element. + + + + GeoLocation. + Represents the following element tag in the schema: cx:geoLocation. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoLocationQueryResult Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoLocationQueryResult. + + + The following table lists the possible child types: + + <cx:geoLocationQuery> + <cx:geoLocations> + + + + + + Initializes a new instance of the GeoLocationQueryResult class. + + + + + Initializes a new instance of the GeoLocationQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoLocationQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoLocationQueryResult class from outer XML. + + Specifies the outer XML of the element. + + + + GeoLocationQuery. + Represents the following element tag in the schema: cx:geoLocationQuery. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoLocations. + Represents the following element tag in the schema: cx:geoLocations. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoPolygon Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoPolygon. + + + + + Initializes a new instance of the GeoPolygon class. + + + + + polygonId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: polygonId + + + + + numPoints, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: numPoints + + + + + pcaRings, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: pcaRings + + + + + + + + Defines the GeoPolygons Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoPolygons. + + + The following table lists the possible child types: + + <cx:geoPolygon> + + + + + + Initializes a new instance of the GeoPolygons class. + + + + + Initializes a new instance of the GeoPolygons class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoPolygons class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoPolygons class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Copyrights Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:copyrights. + + + The following table lists the possible child types: + + <cx:copyright> + + + + + + Initializes a new instance of the Copyrights class. + + + + + Initializes a new instance of the Copyrights class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Copyrights class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Copyrights class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GeoDataEntityQuery Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoDataEntityQuery. + + + + + Initializes a new instance of the GeoDataEntityQuery class. + + + + + entityType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityType + + + + + entityId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityId + + + + + + + + Defines the GeoData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoData. + + + The following table lists the possible child types: + + <cx:copyrights> + <cx:geoPolygons> + + + + + + Initializes a new instance of the GeoData class. + + + + + Initializes a new instance of the GeoData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoData class from outer XML. + + Specifies the outer XML of the element. + + + + entityName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityName + + + + + entityId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityId + + + + + east, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: east + + + + + west, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: west + + + + + north, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: north + + + + + south, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: south + + + + + GeoPolygons. + Represents the following element tag in the schema: cx:geoPolygons. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + Copyrights. + Represents the following element tag in the schema: cx:copyrights. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoDataEntityQueryResult Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoDataEntityQueryResult. + + + The following table lists the possible child types: + + <cx:geoData> + <cx:geoDataEntityQuery> + + + + + + Initializes a new instance of the GeoDataEntityQueryResult class. + + + + + Initializes a new instance of the GeoDataEntityQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoDataEntityQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoDataEntityQueryResult class from outer XML. + + Specifies the outer XML of the element. + + + + GeoDataEntityQuery. + Represents the following element tag in the schema: cx:geoDataEntityQuery. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoData. + Represents the following element tag in the schema: cx:geoData. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoDataPointQuery Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoDataPointQuery. + + + + + Initializes a new instance of the GeoDataPointQuery class. + + + + + entityType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityType + + + + + latitude, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: latitude + + + + + longitude, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: longitude + + + + + + + + Defines the GeoDataPointToEntityQuery Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoDataPointToEntityQuery. + + + + + Initializes a new instance of the GeoDataPointToEntityQuery class. + + + + + entityType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityType + + + + + entityId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityId + + + + + + + + Defines the GeoDataPointToEntityQueryResult Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoDataPointToEntityQueryResult. + + + The following table lists the possible child types: + + <cx:geoDataPointQuery> + <cx:geoDataPointToEntityQuery> + + + + + + Initializes a new instance of the GeoDataPointToEntityQueryResult class. + + + + + Initializes a new instance of the GeoDataPointToEntityQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoDataPointToEntityQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoDataPointToEntityQueryResult class from outer XML. + + Specifies the outer XML of the element. + + + + GeoDataPointQuery. + Represents the following element tag in the schema: cx:geoDataPointQuery. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoDataPointToEntityQuery. + Represents the following element tag in the schema: cx:geoDataPointToEntityQuery. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the EntityType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:entityType. + + + + + Initializes a new instance of the EntityType class. + + + + + Initializes a new instance of the EntityType class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the GeoChildTypes Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoChildTypes. + + + The following table lists the possible child types: + + <cx:entityType> + + + + + + Initializes a new instance of the GeoChildTypes class. + + + + + Initializes a new instance of the GeoChildTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildTypes class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GeoHierarchyEntity Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoHierarchyEntity. + + + + + Initializes a new instance of the GeoHierarchyEntity class. + + + + + entityName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityName + + + + + entityId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityId + + + + + entityType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityType + + + + + + + + Defines the GeoChildEntitiesQuery Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoChildEntitiesQuery. + + + The following table lists the possible child types: + + <cx:geoChildTypes> + + + + + + Initializes a new instance of the GeoChildEntitiesQuery class. + + + + + Initializes a new instance of the GeoChildEntitiesQuery class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildEntitiesQuery class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildEntitiesQuery class from outer XML. + + Specifies the outer XML of the element. + + + + entityId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityId + + + + + GeoChildTypes. + Represents the following element tag in the schema: cx:geoChildTypes. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoChildEntities Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoChildEntities. + + + The following table lists the possible child types: + + <cx:geoHierarchyEntity> + + + + + + Initializes a new instance of the GeoChildEntities class. + + + + + Initializes a new instance of the GeoChildEntities class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildEntities class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildEntities class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GeoChildEntitiesQueryResult Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoChildEntitiesQueryResult. + + + The following table lists the possible child types: + + <cx:geoChildEntities> + <cx:geoChildEntitiesQuery> + + + + + + Initializes a new instance of the GeoChildEntitiesQueryResult class. + + + + + Initializes a new instance of the GeoChildEntitiesQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildEntitiesQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildEntitiesQueryResult class from outer XML. + + Specifies the outer XML of the element. + + + + GeoChildEntitiesQuery. + Represents the following element tag in the schema: cx:geoChildEntitiesQuery. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoChildEntities. + Represents the following element tag in the schema: cx:geoChildEntities. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoParentEntitiesQuery Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoParentEntitiesQuery. + + + + + Initializes a new instance of the GeoParentEntitiesQuery class. + + + + + entityId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityId + + + + + + + + Defines the GeoEntity Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoEntity. + + + + + Initializes a new instance of the GeoEntity class. + + + + + entityName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityName + + + + + entityType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityType + + + + + + + + Defines the GeoParentEntity Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoParentEntity. + + + + + Initializes a new instance of the GeoParentEntity class. + + + + + entityId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: entityId + + + + + + + + Defines the GeoParentEntitiesQueryResult Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoParentEntitiesQueryResult. + + + The following table lists the possible child types: + + <cx:geoEntity> + <cx:geoParentEntitiesQuery> + <cx:geoParentEntity> + + + + + + Initializes a new instance of the GeoParentEntitiesQueryResult class. + + + + + Initializes a new instance of the GeoParentEntitiesQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoParentEntitiesQueryResult class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoParentEntitiesQueryResult class from outer XML. + + Specifies the outer XML of the element. + + + + GeoParentEntitiesQuery. + Represents the following element tag in the schema: cx:geoParentEntitiesQuery. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoEntity. + Represents the following element tag in the schema: cx:geoEntity. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoParentEntity. + Represents the following element tag in the schema: cx:geoParentEntity. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoLocationQueryResults Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoLocationQueryResults. + + + The following table lists the possible child types: + + <cx:geoLocationQueryResult> + + + + + + Initializes a new instance of the GeoLocationQueryResults class. + + + + + Initializes a new instance of the GeoLocationQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoLocationQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoLocationQueryResults class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GeoDataEntityQueryResults Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoDataEntityQueryResults. + + + The following table lists the possible child types: + + <cx:geoDataEntityQueryResult> + + + + + + Initializes a new instance of the GeoDataEntityQueryResults class. + + + + + Initializes a new instance of the GeoDataEntityQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoDataEntityQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoDataEntityQueryResults class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GeoDataPointToEntityQueryResults Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoDataPointToEntityQueryResults. + + + The following table lists the possible child types: + + <cx:geoDataPointToEntityQueryResult> + + + + + + Initializes a new instance of the GeoDataPointToEntityQueryResults class. + + + + + Initializes a new instance of the GeoDataPointToEntityQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoDataPointToEntityQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoDataPointToEntityQueryResults class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GeoChildEntitiesQueryResults Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoChildEntitiesQueryResults. + + + The following table lists the possible child types: + + <cx:geoChildEntitiesQueryResult> + + + + + + Initializes a new instance of the GeoChildEntitiesQueryResults class. + + + + + Initializes a new instance of the GeoChildEntitiesQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildEntitiesQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoChildEntitiesQueryResults class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GeoParentEntitiesQueryResults Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoParentEntitiesQueryResults. + + + The following table lists the possible child types: + + <cx:geoParentEntitiesQueryResult> + + + + + + Initializes a new instance of the GeoParentEntitiesQueryResults class. + + + + + Initializes a new instance of the GeoParentEntitiesQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoParentEntitiesQueryResults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoParentEntitiesQueryResults class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Xsdbase64Binary Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:binary. + + + + + Initializes a new instance of the Xsdbase64Binary class. + + + + + Initializes a new instance of the Xsdbase64Binary class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Clear Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:clear. + + + The following table lists the possible child types: + + <cx:geoChildEntitiesQueryResults> + <cx:geoDataEntityQueryResults> + <cx:geoDataPointToEntityQueryResults> + <cx:geoLocationQueryResults> + <cx:geoParentEntitiesQueryResults> + + + + + + Initializes a new instance of the Clear class. + + + + + Initializes a new instance of the Clear class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Clear class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Clear class from outer XML. + + Specifies the outer XML of the element. + + + + GeoLocationQueryResults. + Represents the following element tag in the schema: cx:geoLocationQueryResults. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoDataEntityQueryResults. + Represents the following element tag in the schema: cx:geoDataEntityQueryResults. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoDataPointToEntityQueryResults. + Represents the following element tag in the schema: cx:geoDataPointToEntityQueryResults. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoChildEntitiesQueryResults. + Represents the following element tag in the schema: cx:geoChildEntitiesQueryResults. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + GeoParentEntitiesQueryResults. + Represents the following element tag in the schema: cx:geoParentEntitiesQueryResults. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the GeoCache Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geoCache. + + + The following table lists the possible child types: + + <cx:clear> + <cx:binary> + + + + + + Initializes a new instance of the GeoCache class. + + + + + Initializes a new instance of the GeoCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeoCache class from outer XML. + + Specifies the outer XML of the element. + + + + provider, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: provider + + + + + + + + Defines the ParentLabelLayout Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:parentLabelLayout. + + + + + Initializes a new instance of the ParentLabelLayout class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the RegionLabelLayout Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:regionLabelLayout. + + + + + Initializes a new instance of the RegionLabelLayout class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the SeriesElementVisibilities Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:visibility. + + + + + Initializes a new instance of the SeriesElementVisibilities class. + + + + + connectorLines, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: connectorLines + + + + + meanLine, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: meanLine + + + + + meanMarker, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: meanMarker + + + + + nonoutliers, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: nonoutliers + + + + + outliers, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: outliers + + + + + + + + Defines the Aggregation Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:aggregation. + + + + + Initializes a new instance of the Aggregation class. + + + + + + + + Defines the Binning Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:binning. + + + The following table lists the possible child types: + + <cx:binSize> + <cx:binCount> + + + + + + Initializes a new instance of the Binning class. + + + + + Initializes a new instance of the Binning class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Binning class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Binning class from outer XML. + + Specifies the outer XML of the element. + + + + intervalClosed, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: intervalClosed + + + + + underflow, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: underflow + + + + + overflow, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: overflow + + + + + Xsddouble. + Represents the following element tag in the schema: cx:binSize. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + BinCountXsdunsignedInt. + Represents the following element tag in the schema: cx:binCount. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the Geography Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:geography. + + + The following table lists the possible child types: + + <cx:geoCache> + + + + + + Initializes a new instance of the Geography class. + + + + + Initializes a new instance of the Geography class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Geography class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Geography class from outer XML. + + Specifies the outer XML of the element. + + + + projectionType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: projectionType + + + + + viewedRegionType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: viewedRegionType + + + + + cultureLanguage, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cultureLanguage + + + + + cultureRegion, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cultureRegion + + + + + attribution, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: attribution + + + + + GeoCache. + Represents the following element tag in the schema: cx:geoCache. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the Statistics Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:statistics. + + + + + Initializes a new instance of the Statistics class. + + + + + quartileMethod, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: quartileMethod + + + + + + + + Defines the Subtotals Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:subtotals. + + + The following table lists the possible child types: + + <cx:idx> + + + + + + Initializes a new instance of the Subtotals class. + + + + + Initializes a new instance of the Subtotals class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Subtotals class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Subtotals class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExtremeValueColorPosition Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:extremeValue. + + + + + Initializes a new instance of the ExtremeValueColorPosition class. + + + + + + + + Defines the NumberColorPosition Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:number. + + + + + Initializes a new instance of the NumberColorPosition class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the PercentageColorPosition Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:percent. + + + + + Initializes a new instance of the PercentageColorPosition class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the MinValueColorEndPosition Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:min. + + + The following table lists the possible child types: + + <cx:extremeValue> + <cx:number> + <cx:percent> + + + + + + Initializes a new instance of the MinValueColorEndPosition class. + + + + + Initializes a new instance of the MinValueColorEndPosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinValueColorEndPosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinValueColorEndPosition class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MaxValueColorEndPosition Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:max. + + + The following table lists the possible child types: + + <cx:extremeValue> + <cx:number> + <cx:percent> + + + + + + Initializes a new instance of the MaxValueColorEndPosition class. + + + + + Initializes a new instance of the MaxValueColorEndPosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MaxValueColorEndPosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MaxValueColorEndPosition class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlValueColorEndPositionElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <cx:extremeValue> + <cx:number> + <cx:percent> + + + + + + Initializes a new instance of the OpenXmlValueColorEndPositionElement class. + + + + + Initializes a new instance of the OpenXmlValueColorEndPositionElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlValueColorEndPositionElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlValueColorEndPositionElement class from outer XML. + + Specifies the outer XML of the element. + + + + ExtremeValueColorPosition. + Represents the following element tag in the schema: cx:extremeValue. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + NumberColorPosition. + Represents the following element tag in the schema: cx:number. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + PercentageColorPosition. + Represents the following element tag in the schema: cx:percent. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + Defines the ValueColorMiddlePosition Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:mid. + + + The following table lists the possible child types: + + <cx:number> + <cx:percent> + + + + + + Initializes a new instance of the ValueColorMiddlePosition class. + + + + + Initializes a new instance of the ValueColorMiddlePosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueColorMiddlePosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueColorMiddlePosition class from outer XML. + + Specifies the outer XML of the element. + + + + NumberColorPosition. + Represents the following element tag in the schema: cx:number. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + PercentageColorPosition. + Represents the following element tag in the schema: cx:percent. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the DataLabelVisibilities Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:visibility. + + + + + Initializes a new instance of the DataLabelVisibilities class. + + + + + seriesName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: seriesName + + + + + categoryName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: categoryName + + + + + value, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: value + + + + + + + + Defines the DataLabel Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:dataLabel. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:txPr> + <cx:visibility> + <cx:extLst> + <cx:numFmt> + <cx:separator> + + + + + + Initializes a new instance of the DataLabel class. + + + + + Initializes a new instance of the DataLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabel class from outer XML. + + Specifies the outer XML of the element. + + + + idx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: idx + + + + + pos, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: pos + + + + + NumberFormat. + Represents the following element tag in the schema: cx:numFmt. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + TxPrTextBody. + Represents the following element tag in the schema: cx:txPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + DataLabelVisibilities. + Represents the following element tag in the schema: cx:visibility. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + SeparatorXsdstring. + Represents the following element tag in the schema: cx:separator. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the DataLabelHidden Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:dataLabelHidden. + + + + + Initializes a new instance of the DataLabelHidden class. + + + + + idx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: idx + + + + + + + + Defines the ValueColors Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:valueColors. + + + The following table lists the possible child types: + + <cx:minColor> + <cx:midColor> + <cx:maxColor> + + + + + + Initializes a new instance of the ValueColors class. + + + + + Initializes a new instance of the ValueColors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueColors class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueColors class from outer XML. + + Specifies the outer XML of the element. + + + + MinColorSolidColorFillProperties. + Represents the following element tag in the schema: cx:minColor. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + MidColorSolidColorFillProperties. + Represents the following element tag in the schema: cx:midColor. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + MaxColorSolidColorFillProperties. + Represents the following element tag in the schema: cx:maxColor. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the ValueColorPositions Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:valueColorPositions. + + + The following table lists the possible child types: + + <cx:min> + <cx:max> + <cx:mid> + + + + + + Initializes a new instance of the ValueColorPositions class. + + + + + Initializes a new instance of the ValueColorPositions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueColorPositions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueColorPositions class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: count + + + + + MinValueColorEndPosition. + Represents the following element tag in the schema: cx:min. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ValueColorMiddlePosition. + Represents the following element tag in the schema: cx:mid. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + MaxValueColorEndPosition. + Represents the following element tag in the schema: cx:max. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the DataPoint Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:dataPt. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:extLst> + + + + + + Initializes a new instance of the DataPoint class. + + + + + Initializes a new instance of the DataPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPoint class from outer XML. + + Specifies the outer XML of the element. + + + + idx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: idx + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the DataLabels Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:dataLabels. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:txPr> + <cx:dataLabel> + <cx:dataLabelHidden> + <cx:visibility> + <cx:extLst> + <cx:numFmt> + <cx:separator> + + + + + + Initializes a new instance of the DataLabels class. + + + + + Initializes a new instance of the DataLabels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabels class from outer XML. + + Specifies the outer XML of the element. + + + + pos, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: pos + + + + + NumberFormat. + Represents the following element tag in the schema: cx:numFmt. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + TxPrTextBody. + Represents the following element tag in the schema: cx:txPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + DataLabelVisibilities. + Represents the following element tag in the schema: cx:visibility. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + SeparatorXsdstring. + Represents the following element tag in the schema: cx:separator. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the DataId Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:dataId. + + + + + Initializes a new instance of the DataId class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the SeriesLayoutProperties Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:layoutPr. + + + The following table lists the possible child types: + + <cx:aggregation> + <cx:binning> + <cx:extLst> + <cx:geography> + <cx:parentLabelLayout> + <cx:regionLabelLayout> + <cx:visibility> + <cx:statistics> + <cx:subtotals> + + + + + + Initializes a new instance of the SeriesLayoutProperties class. + + + + + Initializes a new instance of the SeriesLayoutProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesLayoutProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesLayoutProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ParentLabelLayout. + Represents the following element tag in the schema: cx:parentLabelLayout. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + RegionLabelLayout. + Represents the following element tag in the schema: cx:regionLabelLayout. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + SeriesElementVisibilities. + Represents the following element tag in the schema: cx:visibility. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the AxisId Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:axisId. + + + + + Initializes a new instance of the AxisId class. + + + + + Initializes a new instance of the AxisId class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the PlotSurface Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:plotSurface. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:extLst> + + + + + + Initializes a new instance of the PlotSurface class. + + + + + Initializes a new instance of the PlotSurface class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotSurface class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotSurface class from outer XML. + + Specifies the outer XML of the element. + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the Series Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:series. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:dataId> + <cx:dataLabels> + <cx:dataPt> + <cx:extLst> + <cx:layoutPr> + <cx:tx> + <cx:valueColorPositions> + <cx:valueColors> + <cx:axisId> + + + + + + Initializes a new instance of the Series class. + + + + + Initializes a new instance of the Series class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Series class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Series class from outer XML. + + Specifies the outer XML of the element. + + + + layoutId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: layoutId + + + + + hidden, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: hidden + + + + + ownerIdx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ownerIdx + + + + + uniqueId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uniqueId + + + + + formatIdx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: formatIdx + + + + + Text. + Represents the following element tag in the schema: cx:tx. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ValueColors. + Represents the following element tag in the schema: cx:valueColors. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ValueColorPositions. + Represents the following element tag in the schema: cx:valueColorPositions. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the PlotAreaRegion Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:plotAreaRegion. + + + The following table lists the possible child types: + + <cx:extLst> + <cx:plotSurface> + <cx:series> + + + + + + Initializes a new instance of the PlotAreaRegion class. + + + + + Initializes a new instance of the PlotAreaRegion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotAreaRegion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotAreaRegion class from outer XML. + + Specifies the outer XML of the element. + + + + PlotSurface. + Represents the following element tag in the schema: cx:plotSurface. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the Axis Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:axis. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:txPr> + <cx:title> + <cx:units> + <cx:catScaling> + <cx:extLst> + <cx:majorGridlines> + <cx:minorGridlines> + <cx:numFmt> + <cx:tickLabels> + <cx:majorTickMarks> + <cx:minorTickMarks> + <cx:valScaling> + + + + + + Initializes a new instance of the Axis class. + + + + + Initializes a new instance of the Axis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Axis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Axis class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + hidden, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: hidden + + + + + + + + Defines the ChartTitle Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:title. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:txPr> + <cx:extLst> + <cx:tx> + + + + + + Initializes a new instance of the ChartTitle class. + + + + + Initializes a new instance of the ChartTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartTitle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartTitle class from outer XML. + + Specifies the outer XML of the element. + + + + pos, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: pos + + + + + align, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: align + + + + + overlay, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: overlay + + + + + Text. + Represents the following element tag in the schema: cx:tx. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + TxPrTextBody. + Represents the following element tag in the schema: cx:txPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the PlotArea Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:plotArea. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:axis> + <cx:extLst> + <cx:plotAreaRegion> + + + + + + Initializes a new instance of the PlotArea class. + + + + + Initializes a new instance of the PlotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotArea class from outer XML. + + Specifies the outer XML of the element. + + + + PlotAreaRegion. + Represents the following element tag in the schema: cx:plotAreaRegion. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the Legend Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:legend. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:txPr> + <cx:extLst> + + + + + + Initializes a new instance of the Legend class. + + + + + Initializes a new instance of the Legend class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Legend class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Legend class from outer XML. + + Specifies the outer XML of the element. + + + + pos, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: pos + + + + + align, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: align + + + + + overlay, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: overlay + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + TxPrTextBody. + Represents the following element tag in the schema: cx:txPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the FormatOverride Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:fmtOvr. + + + The following table lists the possible child types: + + <cx:spPr> + <cx:extLst> + + + + + + Initializes a new instance of the FormatOverride class. + + + + + Initializes a new instance of the FormatOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormatOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormatOverride class from outer XML. + + Specifies the outer XML of the element. + + + + idx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: idx + + + + + ShapeProperties. + Represents the following element tag in the schema: cx:spPr. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the HeaderFooter Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:headerFooter. + + + The following table lists the possible child types: + + <cx:oddHeader> + <cx:oddFooter> + <cx:evenHeader> + <cx:evenFooter> + <cx:firstHeader> + <cx:firstFooter> + + + + + + Initializes a new instance of the HeaderFooter class. + + + + + Initializes a new instance of the HeaderFooter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooter class from outer XML. + + Specifies the outer XML of the element. + + + + alignWithMargins, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: alignWithMargins + + + + + differentOddEven, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: differentOddEven + + + + + differentFirst, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: differentFirst + + + + + OddHeaderXsdstring. + Represents the following element tag in the schema: cx:oddHeader. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + OddFooterXsdstring. + Represents the following element tag in the schema: cx:oddFooter. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + EvenHeaderXsdstring. + Represents the following element tag in the schema: cx:evenHeader. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + EvenFooterXsdstring. + Represents the following element tag in the schema: cx:evenFooter. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + FirstHeaderXsdstring. + Represents the following element tag in the schema: cx:firstHeader. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + FirstFooterXsdstring. + Represents the following element tag in the schema: cx:firstFooter. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the PageMargins Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:pageMargins. + + + + + Initializes a new instance of the PageMargins class. + + + + + l, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: l + + + + + r, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r + + + + + t, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: t + + + + + b, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: b + + + + + header, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: header + + + + + footer, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: footer + + + + + + + + Defines the PageSetup Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:pageSetup. + + + + + Initializes a new instance of the PageSetup class. + + + + + paperSize, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: paperSize + + + + + firstPageNumber, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: firstPageNumber + + + + + orientation, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: orientation + + + + + blackAndWhite, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: blackAndWhite + + + + + draft, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: draft + + + + + useFirstPageNumber, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: useFirstPageNumber + + + + + horizontalDpi, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: horizontalDpi + + + + + verticalDpi, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: verticalDpi + + + + + copies, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: copies + + + + + + + + Defines the ChartData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:chartData. + + + The following table lists the possible child types: + + <cx:data> + <cx:extLst> + <cx:externalData> + + + + + + Initializes a new instance of the ChartData class. + + + + + Initializes a new instance of the ChartData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartData class from outer XML. + + Specifies the outer XML of the element. + + + + ExternalData. + Represents the following element tag in the schema: cx:externalData. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the Chart Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:chart. + + + The following table lists the possible child types: + + <cx:title> + <cx:extLst> + <cx:legend> + <cx:plotArea> + + + + + + Initializes a new instance of the Chart class. + + + + + Initializes a new instance of the Chart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Chart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Chart class from outer XML. + + Specifies the outer XML of the element. + + + + ChartTitle. + Represents the following element tag in the schema: cx:title. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + PlotArea. + Represents the following element tag in the schema: cx:plotArea. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + Legend. + Represents the following element tag in the schema: cx:legend. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + ExtensionList. + Represents the following element tag in the schema: cx:extLst. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Defines the ColorMappingType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:clrMapOvr. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the ColorMappingType class. + + + + + Initializes a new instance of the ColorMappingType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMappingType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMappingType class from outer XML. + + Specifies the outer XML of the element. + + + + Background 1 + Represents the following attribute in the schema: bg1 + + + + + Text 1 + Represents the following attribute in the schema: tx1 + + + + + Background 2 + Represents the following attribute in the schema: bg2 + + + + + Text 2 + Represents the following attribute in the schema: tx2 + + + + + Accent 1 + Represents the following attribute in the schema: accent1 + + + + + Accent 2 + Represents the following attribute in the schema: accent2 + + + + + Accent 3 + Represents the following attribute in the schema: accent3 + + + + + Accent 4 + Represents the following attribute in the schema: accent4 + + + + + Accent 5 + Represents the following attribute in the schema: accent5 + + + + + Accent 6 + Represents the following attribute in the schema: accent6 + + + + + Hyperlink + Represents the following attribute in the schema: hlink + + + + + Followed Hyperlink + Represents the following attribute in the schema: folHlink + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the FormatOverrides Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:fmtOvrs. + + + The following table lists the possible child types: + + <cx:fmtOvr> + + + + + + Initializes a new instance of the FormatOverrides class. + + + + + Initializes a new instance of the FormatOverrides class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormatOverrides class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormatOverrides class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PrintSettings Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:printSettings. + + + The following table lists the possible child types: + + <cx:headerFooter> + <cx:pageMargins> + <cx:pageSetup> + + + + + + Initializes a new instance of the PrintSettings class. + + + + + Initializes a new instance of the PrintSettings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PrintSettings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PrintSettings class from outer XML. + + Specifies the outer XML of the element. + + + + HeaderFooter. + Represents the following element tag in the schema: cx:headerFooter. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + PageMargins. + Represents the following element tag in the schema: cx:pageMargins. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + PageSetup. + Represents the following element tag in the schema: cx:pageSetup. + + + xmlns:cx = http://schemas.microsoft.com/office/drawing/2014/chartex + + + + + + + + Index of subtotal data point. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is cx:idx. + + + + + Initializes a new instance of the UnsignedIntegerType class. + + + + + Integer Value + Represents the following attribute in the schema: val + + + + + + + + Defines the FormulaDirection enumeration. + + + + + Creates a new FormulaDirection enum instance + + + + + col. + When the item is serialized out as xml, its value is "col". + + + + + row. + When the item is serialized out as xml, its value is "row". + + + + + Defines the StringDimensionType enumeration. + + + + + Creates a new StringDimensionType enum instance + + + + + cat. + When the item is serialized out as xml, its value is "cat". + + + + + colorStr. + When the item is serialized out as xml, its value is "colorStr". + + + + + entityId. + When the item is serialized out as xml, its value is "entityId". + + + + + Defines the NumericDimensionType enumeration. + + + + + Creates a new NumericDimensionType enum instance + + + + + val. + When the item is serialized out as xml, its value is "val". + + + + + x. + When the item is serialized out as xml, its value is "x". + + + + + y. + When the item is serialized out as xml, its value is "y". + + + + + size. + When the item is serialized out as xml, its value is "size". + + + + + colorVal. + When the item is serialized out as xml, its value is "colorVal". + + + + + Defines the SidePos enumeration. + + + + + Creates a new SidePos enum instance + + + + + l. + When the item is serialized out as xml, its value is "l". + + + + + t. + When the item is serialized out as xml, its value is "t". + + + + + r. + When the item is serialized out as xml, its value is "r". + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + Defines the PosAlign enumeration. + + + + + Creates a new PosAlign enum instance + + + + + min. + When the item is serialized out as xml, its value is "min". + + + + + ctr. + When the item is serialized out as xml, its value is "ctr". + + + + + max. + When the item is serialized out as xml, its value is "max". + + + + + Defines the AxisUnit enumeration. + + + + + Creates a new AxisUnit enum instance + + + + + hundreds. + When the item is serialized out as xml, its value is "hundreds". + + + + + thousands. + When the item is serialized out as xml, its value is "thousands". + + + + + tenThousands. + When the item is serialized out as xml, its value is "tenThousands". + + + + + hundredThousands. + When the item is serialized out as xml, its value is "hundredThousands". + + + + + millions. + When the item is serialized out as xml, its value is "millions". + + + + + tenMillions. + When the item is serialized out as xml, its value is "tenMillions". + + + + + hundredMillions. + When the item is serialized out as xml, its value is "hundredMillions". + + + + + billions. + When the item is serialized out as xml, its value is "billions". + + + + + trillions. + When the item is serialized out as xml, its value is "trillions". + + + + + percentage. + When the item is serialized out as xml, its value is "percentage". + + + + + Defines the TickMarksType enumeration. + + + + + Creates a new TickMarksType enum instance + + + + + in. + When the item is serialized out as xml, its value is "in". + + + + + out. + When the item is serialized out as xml, its value is "out". + + + + + cross. + When the item is serialized out as xml, its value is "cross". + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + Defines the SeriesLayout enumeration. + + + + + Creates a new SeriesLayout enum instance + + + + + boxWhisker. + When the item is serialized out as xml, its value is "boxWhisker". + + + + + clusteredColumn. + When the item is serialized out as xml, its value is "clusteredColumn". + + + + + funnel. + When the item is serialized out as xml, its value is "funnel". + + + + + paretoLine. + When the item is serialized out as xml, its value is "paretoLine". + + + + + regionMap. + When the item is serialized out as xml, its value is "regionMap". + + + + + sunburst. + When the item is serialized out as xml, its value is "sunburst". + + + + + treemap. + When the item is serialized out as xml, its value is "treemap". + + + + + waterfall. + When the item is serialized out as xml, its value is "waterfall". + + + + + Defines the ParentLabelLayoutVal enumeration. + + + + + Creates a new ParentLabelLayoutVal enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + banner. + When the item is serialized out as xml, its value is "banner". + + + + + overlapping. + When the item is serialized out as xml, its value is "overlapping". + + + + + Defines the RegionLabelLayoutEnum enumeration. + + + + + Creates a new RegionLabelLayoutEnum enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + bestFitOnly. + When the item is serialized out as xml, its value is "bestFitOnly". + + + + + showAll. + When the item is serialized out as xml, its value is "showAll". + + + + + Defines the IntervalClosedSide enumeration. + + + + + Creates a new IntervalClosedSide enum instance + + + + + l. + When the item is serialized out as xml, its value is "l". + + + + + r. + When the item is serialized out as xml, its value is "r". + + + + + Defines the EntityTypeEnum enumeration. + + + + + Creates a new EntityTypeEnum enum instance + + + + + Address. + When the item is serialized out as xml, its value is "Address". + + + + + AdminDistrict. + When the item is serialized out as xml, its value is "AdminDistrict". + + + + + AdminDistrict2. + When the item is serialized out as xml, its value is "AdminDistrict2". + + + + + AdminDistrict3. + When the item is serialized out as xml, its value is "AdminDistrict3". + + + + + Continent. + When the item is serialized out as xml, its value is "Continent". + + + + + CountryRegion. + When the item is serialized out as xml, its value is "CountryRegion". + + + + + Locality. + When the item is serialized out as xml, its value is "Locality". + + + + + Ocean. + When the item is serialized out as xml, its value is "Ocean". + + + + + Planet. + When the item is serialized out as xml, its value is "Planet". + + + + + PostalCode. + When the item is serialized out as xml, its value is "PostalCode". + + + + + Region. + When the item is serialized out as xml, its value is "Region". + + + + + Unsupported. + When the item is serialized out as xml, its value is "Unsupported". + + + + + Defines the GeoProjectionType enumeration. + + + + + Creates a new GeoProjectionType enum instance + + + + + mercator. + When the item is serialized out as xml, its value is "mercator". + + + + + miller. + When the item is serialized out as xml, its value is "miller". + + + + + robinson. + When the item is serialized out as xml, its value is "robinson". + + + + + albers. + When the item is serialized out as xml, its value is "albers". + + + + + Defines the GeoMappingLevel enumeration. + + + + + Creates a new GeoMappingLevel enum instance + + + + + dataOnly. + When the item is serialized out as xml, its value is "dataOnly". + + + + + postalCode. + When the item is serialized out as xml, its value is "postalCode". + + + + + county. + When the item is serialized out as xml, its value is "county". + + + + + state. + When the item is serialized out as xml, its value is "state". + + + + + countryRegion. + When the item is serialized out as xml, its value is "countryRegion". + + + + + countryRegionList. + When the item is serialized out as xml, its value is "countryRegionList". + + + + + world. + When the item is serialized out as xml, its value is "world". + + + + + Defines the QuartileMethod enumeration. + + + + + Creates a new QuartileMethod enum instance + + + + + inclusive. + When the item is serialized out as xml, its value is "inclusive". + + + + + exclusive. + When the item is serialized out as xml, its value is "exclusive". + + + + + Defines the DataLabelPos enumeration. + + + + + Creates a new DataLabelPos enum instance + + + + + bestFit. + When the item is serialized out as xml, its value is "bestFit". + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + ctr. + When the item is serialized out as xml, its value is "ctr". + + + + + inBase. + When the item is serialized out as xml, its value is "inBase". + + + + + inEnd. + When the item is serialized out as xml, its value is "inEnd". + + + + + l. + When the item is serialized out as xml, its value is "l". + + + + + outEnd. + When the item is serialized out as xml, its value is "outEnd". + + + + + r. + When the item is serialized out as xml, its value is "r". + + + + + t. + When the item is serialized out as xml, its value is "t". + + + + + Defines the PageOrientation enumeration. + + + + + Creates a new PageOrientation enum instance + + + + + default. + When the item is serialized out as xml, its value is "default". + + + + + portrait. + When the item is serialized out as xml, its value is "portrait". + + + + + landscape. + When the item is serialized out as xml, its value is "landscape". + + + + + Defines the MultiLvlStrData Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is c16ac:multiLvlStrLit. + + + The following table lists the possible child types: + + <c:extLst> + <c:lvl> + <c:ptCount> + + + + + + Initializes a new instance of the MultiLvlStrData class. + + + + + Initializes a new instance of the MultiLvlStrData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrData class from outer XML. + + Specifies the outer XML of the element. + + + + PointCount. + Represents the following element tag in the schema: c:ptCount. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the CreationId Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is a16:creationId. + + + + + Initializes a new instance of the CreationId class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: id + + + + + + + + Defines the PredecessorDrawingElementReference Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is a16:predDERef. + + + + + Initializes a new instance of the PredecessorDrawingElementReference class. + + + + + pred, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: pred + + + + + + + + Defines the ConnectableReferences Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is a16:cxnDERefs. + + + + + Initializes a new instance of the ConnectableReferences class. + + + + + st, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: st + + + + + end, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: end + + + + + + + + Defines the RowIdIdentifier Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is a16:rowId. + + + + + Initializes a new instance of the RowIdIdentifier class. + + + + + + + + Defines the ColIdIdentifier Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is a16:colId. + + + + + Initializes a new instance of the ColIdIdentifier class. + + + + + + + + Defines the OpenXmlIdentifierElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlIdentifierElement class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + Defines the CommentAuthorMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:cmAuthorMkLst. + + + + + Initializes a new instance of the CommentAuthorMonikerList class. + + + + + Initializes a new instance of the CommentAuthorMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthorMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthorMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CommentMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:cmMkLst. + + + + + Initializes a new instance of the CommentMonikerList class. + + + + + Initializes a new instance of the CommentMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StringTagMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:tagMkLst. + + + + + Initializes a new instance of the StringTagMonikerList class. + + + + + Initializes a new instance of the StringTagMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringTagMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringTagMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CustomShowMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:custShowMkLst. + + + + + Initializes a new instance of the CustomShowMonikerList class. + + + + + Initializes a new instance of the CustomShowMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomShowMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomShowMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DocumentMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:docMkLst. + + + + + Initializes a new instance of the DocumentMonikerList class. + + + + + Initializes a new instance of the DocumentMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocumentMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SectionMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:sectionMkLst. + + + + + Initializes a new instance of the SectionMonikerList class. + + + + + Initializes a new instance of the SectionMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlideBaseMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:sldBaseMkLst. + + + + + Initializes a new instance of the SlideBaseMonikerList class. + + + + + Initializes a new instance of the SlideBaseMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideBaseMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideBaseMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlideLayoutMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:sldLayoutMkLst. + + + + + Initializes a new instance of the SlideLayoutMonikerList class. + + + + + Initializes a new instance of the SlideLayoutMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MainMasterMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:sldMasterMkLst. + + + + + Initializes a new instance of the MainMasterMonikerList class. + + + + + Initializes a new instance of the MainMasterMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MainMasterMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MainMasterMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlideMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:sldMkLst. + + + The following table lists the possible child types: + + <pc:docMk> + <pc:sldMk> + + + + + + Initializes a new instance of the SlideMonikerList class. + + + + + Initializes a new instance of the SlideMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + DocumentMoniker. + Represents the following element tag in the schema: pc:docMk. + + + xmlns:pc = http://schemas.microsoft.com/office/powerpoint/2013/main/command + + + + + SlideMoniker. + Represents the following element tag in the schema: pc:sldMk. + + + xmlns:pc = http://schemas.microsoft.com/office/powerpoint/2013/main/command + + + + + + + + Defines the SlidePosMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:sldPosMkLst. + + + + + Initializes a new instance of the SlidePosMonikerList class. + + + + + Initializes a new instance of the SlidePosMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlidePosMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlidePosMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NotesMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:notesMkLst. + + + + + Initializes a new instance of the NotesMonikerList class. + + + + + Initializes a new instance of the NotesMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NotesTextMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:notesTxtMkLst. + + + + + Initializes a new instance of the NotesTextMonikerList class. + + + + + Initializes a new instance of the NotesTextMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesTextMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesTextMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NotesMasterMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:notesMasterMkLst. + + + + + Initializes a new instance of the NotesMasterMonikerList class. + + + + + Initializes a new instance of the NotesMasterMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HandoutMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:handoutMkLst. + + + + + Initializes a new instance of the HandoutMonikerList class. + + + + + Initializes a new instance of the HandoutMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AnimEffectMkLstAnimationEffectMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:animEffectMkLst. + + + + + Initializes a new instance of the AnimEffectMkLstAnimationEffectMonikerList class. + + + + + Initializes a new instance of the AnimEffectMkLstAnimationEffectMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimEffectMkLstAnimationEffectMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimEffectMkLstAnimationEffectMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AnimEffectParentMkLstAnimationEffectMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:animEffectParentMkLst. + + + + + Initializes a new instance of the AnimEffectParentMkLstAnimationEffectMonikerList class. + + + + + Initializes a new instance of the AnimEffectParentMkLstAnimationEffectMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimEffectParentMkLstAnimationEffectMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimEffectParentMkLstAnimationEffectMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OpenXmlAnimationEffectMonikerListElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlAnimationEffectMonikerListElement class. + + + + + Initializes a new instance of the OpenXmlAnimationEffectMonikerListElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlAnimationEffectMonikerListElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OpenXmlAnimationEffectMonikerListElement class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the OsfTaskPaneAppMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:tkAppMkLst. + + + + + Initializes a new instance of the OsfTaskPaneAppMonikerList class. + + + + + Initializes a new instance of the OsfTaskPaneAppMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OsfTaskPaneAppMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OsfTaskPaneAppMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SummaryZoomMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:tocMkLst. + + + + + Initializes a new instance of the SummaryZoomMonikerList class. + + + + + Initializes a new instance of the SummaryZoomMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SummaryZoomMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SummaryZoomMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SectionLinkObjMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:sectionLnkObjMkLst. + + + + + Initializes a new instance of the SectionLinkObjMonikerList class. + + + + + Initializes a new instance of the SectionLinkObjMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionLinkObjMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SectionLinkObjMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DesignerTagMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:designTagMkLst. + + + + + Initializes a new instance of the DesignerTagMonikerList class. + + + + + Initializes a new instance of the DesignerTagMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DesignerTagMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DesignerTagMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CustomXmlPartMonikerList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:cXmlMkLst. + + + + + Initializes a new instance of the CustomXmlPartMonikerList class. + + + + + Initializes a new instance of the CustomXmlPartMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlPartMonikerList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomXmlPartMonikerList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DocumentMoniker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:docMk. + + + + + Initializes a new instance of the DocumentMoniker class. + + + + + + + + Defines the SlideMoniker Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is pc:sldMk. + + + + + Initializes a new instance of the SlideMoniker class. + + + + + cId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cId + + + + + sldId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sldId + + + + + + + + Defines the DesignElement Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is p16:designElem. + + + + + Initializes a new instance of the DesignElement class. + + + + + val, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ModelTimeGroupings Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is x16:modelTimeGroupings. + + + The following table lists the possible child types: + + <x16:modelTimeGrouping> + + + + + + Initializes a new instance of the ModelTimeGroupings class. + + + + + Initializes a new instance of the ModelTimeGroupings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModelTimeGroupings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModelTimeGroupings class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ModelTimeGrouping Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is x16:modelTimeGrouping. + + + The following table lists the possible child types: + + <x16:calculatedTimeColumn> + + + + + + Initializes a new instance of the ModelTimeGrouping class. + + + + + Initializes a new instance of the ModelTimeGrouping class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModelTimeGrouping class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ModelTimeGrouping class from outer XML. + + Specifies the outer XML of the element. + + + + tableName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: tableName + + + + + columnName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: columnName + + + + + columnId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: columnId + + + + + + + + Defines the CalculatedTimeColumn Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is x16:calculatedTimeColumn. + + + + + Initializes a new instance of the CalculatedTimeColumn class. + + + + + columnName, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: columnName + + + + + columnId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: columnId + + + + + contentType, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: contentType + + + + + isSelected, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: isSelected + + + + + + + + Defines the ModelTimeGroupingContentType enumeration. + + + + + Creates a new ModelTimeGroupingContentType enum instance + + + + + years. + When the item is serialized out as xml, its value is "years". + + + + + quarters. + When the item is serialized out as xml, its value is "quarters". + + + + + monthsindex. + When the item is serialized out as xml, its value is "monthsindex". + + + + + months. + When the item is serialized out as xml, its value is "months". + + + + + daysindex. + When the item is serialized out as xml, its value is "daysindex". + + + + + days. + When the item is serialized out as xml, its value is "days". + + + + + hours. + When the item is serialized out as xml, its value is "hours". + + + + + minutes. + When the item is serialized out as xml, its value is "minutes". + + + + + seconds. + When the item is serialized out as xml, its value is "seconds". + + + + + Defines the RevExHeaders Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:revHdrs. + + + The following table lists the possible child types: + + <xr:hdr> + + + + + + Initializes a new instance of the RevExHeaders class. + + + + + Initializes a new instance of the RevExHeaders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExHeaders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExHeaders class from outer XML. + + Specifies the outer XML of the element. + + + + minRev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: minRev + + + + + maxRev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: maxRev + + + + + docId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: docId + + + + + endpointId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: endpointId + + + + + + + + Defines the RevExStream Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:revStream. + + + The following table lists the possible child types: + + <xr:xrrc> + <xr:xrrco> + <xr:xrrDefName> + <xr:xrrdo> + <xr:xrrf> + <xr:xrrftr> + <xr:xrrm> + <xr:xrrrc> + <xr:xrrSheet> + <xr:xrrTrim> + <xr:xrrUspt> + <xr:xrrg> + <xr:xrrList> + <xr:xrrListExpR> + + + + + + Initializes a new instance of the RevExStream class. + + + + + Initializes a new instance of the RevExStream class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExStream class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExStream class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DifferentialFormatType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:dxf. + + + The following table lists the possible child types: + + <x:border> + <x:alignment> + <x:protection> + <x:extLst> + <x:fill> + <x:font> + <x:numFmt> + + + + + + Initializes a new instance of the DifferentialFormatType class. + + + + + Initializes a new instance of the DifferentialFormatType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormatType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DifferentialFormatType class from outer XML. + + Specifies the outer XML of the element. + + + + Font Properties. + Represents the following element tag in the schema: x:font. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Number Format. + Represents the following element tag in the schema: x:numFmt. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Fill. + Represents the following element tag in the schema: x:fill. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Alignment. + Represents the following element tag in the schema: x:alignment. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Border Properties. + Represents the following element tag in the schema: x:border. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Protection Properties. + Represents the following element tag in the schema: x:protection. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Future Feature Data Storage Area. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the RevisionPtr Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:revisionPtr. + + + + + Initializes a new instance of the RevisionPtr class. + + + + + revIDLastSave, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: revIDLastSave + + + + + documentId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: documentId + + + + + + + + Defines the StateBasedObject Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:objectState. + + + The following table lists the possible child types: + + <xr:autoFilter> + <xr:comments> + <xr:dataValidation> + <xr:hyperlink> + <xr:pivotTableDefinition> + <xr:sparklineGroup> + + + + + + Initializes a new instance of the StateBasedObject class. + + + + + Initializes a new instance of the StateBasedObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StateBasedObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StateBasedObject class from outer XML. + + Specifies the outer XML of the element. + + + + Represents an external link to another workbook.. + Represents the following element tag in the schema: xr:dataValidation. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + Represents a hyperlink within a cell.. + Represents the following element tag in the schema: xr:hyperlink. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + Represents a sparkline group of 1 or more sparklines.. + Represents the following element tag in the schema: xr:sparklineGroup. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + Represents one comment within a cell.. + Represents the following element tag in the schema: xr:comments. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + Represents an autofilter.. + Represents the following element tag in the schema: xr:autoFilter. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + Represents a PivotTable View.. + Represents the following element tag in the schema: xr:pivotTableDefinition. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + + + + Defines the RevExHeader Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:hdr. + + + + + Initializes a new instance of the RevExHeader class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + minRev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: minRev + + + + + maxRev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: maxRev + + + + + time, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: time + + + + + + + + Defines the RevExFuture Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrftr. + + + The following table lists the possible child types: + + <xr:xrrtest> + + + + + + Initializes a new instance of the RevExFuture class. + + + + + Initializes a new instance of the RevExFuture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExFuture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExFuture class from outer XML. + + Specifies the outer XML of the element. + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + sti, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sti + + + + + + + + Defines the RevExUnsupported Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrUspt. + + + + + Initializes a new instance of the RevExUnsupported class. + + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + + + + Defines the RevExTrimmed Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrTrim. + + + + + Initializes a new instance of the RevExTrimmed class. + + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + + + + Defines the RevExRowColumn Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrrc. + + + + + Initializes a new instance of the RevExRowColumn class. + + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + eol, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: eol + + + + + ref, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ref + + + + + action, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: action + + + + + + + + Defines the RevExMove Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrm. + + + + + Initializes a new instance of the RevExMove class. + + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + src, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: src + + + + + dst, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: dst + + + + + srcSh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: srcSh + + + + + + + + Defines the RevExChangeCell Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrc. + + + The following table lists the possible child types: + + <xr:ccse> + <xr:c> + + + + + + Initializes a new instance of the RevExChangeCell class. + + + + + Initializes a new instance of the RevExChangeCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExChangeCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExChangeCell class from outer XML. + + Specifies the outer XML of the element. + + + + listUid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: listUid + + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + r, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r + + + + + t, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: t + + + + + x, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: x + + + + + w, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: w + + + + + + + + Defines the RevExFormatting Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrf. + + + The following table lists the possible child types: + + <xr:dxf> + <xr:extLst> + + + + + + Initializes a new instance of the RevExFormatting class. + + + + + Initializes a new instance of the RevExFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExFormatting class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExFormatting class from outer XML. + + Specifies the outer XML of the element. + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + numFmtId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: numFmtId + + + + + xfDxf, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: xfDxf + + + + + style, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: style + + + + + sqref, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sqref + + + + + start, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: start + + + + + length, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: length + + + + + styleUid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: styleUid + + + + + fBlankCell, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: fBlankCell + + + + + applyNumberFormat, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: applyNumberFormat + + + + + applyFont, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: applyFont + + + + + applyFill, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: applyFill + + + + + applyBorder, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: applyBorder + + + + + applyAlignment, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: applyAlignment + + + + + applyProtection, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: applyProtection + + + + + DifferentialFormatType. + Represents the following element tag in the schema: xr:dxf. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + ExtensionList. + Represents the following element tag in the schema: xr:extLst. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + + + + Defines the RevExDefinedName Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrDefName. + + + The following table lists the possible child types: + + <xr:extLst> + <xr:formula> + + + + + + Initializes a new instance of the RevExDefinedName class. + + + + + Initializes a new instance of the RevExDefinedName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExDefinedName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExDefinedName class from outer XML. + + Specifies the outer XML of the element. + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + customView, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: customView + + + + + name, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: name + + + + + function, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: function + + + + + functionGroupId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: functionGroupId + + + + + shortcutKey, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: shortcutKey + + + + + hidden, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: hidden + + + + + customMenu, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: customMenu + + + + + description, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: description + + + + + help, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: help + + + + + statusBar, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: statusBar + + + + + comment, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: comment + + + + + FormulaFormula. + Represents the following element tag in the schema: xr:formula. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + ExtensionList. + Represents the following element tag in the schema: xr:extLst. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + + + + Defines the RevExDelObj Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrdo. + + + The following table lists the possible child types: + + <xr:hdr> + + + + + + Initializes a new instance of the RevExDelObj class. + + + + + Initializes a new instance of the RevExDelObj class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExDelObj class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExDelObj class from outer XML. + + Specifies the outer XML of the element. + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + StateBasedHeader. + Represents the following element tag in the schema: xr:hdr. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + + + + Defines the RevExChgObj Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrco. + + + The following table lists the possible child types: + + <xr:body> + <xr:link> + <xr:hdr> + + + + + + Initializes a new instance of the RevExChgObj class. + + + + + Initializes a new instance of the RevExChgObj class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExChgObj class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevExChgObj class from outer XML. + + Specifies the outer XML of the element. + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + StateBasedHeader. + Represents the following element tag in the schema: xr:hdr. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + + + + Defines the RevExSheetOp Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrSheet. + + + + + Initializes a new instance of the RevExSheetOp class. + + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + op, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: op + + + + + name, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: name + + + + + idOrig, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: idOrig + + + + + idNew, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: idNew + + + + + + + + Defines the RevisionList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrList. + + + + + Initializes a new instance of the RevisionList class. + + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + Data, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: Data + + + + + Formatting, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: Formatting + + + + + RangeBased, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: RangeBased + + + + + Fake, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: Fake + + + + + ref, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ref + + + + + Headers, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: Headers + + + + + InsDelHeaders, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: InsDelHeaders + + + + + rId, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rId + + + + + + + + Defines the RevListAutoExpandRw Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrListExpR. + + + + + Initializes a new instance of the RevListAutoExpandRw class. + + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + refAdded, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: refAdded + + + + + listGuid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: listGuid + + + + + + + + Defines the RevGroup Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrg. + + + The following table lists the possible child types: + + <xr:xrrc> + <xr:xrrco> + <xr:xrrDefName> + <xr:xrrdo> + <xr:xrrf> + <xr:xrrftr> + <xr:xrrm> + <xr:xrrrc> + <xr:xrrSheet> + <xr:xrrTrim> + <xr:xrrUspt> + <xr:xrrList> + <xr:xrrListExpR> + + + + + + Initializes a new instance of the RevGroup class. + + + + + Initializes a new instance of the RevGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevGroup class from outer XML. + + Specifies the outer XML of the element. + + + + rev, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rev + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + sh, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sh + + + + + uidp, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidp + + + + + ctx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ctx + + + + + + + + Defines the RevExTest Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:xrrtest. + + + + + Initializes a new instance of the RevExTest class. + + + + + + + + Defines the RevCell Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:c. + + + The following table lists the possible child types: + + <xr:is> + <xr:f> + <xr:v> + + + + + + Initializes a new instance of the RevCell class. + + + + + Initializes a new instance of the RevCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevCell class from outer XML. + + Specifies the outer XML of the element. + + + + t, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: t + + + + + nop, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: nop + + + + + tick, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: tick + + + + + rep, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: rep + + + + + FFormula. + Represents the following element tag in the schema: xr:f. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + Xstring. + Represents the following element tag in the schema: xr:v. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + RstType. + Represents the following element tag in the schema: xr:is. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + + + + Defines the ChangeCellSubEdit Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:ccse. + + + The following table lists the possible child types: + + <xr:c> + + + + + + Initializes a new instance of the ChangeCellSubEdit class. + + + + + Initializes a new instance of the ChangeCellSubEdit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChangeCellSubEdit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChangeCellSubEdit class from outer XML. + + Specifies the outer XML of the element. + + + + r, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r + + + + + t, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: t + + + + + x, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: x + + + + + w, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: w + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the FormulaFormula Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:formula. + + + + + Initializes a new instance of the FormulaFormula class. + + + + + Initializes a new instance of the FormulaFormula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the FFormula Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:f. + + + + + Initializes a new instance of the FFormula class. + + + + + Initializes a new instance of the FFormula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the StateBasedHeader Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:hdr. + + + The following table lists the possible child types: + + <xr:refmap> + + + + + + Initializes a new instance of the StateBasedHeader class. + + + + + Initializes a new instance of the StateBasedHeader class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StateBasedHeader class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StateBasedHeader class from outer XML. + + Specifies the outer XML of the element. + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + eft, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: eft + + + + + eftx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: eftx + + + + + seft, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: seft + + + + + seftx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: seftx + + + + + RefMap. + Represents the following element tag in the schema: xr:refmap. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + + + + Defines the RevisionStateLink Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:link. + + + + + Initializes a new instance of the RevisionStateLink class. + + + + + id, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the RevisionState Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:body. + + + The following table lists the possible child types: + + <xr:freezePanes> + <xr:hideUnhideSheet> + <xr:outlines> + <xr:rowColVisualOps> + <xr:showGridlinesHeadings> + + + + + + Initializes a new instance of the RevisionState class. + + + + + Initializes a new instance of the RevisionState class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionState class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RevisionState class from outer XML. + + Specifies the outer XML of the element. + + + + RowColVisualOps. + Represents the following element tag in the schema: xr:rowColVisualOps. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + HideUnhideSheet. + Represents the following element tag in the schema: xr:hideUnhideSheet. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + ShowGridlinesHeadings. + Represents the following element tag in the schema: xr:showGridlinesHeadings. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + FreezePanes. + Represents the following element tag in the schema: xr:freezePanes. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + Outlines. + Represents the following element tag in the schema: xr:outlines. + + + xmlns:xr = http://schemas.microsoft.com/office/spreadsheetml/2014/revision + + + + + + + + Defines the RefMap Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:refmap. + + + The following table lists the possible child types: + + <xr:ref> + <xr:future> + <xr:oartAnchor> + <xr:test> + <xr:sheetUid> + + + + + + Initializes a new instance of the RefMap class. + + + + + Initializes a new instance of the RefMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RefMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RefMap class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RowColVisualOps Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:rowColVisualOps. + + + + + Initializes a new instance of the RowColVisualOps class. + + + + + action, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: action + + + + + isRow, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: isRow + + + + + size, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: size + + + + + userSized, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: userSized + + + + + + + + Defines the HideUnhideSheet Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:hideUnhideSheet. + + + + + Initializes a new instance of the HideUnhideSheet class. + + + + + hide, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: hide + + + + + + + + Defines the ShowGridlinesHeadings Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:showGridlinesHeadings. + + + + + Initializes a new instance of the ShowGridlinesHeadings class. + + + + + showGridLines, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: showGridLines + + + + + showRowCol, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: showRowCol + + + + + + + + Defines the FreezePanes Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:freezePanes. + + + + + Initializes a new instance of the FreezePanes class. + + + + + sheetViewUid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: sheetViewUid + + + + + + + + Defines the Outlines Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:outlines. + + + The following table lists the possible child types: + + <xr:outline> + + + + + + Initializes a new instance of the Outlines class. + + + + + Initializes a new instance of the Outlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Outlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Outlines class from outer XML. + + Specifies the outer XML of the element. + + + + isRow, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: isRow + + + + + + + + Defines the Outline Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:outline. + + + + + Initializes a new instance of the Outline class. + + + + + isCollapsed, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: isCollapsed + + + + + level, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: level + + + + + + + + Defines the Xstring Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:v. + + + + + Initializes a new instance of the Xstring class. + + + + + Initializes a new instance of the Xstring class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the RstType Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:is. + + + The following table lists the possible child types: + + <x:phoneticPr> + <x:rPh> + <x:r> + <x:t> + + + + + + Initializes a new instance of the RstType class. + + + + + Initializes a new instance of the RstType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RstType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RstType class from outer XML. + + Specifies the outer XML of the element. + + + + Text. + Represents the following element tag in the schema: x:t. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the RefCell Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:ref. + + + + + Initializes a new instance of the RefCell class. + + + + + n, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: n + + + + + ajt, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ajt + + + + + ajtx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ajtx + + + + + homeRef, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: homeRef + + + + + r, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + uidLast, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uidLast + + + + + + + + Defines the SheetXluid Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:sheetUid. + + + + + Initializes a new instance of the SheetXluid class. + + + + + n, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: n + + + + + ajt, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ajt + + + + + ajtx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ajtx + + + + + homeRef, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: homeRef + + + + + uid, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: uid + + + + + + + + Defines the RefOartAnchor Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:oartAnchor. + + + + + Initializes a new instance of the RefOartAnchor class. + + + + + n, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: n + + + + + ajt, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ajt + + + + + ajtx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ajtx + + + + + homeRef, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: homeRef + + + + + r, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: r + + + + + fromRowOff, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: fromRowOff + + + + + fromColOff, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: fromColOff + + + + + toRowOff, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: toRowOff + + + + + toColOff, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: toColOff + + + + + cx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cx + + + + + cy, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: cy + + + + + x, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: x + + + + + y, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: y + + + + + oat, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: oat + + + + + + + + Defines the RefFuture Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:future. + + + + + Initializes a new instance of the RefFuture class. + + + + + + + + Defines the RefTest Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:test. + + + + + Initializes a new instance of the RefTest class. + + + + + n, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: n + + + + + ajt, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ajt + + + + + ajtx, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: ajtx + + + + + homeRef, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: homeRef + + + + + + + + Represents an external link to another workbook.. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:dataValidation. + + + The following table lists the possible child types: + + <x:formula1> + <x:formula2> + <x12ac:list> + + + + + + Initializes a new instance of the DataValidation class. + + + + + Initializes a new instance of the DataValidation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataValidation class from outer XML. + + Specifies the outer XML of the element. + + + + type + Represents the following attribute in the schema: type + + + + + errorStyle + Represents the following attribute in the schema: errorStyle + + + + + imeMode + Represents the following attribute in the schema: imeMode + + + + + operator + Represents the following attribute in the schema: operator + + + + + allowBlank + Represents the following attribute in the schema: allowBlank + + + + + showDropDown + Represents the following attribute in the schema: showDropDown + + + + + showInputMessage + Represents the following attribute in the schema: showInputMessage + + + + + showErrorMessage + Represents the following attribute in the schema: showErrorMessage + + + + + errorTitle + Represents the following attribute in the schema: errorTitle + + + + + error + Represents the following attribute in the schema: error + + + + + promptTitle + Represents the following attribute in the schema: promptTitle + + + + + prompt + Represents the following attribute in the schema: prompt + + + + + sqref + Represents the following attribute in the schema: sqref + + + + + List. + Represents the following element tag in the schema: x12ac:list. + + + xmlns:x12ac = http://schemas.microsoft.com/office/spreadsheetml/2011/1/ac + + + + + Formula1. + Represents the following element tag in the schema: x:formula1. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Formula2. + Represents the following element tag in the schema: x:formula2. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Represents a hyperlink within a cell.. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:hyperlink. + + + + + Initializes a new instance of the Hyperlink class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + Relationship Id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Location + Represents the following attribute in the schema: location + + + + + Tool Tip + Represents the following attribute in the schema: tooltip + + + + + Display String + Represents the following attribute in the schema: display + + + + + + + + Represents a sparkline group of 1 or more sparklines.. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:sparklineGroup. + + + The following table lists the possible child types: + + <x14:colorSeries> + <x14:colorNegative> + <x14:colorAxis> + <x14:colorMarkers> + <x14:colorFirst> + <x14:colorLast> + <x14:colorHigh> + <x14:colorLow> + <xne:f> + <x14:sparklines> + + + + + + Initializes a new instance of the SparklineGroup class. + + + + + Initializes a new instance of the SparklineGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SparklineGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SparklineGroup class from outer XML. + + Specifies the outer XML of the element. + + + + manualMax, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: manualMax + + + + + manualMin, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: manualMin + + + + + lineWeight, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: lineWeight + + + + + type, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: type + + + + + dateAxis, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dateAxis + + + + + displayEmptyCellsAs, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: displayEmptyCellsAs + + + + + markers, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: markers + + + + + high, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: high + + + + + low, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: low + + + + + first, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: first + + + + + last, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: last + + + + + negative, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: negative + + + + + displayXAxis, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: displayXAxis + + + + + displayHidden, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: displayHidden + + + + + minAxisType, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: minAxisType + + + + + maxAxisType, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: maxAxisType + + + + + rightToLeft, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: rightToLeft + + + + + SeriesColor. + Represents the following element tag in the schema: x14:colorSeries. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + NegativeColor. + Represents the following element tag in the schema: x14:colorNegative. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + AxisColor. + Represents the following element tag in the schema: x14:colorAxis. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + MarkersColor. + Represents the following element tag in the schema: x14:colorMarkers. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + FirstMarkerColor. + Represents the following element tag in the schema: x14:colorFirst. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + LastMarkerColor. + Represents the following element tag in the schema: x14:colorLast. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + HighMarkerColor. + Represents the following element tag in the schema: x14:colorHigh. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + LowMarkerColor. + Represents the following element tag in the schema: x14:colorLow. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + Formula. + Represents the following element tag in the schema: xne:f. + + + xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main + + + + + Sparklines. + Represents the following element tag in the schema: x14:sparklines. + + + xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main + + + + + + + + Represents one comment within a cell.. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:comments. + + + The following table lists the possible child types: + + <x:authors> + <x:commentList> + <x:extLst> + + + + + + Initializes a new instance of the Comments class. + + + + + Initializes a new instance of the Comments class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comments class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comments class from outer XML. + + Specifies the outer XML of the element. + + + + Authors. + Represents the following element tag in the schema: x:authors. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + List of Comments. + Represents the following element tag in the schema: x:commentList. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Represents an autofilter.. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:autoFilter. + + + The following table lists the possible child types: + + <x:extLst> + <x:filterColumn> + <x:sortState> + + + + + + Initializes a new instance of the AutoFilter class. + + + + + Initializes a new instance of the AutoFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoFilter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AutoFilter class from outer XML. + + Specifies the outer XML of the element. + + + + Cell or Range Reference + Represents the following attribute in the schema: ref + + + + + + + + Represents a PivotTable View.. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is xr:pivotTableDefinition. + + + The following table lists the possible child types: + + <x:chartFormats> + <x:colFields> + <x:colHierarchiesUsage> + <x:colItems> + <x:conditionalFormats> + <x:dataFields> + <x:formats> + <x:location> + <x:pageFields> + <x:pivotFields> + <x:filters> + <x:pivotHierarchies> + <x:extLst> + <x:pivotTableStyleInfo> + <x:rowFields> + <x:rowHierarchiesUsage> + <x:rowItems> + + + + + + Initializes a new instance of the pivotTableDefinition class. + + + + + Initializes a new instance of the pivotTableDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the pivotTableDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the pivotTableDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: name + + + + + cacheId + Represents the following attribute in the schema: cacheId + + + + + dataOnRows + Represents the following attribute in the schema: dataOnRows + + + + + dataPosition + Represents the following attribute in the schema: dataPosition + + + + + Auto Format Id + Represents the following attribute in the schema: autoFormatId + + + + + Apply Number Formats + Represents the following attribute in the schema: applyNumberFormats + + + + + Apply Border Formats + Represents the following attribute in the schema: applyBorderFormats + + + + + Apply Font Formats + Represents the following attribute in the schema: applyFontFormats + + + + + Apply Pattern Formats + Represents the following attribute in the schema: applyPatternFormats + + + + + Apply Alignment Formats + Represents the following attribute in the schema: applyAlignmentFormats + + + + + Apply Width / Height Formats + Represents the following attribute in the schema: applyWidthHeightFormats + + + + + dataCaption + Represents the following attribute in the schema: dataCaption + + + + + grandTotalCaption + Represents the following attribute in the schema: grandTotalCaption + + + + + errorCaption + Represents the following attribute in the schema: errorCaption + + + + + showError + Represents the following attribute in the schema: showError + + + + + missingCaption + Represents the following attribute in the schema: missingCaption + + + + + showMissing + Represents the following attribute in the schema: showMissing + + + + + pageStyle + Represents the following attribute in the schema: pageStyle + + + + + pivotTableStyle + Represents the following attribute in the schema: pivotTableStyle + + + + + vacatedStyle + Represents the following attribute in the schema: vacatedStyle + + + + + tag + Represents the following attribute in the schema: tag + + + + + updatedVersion + Represents the following attribute in the schema: updatedVersion + + + + + minRefreshableVersion + Represents the following attribute in the schema: minRefreshableVersion + + + + + asteriskTotals + Represents the following attribute in the schema: asteriskTotals + + + + + showItems + Represents the following attribute in the schema: showItems + + + + + editData + Represents the following attribute in the schema: editData + + + + + disableFieldList + Represents the following attribute in the schema: disableFieldList + + + + + showCalcMbrs + Represents the following attribute in the schema: showCalcMbrs + + + + + visualTotals + Represents the following attribute in the schema: visualTotals + + + + + showMultipleLabel + Represents the following attribute in the schema: showMultipleLabel + + + + + showDataDropDown + Represents the following attribute in the schema: showDataDropDown + + + + + showDrill + Represents the following attribute in the schema: showDrill + + + + + printDrill + Represents the following attribute in the schema: printDrill + + + + + showMemberPropertyTips + Represents the following attribute in the schema: showMemberPropertyTips + + + + + showDataTips + Represents the following attribute in the schema: showDataTips + + + + + enableWizard + Represents the following attribute in the schema: enableWizard + + + + + enableDrill + Represents the following attribute in the schema: enableDrill + + + + + enableFieldProperties + Represents the following attribute in the schema: enableFieldProperties + + + + + preserveFormatting + Represents the following attribute in the schema: preserveFormatting + + + + + useAutoFormatting + Represents the following attribute in the schema: useAutoFormatting + + + + + pageWrap + Represents the following attribute in the schema: pageWrap + + + + + pageOverThenDown + Represents the following attribute in the schema: pageOverThenDown + + + + + subtotalHiddenItems + Represents the following attribute in the schema: subtotalHiddenItems + + + + + rowGrandTotals + Represents the following attribute in the schema: rowGrandTotals + + + + + colGrandTotals + Represents the following attribute in the schema: colGrandTotals + + + + + fieldPrintTitles + Represents the following attribute in the schema: fieldPrintTitles + + + + + itemPrintTitles + Represents the following attribute in the schema: itemPrintTitles + + + + + mergeItem + Represents the following attribute in the schema: mergeItem + + + + + showDropZones + Represents the following attribute in the schema: showDropZones + + + + + createdVersion + Represents the following attribute in the schema: createdVersion + + + + + indent + Represents the following attribute in the schema: indent + + + + + showEmptyRow + Represents the following attribute in the schema: showEmptyRow + + + + + showEmptyCol + Represents the following attribute in the schema: showEmptyCol + + + + + showHeaders + Represents the following attribute in the schema: showHeaders + + + + + compact + Represents the following attribute in the schema: compact + + + + + outline + Represents the following attribute in the schema: outline + + + + + outlineData + Represents the following attribute in the schema: outlineData + + + + + compactData + Represents the following attribute in the schema: compactData + + + + + published + Represents the following attribute in the schema: published + + + + + gridDropZones + Represents the following attribute in the schema: gridDropZones + + + + + immersive + Represents the following attribute in the schema: immersive + + + + + multipleFieldFilters + Represents the following attribute in the schema: multipleFieldFilters + + + + + chartFormat + Represents the following attribute in the schema: chartFormat + + + + + rowHeaderCaption + Represents the following attribute in the schema: rowHeaderCaption + + + + + colHeaderCaption + Represents the following attribute in the schema: colHeaderCaption + + + + + fieldListSortAscending + Represents the following attribute in the schema: fieldListSortAscending + + + + + mdxSubqueries + Represents the following attribute in the schema: mdxSubqueries + + + + + customListSort + Represents the following attribute in the schema: customListSort + + + + + Location. + Represents the following element tag in the schema: x:location. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotFields. + Represents the following element tag in the schema: x:pivotFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + RowFields. + Represents the following element tag in the schema: x:rowFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + RowItems. + Represents the following element tag in the schema: x:rowItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ColumnFields. + Represents the following element tag in the schema: x:colFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ColumnItems. + Represents the following element tag in the schema: x:colItems. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PageFields. + Represents the following element tag in the schema: x:pageFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + DataFields. + Represents the following element tag in the schema: x:dataFields. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + Formats. + Represents the following element tag in the schema: x:formats. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ConditionalFormats. + Represents the following element tag in the schema: x:conditionalFormats. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ChartFormats. + Represents the following element tag in the schema: x:chartFormats. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotHierarchies. + Represents the following element tag in the schema: x:pivotHierarchies. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotTableStyle. + Represents the following element tag in the schema: x:pivotTableStyleInfo. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotFilters. + Represents the following element tag in the schema: x:filters. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + RowHierarchiesUsage. + Represents the following element tag in the schema: x:rowHierarchiesUsage. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + ColumnHierarchiesUsage. + Represents the following element tag in the schema: x:colHierarchiesUsage. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + PivotTableDefinitionExtensionList. + Represents the following element tag in the schema: x:extLst. + + + xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main + + + + + + + + Defines the RevisionContext enumeration. + + + + + Creates a new RevisionContext enum instance + + + + + normal. + When the item is serialized out as xml, its value is "normal". + + + + + undo. + When the item is serialized out as xml, its value is "undo". + + + + + redo. + When the item is serialized out as xml, its value is "redo". + + + + + copy. + When the item is serialized out as xml, its value is "copy". + + + + + Defines the RwColAction enumeration. + + + + + Creates a new RwColAction enum instance + + + + + insr. + When the item is serialized out as xml, its value is "insr". + + + + + delr. + When the item is serialized out as xml, its value is "delr". + + + + + insc. + When the item is serialized out as xml, its value is "insc". + + + + + delc. + When the item is serialized out as xml, its value is "delc". + + + + + Defines the FeatureType enumeration. + + + + + Creates a new FeatureType enum instance + + + + + dataValidation. + When the item is serialized out as xml, its value is "dataValidation". + + + + + hyperlink. + When the item is serialized out as xml, its value is "hyperlink". + + + + + rowColVisualOps. + When the item is serialized out as xml, its value is "rowColVisualOps". + + + + + freezePanes. + When the item is serialized out as xml, its value is "freezePanes". + + + + + sparklines. + When the item is serialized out as xml, its value is "sparklines". + + + + + hideUnhideSheet. + When the item is serialized out as xml, its value is "hideUnhideSheet". + + + + + showGridlinesHeadings. + When the item is serialized out as xml, its value is "showGridlinesHeadings". + + + + + comment. + When the item is serialized out as xml, its value is "comment". + + + + + outlines. + When the item is serialized out as xml, its value is "outlines". + + + + + drawingElement. + When the item is serialized out as xml, its value is "drawingElement". + + + + + autoFilter. + When the item is serialized out as xml, its value is "autoFilter". + + + + + pivotTable. + When the item is serialized out as xml, its value is "pivotTable". + + + + + future. + When the item is serialized out as xml, its value is "future". + + + + + Defines the ExtFeatureType enumeration. + + + + + Creates a new ExtFeatureType enum instance + + + + + reserved. + When the item is serialized out as xml, its value is "reserved". + + + + + Defines the SubFeatureType enumeration. + + + + + Creates a new SubFeatureType enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + future. + When the item is serialized out as xml, its value is "future". + + + + + Defines the ExtSubFeatureType enumeration. + + + + + Creates a new ExtSubFeatureType enum instance + + + + + reserved. + When the item is serialized out as xml, its value is "reserved". + + + + + Defines the RowColVisualOp enumeration. + + + + + Creates a new RowColVisualOp enum instance + + + + + hide. + When the item is serialized out as xml, its value is "hide". + + + + + unhide. + When the item is serialized out as xml, its value is "unhide". + + + + + resize. + When the item is serialized out as xml, its value is "resize". + + + + + autosize. + When the item is serialized out as xml, its value is "autosize". + + + + + Defines the SheetOp enumeration. + + + + + Creates a new SheetOp enum instance + + + + + insert. + When the item is serialized out as xml, its value is "insert". + + + + + delete. + When the item is serialized out as xml, its value is "delete". + + + + + reorder. + When the item is serialized out as xml, its value is "reorder". + + + + + rename. + When the item is serialized out as xml, its value is "rename". + + + + + Defines the FillType enumeration. + + + + + Creates a new FillType enum instance + + + + + fill. + When the item is serialized out as xml, its value is "fill". + + + + + array. + When the item is serialized out as xml, its value is "array". + + + + + future. + When the item is serialized out as xml, its value is "future". + + + + + Defines the FillTypeExt enumeration. + + + + + Creates a new FillTypeExt enum instance + + + + + test. + When the item is serialized out as xml, its value is "test". + + + + + Defines the AdjustType enumeration. + + + + + Creates a new AdjustType enum instance + + + + + fmla. + When the item is serialized out as xml, its value is "fmla". + + + + + format. + When the item is serialized out as xml, its value is "format". + + + + + condFmt. + When the item is serialized out as xml, its value is "condFmt". + + + + + sparkline. + When the item is serialized out as xml, its value is "sparkline". + + + + + anchor. + When the item is serialized out as xml, its value is "anchor". + + + + + fmlaNoSticky. + When the item is serialized out as xml, its value is "fmlaNoSticky". + + + + + noAdj. + When the item is serialized out as xml, its value is "noAdj". + + + + + fragile. + When the item is serialized out as xml, its value is "fragile". + + + + + future. + When the item is serialized out as xml, its value is "future". + + + + + Defines the AdjustTypeExt enumeration. + + + + + Creates a new AdjustTypeExt enum instance + + + + + test. + When the item is serialized out as xml, its value is "test". + + + + + Defines the OartAnchorType enumeration. + + + + + Creates a new OartAnchorType enum instance + + + + + twoCell. + When the item is serialized out as xml, its value is "twoCell". + + + + + oneCell. + When the item is serialized out as xml, its value is "oneCell". + + + + + absolute. + When the item is serialized out as xml, its value is "absolute". + + + + + Defines the SymEx Class. + This class is available in Office 2016 and above. + When the object is serialized out as xml, it's qualified name is w16se:symEx. + + + + + Initializes a new instance of the SymEx class. + + + + + font, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: w16se:font + + + xmlns:w16se=http://schemas.microsoft.com/office/word/2015/wordml/symex + + + + + char, this property is only available in Office 2016 and later. + Represents the following attribute in the schema: w16se:char + + + xmlns:w16se=http://schemas.microsoft.com/office/word/2015/wordml/symex + + + + + + + + Defines the NumberDiagramInfoList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is dgm1611:autoBuNodeInfoLst. + + + The following table lists the possible child types: + + <dgm1611:autoBuNodeInfo> + + + + + + Initializes a new instance of the NumberDiagramInfoList class. + + + + + Initializes a new instance of the NumberDiagramInfoList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDiagramInfoList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDiagramInfoList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DiagramAutoBullet Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is dgm1611:buPr. + + + The following table lists the possible child types: + + <a:buAutoNum> + <a:buBlip> + <a:buChar> + <a:buNone> + + + + + + Initializes a new instance of the DiagramAutoBullet class. + + + + + Initializes a new instance of the DiagramAutoBullet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramAutoBullet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramAutoBullet class from outer XML. + + Specifies the outer XML of the element. + + + + prefix, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: prefix + + + + + leadZeros, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: leadZeros + + + + + No Bullet. + Represents the following element tag in the schema: a:buNone. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Auto-Numbered Bullet. + Represents the following element tag in the schema: a:buAutoNum. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Character Bullet. + Represents the following element tag in the schema: a:buChar. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Picture Bullet. + Represents the following element tag in the schema: a:buBlip. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NumberDiagramInfo Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is dgm1611:autoBuNodeInfo. + + + The following table lists the possible child types: + + <dgm1611:buPr> + + + + + + Initializes a new instance of the NumberDiagramInfo class. + + + + + Initializes a new instance of the NumberDiagramInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDiagramInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDiagramInfo class from outer XML. + + Specifies the outer XML of the element. + + + + lvl, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: lvl + + + + + ptType, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: ptType + + + + + DiagramAutoBullet. + Represents the following element tag in the schema: dgm1611:buPr. + + + xmlns:dgm1611 = http://schemas.microsoft.com/office/drawing/2016/11/diagram + + + + + + + + Defines the STorageType enumeration. + + + + + Creates a new STorageType enum instance + + + + + sibTrans. + When the item is serialized out as xml, its value is "sibTrans". + + + + + parTrans. + When the item is serialized out as xml, its value is "parTrans". + + + + + Defines the PictureAttributionSourceURL Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is a1611:picAttrSrcUrl. + + + + + Initializes a new instance of the PictureAttributionSourceURL class. + + + + + id, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is dgm1612:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the TextListStyleType Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is dgm1612:lstStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:defPPr> + <a:lvl1pPr> + <a:lvl2pPr> + <a:lvl3pPr> + <a:lvl4pPr> + <a:lvl5pPr> + <a:lvl6pPr> + <a:lvl7pPr> + <a:lvl8pPr> + <a:lvl9pPr> + + + + + + Initializes a new instance of the TextListStyleType class. + + + + + Initializes a new instance of the TextListStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextListStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextListStyleType class from outer XML. + + Specifies the outer XML of the element. + + + + Default Paragraph Style. + Represents the following element tag in the schema: a:defPPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 1 Text Style. + Represents the following element tag in the schema: a:lvl1pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 2 Text Style. + Represents the following element tag in the schema: a:lvl2pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 3 Text Style. + Represents the following element tag in the schema: a:lvl3pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 4 Text Style. + Represents the following element tag in the schema: a:lvl4pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 5 Text Style. + Represents the following element tag in the schema: a:lvl5pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 6 Text Style. + Represents the following element tag in the schema: a:lvl6pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 7 Text Style. + Represents the following element tag in the schema: a:lvl7pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 8 Text Style. + Represents the following element tag in the schema: a:lvl8pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 9 Text Style. + Represents the following element tag in the schema: a:lvl9pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ExtendedBrushPropertyName enumeration. + + + + + Creates a new ExtendedBrushPropertyName enum instance + + + + + inkEffects. + When the item is serialized out as xml, its value is "inkEffects". + + + + + anchorX. + When the item is serialized out as xml, its value is "anchorX". + + + + + anchorY. + When the item is serialized out as xml, its value is "anchorY". + + + + + scaleFactor. + When the item is serialized out as xml, its value is "scaleFactor". + + + + + Defines the InkEffectsType enumeration. + + + + + Creates a new InkEffectsType enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + pencil. + When the item is serialized out as xml, its value is "pencil". + + + + + rainbow. + When the item is serialized out as xml, its value is "rainbow". + + + + + galaxy. + When the item is serialized out as xml, its value is "galaxy". + + + + + gold. + When the item is serialized out as xml, its value is "gold". + + + + + silver. + When the item is serialized out as xml, its value is "silver". + + + + + lava. + When the item is serialized out as xml, its value is "lava". + + + + + ocean. + When the item is serialized out as xml, its value is "ocean". + + + + + rosegold. + When the item is serialized out as xml, its value is "rosegold". + + + + + bronze. + When the item is serialized out as xml, its value is "bronze". + + + + + Defines the SVGBlip Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is asvg:svgBlip. + + + + + Initializes a new instance of the SVGBlip class. + + + + + Embedded Picture Reference + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Linked Picture Reference + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the DataDisplayOptions16 Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is c16r3:dataDisplayOptions16. + + + The following table lists the possible child types: + + <c16r3:dispNaAsBlank> + + + + + + Initializes a new instance of the DataDisplayOptions16 class. + + + + + Initializes a new instance of the DataDisplayOptions16 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataDisplayOptions16 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataDisplayOptions16 class from outer XML. + + Specifies the outer XML of the element. + + + + BooleanFalse. + Represents the following element tag in the schema: c16r3:dispNaAsBlank. + + + xmlns:c16r3 = http://schemas.microsoft.com/office/drawing/2017/03/chart + + + + + + + + Defines the BooleanFalse Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is c16r3:dispNaAsBlank. + + + + + Initializes a new instance of the BooleanFalse class. + + + + + val, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: c16r3:val + + + xmlns:c16r3=http://schemas.microsoft.com/office/drawing/2017/03/chart + + + + + + + + Defines the Decorative Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is adec:decorative. + + + + + Initializes a new instance of the Decorative class. + + + + + val, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the Model3D Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:model3d. + + + The following table lists the possible child types: + + <am3d:spPr> + <am3d:attrSrcUrl> + <am3d:ambientLight> + <am3d:dirLight> + <am3d:camera> + <am3d:extLst> + <am3d:raster> + <am3d:trans> + <am3d:objViewport> + <am3d:ptLight> + <am3d:spotLight> + <am3d:unkLight> + <am3d:winViewport> + + + + + + Initializes a new instance of the Model3D class. + + + + + Initializes a new instance of the Model3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3D class from outer XML. + + Specifies the outer XML of the element. + + + + Embedded Picture Reference + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Linked Picture Reference + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ShapeProperties. + Represents the following element tag in the schema: am3d:spPr. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + Model3DCamera. + Represents the following element tag in the schema: am3d:camera. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + Model3DTransform. + Represents the following element tag in the schema: am3d:trans. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + Optional source attribution URL describes from whence the 3D model came.. + Represents the following element tag in the schema: am3d:attrSrcUrl. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + Model3DRaster. + Represents the following element tag in the schema: am3d:raster. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + Future Model3D extensions. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the SxRatio Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:sx. + + + + + Initializes a new instance of the SxRatio class. + + + + + + + + Defines the SyRatio Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:sy. + + + + + Initializes a new instance of the SyRatio class. + + + + + + + + Defines the SzRatio Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:sz. + + + + + Initializes a new instance of the SzRatio class. + + + + + + + + Defines the RatioType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the RatioType class. + + + + + Numerator + Represents the following attribute in the schema: n + + + + + Denominator + Represents the following attribute in the schema: d + + + + + Defines the MeterPerModelUnitPositiveRatio Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:meterPerModelUnit. + + + + + Initializes a new instance of the MeterPerModelUnitPositiveRatio class. + + + + + + + + Defines the SzPositiveRatio Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:sz. + + + + + Initializes a new instance of the SzPositiveRatio class. + + + + + + + + Defines the IlluminancePositiveRatio Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:illuminance. + + + + + Initializes a new instance of the IlluminancePositiveRatio class. + + + + + + + + Defines the IntensityPositiveRatio Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:intensity. + + + + + Initializes a new instance of the IntensityPositiveRatio class. + + + + + + + + Defines the OpenXmlPositiveRatioElement Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlPositiveRatioElement class. + + + + + n, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: n + + + + + d, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: d + + + + + Defines the PreTransVector3D Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:preTrans. + + + + + Initializes a new instance of the PreTransVector3D class. + + + + + + + + Defines the PostTransVector3D Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:postTrans. + + + + + Initializes a new instance of the PostTransVector3D class. + + + + + + + + Defines the UpVector3D Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:up. + + + + + Initializes a new instance of the UpVector3D class. + + + + + + + + Defines the Vector3DType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the Vector3DType class. + + + + + Distance along X-axis in 3D + Represents the following attribute in the schema: dx + + + + + Distance along Y-axis in 3D + Represents the following attribute in the schema: dy + + + + + Distance along Z-axis in 3D + Represents the following attribute in the schema: dz + + + + + Defines the Scale3D Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:scale. + + + The following table lists the possible child types: + + <am3d:sx> + <am3d:sy> + <am3d:sz> + + + + + + Initializes a new instance of the Scale3D class. + + + + + Initializes a new instance of the Scale3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scale3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scale3D class from outer XML. + + Specifies the outer XML of the element. + + + + SxRatio. + Represents the following element tag in the schema: am3d:sx. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + SyRatio. + Represents the following element tag in the schema: am3d:sy. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + SzRatio. + Represents the following element tag in the schema: am3d:sz. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the Rotate3D Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:rot. + + + + + Initializes a new instance of the Rotate3D class. + + + + + ax, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: ax + + + + + ay, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: ay + + + + + az, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: az + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PosPoint3D Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:pos. + + + + + Initializes a new instance of the PosPoint3D class. + + + + + + + + Defines the LookAtPoint3D Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:lookAt. + + + + + Initializes a new instance of the LookAtPoint3D class. + + + + + + + + Defines the OpenXmlPoint3DElement Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OpenXmlPoint3DElement class. + + + + + X-Coordinate in 3D + Represents the following attribute in the schema: x + + + + + Y-Coordinate in 3D + Represents the following attribute in the schema: y + + + + + Z-Coordinate in 3D + Represents the following attribute in the schema: z + + + + + Defines the OrthographicProjection Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:orthographic. + + + The following table lists the possible child types: + + <am3d:extLst> + <am3d:sz> + + + + + + Initializes a new instance of the OrthographicProjection class. + + + + + Initializes a new instance of the OrthographicProjection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OrthographicProjection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OrthographicProjection class from outer XML. + + Specifies the outer XML of the element. + + + + SzPositiveRatio. + Represents the following element tag in the schema: am3d:sz. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the PerspectiveProjection Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:perspective. + + + The following table lists the possible child types: + + <am3d:extLst> + + + + + + Initializes a new instance of the PerspectiveProjection class. + + + + + Initializes a new instance of the PerspectiveProjection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PerspectiveProjection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PerspectiveProjection class from outer XML. + + Specifies the outer XML of the element. + + + + fov, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: fov + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the Blip Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:blip. + + + The following table lists the possible child types: + + <a:alphaBiLevel> + <a:alphaCeiling> + <a:alphaFloor> + <a:alphaInv> + <a:alphaMod> + <a:alphaModFix> + <a:alphaRepl> + <a:biLevel> + <a:extLst> + <a:blur> + <a:clrChange> + <a:clrRepl> + <a:duotone> + <a:fillOverlay> + <a:grayscl> + <a:hsl> + <a:lum> + <a:tint> + + + + + + Initializes a new instance of the Blip class. + + + + + Initializes a new instance of the Blip class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Blip class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Blip class from outer XML. + + Specifies the outer XML of the element. + + + + Embedded Picture Reference + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Linked Picture Reference + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Compression state for blips. + Represents the following attribute in the schema: cstate + + + + + + + + Defines the ColorType Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:clr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorType class. + + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the Model3DExtension Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:ext. + + + The following table lists the possible child types: + + <a3danim:embedAnim> + <a3danim:posterFrame> + + + + + + Initializes a new instance of the Model3DExtension class. + + + + + Initializes a new instance of the Model3DExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: uri + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the Model3DCamera Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:camera. + + + The following table lists the possible child types: + + <am3d:extLst> + <am3d:pos> + <am3d:lookAt> + <am3d:up> + <am3d:orthographic> + <am3d:perspective> + + + + + + Initializes a new instance of the Model3DCamera class. + + + + + Initializes a new instance of the Model3DCamera class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DCamera class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DCamera class from outer XML. + + Specifies the outer XML of the element. + + + + PosPoint3D. + Represents the following element tag in the schema: am3d:pos. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + UpVector3D. + Represents the following element tag in the schema: am3d:up. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + LookAtPoint3D. + Represents the following element tag in the schema: am3d:lookAt. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the Model3DTransform Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:trans. + + + The following table lists the possible child types: + + <am3d:extLst> + <am3d:preTrans> + <am3d:postTrans> + <am3d:meterPerModelUnit> + <am3d:rot> + <am3d:scale> + + + + + + Initializes a new instance of the Model3DTransform class. + + + + + Initializes a new instance of the Model3DTransform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DTransform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DTransform class from outer XML. + + Specifies the outer XML of the element. + + + + MeterPerModelUnitPositiveRatio. + Represents the following element tag in the schema: am3d:meterPerModelUnit. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + PreTransVector3D. + Represents the following element tag in the schema: am3d:preTrans. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + Scale3D. + Represents the following element tag in the schema: am3d:scale. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + Rotate3D. + Represents the following element tag in the schema: am3d:rot. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + PostTransVector3D. + Represents the following element tag in the schema: am3d:postTrans. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Optional source attribution URL describes from whence the 3D model came.. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:attrSrcUrl. + + + + + Initializes a new instance of the PictureAttributionSourceURL class. + + + + + id, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the Model3DRaster Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:raster. + + + The following table lists the possible child types: + + <am3d:blip> + + + + + + Initializes a new instance of the Model3DRaster class. + + + + + Initializes a new instance of the Model3DRaster class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DRaster class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DRaster class from outer XML. + + Specifies the outer XML of the element. + + + + rName, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: rName + + + + + rVer, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: rVer + + + + + Blip. + Represents the following element tag in the schema: am3d:blip. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Future Model3D extensions. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:extLst. + + + The following table lists the possible child types: + + <am3d:ext> + + + + + + Initializes a new instance of the Model3DExtensionList class. + + + + + Initializes a new instance of the Model3DExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model3DExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ObjectViewport Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:objViewport. + + + The following table lists the possible child types: + + <am3d:extLst> + + + + + + Initializes a new instance of the ObjectViewport class. + + + + + Initializes a new instance of the ObjectViewport class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ObjectViewport class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ObjectViewport class from outer XML. + + Specifies the outer XML of the element. + + + + viewportSz, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: viewportSz + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the WindowViewport Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:winViewport. + + + The following table lists the possible child types: + + <am3d:extLst> + + + + + + Initializes a new instance of the WindowViewport class. + + + + + Initializes a new instance of the WindowViewport class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WindowViewport class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WindowViewport class from outer XML. + + Specifies the outer XML of the element. + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Ambient light in a scene. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:ambientLight. + + + The following table lists the possible child types: + + <am3d:clr> + <am3d:extLst> + <am3d:illuminance> + + + + + + Initializes a new instance of the AmbientLight class. + + + + + Initializes a new instance of the AmbientLight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AmbientLight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AmbientLight class from outer XML. + + Specifies the outer XML of the element. + + + + enabled, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: enabled + + + + + ColorType. + Represents the following element tag in the schema: am3d:clr. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + IlluminancePositiveRatio. + Represents the following element tag in the schema: am3d:illuminance. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the PointLight Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:ptLight. + + + The following table lists the possible child types: + + <am3d:clr> + <am3d:extLst> + <am3d:pos> + <am3d:intensity> + + + + + + Initializes a new instance of the PointLight class. + + + + + Initializes a new instance of the PointLight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PointLight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PointLight class from outer XML. + + Specifies the outer XML of the element. + + + + enabled, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: enabled + + + + + rad, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: rad + + + + + ColorType. + Represents the following element tag in the schema: am3d:clr. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + IntensityPositiveRatio. + Represents the following element tag in the schema: am3d:intensity. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + PosPoint3D. + Represents the following element tag in the schema: am3d:pos. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the SpotLight Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:spotLight. + + + The following table lists the possible child types: + + <am3d:clr> + <am3d:extLst> + <am3d:pos> + <am3d:lookAt> + <am3d:intensity> + + + + + + Initializes a new instance of the SpotLight class. + + + + + Initializes a new instance of the SpotLight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SpotLight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SpotLight class from outer XML. + + Specifies the outer XML of the element. + + + + enabled, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: enabled + + + + + rad, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: rad + + + + + spotAng, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: spotAng + + + + + ColorType. + Represents the following element tag in the schema: am3d:clr. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + IntensityPositiveRatio. + Represents the following element tag in the schema: am3d:intensity. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + PosPoint3D. + Represents the following element tag in the schema: am3d:pos. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + LookAtPoint3D. + Represents the following element tag in the schema: am3d:lookAt. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the DirectionalLight Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:dirLight. + + + The following table lists the possible child types: + + <am3d:clr> + <am3d:extLst> + <am3d:pos> + <am3d:lookAt> + <am3d:illuminance> + + + + + + Initializes a new instance of the DirectionalLight class. + + + + + Initializes a new instance of the DirectionalLight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DirectionalLight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DirectionalLight class from outer XML. + + Specifies the outer XML of the element. + + + + enabled, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: enabled + + + + + angularRad, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: angularRad + + + + + ColorType. + Represents the following element tag in the schema: am3d:clr. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + IlluminancePositiveRatio. + Represents the following element tag in the schema: am3d:illuminance. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + PosPoint3D. + Represents the following element tag in the schema: am3d:pos. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + LookAtPoint3D. + Represents the following element tag in the schema: am3d:lookAt. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: am3d:extLst. + + + xmlns:am3d = http://schemas.microsoft.com/office/drawing/2017/model3d + + + + + + + + Defines the UnknownLight Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is am3d:unkLight. + + + + + Initializes a new instance of the UnknownLight class. + + + + + + + + Defines the AnimationProperties Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is aanim:animPr. + + + The following table lists the possible child types: + + <aanim:extLst> + + + + + + Initializes a new instance of the AnimationProperties class. + + + + + Initializes a new instance of the AnimationProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimationProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimationProperties class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: name + + + + + length, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: length + + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + auto, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: auto + + + + + offset, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: offset + + + + + st, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: st + + + + + end, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: end + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: aanim:extLst. + + + xmlns:aanim = http://schemas.microsoft.com/office/drawing/2018/animation + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is aanim:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Indefinite enumeration. + + + + + Creates a new Indefinite enum instance + + + + + indefinite. + When the item is serialized out as xml, its value is "indefinite". + + + + + Defines the EmbeddedAnimation Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is a3danim:embedAnim. + + + The following table lists the possible child types: + + <a3danim:extLst> + <a3danim:animPr> + + + + + + Initializes a new instance of the EmbeddedAnimation class. + + + + + Initializes a new instance of the EmbeddedAnimation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedAnimation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedAnimation class from outer XML. + + Specifies the outer XML of the element. + + + + animId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: animId + + + + + AnimationProperties. + Represents the following element tag in the schema: a3danim:animPr. + + + xmlns:a3danim = http://schemas.microsoft.com/office/drawing/2018/animation/model3d + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: a3danim:extLst. + + + xmlns:a3danim = http://schemas.microsoft.com/office/drawing/2018/animation/model3d + + + + + + + + Defines the PosterFrame Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is a3danim:posterFrame. + + + + + Initializes a new instance of the PosterFrame class. + + + + + animId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: animId + + + + + frame, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: frame + + + + + + + + Defines the AnimationProperties Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is a3danim:animPr. + + + The following table lists the possible child types: + + <aanim:extLst> + + + + + + Initializes a new instance of the AnimationProperties class. + + + + + Initializes a new instance of the AnimationProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimationProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimationProperties class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: name + + + + + length, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: length + + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + auto, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: auto + + + + + offset, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: offset + + + + + st, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: st + + + + + end, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: end + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: aanim:extLst. + + + xmlns:aanim = http://schemas.microsoft.com/office/drawing/2018/animation + + + + + + + + Defines the OfficeArtExtensionList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is a3danim:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeArtExtensionList class. + + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeArtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HyperlinkColor Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is ahyp:hlinkClr. + + + + + Initializes a new instance of the HyperlinkColor class. + + + + + val, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the HyperlinkColorEnum enumeration. + + + + + Creates a new HyperlinkColorEnum enum instance + + + + + hlink. + When the item is serialized out as xml, its value is "hlink". + + + + + tx. + When the item is serialized out as xml, its value is "tx". + + + + + Defines the ReadonlyRecommended Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is p1710:readonlyRecommended. + + + + + Initializes a new instance of the ReadonlyRecommended class. + + + + + val, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the TracksInfo Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is p173:tracksInfo. + + + The following table lists the possible child types: + + <p173:trackLst> + + + + + + Initializes a new instance of the TracksInfo class. + + + + + Initializes a new instance of the TracksInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TracksInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TracksInfo class from outer XML. + + Specifies the outer XML of the element. + + + + displayLoc, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: displayLoc + + + + + TrackList. + Represents the following element tag in the schema: p173:trackLst. + + + xmlns:p173 = http://schemas.microsoft.com/office/powerpoint/2017/3/main + + + + + + + + Defines the Track Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is p173:track. + + + + + Initializes a new instance of the Track class. + + + + + id, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: id + + + + + label, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: label + + + + + lang, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: lang + + + + + Embedded Picture Reference + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Linked Picture Reference + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Defines the TrackList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is p173:trackLst. + + + The following table lists the possible child types: + + <p173:track> + + + + + + Initializes a new instance of the TrackList class. + + + + + Initializes a new instance of the TrackList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TrackList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TrackList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DisplayLocation enumeration. + + + + + Creates a new DisplayLocation enum instance + + + + + media. + When the item is serialized out as xml, its value is "media". + + + + + slide. + When the item is serialized out as xml, its value is "slide". + + + + + Defines the ClassificationOutcome Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is p184:classification. + + + + + Initializes a new instance of the ClassificationOutcome class. + + + + + val, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: val + + + + + + + + Defines the ClassificationOutcomeType enumeration. + + + + + Creates a new ClassificationOutcomeType enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + hdr. + When the item is serialized out as xml, its value is "hdr". + + + + + ftr. + When the item is serialized out as xml, its value is "ftr". + + + + + watermark. + When the item is serialized out as xml, its value is "watermark". + + + + + Defines the PivotTableDefinition16 Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xpdl:pivotTableDefinition16. + + + + + Initializes a new instance of the PivotTableDefinition16 class. + + + + + EnabledSubtotalsDefault, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: EnabledSubtotalsDefault + + + + + SubtotalsOnTopDefault, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: SubtotalsOnTopDefault + + + + + InsertBlankRowDefault, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: InsertBlankRowDefault + + + + + + + + Defines the DynamicArrayProperties Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xda:dynamicArrayProperties. + + + The following table lists the possible child types: + + <xda:extLst> + + + + + + Initializes a new instance of the DynamicArrayProperties class. + + + + + Initializes a new instance of the DynamicArrayProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DynamicArrayProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DynamicArrayProperties class from outer XML. + + Specifies the outer XML of the element. + + + + fDynamic, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: fDynamic + + + + + fCollapsed, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: fCollapsed + + + + + ExtensionList. + Represents the following element tag in the schema: xda:extLst. + + + xmlns:xda = http://schemas.microsoft.com/office/spreadsheetml/2017/dynamicarray + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xda:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichValueBlock Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:rvb. + + + + + Initializes a new instance of the RichValueBlock class. + + + + + i, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: i + + + + + + + + Defines the RichValueData Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:rvData. + + + The following table lists the possible child types: + + <xlrd:extLst> + <xlrd:rv> + + + + + + Initializes a new instance of the RichValueData class. + + + + + Initializes a new instance of the RichValueData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueData class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + + + + Loads the DOM from the RdRichValuePart + + Specifies the part to be loaded. + + + + Saves the DOM into the RdRichValuePart. + + Specifies the part to save to. + + + + Gets the RdRichValuePart associated with this element. + + + + + Defines the RichValueStructures Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:rvStructures. + + + The following table lists the possible child types: + + <xlrd:extLst> + <xlrd:s> + + + + + + Initializes a new instance of the RichValueStructures class. + + + + + Initializes a new instance of the RichValueStructures class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueStructures class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueStructures class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + + + + Loads the DOM from the RdRichValueStructurePart + + Specifies the part to be loaded. + + + + Saves the DOM into the RdRichValueStructurePart. + + Specifies the part to save to. + + + + Gets the RdRichValueStructurePart associated with this element. + + + + + Defines the RichValue Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:rv. + + + The following table lists the possible child types: + + <xlrd:fb> + <xlrd:v> + + + + + + Initializes a new instance of the RichValue class. + + + + + Initializes a new instance of the RichValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValue class from outer XML. + + Specifies the outer XML of the element. + + + + s, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: s + + + + + RichValueFallback. + Represents the following element tag in the schema: xlrd:fb. + + + xmlns:xlrd = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichValueFallback Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:fb. + + + + + Initializes a new instance of the RichValueFallback class. + + + + + Initializes a new instance of the RichValueFallback class with the specified text content. + + Specifies the text content of the element. + + + + t, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: t + + + + + + + + Defines the Value Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:v. + + + + + Initializes a new instance of the Value class. + + + + + Initializes a new instance of the Value class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the RichValueStructure Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:s. + + + The following table lists the possible child types: + + <xlrd:k> + + + + + + Initializes a new instance of the RichValueStructure class. + + + + + Initializes a new instance of the RichValueStructure class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueStructure class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueStructure class from outer XML. + + Specifies the outer XML of the element. + + + + t, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: t + + + + + + + + Defines the Key Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd:k. + + + + + Initializes a new instance of the Key class. + + + + + n, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: n + + + + + t, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: t + + + + + + + + Defines the RichValueFallbackType enumeration. + + + + + Creates a new RichValueFallbackType enum instance + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + n. + When the item is serialized out as xml, its value is "n". + + + + + e. + When the item is serialized out as xml, its value is "e". + + + + + s. + When the item is serialized out as xml, its value is "s". + + + + + Defines the RichValueValueType enumeration. + + + + + Creates a new RichValueValueType enum instance + + + + + d. + When the item is serialized out as xml, its value is "d". + + + + + i. + When the item is serialized out as xml, its value is "i". + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + e. + When the item is serialized out as xml, its value is "e". + + + + + s. + When the item is serialized out as xml, its value is "s". + + + + + r. + When the item is serialized out as xml, its value is "r". + + + + + a. + When the item is serialized out as xml, its value is "a". + + + + + spb. + When the item is serialized out as xml, its value is "spb". + + + + + Defines the RichFilterColumn Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:filterColumn. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:customFilters> + <xlrd2:dynamicFilter> + <xlrd2:filters> + <xlrd2:top10> + + + + + + Initializes a new instance of the RichFilterColumn class. + + + + + Initializes a new instance of the RichFilterColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichFilterColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichFilterColumn class from outer XML. + + Specifies the outer XML of the element. + + + + RichFilters. + Represents the following element tag in the schema: xlrd2:filters. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + RichTop10. + Represents the following element tag in the schema: xlrd2:top10. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + CustomRichFilters. + Represents the following element tag in the schema: xlrd2:customFilters. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + DynamicRichFilter. + Represents the following element tag in the schema: xlrd2:dynamicFilter. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + ExtensionList. + Represents the following element tag in the schema: xlrd2:extLst. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + + + + Defines the RichSortCondition Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:richSortCondition. + + + + + Initializes a new instance of the RichSortCondition class. + + + + + richSortKey, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: richSortKey + + + + + descending, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: descending + + + + + sortBy, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: sortBy + + + + + ref, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: ref + + + + + customList, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: customList + + + + + dxfId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: dxfId + + + + + iconSet, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconSet + + + + + iconId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: iconId + + + + + + + + Defines the SupportingPropertyBags Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:supportingPropertyBags. + + + The following table lists the possible child types: + + <xlrd2:spbArrays> + <xlrd2:spbData> + + + + + + Initializes a new instance of the SupportingPropertyBags class. + + + + + Initializes a new instance of the SupportingPropertyBags class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBags class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBags class from outer XML. + + Specifies the outer XML of the element. + + + + SupportingPropertyBagArrayData. + Represents the following element tag in the schema: xlrd2:spbArrays. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + SupportingPropertyBagData. + Represents the following element tag in the schema: xlrd2:spbData. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + + + + Loads the DOM from the RdSupportingPropertyBagPart + + Specifies the part to be loaded. + + + + Saves the DOM into the RdSupportingPropertyBagPart. + + Specifies the part to save to. + + + + Gets the RdSupportingPropertyBagPart associated with this element. + + + + + Defines the SupportingPropertyBagStructures Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:spbStructures. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:s> + + + + + + Initializes a new instance of the SupportingPropertyBagStructures class. + + + + + Initializes a new instance of the SupportingPropertyBagStructures class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagStructures class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagStructures class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + + + + Loads the DOM from the RdSupportingPropertyBagStructurePart + + Specifies the part to be loaded. + + + + Saves the DOM into the RdSupportingPropertyBagStructurePart. + + Specifies the part to save to. + + + + Gets the RdSupportingPropertyBagStructurePart associated with this element. + + + + + Defines the ArrayData Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:arrayData. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:a> + + + + + + Initializes a new instance of the ArrayData class. + + + + + Initializes a new instance of the ArrayData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ArrayData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ArrayData class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + + + + Loads the DOM from the RdArrayPart + + Specifies the part to be loaded. + + + + Saves the DOM into the RdArrayPart. + + Specifies the part to save to. + + + + Gets the RdArrayPart associated with this element. + + + + + Defines the RichStylesheet Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:richStyleSheet. + + + The following table lists the possible child types: + + <xlrd2:dxfs> + <xlrd2:extLst> + <xlrd2:richProperties> + <xlrd2:richStyles> + + + + + + Initializes a new instance of the RichStylesheet class. + + + + + Initializes a new instance of the RichStylesheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichStylesheet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichStylesheet class from outer XML. + + Specifies the outer XML of the element. + + + + Dxfs. + Represents the following element tag in the schema: xlrd2:dxfs. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + RichFormatProperties. + Represents the following element tag in the schema: xlrd2:richProperties. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + RichStyles. + Represents the following element tag in the schema: xlrd2:richStyles. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + ExtensionList. + Represents the following element tag in the schema: xlrd2:extLst. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + + + + Loads the DOM from the RichStylesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the RichStylesPart. + + Specifies the part to save to. + + + + Gets the RichStylesPart associated with this element. + + + + + Defines the RichValueTypesInfo Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:rvTypesInfo. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:global> + <xlrd2:types> + + + + + + Initializes a new instance of the RichValueTypesInfo class. + + + + + Initializes a new instance of the RichValueTypesInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueTypesInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueTypesInfo class from outer XML. + + Specifies the outer XML of the element. + + + + RichValueGlobalType. + Represents the following element tag in the schema: xlrd2:global. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + RichValueTypes. + Represents the following element tag in the schema: xlrd2:types. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + ExtensionList. + Represents the following element tag in the schema: xlrd2:extLst. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + + + + Loads the DOM from the RdRichValueTypesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the RdRichValueTypesPart. + + Specifies the part to save to. + + + + Gets the RdRichValueTypesPart associated with this element. + + + + + Defines the RichFilters Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:filters. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:dateGroupItem> + <xlrd2:filter> + + + + + + Initializes a new instance of the RichFilters class. + + + + + Initializes a new instance of the RichFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichFilters class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichTop10 Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:top10. + + + + + Initializes a new instance of the RichTop10 class. + + + + + key, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: key + + + + + Top + Represents the following attribute in the schema: top + + + + + Filter by Percent + Represents the following attribute in the schema: percent + + + + + Top or Bottom Value + Represents the following attribute in the schema: val + + + + + Filter Value + Represents the following attribute in the schema: filterVal + + + + + + + + Defines the CustomRichFilters Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:customFilters. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:customFilter> + + + + + + Initializes a new instance of the CustomRichFilters class. + + + + + Initializes a new instance of the CustomRichFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomRichFilters class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomRichFilters class from outer XML. + + Specifies the outer XML of the element. + + + + and, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: and + + + + + + + + Defines the DynamicRichFilter Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:dynamicFilter. + + + + + Initializes a new instance of the DynamicRichFilter class. + + + + + key, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: key + + + + + Dynamic filter type + Represents the following attribute in the schema: type + + + + + Value + Represents the following attribute in the schema: val + + + + + Max Value + Represents the following attribute in the schema: maxVal + + + + + valIso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: valIso + + + + + maxValIso, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: maxValIso + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichFilter Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:filter. + + + + + Initializes a new instance of the RichFilter class. + + + + + key, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: key + + + + + val, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: val + + + + + blank, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: blank + + + + + nodata, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: nodata + + + + + + + + Defines the RichDateGroupItem Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:dateGroupItem. + + + + + Initializes a new instance of the RichDateGroupItem class. + + + + + key, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: key + + + + + Year + Represents the following attribute in the schema: year + + + + + Month + Represents the following attribute in the schema: month + + + + + Day + Represents the following attribute in the schema: day + + + + + Hour + Represents the following attribute in the schema: hour + + + + + Minute + Represents the following attribute in the schema: minute + + + + + Second + Represents the following attribute in the schema: second + + + + + Date Time Grouping + Represents the following attribute in the schema: dateTimeGrouping + + + + + + + + Defines the CustomRichFilter Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:customFilter. + + + + + Initializes a new instance of the CustomRichFilter class. + + + + + key, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: key + + + + + Filter Comparison Operator + Represents the following attribute in the schema: operator + + + + + Top or Bottom Value + Represents the following attribute in the schema: val + + + + + + + + Defines the SupportingPropertyBagArrayData Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:spbArrays. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:a> + + + + + + Initializes a new instance of the SupportingPropertyBagArrayData class. + + + + + Initializes a new instance of the SupportingPropertyBagArrayData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagArrayData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagArrayData class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the SupportingPropertyBagData Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:spbData. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:spb> + + + + + + Initializes a new instance of the SupportingPropertyBagData class. + + + + + Initializes a new instance of the SupportingPropertyBagData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagData class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the SupportingPropertyBag Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:spb. + + + The following table lists the possible child types: + + <xlrd2:v> + + + + + + Initializes a new instance of the SupportingPropertyBag class. + + + + + Initializes a new instance of the SupportingPropertyBag class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBag class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBag class from outer XML. + + Specifies the outer XML of the element. + + + + s, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: s + + + + + + + + Defines the SupportingPropertyBagValue Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:v. + + + + + Initializes a new instance of the SupportingPropertyBagValue class. + + + + + Initializes a new instance of the SupportingPropertyBagValue class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the SupportingPropertyBagStructure Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:s. + + + The following table lists the possible child types: + + <xlrd2:k> + + + + + + Initializes a new instance of the SupportingPropertyBagStructure class. + + + + + Initializes a new instance of the SupportingPropertyBagStructure class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagStructure class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagStructure class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SupportingPropertyBagKey Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:k. + + + + + Initializes a new instance of the SupportingPropertyBagKey class. + + + + + n, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: n + + + + + t, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: t + + + + + + + + Defines the SupportingPropertyBagArray Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:a. + + + The following table lists the possible child types: + + <xlrd2:v> + + + + + + Initializes a new instance of the SupportingPropertyBagArray class. + + + + + Initializes a new instance of the SupportingPropertyBagArray class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagArray class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SupportingPropertyBagArray class from outer XML. + + Specifies the outer XML of the element. + + + + count, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: count + + + + + + + + Defines the SupportingPropertyBagArrayValue Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:v. + + + + + Initializes a new instance of the SupportingPropertyBagArrayValue class. + + + + + Initializes a new instance of the SupportingPropertyBagArrayValue class with the specified text content. + + Specifies the text content of the element. + + + + t, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: t + + + + + + + + Defines the Array Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:a. + + + The following table lists the possible child types: + + <xlrd2:v> + + + + + + Initializes a new instance of the Array class. + + + + + Initializes a new instance of the Array class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Array class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Array class from outer XML. + + Specifies the outer XML of the element. + + + + r, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: r + + + + + c, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: c + + + + + + + + Defines the ArrayValue Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:v. + + + + + Initializes a new instance of the ArrayValue class. + + + + + Initializes a new instance of the ArrayValue class with the specified text content. + + Specifies the text content of the element. + + + + t, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: t + + + + + + + + Defines the Dxfs Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:dxfs. + + + The following table lists the possible child types: + + <x:dxf> + + + + + + Initializes a new instance of the Dxfs class. + + + + + Initializes a new instance of the Dxfs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Dxfs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Dxfs class from outer XML. + + Specifies the outer XML of the element. + + + + Format Count + Represents the following attribute in the schema: count + + + + + + + + Defines the RichFormatProperties Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:richProperties. + + + The following table lists the possible child types: + + <xlrd2:rPr> + + + + + + Initializes a new instance of the RichFormatProperties class. + + + + + Initializes a new instance of the RichFormatProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichFormatProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichFormatProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichStyles Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:richStyles. + + + The following table lists the possible child types: + + <xlrd2:rSty> + + + + + + Initializes a new instance of the RichStyles class. + + + + + Initializes a new instance of the RichStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichStyles class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichFormatProperty Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:rPr. + + + + + Initializes a new instance of the RichFormatProperty class. + + + + + n, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: n + + + + + t, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: t + + + + + + + + Defines the RichStyle Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:rSty. + + + The following table lists the possible child types: + + <xlrd2:rpv> + + + + + + Initializes a new instance of the RichStyle class. + + + + + Initializes a new instance of the RichStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichStyle class from outer XML. + + Specifies the outer XML of the element. + + + + dxfid, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: dxfid + + + + + + + + Defines the RichStylePropertyValue Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:rpv. + + + + + Initializes a new instance of the RichStylePropertyValue class. + + + + + Initializes a new instance of the RichStylePropertyValue class with the specified text content. + + Specifies the text content of the element. + + + + i, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: i + + + + + + + + Defines the RichValueGlobalType Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:global. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:keyFlags> + + + + + + Initializes a new instance of the RichValueGlobalType class. + + + + + Initializes a new instance of the RichValueGlobalType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueGlobalType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueGlobalType class from outer XML. + + Specifies the outer XML of the element. + + + + RichValueTypeKeyFlags. + Represents the following element tag in the schema: xlrd2:keyFlags. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + ExtensionList. + Represents the following element tag in the schema: xlrd2:extLst. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + + + + Defines the RichValueTypes Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:types. + + + The following table lists the possible child types: + + <xlrd2:type> + + + + + + Initializes a new instance of the RichValueTypes class. + + + + + Initializes a new instance of the RichValueTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueTypes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueTypes class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichValueType Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:type. + + + The following table lists the possible child types: + + <xlrd2:extLst> + <xlrd2:keyFlags> + + + + + + Initializes a new instance of the RichValueType class. + + + + + Initializes a new instance of the RichValueType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueType class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: name + + + + + RichValueTypeKeyFlags. + Represents the following element tag in the schema: xlrd2:keyFlags. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + ExtensionList. + Represents the following element tag in the schema: xlrd2:extLst. + + + xmlns:xlrd2 = http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2 + + + + + + + + Defines the RichValueTypeKeyFlags Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:keyFlags. + + + The following table lists the possible child types: + + <xlrd2:key> + + + + + + Initializes a new instance of the RichValueTypeKeyFlags class. + + + + + Initializes a new instance of the RichValueTypeKeyFlags class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueTypeKeyFlags class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueTypeKeyFlags class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RichValueTypeReservedKey Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:key. + + + The following table lists the possible child types: + + <xlrd2:flag> + + + + + + Initializes a new instance of the RichValueTypeReservedKey class. + + + + + Initializes a new instance of the RichValueTypeReservedKey class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueTypeReservedKey class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichValueTypeReservedKey class from outer XML. + + Specifies the outer XML of the element. + + + + name, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the RichValueTypeReservedKeyFlag Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xlrd2:flag. + + + + + Initializes a new instance of the RichValueTypeReservedKeyFlag class. + + + + + name, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: name + + + + + value, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: value + + + + + + + + Defines the SupportingPropertyBagValueType enumeration. + + + + + Creates a new SupportingPropertyBagValueType enum instance + + + + + d. + When the item is serialized out as xml, its value is "d". + + + + + i. + When the item is serialized out as xml, its value is "i". + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + s. + When the item is serialized out as xml, its value is "s". + + + + + spb. + When the item is serialized out as xml, its value is "spb". + + + + + spba. + When the item is serialized out as xml, its value is "spba". + + + + + Defines the SupportingPropertyBagArrayValueType enumeration. + + + + + Creates a new SupportingPropertyBagArrayValueType enum instance + + + + + d. + When the item is serialized out as xml, its value is "d". + + + + + i. + When the item is serialized out as xml, its value is "i". + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + s. + When the item is serialized out as xml, its value is "s". + + + + + spb. + When the item is serialized out as xml, its value is "spb". + + + + + Defines the ArrayValueType enumeration. + + + + + Creates a new ArrayValueType enum instance + + + + + d. + When the item is serialized out as xml, its value is "d". + + + + + i. + When the item is serialized out as xml, its value is "i". + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + e. + When the item is serialized out as xml, its value is "e". + + + + + s. + When the item is serialized out as xml, its value is "s". + + + + + r. + When the item is serialized out as xml, its value is "r". + + + + + a. + When the item is serialized out as xml, its value is "a". + + + + + Defines the RichFormatPropertyType enumeration. + + + + + Creates a new RichFormatPropertyType enum instance + + + + + b. + When the item is serialized out as xml, its value is "b". + + + + + n. + When the item is serialized out as xml, its value is "n". + + + + + i. + When the item is serialized out as xml, its value is "i". + + + + + s. + When the item is serialized out as xml, its value is "s". + + + + + Defines the CalcFeatures Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xcalcf:calcFeatures. + + + The following table lists the possible child types: + + <xcalcf:feature> + + + + + + Initializes a new instance of the CalcFeatures class. + + + + + Initializes a new instance of the CalcFeatures class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalcFeatures class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CalcFeatures class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CalcFeature Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xcalcf:feature. + + + + + Initializes a new instance of the CalcFeature class. + + + + + name, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: name + + + + + + + + Defines the PersonList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xltc:personList. + + + The following table lists the possible child types: + + <xltc:extLst> + <xltc:person> + + + + + + Initializes a new instance of the PersonList class. + + + + + Initializes a new instance of the PersonList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PersonList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PersonList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WorkbookPersonPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorkbookPersonPart. + + Specifies the part to save to. + + + + Gets the WorkbookPersonPart associated with this element. + + + + + Defines the ThreadedComments Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xltc:ThreadedComments. + + + The following table lists the possible child types: + + <xltc:extLst> + <xltc:threadedComment> + + + + + + Initializes a new instance of the ThreadedComments class. + + + + + Initializes a new instance of the ThreadedComments class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThreadedComments class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThreadedComments class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WorksheetThreadedCommentsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WorksheetThreadedCommentsPart. + + Specifies the part to save to. + + + + Gets the WorksheetThreadedCommentsPart associated with this element. + + + + + Defines the Person Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xltc:person. + + + The following table lists the possible child types: + + <xltc:extLst> + + + + + + Initializes a new instance of the Person class. + + + + + Initializes a new instance of the Person class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Person class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Person class from outer XML. + + Specifies the outer XML of the element. + + + + displayName, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: displayName + + + + + id, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: id + + + + + userId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: userId + + + + + providerId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: providerId + + + + + ExtensionList. + Represents the following element tag in the schema: xltc:extLst. + + + xmlns:xltc = http://schemas.microsoft.com/office/spreadsheetml/2018/threadedcomments + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xltc:extLst. + + + The following table lists the possible child types: + + <x:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ThreadedComment Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xltc:threadedComment. + + + The following table lists the possible child types: + + <xltc:extLst> + <xltc:text> + <xltc:mentions> + + + + + + Initializes a new instance of the ThreadedComment class. + + + + + Initializes a new instance of the ThreadedComment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThreadedComment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThreadedComment class from outer XML. + + Specifies the outer XML of the element. + + + + ref, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: ref + + + + + dT, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: dT + + + + + personId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: personId + + + + + id, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: id + + + + + parentId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: parentId + + + + + done, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: done + + + + + ThreadedCommentText. + Represents the following element tag in the schema: xltc:text. + + + xmlns:xltc = http://schemas.microsoft.com/office/spreadsheetml/2018/threadedcomments + + + + + ThreadedCommentMentions. + Represents the following element tag in the schema: xltc:mentions. + + + xmlns:xltc = http://schemas.microsoft.com/office/spreadsheetml/2018/threadedcomments + + + + + ExtensionList. + Represents the following element tag in the schema: xltc:extLst. + + + xmlns:xltc = http://schemas.microsoft.com/office/spreadsheetml/2018/threadedcomments + + + + + + + + Defines the ThreadedCommentText Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xltc:text. + + + + + Initializes a new instance of the ThreadedCommentText class. + + + + + Initializes a new instance of the ThreadedCommentText class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the ThreadedCommentMentions Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xltc:mentions. + + + The following table lists the possible child types: + + <xltc:mention> + + + + + + Initializes a new instance of the ThreadedCommentMentions class. + + + + + Initializes a new instance of the ThreadedCommentMentions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThreadedCommentMentions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThreadedCommentMentions class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Mention Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is xltc:mention. + + + + + Initializes a new instance of the Mention class. + + + + + mentionpersonId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: mentionpersonId + + + + + mentionId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: mentionId + + + + + startIndex, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: startIndex + + + + + length, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: length + + + + + + + + Defines the CommentsIds Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is w16cid:commentsIds. + + + The following table lists the possible child types: + + <w16cid:commentId> + + + + + + Initializes a new instance of the CommentsIds class. + + + + + Initializes a new instance of the CommentsIds class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentsIds class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentsIds class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the WordprocessingCommentsIdsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the WordprocessingCommentsIdsPart. + + Specifies the part to save to. + + + + Gets the WordprocessingCommentsIdsPart associated with this element. + + + + + Defines the CommentId Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is w16cid:commentId. + + + + + Initializes a new instance of the CommentId class. + + + + + paraId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: w16cid:paraId + + + xmlns:w16cid=http://schemas.microsoft.com/office/word/2016/wordml/cid + + + + + durableId, this property is only available in Office 2019 and later. + Represents the following attribute in the schema: w16cid:durableId + + + xmlns:w16cid=http://schemas.microsoft.com/office/word/2016/wordml/cid + + + + + + + + Number Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:numFmt. + + + + + Initializes a new instance of the NumberingFormat class. + + + + + Number Format Code + Represents the following attribute in the schema: formatCode + + + + + Linked to Source + Represents the following attribute in the schema: sourceLinked + + + + + + + + Defines the ChartShapeProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:ln> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ChartShapeProperties class. + + + + + Initializes a new instance of the ChartShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the TextProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:txPr. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextProperties class. + + + + + Initializes a new instance of the TextProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Rich Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:rich. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the RichText class. + + + + + Initializes a new instance of the RichText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RichText class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextBodyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBodyType class. + + + + + Initializes a new instance of the TextBodyType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBodyType class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Data Label Position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dLblPos. + + + + + Initializes a new instance of the DataLabelPosition class. + + + + + Data Label Position Value + Represents the following attribute in the schema: val + + + + + + + + Show Legend Key. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showLegendKey. + + + + + Initializes a new instance of the ShowLegendKey class. + + + + + + + + Show Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showVal. + + + + + Initializes a new instance of the ShowValue class. + + + + + + + + Show Category Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showCatName. + + + + + Initializes a new instance of the ShowCategoryName class. + + + + + + + + Show Series Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showSerName. + + + + + Initializes a new instance of the ShowSeriesName class. + + + + + + + + Show Percent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showPercent. + + + + + Initializes a new instance of the ShowPercent class. + + + + + + + + Show Bubble Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showBubbleSize. + + + + + Initializes a new instance of the ShowBubbleSize class. + + + + + + + + Show Leader Lines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showLeaderLines. + + + + + Initializes a new instance of the ShowLeaderLines class. + + + + + + + + Defines the VaryColors Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:varyColors. + + + + + Initializes a new instance of the VaryColors class. + + + + + + + + Wireframe. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:wireframe. + + + + + Initializes a new instance of the Wireframe class. + + + + + + + + Delete. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:delete. + + + + + Initializes a new instance of the Delete class. + + + + + + + + Overlay. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:overlay. + + + + + Initializes a new instance of the Overlay class. + + + + + + + + Right Angle Axes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:rAngAx. + + + + + Initializes a new instance of the RightAngleAxes class. + + + + + + + + Show Horizontal Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showHorzBorder. + + + + + Initializes a new instance of the ShowHorizontalBorder class. + + + + + + + + Show Vertical Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showVertBorder. + + + + + Initializes a new instance of the ShowVerticalBorder class. + + + + + + + + Show Outline Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showOutline. + + + + + Initializes a new instance of the ShowOutlineBorder class. + + + + + + + + Show Legend Keys. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showKeys. + + + + + Initializes a new instance of the ShowKeys class. + + + + + + + + Invert if Negative. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:invertIfNegative. + + + + + Initializes a new instance of the InvertIfNegative class. + + + + + + + + 3D Bubble. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:bubble3D. + + + + + Initializes a new instance of the Bubble3D class. + + + + + + + + Display R Squared Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dispRSqr. + + + + + Initializes a new instance of the DisplayRSquaredValue class. + + + + + + + + Display Equation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dispEq. + + + + + Initializes a new instance of the DisplayEquation class. + + + + + + + + No End Cap. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:noEndCap. + + + + + Initializes a new instance of the NoEndCap class. + + + + + + + + Apply To Front. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:applyToFront. + + + + + Initializes a new instance of the ApplyToFront class. + + + + + + + + Apply To Sides. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:applyToSides. + + + + + Initializes a new instance of the ApplyToSides class. + + + + + + + + Apply to End. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:applyToEnd. + + + + + Initializes a new instance of the ApplyToEnd class. + + + + + + + + Chart Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:chartObject. + + + + + Initializes a new instance of the ChartObject class. + + + + + + + + Data Cannot Be Changed. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:data. + + + + + Initializes a new instance of the Data class. + + + + + + + + Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:formatting. + + + + + Initializes a new instance of the Formatting class. + + + + + + + + Selection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:selection. + + + + + Initializes a new instance of the Selection class. + + + + + + + + User Interface. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:userInterface. + + + + + Initializes a new instance of the UserInterface class. + + + + + + + + Update Automatically. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:autoUpdate. + + + + + Initializes a new instance of the AutoUpdate class. + + + + + + + + Defines the ShowMarker Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:marker. + + + + + Initializes a new instance of the ShowMarker class. + + + + + + + + Defines the Smooth Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:smooth. + + + + + Initializes a new instance of the Smooth class. + + + + + + + + Defines the ShowNegativeBubbles Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showNegBubbles. + + + + + Initializes a new instance of the ShowNegativeBubbles class. + + + + + + + + Defines the AutoLabeled Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:auto. + + + + + Initializes a new instance of the AutoLabeled class. + + + + + + + + Defines the NoMultiLevelLabels Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:noMultiLvlLbl. + + + + + Initializes a new instance of the NoMultiLevelLabels class. + + + + + + + + Defines the Date1904 Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:date1904. + + + + + Initializes a new instance of the Date1904 class. + + + + + + + + Defines the RoundedCorners Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:roundedCorners. + + + + + Initializes a new instance of the RoundedCorners class. + + + + + + + + True if the chart automatic title has been deleted.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:autoTitleDeleted. + + + + + Initializes a new instance of the AutoTitleDeleted class. + + + + + + + + True if only visible cells are plotted.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:plotVisOnly. + + + + + Initializes a new instance of the PlotVisibleOnly class. + + + + + + + + True if we should render datalabels over the maximum scale. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:showDLblsOverMax. + + + + + Initializes a new instance of the ShowDataLabelsOverMaximum class. + + + + + + + + Defines the BooleanType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BooleanType class. + + + + + Boolean Value + Represents the following attribute in the schema: val + + + + + Separator. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:separator. + + + + + Initializes a new instance of the Separator class. + + + + + Initializes a new instance of the Separator class with the specified text content. + + Specifies the text content of the element. + + + + + + + Trendline Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:name. + + + + + Initializes a new instance of the TrendlineName class. + + + + + Initializes a new instance of the TrendlineName class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Formula Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:f. + + + + + Initializes a new instance of the Formula class. + + + + + Initializes a new instance of the Formula class with the specified text content. + + Specifies the text content of the element. + + + + + + + Layout. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:layout. + + + The following table lists the possible child types: + + <c:extLst> + <c:manualLayout> + + + + + + Initializes a new instance of the Layout class. + + + + + Initializes a new instance of the Layout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Layout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Layout class from outer XML. + + Specifies the outer XML of the element. + + + + Manual Layout. + Represents the following element tag in the schema: c:manualLayout. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the ChartText Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:tx. + + + The following table lists the possible child types: + + <c:rich> + <c:strLit> + <c:strRef> + + + + + + Initializes a new instance of the ChartText class. + + + + + Initializes a new instance of the ChartText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartText class from outer XML. + + Specifies the outer XML of the element. + + + + String Reference. + Represents the following element tag in the schema: c:strRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Rich Text. + Represents the following element tag in the schema: c:rich. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + String Literal. + Represents the following element tag in the schema: c:strLit. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Leader Lines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:leaderLines. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the LeaderLines class. + + + + + Initializes a new instance of the LeaderLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeaderLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeaderLines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Drop Lines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dropLines. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the DropLines class. + + + + + Initializes a new instance of the DropLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DropLines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Major Gridlines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:majorGridlines. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the MajorGridlines class. + + + + + Initializes a new instance of the MajorGridlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MajorGridlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MajorGridlines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Minor Gridlines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:minorGridlines. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the MinorGridlines class. + + + + + Initializes a new instance of the MinorGridlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinorGridlines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinorGridlines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SeriesLines Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:serLines. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the SeriesLines class. + + + + + Initializes a new instance of the SeriesLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesLines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HighLowLines Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:hiLowLines. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the HighLowLines class. + + + + + Initializes a new instance of the HighLowLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HighLowLines class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HighLowLines class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ChartLinesType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the ChartLinesType class. + + + + + Initializes a new instance of the ChartLinesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartLinesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartLinesType class from outer XML. + + Specifies the outer XML of the element. + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Index. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:idx. + + + + + Initializes a new instance of the Index class. + + + + + + + + Order. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:order. + + + + + Initializes a new instance of the Order class. + + + + + + + + Axis ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:axId. + + + + + Initializes a new instance of the AxisId class. + + + + + + + + Crossing Axis ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:crossAx. + + + + + Initializes a new instance of the CrossingAxis class. + + + + + + + + Point Count. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ptCount. + + + + + Initializes a new instance of the PointCount class. + + + + + + + + Second Pie Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:secondPiePt. + + + + + Initializes a new instance of the SecondPiePoint class. + + + + + + + + Explosion. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:explosion. + + + + + Initializes a new instance of the Explosion class. + + + + + + + + Format ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:fmtId. + + + + + Initializes a new instance of the FormatId class. + + + + + + + + Defines the UnsignedIntegerType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the UnsignedIntegerType class. + + + + + Integer Value + Represents the following attribute in the schema: val + + + + + Series Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:tx. + + + The following table lists the possible child types: + + <c:strRef> + <c:v> + + + + + + Initializes a new instance of the SeriesText class. + + + + + Initializes a new instance of the SeriesText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesText class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesText class from outer XML. + + Specifies the outer XML of the element. + + + + StringReference. + Represents the following element tag in the schema: c:strRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + NumericValue. + Represents the following element tag in the schema: c:v. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Grouping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:grouping. + + + + + Initializes a new instance of the Grouping class. + + + + + Grouping Value + Represents the following attribute in the schema: val + + + + + + + + Defines the LineChartSeries Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:smooth> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:extLst> + <c:marker> + <c:val> + <c:pictureOptions> + <c:tx> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the LineChartSeries class. + + + + + Initializes a new instance of the LineChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Marker. + Represents the following element tag in the schema: c:marker. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Data Labels. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dLbls. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:delete> + <c:showLegendKey> + <c:showVal> + <c:showCatName> + <c:showSerName> + <c:showPercent> + <c:showBubbleSize> + <c:showLeaderLines> + <c:leaderLines> + <c:dLbl> + <c:dLblPos> + <c:extLst> + <c:numFmt> + <c:separator> + + + + + + Initializes a new instance of the DataLabels class. + + + + + Initializes a new instance of the DataLabels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabels class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabels class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Bar Direction. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:barDir. + + + + + Initializes a new instance of the BarDirection class. + + + + + Bar Direction Value + Represents the following attribute in the schema: val + + + + + + + + Bar Grouping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:grouping. + + + + + Initializes a new instance of the BarGrouping class. + + + + + Bar Grouping Value + Represents the following attribute in the schema: val + + + + + + + + Bar Chart Series. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:extLst> + <c:invertIfNegative> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:val> + <c:pictureOptions> + <c:tx> + <c:shape> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the BarChartSeries class. + + + + + Initializes a new instance of the BarChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + InvertIfNegative. + Represents the following element tag in the schema: c:invertIfNegative. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Area Chart Series. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:cat> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:val> + <c:pictureOptions> + <c:tx> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the AreaChartSeries class. + + + + + Initializes a new instance of the AreaChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Pie Chart Series. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:dLbls> + <c:dPt> + <c:val> + <c:pictureOptions> + <c:extLst> + <c:tx> + <c:idx> + <c:order> + <c:explosion> + + + + + + Initializes a new instance of the PieChartSeries class. + + + + + Initializes a new instance of the PieChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Explosion. + Represents the following element tag in the schema: c:explosion. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Surface Chart Series. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:bubble3D> + <c:val> + <c:pictureOptions> + <c:tx> + <c:extLst> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the SurfaceChartSeries class. + + + + + Initializes a new instance of the SurfaceChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + CategoryAxisData. + Represents the following element tag in the schema: c:cat. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Values. + Represents the following element tag in the schema: c:val. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Bubble3D. + Represents the following element tag in the schema: c:bubble3D. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + SurfaceSerExtensionList. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Band Formats. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:bandFmts. + + + The following table lists the possible child types: + + <c:bandFmt> + + + + + + Initializes a new instance of the BandFormats class. + + + + + Initializes a new instance of the BandFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BandFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BandFormats class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Scaling. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:scaling. + + + The following table lists the possible child types: + + <c:max> + <c:min> + <c:extLst> + <c:logBase> + <c:orientation> + + + + + + Initializes a new instance of the Scaling class. + + + + + Initializes a new instance of the Scaling class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scaling class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scaling class from outer XML. + + Specifies the outer XML of the element. + + + + Logarithmic Base. + Represents the following element tag in the schema: c:logBase. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Axis Orientation. + Represents the following element tag in the schema: c:orientation. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Maximum. + Represents the following element tag in the schema: c:max. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minimum. + Represents the following element tag in the schema: c:min. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Axis Position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:axPos. + + + + + Initializes a new instance of the AxisPosition class. + + + + + Axis Position Value + Represents the following attribute in the schema: val + + + + + + + + Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:title. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:overlay> + <c:extLst> + <c:layout> + <c:tx> + + + + + + Initializes a new instance of the Title class. + + + + + Initializes a new instance of the Title class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Title class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Title class from outer XML. + + Specifies the outer XML of the element. + + + + Chart Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Layout. + Represents the following element tag in the schema: c:layout. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Overlay. + Represents the following element tag in the schema: c:overlay. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + TextProperties. + Represents the following element tag in the schema: c:txPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Major Tick Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:majorTickMark. + + + + + Initializes a new instance of the MajorTickMark class. + + + + + + + + Minor Tick Mark. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:minorTickMark. + + + + + Initializes a new instance of the MinorTickMark class. + + + + + + + + Defines the TickMarkType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TickMarkType class. + + + + + Tick Mark Value + Represents the following attribute in the schema: val + + + + + Tick Label Position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:tickLblPos. + + + + + Initializes a new instance of the TickLabelPosition class. + + + + + Tick Label Position Value + Represents the following attribute in the schema: val + + + + + + + + Crosses. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:crosses. + + + + + Initializes a new instance of the Crosses class. + + + + + Crosses Value + Represents the following attribute in the schema: val + + + + + + + + Crossing Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:crossesAt. + + + + + Initializes a new instance of the CrossesAt class. + + + + + + + + Left. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:x. + + + + + Initializes a new instance of the Left class. + + + + + + + + Top. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:y. + + + + + Initializes a new instance of the Top class. + + + + + + + + Width. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:w. + + + + + Initializes a new instance of the Width class. + + + + + + + + Height. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:h. + + + + + Initializes a new instance of the Height class. + + + + + + + + Forward. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:forward. + + + + + Initializes a new instance of the Forward class. + + + + + + + + Backward. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:backward. + + + + + Initializes a new instance of the Backward class. + + + + + + + + Intercept. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:intercept. + + + + + Initializes a new instance of the Intercept class. + + + + + + + + Error Bar Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:val. + + + + + Initializes a new instance of the ErrorBarValue class. + + + + + + + + Split Position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:splitPos. + + + + + Initializes a new instance of the SplitPosition class. + + + + + + + + Custom Display Unit. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:custUnit. + + + + + Initializes a new instance of the CustomDisplayUnit class. + + + + + + + + Maximum. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:max. + + + + + Initializes a new instance of the MaxAxisValue class. + + + + + + + + Minimum. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:min. + + + + + Initializes a new instance of the MinAxisValue class. + + + + + + + + Defines the DoubleType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the DoubleType class. + + + + + Floating Point Value + Represents the following attribute in the schema: val + + + + + Chart Space. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:chartSpace. + + + The following table lists the possible child types: + + <c:clrMapOvr> + <c:spPr> + <c:txPr> + <c:date1904> + <c:roundedCorners> + <c:chart> + <c:extLst> + <c:externalData> + <c:pivotSource> + <c:printSettings> + <c:protection> + <c:userShapes> + <c:style> + <c:lang> + <c14:style> + + + + + + Initializes a new instance of the ChartSpace class. + + + + + Initializes a new instance of the ChartSpace class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSpace class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSpace class from outer XML. + + Specifies the outer XML of the element. + + + + Date1904. + Represents the following element tag in the schema: c:date1904. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + EditingLanguage. + Represents the following element tag in the schema: c:lang. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + RoundedCorners. + Represents the following element tag in the schema: c:roundedCorners. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Loads the DOM from the ChartPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ChartPart. + + Specifies the part to save to. + + + + Gets the ChartPart associated with this element. + + + + + User Shapes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:userShapes. + + + The following table lists the possible child types: + + <cdr:absSizeAnchor> + <cdr:relSizeAnchor> + + + + + + Initializes a new instance of the UserShapes class. + + + + + Initializes a new instance of the UserShapes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UserShapes class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UserShapes class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the ChartDrawingPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ChartDrawingPart. + + Specifies the part to save to. + + + + Gets the ChartDrawingPart associated with this element. + + + + + Reference to Chart Part. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:chart. + + + + + Initializes a new instance of the ChartReference class. + + + + + + + + Legacy Drawing for Headers and Footers. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:legacyDrawingHF. + + + + + Initializes a new instance of the LegacyDrawingHeaderFooter class. + + + + + + + + Defines the UserShapesReference Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:userShapes. + + + + + Initializes a new instance of the UserShapesReference class. + + + + + + + + Defines the RelationshipIdType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the RelationshipIdType class. + + + + + Relationship Reference + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Extension. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + + + Initializes a new instance of the Extension class. + + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class from outer XML. + + Specifies the outer XML of the element. + + + + Uniform Resource Identifier + Represents the following attribute in the schema: uri + + + + + + + + Numeric Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:v. + + + + + Initializes a new instance of the NumericValue class. + + + + + Initializes a new instance of the NumericValue class with the specified text content. + + Specifies the text content of the element. + + + + + + + Format Code. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:formatCode. + + + + + Initializes a new instance of the FormatCode class. + + + + + Initializes a new instance of the FormatCode class with the specified text content. + + Specifies the text content of the element. + + + + + + + Odd Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:oddHeader. + + + + + Initializes a new instance of the OddHeader class. + + + + + Initializes a new instance of the OddHeader class with the specified text content. + + Specifies the text content of the element. + + + + + + + Odd Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:oddFooter. + + + + + Initializes a new instance of the OddFooter class. + + + + + Initializes a new instance of the OddFooter class with the specified text content. + + Specifies the text content of the element. + + + + + + + Even Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:evenHeader. + + + + + Initializes a new instance of the EvenHeader class. + + + + + Initializes a new instance of the EvenHeader class with the specified text content. + + Specifies the text content of the element. + + + + + + + Even Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:evenFooter. + + + + + Initializes a new instance of the EvenFooter class. + + + + + Initializes a new instance of the EvenFooter class with the specified text content. + + Specifies the text content of the element. + + + + + + + First Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:firstHeader. + + + + + Initializes a new instance of the FirstHeader class. + + + + + Initializes a new instance of the FirstHeader class with the specified text content. + + Specifies the text content of the element. + + + + + + + First Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:firstFooter. + + + + + Initializes a new instance of the FirstFooter class. + + + + + Initializes a new instance of the FirstFooter class with the specified text content. + + Specifies the text content of the element. + + + + + + + Pivot Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:name. + + + + + Initializes a new instance of the PivotTableName class. + + + + + Initializes a new instance of the PivotTableName class with the specified text content. + + Specifies the text content of the element. + + + + + + + Numeric Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pt. + + + The following table lists the possible child types: + + <c:v> + + + + + + Initializes a new instance of the NumericPoint class. + + + + + Initializes a new instance of the NumericPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumericPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumericPoint class from outer XML. + + Specifies the outer XML of the element. + + + + Index + Represents the following attribute in the schema: idx + + + + + Number Format + Represents the following attribute in the schema: formatCode + + + + + Numeric Value. + Represents the following element tag in the schema: c:v. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Number Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:numRef. + + + The following table lists the possible child types: + + <c:numCache> + <c:extLst> + <c:f> + + + + + + Initializes a new instance of the NumberReference class. + + + + + Initializes a new instance of the NumberReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberReference class from outer XML. + + Specifies the outer XML of the element. + + + + Formula. + Represents the following element tag in the schema: c:f. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + NumberingCache. + Represents the following element tag in the schema: c:numCache. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + NumRefExtensionList. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Number Literal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:numLit. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + <c:formatCode> + + + + + + Initializes a new instance of the NumberLiteral class. + + + + + Initializes a new instance of the NumberLiteral class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberLiteral class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberLiteral class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NumberingCache Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:numCache. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + <c:formatCode> + + + + + + Initializes a new instance of the NumberingCache class. + + + + + Initializes a new instance of the NumberingCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberingCache class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NumberDataType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + <c:formatCode> + + + + + + Initializes a new instance of the NumberDataType class. + + + + + Initializes a new instance of the NumberDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDataType class from outer XML. + + Specifies the outer XML of the element. + + + + Format Code. + Represents the following element tag in the schema: c:formatCode. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Point Count. + Represents the following element tag in the schema: c:ptCount. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Level. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:lvl. + + + The following table lists the possible child types: + + <c:pt> + + + + + + Initializes a new instance of the Level class. + + + + + Initializes a new instance of the Level class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Multi Level String Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:multiLvlStrRef. + + + The following table lists the possible child types: + + <c:multiLvlStrCache> + <c:extLst> + <c:f> + + + + + + Initializes a new instance of the MultiLevelStringReference class. + + + + + Initializes a new instance of the MultiLevelStringReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLevelStringReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLevelStringReference class from outer XML. + + Specifies the outer XML of the element. + + + + Formula. + Represents the following element tag in the schema: c:f. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + MultiLevelStringCache. + Represents the following element tag in the schema: c:multiLvlStrCache. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + MultiLvlStrRefExtensionList. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the StringReference Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:strRef. + + + The following table lists the possible child types: + + <c:strCache> + <c:extLst> + <c:f> + + + + + + Initializes a new instance of the StringReference class. + + + + + Initializes a new instance of the StringReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringReference class from outer XML. + + Specifies the outer XML of the element. + + + + Formula. + Represents the following element tag in the schema: c:f. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + StringCache. + Represents the following element tag in the schema: c:strCache. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + StrRefExtensionList. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + String Literal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:strLit. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + + + + + + Initializes a new instance of the StringLiteral class. + + + + + Initializes a new instance of the StringLiteral class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringLiteral class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringLiteral class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StringCache Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:strCache. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + + + + + + Initializes a new instance of the StringCache class. + + + + + Initializes a new instance of the StringCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringCache class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StringDataType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <c:extLst> + <c:pt> + <c:ptCount> + + + + + + Initializes a new instance of the StringDataType class. + + + + + Initializes a new instance of the StringDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringDataType class from outer XML. + + Specifies the outer XML of the element. + + + + PointCount. + Represents the following element tag in the schema: c:ptCount. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Layout Target. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:layoutTarget. + + + + + Initializes a new instance of the LayoutTarget class. + + + + + Layout Target Value + Represents the following attribute in the schema: val + + + + + + + + Left Mode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:xMode. + + + + + Initializes a new instance of the LeftMode class. + + + + + + + + Top Mode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:yMode. + + + + + Initializes a new instance of the TopMode class. + + + + + + + + Width Mode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:wMode. + + + + + Initializes a new instance of the WidthMode class. + + + + + + + + Height Mode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:hMode. + + + + + Initializes a new instance of the HeightMode class. + + + + + + + + Defines the LayoutModeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the LayoutModeType class. + + + + + Layout Mode Value + Represents the following attribute in the schema: val + + + + + Manual Layout. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:manualLayout. + + + The following table lists the possible child types: + + <c:x> + <c:y> + <c:w> + <c:h> + <c:extLst> + <c:xMode> + <c:yMode> + <c:wMode> + <c:hMode> + <c:layoutTarget> + + + + + + Initializes a new instance of the ManualLayout class. + + + + + Initializes a new instance of the ManualLayout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ManualLayout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ManualLayout class from outer XML. + + Specifies the outer XML of the element. + + + + Layout Target. + Represents the following element tag in the schema: c:layoutTarget. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Left Mode. + Represents the following element tag in the schema: c:xMode. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Top Mode. + Represents the following element tag in the schema: c:yMode. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Width Mode. + Represents the following element tag in the schema: c:wMode. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Height Mode. + Represents the following element tag in the schema: c:hMode. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Left. + Represents the following element tag in the schema: c:x. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Top. + Represents the following element tag in the schema: c:y. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Width. + Represents the following element tag in the schema: c:w. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Height. + Represents the following element tag in the schema: c:h. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + X Rotation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:rotX. + + + + + Initializes a new instance of the RotateX class. + + + + + X Rotation Value + Represents the following attribute in the schema: val + + + + + + + + Height Percent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:hPercent. + + + + + Initializes a new instance of the HeightPercent class. + + + + + Height Percent Value + Represents the following attribute in the schema: val + + + + + + + + Y Rotation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:rotY. + + + + + Initializes a new instance of the RotateY class. + + + + + Y Rotation Value + Represents the following attribute in the schema: val + + + + + + + + Depth Percent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:depthPercent. + + + + + Initializes a new instance of the DepthPercent class. + + + + + Depth Percent Value + Represents the following attribute in the schema: val + + + + + + + + Perspective. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:perspective. + + + + + Initializes a new instance of the Perspective class. + + + + + Perspective Value + Represents the following attribute in the schema: val + + + + + + + + Symbol. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:symbol. + + + + + Initializes a new instance of the Symbol class. + + + + + Marker Style Value + Represents the following attribute in the schema: val + + + + + + + + Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:size. + + + + + Initializes a new instance of the Size class. + + + + + Marker Size Value + Represents the following attribute in the schema: val + + + + + + + + Marker. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:marker. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:size> + <c:symbol> + + + + + + Initializes a new instance of the Marker class. + + + + + Initializes a new instance of the Marker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Marker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Marker class from outer XML. + + Specifies the outer XML of the element. + + + + Symbol. + Represents the following element tag in the schema: c:symbol. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Size. + Represents the following element tag in the schema: c:size. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the PictureOptions Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pictureOptions. + + + The following table lists the possible child types: + + <c:applyToFront> + <c:applyToSides> + <c:applyToEnd> + <c:pictureFormat> + <c:pictureStackUnit> + + + + + + Initializes a new instance of the PictureOptions class. + + + + + Initializes a new instance of the PictureOptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureOptions class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureOptions class from outer XML. + + Specifies the outer XML of the element. + + + + Apply To Front. + Represents the following element tag in the schema: c:applyToFront. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Apply To Sides. + Represents the following element tag in the schema: c:applyToSides. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Apply to End. + Represents the following element tag in the schema: c:applyToEnd. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Picture Format. + Represents the following element tag in the schema: c:pictureFormat. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Picture Stack Unit. + Represents the following element tag in the schema: c:pictureStackUnit. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Trendline Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:trendlineType. + + + + + Initializes a new instance of the TrendlineType class. + + + + + Trendline Type Value + Represents the following attribute in the schema: val + + + + + + + + Polynomial Trendline Order. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:order. + + + + + Initializes a new instance of the PolynomialOrder class. + + + + + Order Value + Represents the following attribute in the schema: val + + + + + + + + Period. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:period. + + + + + Initializes a new instance of the Period class. + + + + + Period Value + Represents the following attribute in the schema: val + + + + + + + + Trendline Label. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:trendlineLbl. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:extLst> + <c:layout> + <c:numFmt> + <c:tx> + + + + + + Initializes a new instance of the TrendlineLabel class. + + + + + Initializes a new instance of the TrendlineLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TrendlineLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TrendlineLabel class from outer XML. + + Specifies the outer XML of the element. + + + + Layout. + Represents the following element tag in the schema: c:layout. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartText. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Format. + Represents the following element tag in the schema: c:numFmt. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + TextProperties. + Represents the following element tag in the schema: c:txPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Error Bar Direction. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:errDir. + + + + + Initializes a new instance of the ErrorDirection class. + + + + + Error Bar Direction Value + Represents the following attribute in the schema: val + + + + + + + + Error Bar Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:errBarType. + + + + + Initializes a new instance of the ErrorBarType class. + + + + + Error Bar Type Value + Represents the following attribute in the schema: val + + + + + + + + Error Bar Value Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:errValType. + + + + + Initializes a new instance of the ErrorBarValueType class. + + + + + Error Bar Type Value + Represents the following attribute in the schema: val + + + + + + + + Plus. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:plus. + + + The following table lists the possible child types: + + <c:numLit> + <c:numRef> + + + + + + Initializes a new instance of the Plus class. + + + + + Initializes a new instance of the Plus class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Plus class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Plus class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Minus. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:minus. + + + The following table lists the possible child types: + + <c:numLit> + <c:numRef> + + + + + + Initializes a new instance of the Minus class. + + + + + Initializes a new instance of the Minus class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Minus class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Minus class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Values Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:val. + + + The following table lists the possible child types: + + <c:numLit> + <c:numRef> + + + + + + Initializes a new instance of the Values class. + + + + + Initializes a new instance of the Values class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Values class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Values class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the YValues Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:yVal. + + + The following table lists the possible child types: + + <c:numLit> + <c:numRef> + + + + + + Initializes a new instance of the YValues class. + + + + + Initializes a new instance of the YValues class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the YValues class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the YValues class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BubbleSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:bubbleSize. + + + The following table lists the possible child types: + + <c:numLit> + <c:numRef> + + + + + + Initializes a new instance of the BubbleSize class. + + + + + Initializes a new instance of the BubbleSize class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleSize class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleSize class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NumberDataSourceType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <c:numLit> + <c:numRef> + + + + + + Initializes a new instance of the NumberDataSourceType class. + + + + + Initializes a new instance of the NumberDataSourceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDataSourceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumberDataSourceType class from outer XML. + + Specifies the outer XML of the element. + + + + Number Reference. + Represents the following element tag in the schema: c:numRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Literal. + Represents the following element tag in the schema: c:numLit. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Gap Width. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:gapWidth. + + + + + Initializes a new instance of the GapWidth class. + + + + + + + + Defines the GapDepth Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:gapDepth. + + + + + Initializes a new instance of the GapDepth class. + + + + + + + + Defines the GapAmountType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the GapAmountType class. + + + + + Gap Size Value + Represents the following attribute in the schema: val + + + + + Up Bars. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:upBars. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the UpBars class. + + + + + Initializes a new instance of the UpBars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UpBars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UpBars class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Down Bars. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:downBars. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the DownBars class. + + + + + Initializes a new instance of the DownBars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DownBars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DownBars class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the UpDownBarType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <c:spPr> + + + + + + Initializes a new instance of the UpDownBarType class. + + + + + Initializes a new instance of the UpDownBarType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UpDownBarType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UpDownBarType class from outer XML. + + Specifies the outer XML of the element. + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Pie of Pie or Bar of Pie Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ofPieType. + + + + + Initializes a new instance of the OfPieType class. + + + + + Pie of Pie or Bar of Pie Type Value + Represents the following attribute in the schema: val + + + + + + + + Split Type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:splitType. + + + + + Initializes a new instance of the SplitType class. + + + + + Split Type Value + Represents the following attribute in the schema: val + + + + + + + + Custom Split. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:custSplit. + + + The following table lists the possible child types: + + <c:secondPiePt> + + + + + + Initializes a new instance of the CustomSplit class. + + + + + Initializes a new instance of the CustomSplit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomSplit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomSplit class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Second Pie Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:secondPieSize. + + + + + Initializes a new instance of the SecondPieSize class. + + + + + Second Pie Size Value + Represents the following attribute in the schema: val + + + + + + + + Band Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:bandFmt. + + + The following table lists the possible child types: + + <c:spPr> + <c:idx> + + + + + + Initializes a new instance of the BandFormat class. + + + + + Initializes a new instance of the BandFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BandFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BandFormat class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Picture Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pictureFormat. + + + + + Initializes a new instance of the PictureFormat class. + + + + + Picture Format Value + Represents the following attribute in the schema: val + + + + + + + + Picture Stack Unit. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pictureStackUnit. + + + + + Initializes a new instance of the PictureStackUnit class. + + + + + Picture Stack Unit + Represents the following attribute in the schema: val + + + + + + + + Built in Display Unit Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:builtInUnit. + + + + + Initializes a new instance of the BuiltInUnit class. + + + + + Built In Unit Value + Represents the following attribute in the schema: val + + + + + + + + Display Units Label. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dispUnitsLbl. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:layout> + <c:tx> + + + + + + Initializes a new instance of the DisplayUnitsLabel class. + + + + + Initializes a new instance of the DisplayUnitsLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DisplayUnitsLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DisplayUnitsLabel class from outer XML. + + Specifies the outer XML of the element. + + + + Layout. + Represents the following element tag in the schema: c:layout. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartText. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + TextProperties. + Represents the following element tag in the schema: c:txPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Logarithmic Base. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:logBase. + + + + + Initializes a new instance of the LogBase class. + + + + + Logarithmic Base Value + Represents the following attribute in the schema: val + + + + + + + + Axis Orientation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:orientation. + + + + + Initializes a new instance of the Orientation class. + + + + + Orientation Value + Represents the following attribute in the schema: val + + + + + + + + Pivot Format. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pivotFmt. + + + The following table lists the possible child types: + + <c:spPr> + <c:dLbl> + <c:extLst> + <c:marker> + <c:idx> + + + + + + Initializes a new instance of the PivotFormat class. + + + + + Initializes a new instance of the PivotFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFormat class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFormat class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Marker. + Represents the following element tag in the schema: c:marker. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Data Label. + Represents the following element tag in the schema: c:dLbl. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Legend Position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:legendPos. + + + + + Initializes a new instance of the LegendPosition class. + + + + + Legend Position Value + Represents the following attribute in the schema: val + + + + + + + + Legend Entry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:legendEntry. + + + The following table lists the possible child types: + + <c:txPr> + <c:delete> + <c:extLst> + <c:idx> + + + + + + Initializes a new instance of the LegendEntry class. + + + + + Initializes a new instance of the LegendEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LegendEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LegendEntry class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Header and Footer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:headerFooter. + + + The following table lists the possible child types: + + <c:oddHeader> + <c:oddFooter> + <c:evenHeader> + <c:evenFooter> + <c:firstHeader> + <c:firstFooter> + + + + + + Initializes a new instance of the HeaderFooter class. + + + + + Initializes a new instance of the HeaderFooter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooter class from outer XML. + + Specifies the outer XML of the element. + + + + Align With Margins + Represents the following attribute in the schema: alignWithMargins + + + + + Different Odd Even + Represents the following attribute in the schema: differentOddEven + + + + + Different First + Represents the following attribute in the schema: differentFirst + + + + + Odd Header. + Represents the following element tag in the schema: c:oddHeader. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Odd Footer. + Represents the following element tag in the schema: c:oddFooter. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Even Header. + Represents the following element tag in the schema: c:evenHeader. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Even Footer. + Represents the following element tag in the schema: c:evenFooter. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + First Header. + Represents the following element tag in the schema: c:firstHeader. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + First Footer. + Represents the following element tag in the schema: c:firstFooter. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Page Margins. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pageMargins. + + + + + Initializes a new instance of the PageMargins class. + + + + + Left + Represents the following attribute in the schema: l + + + + + Right + Represents the following attribute in the schema: r + + + + + Top + Represents the following attribute in the schema: t + + + + + Bottom + Represents the following attribute in the schema: b + + + + + Header + Represents the following attribute in the schema: header + + + + + Footer + Represents the following attribute in the schema: footer + + + + + + + + Page Setup. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pageSetup. + + + + + Initializes a new instance of the PageSetup class. + + + + + Page Size + Represents the following attribute in the schema: paperSize + + + + + First Page Number + Represents the following attribute in the schema: firstPageNumber + + + + + Orientation + Represents the following attribute in the schema: orientation + + + + + Black and White + Represents the following attribute in the schema: blackAndWhite + + + + + Draft + Represents the following attribute in the schema: draft + + + + + Use First Page Number + Represents the following attribute in the schema: useFirstPageNumber + + + + + Horizontal DPI + Represents the following attribute in the schema: horizontalDpi + + + + + Vertical DPI + Represents the following attribute in the schema: verticalDpi + + + + + Copies + Represents the following attribute in the schema: copies + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Data Label. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dLbl. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:delete> + <c:showLegendKey> + <c:showVal> + <c:showCatName> + <c:showSerName> + <c:showPercent> + <c:showBubbleSize> + <c:extLst> + <c:dLblPos> + <c:layout> + <c:numFmt> + <c:tx> + <c:idx> + <c:separator> + + + + + + Initializes a new instance of the DataLabel class. + + + + + Initializes a new instance of the DataLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataLabel class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Area Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:areaChart. + + + The following table lists the possible child types: + + <c:extLst> + <c:ser> + <c:varyColors> + <c:dropLines> + <c:dLbls> + <c:grouping> + <c:axId> + + + + + + Initializes a new instance of the AreaChart class. + + + + + Initializes a new instance of the AreaChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChart class from outer XML. + + Specifies the outer XML of the element. + + + + Grouping. + Represents the following element tag in the schema: c:grouping. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + 3D Area Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:area3DChart. + + + The following table lists the possible child types: + + <c:extLst> + <c:ser> + <c:varyColors> + <c:dropLines> + <c:dLbls> + <c:gapDepth> + <c:grouping> + <c:axId> + + + + + + Initializes a new instance of the Area3DChart class. + + + + + Initializes a new instance of the Area3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Area3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Area3DChart class from outer XML. + + Specifies the outer XML of the element. + + + + Grouping. + Represents the following element tag in the schema: c:grouping. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Line Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:lineChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:marker> + <c:smooth> + <c:dropLines> + <c:hiLowLines> + <c:dLbls> + <c:grouping> + <c:extLst> + <c:ser> + <c:axId> + <c:upDownBars> + + + + + + Initializes a new instance of the LineChart class. + + + + + Initializes a new instance of the LineChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChart class from outer XML. + + Specifies the outer XML of the element. + + + + Grouping. + Represents the following element tag in the schema: c:grouping. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + 3D Line Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:line3DChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:dropLines> + <c:dLbls> + <c:gapDepth> + <c:grouping> + <c:extLst> + <c:ser> + <c:axId> + + + + + + Initializes a new instance of the Line3DChart class. + + + + + Initializes a new instance of the Line3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Line3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Line3DChart class from outer XML. + + Specifies the outer XML of the element. + + + + Grouping. + Represents the following element tag in the schema: c:grouping. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Stock Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:stockChart. + + + The following table lists the possible child types: + + <c:dropLines> + <c:hiLowLines> + <c:dLbls> + <c:ser> + <c:extLst> + <c:axId> + <c:upDownBars> + + + + + + Initializes a new instance of the StockChart class. + + + + + Initializes a new instance of the StockChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StockChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StockChart class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Radar Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:radarChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:dLbls> + <c:extLst> + <c:ser> + <c:radarStyle> + <c:axId> + + + + + + Initializes a new instance of the RadarChart class. + + + + + Initializes a new instance of the RadarChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChart class from outer XML. + + Specifies the outer XML of the element. + + + + RadarStyle. + Represents the following element tag in the schema: c:radarStyle. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Scatter Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:scatterChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:dLbls> + <c:extLst> + <c:ser> + <c:scatterStyle> + <c:axId> + + + + + + Initializes a new instance of the ScatterChart class. + + + + + Initializes a new instance of the ScatterChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChart class from outer XML. + + Specifies the outer XML of the element. + + + + ScatterStyle. + Represents the following element tag in the schema: c:scatterStyle. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Pie Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pieChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:dLbls> + <c:firstSliceAng> + <c:extLst> + <c:ser> + + + + + + Initializes a new instance of the PieChart class. + + + + + Initializes a new instance of the PieChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChart class from outer XML. + + Specifies the outer XML of the element. + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + 3D Pie Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pie3DChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:dLbls> + <c:extLst> + <c:ser> + + + + + + Initializes a new instance of the Pie3DChart class. + + + + + Initializes a new instance of the Pie3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Pie3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Pie3DChart class from outer XML. + + Specifies the outer XML of the element. + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Doughnut Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:doughnutChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:dLbls> + <c:extLst> + <c:firstSliceAng> + <c:holeSize> + <c:ser> + + + + + + Initializes a new instance of the DoughnutChart class. + + + + + Initializes a new instance of the DoughnutChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DoughnutChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DoughnutChart class from outer XML. + + Specifies the outer XML of the element. + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Bar Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:barChart. + + + The following table lists the possible child types: + + <c:extLst> + <c:barDir> + <c:grouping> + <c:ser> + <c:varyColors> + <c:serLines> + <c:dLbls> + <c:gapWidth> + <c:overlap> + <c:axId> + + + + + + Initializes a new instance of the BarChart class. + + + + + Initializes a new instance of the BarChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChart class from outer XML. + + Specifies the outer XML of the element. + + + + Bar Direction. + Represents the following element tag in the schema: c:barDir. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Bar Grouping. + Represents the following element tag in the schema: c:grouping. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + 3D Bar Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:bar3DChart. + + + The following table lists the possible child types: + + <c:extLst> + <c:barDir> + <c:grouping> + <c:ser> + <c:varyColors> + <c:dLbls> + <c:gapWidth> + <c:gapDepth> + <c:shape> + <c:axId> + + + + + + Initializes a new instance of the Bar3DChart class. + + + + + Initializes a new instance of the Bar3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Bar3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Bar3DChart class from outer XML. + + Specifies the outer XML of the element. + + + + Bar Direction. + Represents the following element tag in the schema: c:barDir. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Bar Grouping. + Represents the following element tag in the schema: c:grouping. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Pie of Pie or Bar of Pie Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ofPieChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:serLines> + <c:custSplit> + <c:dLbls> + <c:splitPos> + <c:extLst> + <c:gapWidth> + <c:ofPieType> + <c:ser> + <c:secondPieSize> + <c:splitType> + + + + + + Initializes a new instance of the OfPieChart class. + + + + + Initializes a new instance of the OfPieChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfPieChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfPieChart class from outer XML. + + Specifies the outer XML of the element. + + + + Pie of Pie or Bar of Pie Type. + Represents the following element tag in the schema: c:ofPieType. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Surface Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:surfaceChart. + + + The following table lists the possible child types: + + <c:bandFmts> + <c:wireframe> + <c:extLst> + <c:ser> + <c:axId> + + + + + + Initializes a new instance of the SurfaceChart class. + + + + + Initializes a new instance of the SurfaceChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChart class from outer XML. + + Specifies the outer XML of the element. + + + + Wireframe. + Represents the following element tag in the schema: c:wireframe. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + 3D Surface Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:surface3DChart. + + + The following table lists the possible child types: + + <c:bandFmts> + <c:wireframe> + <c:varyColors> + <c:extLst> + <c:ser> + <c:axId> + + + + + + Initializes a new instance of the Surface3DChart class. + + + + + Initializes a new instance of the Surface3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Surface3DChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Surface3DChart class from outer XML. + + Specifies the outer XML of the element. + + + + Wireframe. + Represents the following element tag in the schema: c:wireframe. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Bubble Charts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:bubbleChart. + + + The following table lists the possible child types: + + <c:varyColors> + <c:bubble3D> + <c:showNegBubbles> + <c:extLst> + <c:bubbleScale> + <c:ser> + <c:dLbls> + <c:sizeRepresents> + <c:axId> + + + + + + Initializes a new instance of the BubbleChart class. + + + + + Initializes a new instance of the BubbleChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChart class from outer XML. + + Specifies the outer XML of the element. + + + + VaryColors. + Represents the following element tag in the schema: c:varyColors. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Value Axis. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:valAx. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:majorUnit> + <c:minorUnit> + <c:axPos> + <c:delete> + <c:majorGridlines> + <c:minorGridlines> + <c:crossBetween> + <c:crosses> + <c:dispUnits> + <c:crossesAt> + <c:numFmt> + <c:scaling> + <c:tickLblPos> + <c:majorTickMark> + <c:minorTickMark> + <c:title> + <c:axId> + <c:crossAx> + <c:extLst> + + + + + + Initializes a new instance of the ValueAxis class. + + + + + Initializes a new instance of the ValueAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValueAxis class from outer XML. + + Specifies the outer XML of the element. + + + + Axis ID. + Represents the following element tag in the schema: c:axId. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Scaling. + Represents the following element tag in the schema: c:scaling. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Delete. + Represents the following element tag in the schema: c:delete. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Axis Position. + Represents the following element tag in the schema: c:axPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Major Gridlines. + Represents the following element tag in the schema: c:majorGridlines. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minor Gridlines. + Represents the following element tag in the schema: c:minorGridlines. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Title. + Represents the following element tag in the schema: c:title. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Format. + Represents the following element tag in the schema: c:numFmt. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Major Tick Mark. + Represents the following element tag in the schema: c:majorTickMark. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minor Tick Mark. + Represents the following element tag in the schema: c:minorTickMark. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Tick Label Position. + Represents the following element tag in the schema: c:tickLblPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + TextProperties. + Represents the following element tag in the schema: c:txPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Crossing Axis ID. + Represents the following element tag in the schema: c:crossAx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Category Axis Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:catAx. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:axPos> + <c:delete> + <c:auto> + <c:noMultiLvlLbl> + <c:extLst> + <c:majorGridlines> + <c:minorGridlines> + <c:crosses> + <c:crossesAt> + <c:lblAlgn> + <c:lblOffset> + <c:numFmt> + <c:scaling> + <c:tickLblSkip> + <c:tickMarkSkip> + <c:tickLblPos> + <c:majorTickMark> + <c:minorTickMark> + <c:title> + <c:axId> + <c:crossAx> + + + + + + Initializes a new instance of the CategoryAxis class. + + + + + Initializes a new instance of the CategoryAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryAxis class from outer XML. + + Specifies the outer XML of the element. + + + + Axis ID. + Represents the following element tag in the schema: c:axId. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Scaling. + Represents the following element tag in the schema: c:scaling. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Delete. + Represents the following element tag in the schema: c:delete. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Axis Position. + Represents the following element tag in the schema: c:axPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Major Gridlines. + Represents the following element tag in the schema: c:majorGridlines. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minor Gridlines. + Represents the following element tag in the schema: c:minorGridlines. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Title. + Represents the following element tag in the schema: c:title. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Format. + Represents the following element tag in the schema: c:numFmt. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Major Tick Mark. + Represents the following element tag in the schema: c:majorTickMark. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minor Tick Mark. + Represents the following element tag in the schema: c:minorTickMark. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Tick Label Position. + Represents the following element tag in the schema: c:tickLblPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + TextProperties. + Represents the following element tag in the schema: c:txPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Crossing Axis ID. + Represents the following element tag in the schema: c:crossAx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Date Axis. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dateAx. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:majorUnit> + <c:minorUnit> + <c:axPos> + <c:delete> + <c:auto> + <c:majorGridlines> + <c:minorGridlines> + <c:crosses> + <c:extLst> + <c:crossesAt> + <c:lblOffset> + <c:numFmt> + <c:scaling> + <c:tickLblPos> + <c:majorTickMark> + <c:minorTickMark> + <c:baseTimeUnit> + <c:majorTimeUnit> + <c:minorTimeUnit> + <c:title> + <c:axId> + <c:crossAx> + + + + + + Initializes a new instance of the DateAxis class. + + + + + Initializes a new instance of the DateAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DateAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DateAxis class from outer XML. + + Specifies the outer XML of the element. + + + + Axis ID. + Represents the following element tag in the schema: c:axId. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Scaling. + Represents the following element tag in the schema: c:scaling. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Delete. + Represents the following element tag in the schema: c:delete. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Axis Position. + Represents the following element tag in the schema: c:axPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Major Gridlines. + Represents the following element tag in the schema: c:majorGridlines. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minor Gridlines. + Represents the following element tag in the schema: c:minorGridlines. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Title. + Represents the following element tag in the schema: c:title. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Format. + Represents the following element tag in the schema: c:numFmt. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Major Tick Mark. + Represents the following element tag in the schema: c:majorTickMark. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minor Tick Mark. + Represents the following element tag in the schema: c:minorTickMark. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Tick Label Position. + Represents the following element tag in the schema: c:tickLblPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + TextProperties. + Represents the following element tag in the schema: c:txPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Crossing Axis ID. + Represents the following element tag in the schema: c:crossAx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Series Axis. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:serAx. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:axPos> + <c:delete> + <c:majorGridlines> + <c:minorGridlines> + <c:crosses> + <c:crossesAt> + <c:numFmt> + <c:scaling> + <c:extLst> + <c:tickLblSkip> + <c:tickMarkSkip> + <c:tickLblPos> + <c:majorTickMark> + <c:minorTickMark> + <c:title> + <c:axId> + <c:crossAx> + + + + + + Initializes a new instance of the SeriesAxis class. + + + + + Initializes a new instance of the SeriesAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesAxis class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SeriesAxis class from outer XML. + + Specifies the outer XML of the element. + + + + Axis ID. + Represents the following element tag in the schema: c:axId. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Scaling. + Represents the following element tag in the schema: c:scaling. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Delete. + Represents the following element tag in the schema: c:delete. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Axis Position. + Represents the following element tag in the schema: c:axPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Major Gridlines. + Represents the following element tag in the schema: c:majorGridlines. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minor Gridlines. + Represents the following element tag in the schema: c:minorGridlines. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Title. + Represents the following element tag in the schema: c:title. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Format. + Represents the following element tag in the schema: c:numFmt. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Major Tick Mark. + Represents the following element tag in the schema: c:majorTickMark. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minor Tick Mark. + Represents the following element tag in the schema: c:minorTickMark. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Tick Label Position. + Represents the following element tag in the schema: c:tickLblPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + TextProperties. + Represents the following element tag in the schema: c:txPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Crossing Axis ID. + Represents the following element tag in the schema: c:crossAx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Data Table. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dTable. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:showHorzBorder> + <c:showVertBorder> + <c:showOutline> + <c:showKeys> + <c:extLst> + + + + + + Initializes a new instance of the DataTable class. + + + + + Initializes a new instance of the DataTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataTable class from outer XML. + + Specifies the outer XML of the element. + + + + Show Horizontal Border. + Represents the following element tag in the schema: c:showHorzBorder. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Show Vertical Border. + Represents the following element tag in the schema: c:showVertBorder. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Show Outline Border. + Represents the following element tag in the schema: c:showOutline. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Show Legend Keys. + Represents the following element tag in the schema: c:showKeys. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Text Properties. + Represents the following element tag in the schema: c:txPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + First Slice Angle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:firstSliceAng. + + + + + Initializes a new instance of the FirstSliceAngle class. + + + + + First Slice Angle Value + Represents the following attribute in the schema: val + + + + + + + + Hole Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:holeSize. + + + + + Initializes a new instance of the HoleSize class. + + + + + Hole Size Value + Represents the following attribute in the schema: val + + + + + + + + String Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pt. + + + The following table lists the possible child types: + + <c:v> + + + + + + Initializes a new instance of the StringPoint class. + + + + + Initializes a new instance of the StringPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StringPoint class from outer XML. + + Specifies the outer XML of the element. + + + + Index + Represents the following attribute in the schema: idx + + + + + Text Value. + Represents the following element tag in the schema: c:v. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Thickness. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:thickness. + + + + + Initializes a new instance of the Thickness class. + + + + + val + Represents the following attribute in the schema: val + + + + + + + + Defines the StockChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredLineSeries> + + + + + + Initializes a new instance of the StockChartExtension class. + + + + + Initializes a new instance of the StockChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StockChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StockChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the PieChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredPieSeries> + + + + + + Initializes a new instance of the PieChartExtension class. + + + + + Initializes a new instance of the PieChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the Pie3DChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredPieSeries> + + + + + + Initializes a new instance of the Pie3DChartExtension class. + + + + + Initializes a new instance of the Pie3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Pie3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Pie3DChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the NumRefExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:formulaRef> + <c15:fullRef> + <c15:levelRef> + + + + + + Initializes a new instance of the NumRefExtension class. + + + + + Initializes a new instance of the NumRefExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumRefExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumRefExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the StrDataExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:autoCat> + + + + + + Initializes a new instance of the StrDataExtension class. + + + + + Initializes a new instance of the StrDataExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrDataExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrDataExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the StrRefExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:formulaRef> + <c15:fullRef> + <c15:levelRef> + + + + + + Initializes a new instance of the StrRefExtension class. + + + + + Initializes a new instance of the StrRefExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrRefExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrRefExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the MultiLvlStrRefExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:formulaRef> + <c15:fullRef> + <c15:levelRef> + + + + + + Initializes a new instance of the MultiLvlStrRefExtension class. + + + + + Initializes a new instance of the MultiLvlStrRefExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrRefExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrRefExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the DLblsExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:spPr> + <c15:showDataLabelsRange> + <c15:showLeaderLines> + <c15:leaderLines> + <c15:layout> + <c15:tx> + <c15:dlblFieldTable> + + + + + + Initializes a new instance of the DLblsExtension class. + + + + + Initializes a new instance of the DLblsExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLblsExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLblsExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the LineChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredLineSeries> + + + + + + Initializes a new instance of the LineChartExtension class. + + + + + Initializes a new instance of the LineChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the Line3DChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredLineSeries> + + + + + + Initializes a new instance of the Line3DChartExtension class. + + + + + Initializes a new instance of the Line3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Line3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Line3DChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the ScatterChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredScatterSeries> + + + + + + Initializes a new instance of the ScatterChartExtension class. + + + + + Initializes a new instance of the ScatterChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the RadarChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredRadarSeries> + + + + + + Initializes a new instance of the RadarChartExtension class. + + + + + Initializes a new instance of the RadarChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the BarChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredBarSeries> + + + + + + Initializes a new instance of the BarChartExtension class. + + + + + Initializes a new instance of the BarChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the Bar3DChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredBarSeries> + + + + + + Initializes a new instance of the Bar3DChartExtension class. + + + + + Initializes a new instance of the Bar3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Bar3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Bar3DChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the AreaChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredAreaSeries> + + + + + + Initializes a new instance of the AreaChartExtension class. + + + + + Initializes a new instance of the AreaChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the Area3DChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredAreaSeries> + + + + + + Initializes a new instance of the Area3DChartExtension class. + + + + + Initializes a new instance of the Area3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Area3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Area3DChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the BubbleChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredBubbleSeries> + + + + + + Initializes a new instance of the BubbleChartExtension class. + + + + + Initializes a new instance of the BubbleChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the SurfaceChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredSurfaceSeries> + + + + + + Initializes a new instance of the SurfaceChartExtension class. + + + + + Initializes a new instance of the SurfaceChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the Surface3DChartExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:filteredSurfaceSeries> + + + + + + Initializes a new instance of the Surface3DChartExtension class. + + + + + Initializes a new instance of the Surface3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Surface3DChartExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Surface3DChartExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the CatAxExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:numFmt> + + + + + + Initializes a new instance of the CatAxExtension class. + + + + + Initializes a new instance of the CatAxExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CatAxExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CatAxExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the DateAxExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:numFmt> + + + + + + Initializes a new instance of the DateAxExtension class. + + + + + Initializes a new instance of the DateAxExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DateAxExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DateAxExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the SerAxExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:numFmt> + + + + + + Initializes a new instance of the SerAxExtension class. + + + + + Initializes a new instance of the SerAxExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SerAxExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SerAxExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the ValAxExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:numFmt> + + + + + + Initializes a new instance of the ValAxExtension class. + + + + + Initializes a new instance of the ValAxExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValAxExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValAxExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the UpDownBars Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:upDownBars. + + + The following table lists the possible child types: + + <c:extLst> + <c:gapWidth> + <c:upBars> + <c:downBars> + + + + + + Initializes a new instance of the UpDownBars class. + + + + + Initializes a new instance of the UpDownBars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UpDownBars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UpDownBars class from outer XML. + + Specifies the outer XML of the element. + + + + Gap Width. + Represents the following element tag in the schema: c:gapWidth. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Up Bars. + Represents the following element tag in the schema: c:upBars. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Down Bars. + Represents the following element tag in the schema: c:downBars. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the StockChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the StockChartExtensionList class. + + + + + Initializes a new instance of the StockChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StockChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StockChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PieChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the PieChartExtensionList class. + + + + + Initializes a new instance of the PieChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Pie3DChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the Pie3DChartExtensionList class. + + + + + Initializes a new instance of the Pie3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Pie3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Pie3DChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NumRefExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the NumRefExtensionList class. + + + + + Initializes a new instance of the NumRefExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumRefExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NumRefExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StrDataExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the StrDataExtensionList class. + + + + + Initializes a new instance of the StrDataExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrDataExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrDataExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StrRefExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the StrRefExtensionList class. + + + + + Initializes a new instance of the StrRefExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrRefExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StrRefExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MultiLevelStringCache Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:multiLvlStrCache. + + + The following table lists the possible child types: + + <c:extLst> + <c:lvl> + <c:ptCount> + + + + + + Initializes a new instance of the MultiLevelStringCache class. + + + + + Initializes a new instance of the MultiLevelStringCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLevelStringCache class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLevelStringCache class from outer XML. + + Specifies the outer XML of the element. + + + + PointCount. + Represents the following element tag in the schema: c:ptCount. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the MultiLvlStrRefExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the MultiLvlStrRefExtensionList class. + + + + + Initializes a new instance of the MultiLvlStrRefExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrRefExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MultiLvlStrRefExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DLblsExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the DLblsExtensionList class. + + + + + Initializes a new instance of the DLblsExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLblsExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLblsExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LineChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the LineChartExtensionList class. + + + + + Initializes a new instance of the LineChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Line3DChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the Line3DChartExtensionList class. + + + + + Initializes a new instance of the Line3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Line3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Line3DChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ScatterStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:scatterStyle. + + + + + Initializes a new instance of the ScatterStyle class. + + + + + Scatter Style Value + Represents the following attribute in the schema: val + + + + + + + + Defines the ScatterChartSeries Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:xVal> + <c:smooth> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:marker> + <c:yVal> + <c:extLst> + <c:tx> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the ScatterChartSeries class. + + + + + Initializes a new instance of the ScatterChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Marker. + Represents the following element tag in the schema: c:marker. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the ScatterChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the ScatterChartExtensionList class. + + + + + Initializes a new instance of the ScatterChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RadarStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:radarStyle. + + + + + Initializes a new instance of the RadarStyle class. + + + + + Radar Style Value + Represents the following attribute in the schema: val + + + + + + + + Defines the RadarChartSeries Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:cat> + <c:dLbls> + <c:dPt> + <c:marker> + <c:val> + <c:pictureOptions> + <c:extLst> + <c:tx> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the RadarChartSeries class. + + + + + Initializes a new instance of the RadarChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Marker. + Represents the following element tag in the schema: c:marker. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the RadarChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the RadarChartExtensionList class. + + + + + Initializes a new instance of the RadarChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Overlap Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:overlap. + + + + + Initializes a new instance of the Overlap class. + + + + + Overlap Value + Represents the following attribute in the schema: val + + + + + + + + Defines the BarChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the BarChartExtensionList class. + + + + + Initializes a new instance of the BarChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Shape Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:shape. + + + + + Initializes a new instance of the Shape class. + + + + + Shape Value + Represents the following attribute in the schema: val + + + + + + + + Defines the Bar3DChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the Bar3DChartExtensionList class. + + + + + Initializes a new instance of the Bar3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Bar3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Bar3DChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AreaChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the AreaChartExtensionList class. + + + + + Initializes a new instance of the AreaChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Area3DChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the Area3DChartExtensionList class. + + + + + Initializes a new instance of the Area3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Area3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Area3DChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BubbleChartSeries Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ser. + + + The following table lists the possible child types: + + <c:spPr> + <c:xVal> + <c:invertIfNegative> + <c:bubble3D> + <c:extLst> + <c:dLbls> + <c:dPt> + <c:errBars> + <c:yVal> + <c:bubbleSize> + <c:pictureOptions> + <c:tx> + <c:trendline> + <c:idx> + <c:order> + + + + + + Initializes a new instance of the BubbleChartSeries class. + + + + + Initializes a new instance of the BubbleChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChartSeries class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChartSeries class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Series Text. + Represents the following element tag in the schema: c:tx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + InvertIfNegative. + Represents the following element tag in the schema: c:invertIfNegative. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the BubbleScale Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:bubbleScale. + + + + + Initializes a new instance of the BubbleScale class. + + + + + Bubble Scale Value + Represents the following attribute in the schema: val + + + + + + + + Defines the SizeRepresents Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:sizeRepresents. + + + + + Initializes a new instance of the SizeRepresents class. + + + + + Size Represents Value + Represents the following attribute in the schema: val + + + + + + + + Defines the BubbleChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the BubbleChartExtensionList class. + + + + + Initializes a new instance of the BubbleChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SurfaceChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the SurfaceChartExtensionList class. + + + + + Initializes a new instance of the SurfaceChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Surface3DChartExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the Surface3DChartExtensionList class. + + + + + Initializes a new instance of the Surface3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Surface3DChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Surface3DChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LabelAlignment Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:lblAlgn. + + + + + Initializes a new instance of the LabelAlignment class. + + + + + Label Alignment Value + Represents the following attribute in the schema: val + + + + + + + + Defines the LabelOffset Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:lblOffset. + + + + + Initializes a new instance of the LabelOffset class. + + + + + Label Offset Value + Represents the following attribute in the schema: val + + + + + + + + Defines the TickLabelSkip Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:tickLblSkip. + + + + + Initializes a new instance of the TickLabelSkip class. + + + + + + + + Defines the TickMarkSkip Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:tickMarkSkip. + + + + + Initializes a new instance of the TickMarkSkip class. + + + + + + + + Defines the SkipType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the SkipType class. + + + + + Tick Skip Value + Represents the following attribute in the schema: val + + + + + Defines the CatAxExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the CatAxExtensionList class. + + + + + Initializes a new instance of the CatAxExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CatAxExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CatAxExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BaseTimeUnit Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:baseTimeUnit. + + + + + Initializes a new instance of the BaseTimeUnit class. + + + + + + + + Defines the MajorTimeUnit Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:majorTimeUnit. + + + + + Initializes a new instance of the MajorTimeUnit class. + + + + + + + + Defines the MinorTimeUnit Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:minorTimeUnit. + + + + + Initializes a new instance of the MinorTimeUnit class. + + + + + + + + Defines the TimeUnitType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TimeUnitType class. + + + + + Time Unit Value + Represents the following attribute in the schema: val + + + + + Defines the MajorUnit Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:majorUnit. + + + + + Initializes a new instance of the MajorUnit class. + + + + + + + + Defines the MinorUnit Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:minorUnit. + + + + + Initializes a new instance of the MinorUnit class. + + + + + + + + Defines the AxisUnitType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the AxisUnitType class. + + + + + Major Unit Value + Represents the following attribute in the schema: val + + + + + Defines the DateAxExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the DateAxExtensionList class. + + + + + Initializes a new instance of the DateAxExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DateAxExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DateAxExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SerAxExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the SerAxExtensionList class. + + + + + Initializes a new instance of the SerAxExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SerAxExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SerAxExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CrossBetween Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:crossBetween. + + + + + Initializes a new instance of the CrossBetween class. + + + + + Cross Between Value + Represents the following attribute in the schema: val + + + + + + + + Defines the DisplayUnits Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dispUnits. + + + The following table lists the possible child types: + + <c:builtInUnit> + <c:dispUnitsLbl> + <c:custUnit> + <c:extLst> + + + + + + Initializes a new instance of the DisplayUnits class. + + + + + Initializes a new instance of the DisplayUnits class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DisplayUnits class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DisplayUnits class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ValAxExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the ValAxExtensionList class. + + + + + Initializes a new instance of the ValAxExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValAxExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ValAxExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the EditingLanguage Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:lang. + + + + + Initializes a new instance of the EditingLanguage class. + + + + + Language Code + Represents the following attribute in the schema: val + + + + + + + + Defines the Style Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:style. + + + + + Initializes a new instance of the Style class. + + + + + Style Type + Represents the following attribute in the schema: val + + + + + + + + Defines the ColorMapOverride Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:clrMapOvr. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the ColorMapOverride class. + + + + + Initializes a new instance of the ColorMapOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMapOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMapOverride class from outer XML. + + Specifies the outer XML of the element. + + + + Background 1 + Represents the following attribute in the schema: bg1 + + + + + Text 1 + Represents the following attribute in the schema: tx1 + + + + + Background 2 + Represents the following attribute in the schema: bg2 + + + + + Text 2 + Represents the following attribute in the schema: tx2 + + + + + Accent 1 + Represents the following attribute in the schema: accent1 + + + + + Accent 2 + Represents the following attribute in the schema: accent2 + + + + + Accent 3 + Represents the following attribute in the schema: accent3 + + + + + Accent 4 + Represents the following attribute in the schema: accent4 + + + + + Accent 5 + Represents the following attribute in the schema: accent5 + + + + + Accent 6 + Represents the following attribute in the schema: accent6 + + + + + Hyperlink + Represents the following attribute in the schema: hlink + + + + + Followed Hyperlink + Represents the following attribute in the schema: folHlink + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the PivotSource Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pivotSource. + + + The following table lists the possible child types: + + <c:extLst> + <c:fmtId> + <c:name> + + + + + + Initializes a new instance of the PivotSource class. + + + + + Initializes a new instance of the PivotSource class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotSource class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotSource class from outer XML. + + Specifies the outer XML of the element. + + + + Pivot Name. + Represents the following element tag in the schema: c:name. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Format ID. + Represents the following element tag in the schema: c:fmtId. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the Protection Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:protection. + + + The following table lists the possible child types: + + <c:chartObject> + <c:data> + <c:formatting> + <c:selection> + <c:userInterface> + + + + + + Initializes a new instance of the Protection class. + + + + + Initializes a new instance of the Protection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Protection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Protection class from outer XML. + + Specifies the outer XML of the element. + + + + Chart Object. + Represents the following element tag in the schema: c:chartObject. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Data Cannot Be Changed. + Represents the following element tag in the schema: c:data. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Formatting. + Represents the following element tag in the schema: c:formatting. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Selection. + Represents the following element tag in the schema: c:selection. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + User Interface. + Represents the following element tag in the schema: c:userInterface. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the Chart Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:chart. + + + The following table lists the possible child types: + + <c:autoTitleDeleted> + <c:plotVisOnly> + <c:showDLblsOverMax> + <c:extLst> + <c:dispBlanksAs> + <c:legend> + <c:pivotFmts> + <c:plotArea> + <c:floor> + <c:sideWall> + <c:backWall> + <c:title> + <c:view3D> + + + + + + Initializes a new instance of the Chart class. + + + + + Initializes a new instance of the Chart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Chart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Chart class from outer XML. + + Specifies the outer XML of the element. + + + + Title data and formatting. + Represents the following element tag in the schema: c:title. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + True if the chart automatic title has been deleted.. + Represents the following element tag in the schema: c:autoTitleDeleted. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + pivot chart format persistence data. + Represents the following element tag in the schema: c:pivotFmts. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + 3D view settings. + Represents the following element tag in the schema: c:view3D. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + 3D floor formatting. + Represents the following element tag in the schema: c:floor. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + 3D side wall formatting. + Represents the following element tag in the schema: c:sideWall. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + 3D back wall formatting. + Represents the following element tag in the schema: c:backWall. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Plot data and formatting. + Represents the following element tag in the schema: c:plotArea. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Legend data and formatting. + Represents the following element tag in the schema: c:legend. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + True if only visible cells are plotted.. + Represents the following element tag in the schema: c:plotVisOnly. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + The way that blank cells are plotted on a chart.. + Represents the following element tag in the schema: c:dispBlanksAs. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + True if we should render datalabels over the maximum scale. + Represents the following element tag in the schema: c:showDLblsOverMax. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Extensibility container. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the ExternalData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:externalData. + + + The following table lists the possible child types: + + <c:autoUpdate> + + + + + + Initializes a new instance of the ExternalData class. + + + + + Initializes a new instance of the ExternalData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExternalData class from outer XML. + + Specifies the outer XML of the element. + + + + Relationship Reference + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Update Automatically. + Represents the following element tag in the schema: c:autoUpdate. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the PrintSettings Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:printSettings. + + + The following table lists the possible child types: + + <c:headerFooter> + <c:pageMargins> + <c:pageSetup> + <c:legacyDrawingHF> + + + + + + Initializes a new instance of the PrintSettings class. + + + + + Initializes a new instance of the PrintSettings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PrintSettings class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PrintSettings class from outer XML. + + Specifies the outer XML of the element. + + + + Header and Footer. + Represents the following element tag in the schema: c:headerFooter. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Page Margins. + Represents the following element tag in the schema: c:pageMargins. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Page Setup. + Represents the following element tag in the schema: c:pageSetup. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Legacy Drawing for Headers and Footers. + Represents the following element tag in the schema: c:legacyDrawingHF. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the ChartSpaceExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the ChartSpaceExtensionList class. + + + + + Initializes a new instance of the ChartSpaceExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSpaceExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSpaceExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ChartSpaceExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:pivotSource> + <c14:pivotOptions> + <c14:sketchOptions> + + + + + + Initializes a new instance of the ChartSpaceExtension class. + + + + + Initializes a new instance of the ChartSpaceExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSpaceExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartSpaceExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the DLblExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the DLblExtensionList class. + + + + + Initializes a new instance of the DLblExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLblExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLblExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DLblExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:spPr> + <c15:xForSave> + <c15:showDataLabelsRange> + <c15:layout> + <c15:dlblFieldTable> + <c16:uniqueId> + + + + + + Initializes a new instance of the DLblExtension class. + + + + + Initializes a new instance of the DLblExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLblExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DLblExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the DataPoint Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dPt. + + + The following table lists the possible child types: + + <c:spPr> + <c:invertIfNegative> + <c:bubble3D> + <c:extLst> + <c:marker> + <c:pictureOptions> + <c:idx> + <c:explosion> + + + + + + Initializes a new instance of the DataPoint class. + + + + + Initializes a new instance of the DataPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataPoint class from outer XML. + + Specifies the outer XML of the element. + + + + Index. + Represents the following element tag in the schema: c:idx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Invert if Negative. + Represents the following element tag in the schema: c:invertIfNegative. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Marker. + Represents the following element tag in the schema: c:marker. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + 3D Bubble. + Represents the following element tag in the schema: c:bubble3D. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Explosion. + Represents the following element tag in the schema: c:explosion. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + PictureOptions. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the Trendline Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:trendline. + + + The following table lists the possible child types: + + <c:spPr> + <c:dispRSqr> + <c:dispEq> + <c:forward> + <c:backward> + <c:intercept> + <c:extLst> + <c:order> + <c:period> + <c:trendlineLbl> + <c:trendlineType> + <c:name> + + + + + + Initializes a new instance of the Trendline class. + + + + + Initializes a new instance of the Trendline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Trendline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Trendline class from outer XML. + + Specifies the outer XML of the element. + + + + Trendline Name. + Represents the following element tag in the schema: c:name. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Trendline Type. + Represents the following element tag in the schema: c:trendlineType. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Polynomial Trendline Order. + Represents the following element tag in the schema: c:order. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Period. + Represents the following element tag in the schema: c:period. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Forward. + Represents the following element tag in the schema: c:forward. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Backward. + Represents the following element tag in the schema: c:backward. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Intercept. + Represents the following element tag in the schema: c:intercept. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Display R Squared Value. + Represents the following element tag in the schema: c:dispRSqr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Display Equation. + Represents the following element tag in the schema: c:dispEq. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Trendline Label. + Represents the following element tag in the schema: c:trendlineLbl. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the ErrorBars Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:errBars. + + + The following table lists the possible child types: + + <c:spPr> + <c:noEndCap> + <c:val> + <c:errBarType> + <c:errDir> + <c:errValType> + <c:extLst> + <c:plus> + <c:minus> + + + + + + Initializes a new instance of the ErrorBars class. + + + + + Initializes a new instance of the ErrorBars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ErrorBars class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ErrorBars class from outer XML. + + Specifies the outer XML of the element. + + + + Error Bar Direction. + Represents the following element tag in the schema: c:errDir. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Error Bar Type. + Represents the following element tag in the schema: c:errBarType. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Error Bar Value Type. + Represents the following element tag in the schema: c:errValType. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + No End Cap. + Represents the following element tag in the schema: c:noEndCap. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Plus. + Represents the following element tag in the schema: c:plus. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Minus. + Represents the following element tag in the schema: c:minus. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Error Bar Value. + Represents the following element tag in the schema: c:val. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ChartShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Defines the CategoryAxisData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:cat. + + + The following table lists the possible child types: + + <c:multiLvlStrRef> + <c:numLit> + <c:numRef> + <c:strLit> + <c:strRef> + + + + + + Initializes a new instance of the CategoryAxisData class. + + + + + Initializes a new instance of the CategoryAxisData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryAxisData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryAxisData class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the XValues Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:xVal. + + + The following table lists the possible child types: + + <c:multiLvlStrRef> + <c:numLit> + <c:numRef> + <c:strLit> + <c:strRef> + + + + + + Initializes a new instance of the XValues class. + + + + + Initializes a new instance of the XValues class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the XValues class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the XValues class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AxisDataSourceType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <c:multiLvlStrRef> + <c:numLit> + <c:numRef> + <c:strLit> + <c:strRef> + + + + + + Initializes a new instance of the AxisDataSourceType class. + + + + + Initializes a new instance of the AxisDataSourceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisDataSourceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AxisDataSourceType class from outer XML. + + Specifies the outer XML of the element. + + + + Multi Level String Reference. + Represents the following element tag in the schema: c:multiLvlStrRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Reference. + Represents the following element tag in the schema: c:numRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Number Literal. + Represents the following element tag in the schema: c:numLit. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + StringReference. + Represents the following element tag in the schema: c:strRef. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + String Literal. + Represents the following element tag in the schema: c:strLit. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Defines the LineSerExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the LineSerExtensionList class. + + + + + Initializes a new instance of the LineSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSerExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LineSerExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:categoryFilterExceptions> + <c15:filteredCategoryTitle> + <c15:filteredSeriesTitle> + <c15:datalabelsRange> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + + + + + + Initializes a new instance of the LineSerExtension class. + + + + + Initializes a new instance of the LineSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSerExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the ScatterSerExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the ScatterSerExtensionList class. + + + + + Initializes a new instance of the ScatterSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterSerExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ScatterSerExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:categoryFilterExceptions> + <c15:filteredCategoryTitle> + <c15:filteredSeriesTitle> + <c15:datalabelsRange> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + + + + + + Initializes a new instance of the ScatterSerExtension class. + + + + + Initializes a new instance of the ScatterSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScatterSerExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the RadarSerExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the RadarSerExtensionList class. + + + + + Initializes a new instance of the RadarSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarSerExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the RadarSerExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:categoryFilterExceptions> + <c15:filteredCategoryTitle> + <c15:filteredSeriesTitle> + <c15:datalabelsRange> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + + + + + + Initializes a new instance of the RadarSerExtension class. + + + + + Initializes a new instance of the RadarSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadarSerExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the BarSerExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the BarSerExtensionList class. + + + + + Initializes a new instance of the BarSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarSerExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BarSerExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c14:invertSolidFillFmt> + <c15:categoryFilterExceptions> + <c15:filteredCategoryTitle> + <c15:filteredSeriesTitle> + <c15:datalabelsRange> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + + + + + + Initializes a new instance of the BarSerExtension class. + + + + + Initializes a new instance of the BarSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarSerExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the AreaSerExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the AreaSerExtensionList class. + + + + + Initializes a new instance of the AreaSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaSerExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the AreaSerExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:categoryFilterExceptions> + <c15:filteredCategoryTitle> + <c15:filteredSeriesTitle> + <c15:datalabelsRange> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + + + + + + Initializes a new instance of the AreaSerExtension class. + + + + + Initializes a new instance of the AreaSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AreaSerExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the PieSerExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the PieSerExtensionList class. + + + + + Initializes a new instance of the PieSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieSerExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PieSerExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:categoryFilterExceptions> + <c15:filteredCategoryTitle> + <c15:filteredSeriesTitle> + <c15:datalabelsRange> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + + + + + + Initializes a new instance of the PieSerExtension class. + + + + + Initializes a new instance of the PieSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PieSerExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the BubbleSerExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the BubbleSerExtensionList class. + + + + + Initializes a new instance of the BubbleSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleSerExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BubbleSerExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c14:invertSolidFillFmt> + <c15:categoryFilterExceptions> + <c15:filteredCategoryTitle> + <c15:datalabelsRange> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + + + + + + Initializes a new instance of the BubbleSerExtension class. + + + + + Initializes a new instance of the BubbleSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BubbleSerExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the SurfaceSerExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the SurfaceSerExtensionList class. + + + + + Initializes a new instance of the SurfaceSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceSerExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceSerExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SurfaceSerExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c15:categoryFilterExceptions> + <c15:filteredCategoryTitle> + <c15:filteredSeriesTitle> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + + + + + + Initializes a new instance of the SurfaceSerExtension class. + + + + + Initializes a new instance of the SurfaceSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceSerExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceSerExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the DataDisplayOptions16 Class. + This class is available in Office 2019 and above. + When the object is serialized out as xml, it's qualified name is c:ext. + + + The following table lists the possible child types: + + <c16r3:dispNaAsBlank> + + + + + + Initializes a new instance of the DataDisplayOptions16 class. + + + + + Initializes a new instance of the DataDisplayOptions16 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataDisplayOptions16 class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataDisplayOptions16 class from outer XML. + + Specifies the outer XML of the element. + + + + BooleanFalse. + Represents the following element tag in the schema: c16r3:dispNaAsBlank. + + + xmlns:c16r3 = http://schemas.microsoft.com/office/drawing/2017/03/chart + + + + + + + + pivot chart format persistence data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:pivotFmts. + + + The following table lists the possible child types: + + <c:pivotFmt> + + + + + + Initializes a new instance of the PivotFormats class. + + + + + Initializes a new instance of the PivotFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFormats class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PivotFormats class from outer XML. + + Specifies the outer XML of the element. + + + + + + + 3D view settings. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:view3D. + + + The following table lists the possible child types: + + <c:rAngAx> + <c:depthPercent> + <c:extLst> + <c:hPercent> + <c:perspective> + <c:rotX> + <c:rotY> + + + + + + Initializes a new instance of the View3D class. + + + + + Initializes a new instance of the View3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the View3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the View3D class from outer XML. + + Specifies the outer XML of the element. + + + + X Rotation. + Represents the following element tag in the schema: c:rotX. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Height Percent. + Represents the following element tag in the schema: c:hPercent. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Y Rotation. + Represents the following element tag in the schema: c:rotY. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Depth Percent. + Represents the following element tag in the schema: c:depthPercent. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Right Angle Axes. + Represents the following element tag in the schema: c:rAngAx. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Perspective. + Represents the following element tag in the schema: c:perspective. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + 3D floor formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:floor. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:pictureOptions> + <c:thickness> + + + + + + Initializes a new instance of the Floor class. + + + + + Initializes a new instance of the Floor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Floor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Floor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + 3D side wall formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:sideWall. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:pictureOptions> + <c:thickness> + + + + + + Initializes a new instance of the SideWall class. + + + + + Initializes a new instance of the SideWall class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SideWall class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SideWall class from outer XML. + + Specifies the outer XML of the element. + + + + + + + 3D back wall formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:backWall. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:pictureOptions> + <c:thickness> + + + + + + Initializes a new instance of the BackWall class. + + + + + Initializes a new instance of the BackWall class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackWall class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackWall class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SurfaceType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <c:spPr> + <c:extLst> + <c:pictureOptions> + <c:thickness> + + + + + + Initializes a new instance of the SurfaceType class. + + + + + Initializes a new instance of the SurfaceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SurfaceType class from outer XML. + + Specifies the outer XML of the element. + + + + Thickness. + Represents the following element tag in the schema: c:thickness. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + ShapeProperties. + Represents the following element tag in the schema: c:spPr. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Picture Options. + Represents the following element tag in the schema: c:pictureOptions. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Chart Extensibility. + Represents the following element tag in the schema: c:extLst. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + Plot data and formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:plotArea. + + + The following table lists the possible child types: + + <c:spPr> + <c:area3DChart> + <c:areaChart> + <c:bar3DChart> + <c:barChart> + <c:bubbleChart> + <c:catAx> + <c:dateAx> + <c:doughnutChart> + <c:dTable> + <c:extLst> + <c:layout> + <c:line3DChart> + <c:lineChart> + <c:ofPieChart> + <c:pie3DChart> + <c:pieChart> + <c:radarChart> + <c:scatterChart> + <c:serAx> + <c:stockChart> + <c:surface3DChart> + <c:surfaceChart> + <c:valAx> + + + + + + Initializes a new instance of the PlotArea class. + + + + + Initializes a new instance of the PlotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotArea class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlotArea class from outer XML. + + Specifies the outer XML of the element. + + + + Layout. + Represents the following element tag in the schema: c:layout. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + Legend data and formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:legend. + + + The following table lists the possible child types: + + <c:spPr> + <c:txPr> + <c:overlay> + <c:extLst> + <c:layout> + <c:legendEntry> + <c:legendPos> + + + + + + Initializes a new instance of the Legend class. + + + + + Initializes a new instance of the Legend class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Legend class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Legend class from outer XML. + + Specifies the outer XML of the element. + + + + Legend Position. + Represents the following element tag in the schema: c:legendPos. + + + xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart + + + + + + + + The way that blank cells are plotted on a chart.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:dispBlanksAs. + + + + + Initializes a new instance of the DisplayBlanksAs class. + + + + + Display Blanks As Value + Represents the following attribute in the schema: val + + + + + + + + Extensibility container. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is c:extLst. + + + The following table lists the possible child types: + + <c:ext> + + + + + + Initializes a new instance of the ChartExtensionList class. + + + + + Initializes a new instance of the ChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChartExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Layout Target + + + + + Creates a new LayoutTargetValues enum instance + + + + + Inner. + When the item is serialized out as xml, its value is "inner". + + + + + Outer. + When the item is serialized out as xml, its value is "outer". + + + + + Layout Mode + + + + + Creates a new LayoutModeValues enum instance + + + + + Edge. + When the item is serialized out as xml, its value is "edge". + + + + + Factor. + When the item is serialized out as xml, its value is "factor". + + + + + Size Represents + + + + + Creates a new SizeRepresentsValues enum instance + + + + + Bubble Size Represents Area. + When the item is serialized out as xml, its value is "area". + + + + + Bubble Size Represents Width. + When the item is serialized out as xml, its value is "w". + + + + + Label Alignment + + + + + Creates a new LabelAlignmentValues enum instance + + + + + Center. + When the item is serialized out as xml, its value is "ctr". + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Data Label Position + + + + + Creates a new DataLabelPositionValues enum instance + + + + + Best Fit. + When the item is serialized out as xml, its value is "bestFit". + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Center. + When the item is serialized out as xml, its value is "ctr". + + + + + Inside Base. + When the item is serialized out as xml, its value is "inBase". + + + + + Inside End. + When the item is serialized out as xml, its value is "inEnd". + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Outside End. + When the item is serialized out as xml, its value is "outEnd". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Trendline Type + + + + + Creates a new TrendlineValues enum instance + + + + + Exponential. + When the item is serialized out as xml, its value is "exp". + + + + + Linear. + When the item is serialized out as xml, its value is "linear". + + + + + Logarithmic. + When the item is serialized out as xml, its value is "log". + + + + + Moving Average. + When the item is serialized out as xml, its value is "movingAvg". + + + + + Polynomial. + When the item is serialized out as xml, its value is "poly". + + + + + Power. + When the item is serialized out as xml, its value is "power". + + + + + Error Bar Direction + + + + + Creates a new ErrorBarDirectionValues enum instance + + + + + X. + When the item is serialized out as xml, its value is "x". + + + + + Y. + When the item is serialized out as xml, its value is "y". + + + + + Error Bar Type + + + + + Creates a new ErrorBarValues enum instance + + + + + Both. + When the item is serialized out as xml, its value is "both". + + + + + Minus. + When the item is serialized out as xml, its value is "minus". + + + + + Plus. + When the item is serialized out as xml, its value is "plus". + + + + + Error Value Type + + + + + Creates a new ErrorValues enum instance + + + + + Custom Error Bars. + When the item is serialized out as xml, its value is "cust". + + + + + Fixed Value. + When the item is serialized out as xml, its value is "fixedVal". + + + + + Percentage. + When the item is serialized out as xml, its value is "percentage". + + + + + Standard Deviation. + When the item is serialized out as xml, its value is "stdDev". + + + + + Standard Error. + When the item is serialized out as xml, its value is "stdErr". + + + + + Grouping + + + + + Creates a new GroupingValues enum instance + + + + + 100% Stacked. + When the item is serialized out as xml, its value is "percentStacked". + + + + + Standard. + When the item is serialized out as xml, its value is "standard". + + + + + Stacked. + When the item is serialized out as xml, its value is "stacked". + + + + + Radar Style + + + + + Creates a new RadarStyleValues enum instance + + + + + Standard. + When the item is serialized out as xml, its value is "standard". + + + + + Marker. + When the item is serialized out as xml, its value is "marker". + + + + + Filled. + When the item is serialized out as xml, its value is "filled". + + + + + Bar Grouping + + + + + Creates a new BarGroupingValues enum instance + + + + + 100% Stacked. + When the item is serialized out as xml, its value is "percentStacked". + + + + + Clustered. + When the item is serialized out as xml, its value is "clustered". + + + + + Standard. + When the item is serialized out as xml, its value is "standard". + + + + + Stacked. + When the item is serialized out as xml, its value is "stacked". + + + + + Bar Direction + + + + + Creates a new BarDirectionValues enum instance + + + + + Bar. + When the item is serialized out as xml, its value is "bar". + + + + + Column. + When the item is serialized out as xml, its value is "col". + + + + + Shape + + + + + Creates a new ShapeValues enum instance + + + + + Cone. + When the item is serialized out as xml, its value is "cone". + + + + + Cone to Max. + When the item is serialized out as xml, its value is "coneToMax". + + + + + Box. + When the item is serialized out as xml, its value is "box". + + + + + Cylinder. + When the item is serialized out as xml, its value is "cylinder". + + + + + Pyramid. + When the item is serialized out as xml, its value is "pyramid". + + + + + Pyramid to Maximum. + When the item is serialized out as xml, its value is "pyramidToMax". + + + + + Pie of Pie or Bar of Pie Type + + + + + Creates a new OfPieValues enum instance + + + + + Pie. + When the item is serialized out as xml, its value is "pie". + + + + + Bar. + When the item is serialized out as xml, its value is "bar". + + + + + Axis Position + + + + + Creates a new AxisPositionValues enum instance + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Crosses + + + + + Creates a new CrossesValues enum instance + + + + + Axis Crosses at Zero. + When the item is serialized out as xml, its value is "autoZero". + + + + + Maximum. + When the item is serialized out as xml, its value is "max". + + + + + Minimum. + When the item is serialized out as xml, its value is "min". + + + + + Cross Between + + + + + Creates a new CrossBetweenValues enum instance + + + + + Between. + When the item is serialized out as xml, its value is "between". + + + + + Midpoint of Category. + When the item is serialized out as xml, its value is "midCat". + + + + + Tick Mark + + + + + Creates a new TickMarkValues enum instance + + + + + Cross. + When the item is serialized out as xml, its value is "cross". + + + + + Inside. + When the item is serialized out as xml, its value is "in". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Outside. + When the item is serialized out as xml, its value is "out". + + + + + Tick Label Position + + + + + Creates a new TickLabelPositionValues enum instance + + + + + High. + When the item is serialized out as xml, its value is "high". + + + + + Low. + When the item is serialized out as xml, its value is "low". + + + + + Next To. + When the item is serialized out as xml, its value is "nextTo". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Time Unit + + + + + Creates a new TimeUnitValues enum instance + + + + + Days. + When the item is serialized out as xml, its value is "days". + + + + + Months. + When the item is serialized out as xml, its value is "months". + + + + + Years. + When the item is serialized out as xml, its value is "years". + + + + + Built-In Unit + + + + + Creates a new BuiltInUnitValues enum instance + + + + + Hundreds. + When the item is serialized out as xml, its value is "hundreds". + + + + + Thousands. + When the item is serialized out as xml, its value is "thousands". + + + + + Ten Thousands. + When the item is serialized out as xml, its value is "tenThousands". + + + + + Hundred Thousands. + When the item is serialized out as xml, its value is "hundredThousands". + + + + + Millions. + When the item is serialized out as xml, its value is "millions". + + + + + Ten Millions. + When the item is serialized out as xml, its value is "tenMillions". + + + + + Hundred Millions. + When the item is serialized out as xml, its value is "hundredMillions". + + + + + Billions. + When the item is serialized out as xml, its value is "billions". + + + + + Trillions. + When the item is serialized out as xml, its value is "trillions". + + + + + Picture Format + + + + + Creates a new PictureFormatValues enum instance + + + + + Stretch. + When the item is serialized out as xml, its value is "stretch". + + + + + Stack. + When the item is serialized out as xml, its value is "stack". + + + + + Stack and Scale. + When the item is serialized out as xml, its value is "stackScale". + + + + + Orientation + + + + + Creates a new OrientationValues enum instance + + + + + Maximum to Minimum. + When the item is serialized out as xml, its value is "maxMin". + + + + + Minimum to Maximum. + When the item is serialized out as xml, its value is "minMax". + + + + + Legend Position + + + + + Creates a new LegendPositionValues enum instance + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Top Right. + When the item is serialized out as xml, its value is "tr". + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Display Blanks As + + + + + Creates a new DisplayBlanksAsValues enum instance + + + + + Span. + When the item is serialized out as xml, its value is "span". + + + + + Gap. + When the item is serialized out as xml, its value is "gap". + + + + + Zero. + When the item is serialized out as xml, its value is "zero". + + + + + Printed Page Orientation + + + + + Creates a new PageSetupOrientationValues enum instance + + + + + Default Page Orientation. + When the item is serialized out as xml, its value is "default". + + + + + Portrait Page. + When the item is serialized out as xml, its value is "portrait". + + + + + Landscape Page. + When the item is serialized out as xml, its value is "landscape". + + + + + Scatter Style + + + + + Creates a new ScatterStyleValues enum instance + + + + + Line. + When the item is serialized out as xml, its value is "line". + + + + + Line with Markers. + When the item is serialized out as xml, its value is "lineMarker". + + + + + Marker. + When the item is serialized out as xml, its value is "marker". + + + + + Smooth. + When the item is serialized out as xml, its value is "smooth". + + + + + Smooth with Markers. + When the item is serialized out as xml, its value is "smoothMarker". + + + + + Marker Style + + + + + Creates a new MarkerStyleValues enum instance + + + + + auto. + When the item is serialized out as xml, its value is "auto". + + + + + Circle. + When the item is serialized out as xml, its value is "circle". + + + + + Dash. + When the item is serialized out as xml, its value is "dash". + + + + + Diamond. + When the item is serialized out as xml, its value is "diamond". + + + + + Dot. + When the item is serialized out as xml, its value is "dot". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Picture. + When the item is serialized out as xml, its value is "picture". + + + + + Plus. + When the item is serialized out as xml, its value is "plus". + + + + + Square. + When the item is serialized out as xml, its value is "square". + + + + + Star. + When the item is serialized out as xml, its value is "star". + + + + + Triangle. + When the item is serialized out as xml, its value is "triangle". + + + + + X. + When the item is serialized out as xml, its value is "x". + + + + + Split Type + + + + + Creates a new SplitValues enum instance + + + + + Custom Split. + When the item is serialized out as xml, its value is "cust". + + + + + Split by Percentage. + When the item is serialized out as xml, its value is "percent". + + + + + Split by Position. + When the item is serialized out as xml, its value is "pos". + + + + + Split by Value. + When the item is serialized out as xml, its value is "val". + + + + + Relative Anchor Shape Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:relSizeAnchor. + + + The following table lists the possible child types: + + <cdr:cxnSp> + <cdr:graphicFrame> + <cdr:grpSp> + <cdr:from> + <cdr:to> + <cdr:pic> + <cdr:sp> + <cdr14:contentPart> + + + + + + Initializes a new instance of the RelativeAnchorSize class. + + + + + Initializes a new instance of the RelativeAnchorSize class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RelativeAnchorSize class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RelativeAnchorSize class from outer XML. + + Specifies the outer XML of the element. + + + + Starting Anchor Point. + Represents the following element tag in the schema: cdr:from. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Ending Anchor Point. + Represents the following element tag in the schema: cdr:to. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Absolute Anchor Shape Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:absSizeAnchor. + + + The following table lists the possible child types: + + <cdr:ext> + <cdr:cxnSp> + <cdr:graphicFrame> + <cdr:grpSp> + <cdr:from> + <cdr:pic> + <cdr:sp> + <cdr14:contentPart> + + + + + + Initializes a new instance of the AbsoluteAnchorSize class. + + + + + Initializes a new instance of the AbsoluteAnchorSize class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AbsoluteAnchorSize class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AbsoluteAnchorSize class from outer XML. + + Specifies the outer XML of the element. + + + + FromAnchor. + Represents the following element tag in the schema: cdr:from. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Shape Extent. + Represents the following element tag in the schema: cdr:ext. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Shape Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:sp. + + + The following table lists the possible child types: + + <cdr:spPr> + <cdr:style> + <cdr:txBody> + <cdr:nvSpPr> + + + + + + Initializes a new instance of the Shape class. + + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class from outer XML. + + Specifies the outer XML of the element. + + + + Reference to Custom Function + Represents the following attribute in the schema: macro + + + + + Text Link + Represents the following attribute in the schema: textlink + + + + + Lock Text + Represents the following attribute in the schema: fLocksText + + + + + Publish to Server + Represents the following attribute in the schema: fPublished + + + + + Non-Visual Shape Properties. + Represents the following element tag in the schema: cdr:nvSpPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Shape Properties. + Represents the following element tag in the schema: cdr:spPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Shape Style. + Represents the following element tag in the schema: cdr:style. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Shape Text Body. + Represents the following element tag in the schema: cdr:txBody. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Group Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:grpSp. + + + The following table lists the possible child types: + + <cdr:grpSpPr> + <cdr:cxnSp> + <cdr:graphicFrame> + <cdr:grpSp> + <cdr:nvGrpSpPr> + <cdr:pic> + <cdr:sp> + <cdr14:contentPart> + + + + + + Initializes a new instance of the GroupShape class. + + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Group Shape Properties. + Represents the following element tag in the schema: cdr:nvGrpSpPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Group Shape Properties. + Represents the following element tag in the schema: cdr:grpSpPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Graphic Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:graphicFrame. + + + The following table lists the possible child types: + + <a:graphic> + <cdr:xfrm> + <cdr:nvGraphicFramePr> + + + + + + Initializes a new instance of the GraphicFrame class. + + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class from outer XML. + + Specifies the outer XML of the element. + + + + Reference to Custom Function + Represents the following attribute in the schema: macro + + + + + Publish To Server + Represents the following attribute in the schema: fPublished + + + + + Non-Visual Graphic Frame Properties. + Represents the following element tag in the schema: cdr:nvGraphicFramePr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Graphic Frame Transform. + Represents the following element tag in the schema: cdr:xfrm. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Graphical Object. + Represents the following element tag in the schema: a:graphic. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Connection Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:cxnSp. + + + The following table lists the possible child types: + + <cdr:spPr> + <cdr:style> + <cdr:nvCxnSpPr> + + + + + + Initializes a new instance of the ConnectionShape class. + + + + + Initializes a new instance of the ConnectionShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShape class from outer XML. + + Specifies the outer XML of the element. + + + + Reference to Custom Function + Represents the following attribute in the schema: macro + + + + + Publish to Server + Represents the following attribute in the schema: fPublished + + + + + Connector Non Visual Properties. + Represents the following element tag in the schema: cdr:nvCxnSpPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Shape Properties. + Represents the following element tag in the schema: cdr:spPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Connection Shape Style. + Represents the following element tag in the schema: cdr:style. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Defines the Picture Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:pic. + + + The following table lists the possible child types: + + <cdr:blipFill> + <cdr:spPr> + <cdr:style> + <cdr:nvPicPr> + + + + + + Initializes a new instance of the Picture class. + + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class from outer XML. + + Specifies the outer XML of the element. + + + + Reference to Custom Function + Represents the following attribute in the schema: macro + + + + + Publish to Server + Represents the following attribute in the schema: fPublished + + + + + Non-Visual Picture Properties. + Represents the following element tag in the schema: cdr:nvPicPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Picture Fill. + Represents the following element tag in the schema: cdr:blipFill. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + ShapeProperties. + Represents the following element tag in the schema: cdr:spPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Style. + Represents the following element tag in the schema: cdr:style. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Chart Non Visual Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:cNvSpPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:spLocks> + + + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Text Box + Represents the following attribute in the schema: txBox + + + + + Shape Locks. + Represents the following element tag in the schema: a:spLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:nvSpPr. + + + The following table lists the possible child types: + + <cdr:cNvPr> + <cdr:cNvSpPr> + + + + + + Initializes a new instance of the NonVisualShapeProperties class. + + + + + Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Chart Non Visual Properties. + Represents the following element tag in the schema: cdr:cNvPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Non-Visual Shape Drawing Properties. + Represents the following element tag in the schema: cdr:cNvSpPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:style. + + + The following table lists the possible child types: + + <a:fontRef> + <a:lnRef> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the Style class. + + + + + Initializes a new instance of the Style class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Style class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Style class from outer XML. + + Specifies the outer XML of the element. + + + + LineReference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillReference. + Represents the following element tag in the schema: a:fillRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + EffectReference. + Represents the following element tag in the schema: a:effectRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Reference. + Represents the following element tag in the schema: a:fontRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape Text Body. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:txBody. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBody class. + + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Connection Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:cNvCxnSpPr. + + + The following table lists the possible child types: + + <a:stCxn> + <a:endCxn> + <a:cxnSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class. + + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Shape Locks. + Represents the following element tag in the schema: a:cxnSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection Start. + Represents the following element tag in the schema: a:stCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection End. + Represents the following element tag in the schema: a:endCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Connector Non Visual Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:nvCxnSpPr. + + + The following table lists the possible child types: + + <cdr:cNvCxnSpPr> + <cdr:cNvPr> + + + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Chart Non Visual Properties. + Represents the following element tag in the schema: cdr:cNvPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Non-Visual Connection Shape Drawing Properties. + Represents the following element tag in the schema: cdr:cNvCxnSpPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Non-Visual Picture Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:cNvPicPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:picLocks> + + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class. + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + preferRelativeResize + Represents the following attribute in the schema: preferRelativeResize + + + + + PictureLocks. + Represents the following element tag in the schema: a:picLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualPicturePropertiesExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Picture Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:nvPicPr. + + + The following table lists the possible child types: + + <cdr:cNvPr> + <cdr:cNvPicPr> + + + + + + Initializes a new instance of the NonVisualPictureProperties class. + + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: cdr:cNvPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Non-Visual Picture Drawing Properties. + Represents the following element tag in the schema: cdr:cNvPicPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Picture Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:blipFill. + + + The following table lists the possible child types: + + <a:blip> + <a:srcRect> + <a:stretch> + <a:tile> + + + + + + Initializes a new instance of the BlipFill class. + + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class from outer XML. + + Specifies the outer XML of the element. + + + + DPI Setting + Represents the following attribute in the schema: dpi + + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + Blip. + Represents the following element tag in the schema: a:blip. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Source Rectangle. + Represents the following element tag in the schema: a:srcRect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Graphic Frame Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:cNvGraphicFramePr. + + + The following table lists the possible child types: + + <a:graphicFrameLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Graphic Frame Locks. + Represents the following element tag in the schema: a:graphicFrameLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Graphic Frame Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:nvGraphicFramePr. + + + The following table lists the possible child types: + + <cdr:cNvPr> + <cdr:cNvGraphicFramePr> + + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Drawing Properties. + Represents the following element tag in the schema: cdr:cNvPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Non-Visual Graphic Frame Drawing Properties. + Represents the following element tag in the schema: cdr:cNvGraphicFramePr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Graphic Frame Transform. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform class. + + + + + Initializes a new instance of the Transform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Group Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:cNvGrpSpPr. + + + The following table lists the possible child types: + + <a:grpSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + GroupShapeLocks. + Represents the following element tag in the schema: a:grpSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualGroupDrawingShapePropsExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Relative X Coordinate. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:x. + + + + + Initializes a new instance of the XPosition class. + + + + + Initializes a new instance of the XPosition class with the specified text content. + + Specifies the text content of the element. + + + + + + + Relative Y Coordinate. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:y. + + + + + Initializes a new instance of the YPosition class. + + + + + Initializes a new instance of the YPosition class with the specified text content. + + Specifies the text content of the element. + + + + + + + Starting Anchor Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:from. + + + The following table lists the possible child types: + + <cdr:x> + <cdr:y> + + + + + + Initializes a new instance of the FromAnchor class. + + + + + Initializes a new instance of the FromAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FromAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FromAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Ending Anchor Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:to. + + + The following table lists the possible child types: + + <cdr:x> + <cdr:y> + + + + + + Initializes a new instance of the ToAnchor class. + + + + + Initializes a new instance of the ToAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MarkerType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <cdr:x> + <cdr:y> + + + + + + Initializes a new instance of the MarkerType class. + + + + + Initializes a new instance of the MarkerType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MarkerType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MarkerType class from outer XML. + + Specifies the outer XML of the element. + + + + Relative X Coordinate. + Represents the following element tag in the schema: cdr:x. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Relative Y Coordinate. + Represents the following element tag in the schema: cdr:y. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Shape Extent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:ext. + + + + + Initializes a new instance of the Extent class. + + + + + Extent Length + Represents the following attribute in the schema: cx + + + + + Extent Width + Represents the following attribute in the schema: cy + + + + + + + + Non-Visual Group Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:nvGrpSpPr. + + + The following table lists the possible child types: + + <cdr:cNvPr> + <cdr:cNvGrpSpPr> + + + + + + Initializes a new instance of the NonVisualGroupShapeProperties class. + + + + + Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Chart Non Visual Properties. + Represents the following element tag in the schema: cdr:cNvPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + Non-Visual Group Shape Drawing Properties. + Represents the following element tag in the schema: cdr:cNvGrpSpPr. + + + xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing + + + + + + + + Group Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is cdr:grpSpPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:xfrm> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:scene3d> + <a:solidFill> + + + + + + Initializes a new instance of the GroupShapeProperties class. + + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Grouped Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Legacy Drawing Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is comp:legacyDrawing. + + + + + Initializes a new instance of the LegacyDrawing class. + + + + + Shape ID + Represents the following attribute in the schema: spid + + + + + + + + Color Transform Definitions. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:colorsDef. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:catLst> + <dgm:desc> + <dgm:title> + <dgm:styleLbl> + + + + + + Initializes a new instance of the ColorsDefinition class. + + + + + Initializes a new instance of the ColorsDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorsDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorsDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + Unique ID + Represents the following attribute in the schema: uniqueId + + + + + Minimum Version + Represents the following attribute in the schema: minVer + + + + + + + + Loads the DOM from the DiagramColorsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the DiagramColorsPart. + + Specifies the part to save to. + + + + Gets the DiagramColorsPart associated with this element. + + + + + Color Transform Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:colorsDefHdr. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:catLst> + <dgm:desc> + <dgm:title> + + + + + + Initializes a new instance of the ColorsDefinitionHeader class. + + + + + Initializes a new instance of the ColorsDefinitionHeader class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorsDefinitionHeader class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorsDefinitionHeader class from outer XML. + + Specifies the outer XML of the element. + + + + Unique ID + Represents the following attribute in the schema: uniqueId + + + + + Minimum Version + Represents the following attribute in the schema: minVer + + + + + Resource ID + Represents the following attribute in the schema: resId + + + + + + + + Color Transform Header List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:colorsDefHdrLst. + + + The following table lists the possible child types: + + <dgm:colorsDefHdr> + + + + + + Initializes a new instance of the ColorsDefinitionHeaderList class. + + + + + Initializes a new instance of the ColorsDefinitionHeaderList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorsDefinitionHeaderList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorsDefinitionHeaderList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Data Model. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:dataModel. + + + The following table lists the possible child types: + + <dgm:bg> + <dgm:extLst> + <dgm:whole> + <dgm:cxnLst> + <dgm:ptLst> + + + + + + Initializes a new instance of the DataModelRoot class. + + + + + Initializes a new instance of the DataModelRoot class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModelRoot class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModelRoot class from outer XML. + + Specifies the outer XML of the element. + + + + Point List. + Represents the following element tag in the schema: dgm:ptLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Connection List. + Represents the following element tag in the schema: dgm:cxnLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Background Formatting. + Represents the following element tag in the schema: dgm:bg. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Whole E2O Formatting. + Represents the following element tag in the schema: dgm:whole. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + DataModelExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Loads the DOM from the DiagramDataPart + + Specifies the part to be loaded. + + + + Saves the DOM into the DiagramDataPart. + + Specifies the part to save to. + + + + Gets the DiagramDataPart associated with this element. + + + + + Layout Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:layoutDef. + + + The following table lists the possible child types: + + <dgm:catLst> + <dgm:desc> + <dgm:extLst> + <dgm:layoutNode> + <dgm:title> + <dgm:sampData> + <dgm:styleData> + <dgm:clrData> + + + + + + Initializes a new instance of the LayoutDefinition class. + + + + + Initializes a new instance of the LayoutDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + uniqueId + Represents the following attribute in the schema: uniqueId + + + + + minVer + Represents the following attribute in the schema: minVer + + + + + defStyle + Represents the following attribute in the schema: defStyle + + + + + + + + Loads the DOM from the DiagramLayoutDefinitionPart + + Specifies the part to be loaded. + + + + Saves the DOM into the DiagramLayoutDefinitionPart. + + Specifies the part to save to. + + + + Gets the DiagramLayoutDefinitionPart associated with this element. + + + + + Layout Definition Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:layoutDefHdr. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:catLst> + <dgm:desc> + <dgm:title> + + + + + + Initializes a new instance of the LayoutDefinitionHeader class. + + + + + Initializes a new instance of the LayoutDefinitionHeader class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutDefinitionHeader class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutDefinitionHeader class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Identifier + Represents the following attribute in the schema: uniqueId + + + + + Minimum Version + Represents the following attribute in the schema: minVer + + + + + Default Style + Represents the following attribute in the schema: defStyle + + + + + Resource Identifier + Represents the following attribute in the schema: resId + + + + + + + + Diagram Layout Header List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:layoutDefHdrLst. + + + The following table lists the possible child types: + + <dgm:layoutDefHdr> + + + + + + Initializes a new instance of the LayoutDefinitionHeaderList class. + + + + + Initializes a new instance of the LayoutDefinitionHeaderList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutDefinitionHeaderList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutDefinitionHeaderList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Explicit Relationships to Diagram Parts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:relIds. + + + + + Initializes a new instance of the RelationshipIds class. + + + + + Explicit Relationship to Diagram Data Part + Represents the following attribute in the schema: r:dm + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Explicit Relationship to Diagram Layout Definition Part + Represents the following attribute in the schema: r:lo + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Explicit Relationship to Style Definition Part + Represents the following attribute in the schema: r:qs + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Explicit Relationship to Diagram Colors Part + Represents the following attribute in the schema: r:cs + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Style Definition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:styleDef. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:scene3d> + <dgm:catLst> + <dgm:desc> + <dgm:title> + <dgm:styleLbl> + + + + + + Initializes a new instance of the StyleDefinition class. + + + + + Initializes a new instance of the StyleDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleDefinition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleDefinition class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Style ID + Represents the following attribute in the schema: uniqueId + + + + + Minimum Version + Represents the following attribute in the schema: minVer + + + + + + + + Loads the DOM from the DiagramStylePart + + Specifies the part to be loaded. + + + + Saves the DOM into the DiagramStylePart. + + Specifies the part to save to. + + + + Gets the DiagramStylePart associated with this element. + + + + + Style Definition Header. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:styleDefHdr. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:catLst> + <dgm:desc> + <dgm:title> + + + + + + Initializes a new instance of the StyleDefinitionHeader class. + + + + + Initializes a new instance of the StyleDefinitionHeader class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleDefinitionHeader class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleDefinitionHeader class from outer XML. + + Specifies the outer XML of the element. + + + + Unique Style ID + Represents the following attribute in the schema: uniqueId + + + + + Minimum Version + Represents the following attribute in the schema: minVer + + + + + Resource ID + Represents the following attribute in the schema: resId + + + + + + + + List of Style Definition Headers. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:styleDefHdrLst. + + + The following table lists the possible child types: + + <dgm:styleDefHdr> + + + + + + Initializes a new instance of the StyleDefinitionHeaderList class. + + + + + Initializes a new instance of the StyleDefinitionHeaderList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleDefinitionHeaderList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleDefinitionHeaderList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Color Transform Category. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:cat. + + + + + Initializes a new instance of the ColorTransformCategory class. + + + + + Category Type + Represents the following attribute in the schema: type + + + + + Priority + Represents the following attribute in the schema: pri + + + + + + + + Fill Color List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:fillClrLst. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the FillColorList class. + + + + + Initializes a new instance of the FillColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillColorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Line Color List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:linClrLst. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the LineColorList class. + + + + + Initializes a new instance of the LineColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineColorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Effect Color List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:effectClrLst. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the EffectColorList class. + + + + + Initializes a new instance of the EffectColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectColorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Text Line Color List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:txLinClrLst. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the TextLineColorList class. + + + + + Initializes a new instance of the TextLineColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextLineColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextLineColorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Text Fill Color List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:txFillClrLst. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the TextFillColorList class. + + + + + Initializes a new instance of the TextFillColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextFillColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextFillColorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Text Effect Color List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:txEffectClrLst. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the TextEffectColorList class. + + + + + Initializes a new instance of the TextEffectColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextEffectColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextEffectColorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColorsType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorsType class. + + + + + Initializes a new instance of the ColorsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorsType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorsType class from outer XML. + + Specifies the outer XML of the element. + + + + Color Application Method Type + Represents the following attribute in the schema: meth + + + + + Hue Direction + Represents the following attribute in the schema: hueDir + + + + + Defines the ExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:title. + + + + + Initializes a new instance of the ColorDefinitionTitle class. + + + + + Language + Represents the following attribute in the schema: lang + + + + + Description Value + Represents the following attribute in the schema: val + + + + + + + + Description. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:desc. + + + + + Initializes a new instance of the ColorTransformDescription class. + + + + + Language + Represents the following attribute in the schema: lang + + + + + Description Value + Represents the following attribute in the schema: val + + + + + + + + Color Transform Category List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:catLst. + + + The following table lists the possible child types: + + <dgm:cat> + + + + + + Initializes a new instance of the ColorTransformCategories class. + + + + + Initializes a new instance of the ColorTransformCategories class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorTransformCategories class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorTransformCategories class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Style Label. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:styleLbl. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:fillClrLst> + <dgm:linClrLst> + <dgm:effectClrLst> + <dgm:txLinClrLst> + <dgm:txFillClrLst> + <dgm:txEffectClrLst> + + + + + + Initializes a new instance of the ColorTransformStyleLabel class. + + + + + Initializes a new instance of the ColorTransformStyleLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorTransformStyleLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorTransformStyleLabel class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + Fill Color List. + Represents the following element tag in the schema: dgm:fillClrLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Line Color List. + Represents the following element tag in the schema: dgm:linClrLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Effect Color List. + Represents the following element tag in the schema: dgm:effectClrLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Text Line Color List. + Represents the following element tag in the schema: dgm:txLinClrLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Text Fill Color List. + Represents the following element tag in the schema: dgm:txFillClrLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Text Effect Color List. + Represents the following element tag in the schema: dgm:txEffectClrLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + ExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:pt. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:spPr> + <dgm:t> + <dgm:prSet> + + + + + + Initializes a new instance of the Point class. + + + + + Initializes a new instance of the Point class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Point class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Point class from outer XML. + + Specifies the outer XML of the element. + + + + Model Identifier + Represents the following attribute in the schema: modelId + + + + + Point Type + Represents the following attribute in the schema: type + + + + + Connection Identifier + Represents the following attribute in the schema: cxnId + + + + + Property Set. + Represents the following element tag in the schema: dgm:prSet. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Shape Properties. + Represents the following element tag in the schema: dgm:spPr. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Text Body. + Represents the following element tag in the schema: dgm:t. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + PtExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Connection. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:cxn. + + + The following table lists the possible child types: + + <dgm:extLst> + + + + + + Initializes a new instance of the Connection class. + + + + + Initializes a new instance of the Connection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connection class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Connection class from outer XML. + + Specifies the outer XML of the element. + + + + Model Identifier + Represents the following attribute in the schema: modelId + + + + + Point Type + Represents the following attribute in the schema: type + + + + + Source Identifier + Represents the following attribute in the schema: srcId + + + + + Destination Identifier + Represents the following attribute in the schema: destId + + + + + Source Position + Represents the following attribute in the schema: srcOrd + + + + + Destination Position + Represents the following attribute in the schema: destOrd + + + + + Parent Transition Identifier + Represents the following attribute in the schema: parTransId + + + + + Sibling Transition Identifier + Represents the following attribute in the schema: sibTransId + + + + + Presentation Identifier + Represents the following attribute in the schema: presId + + + + + ExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Constraint. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:constr. + + + The following table lists the possible child types: + + <dgm:extLst> + + + + + + Initializes a new instance of the Constraint class. + + + + + Initializes a new instance of the Constraint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Constraint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Constraint class from outer XML. + + Specifies the outer XML of the element. + + + + Constraint Type + Represents the following attribute in the schema: type + + + + + For + Represents the following attribute in the schema: for + + + + + For Name + Represents the following attribute in the schema: forName + + + + + Data Point Type + Represents the following attribute in the schema: ptType + + + + + Reference Type + Represents the following attribute in the schema: refType + + + + + Reference For + Represents the following attribute in the schema: refFor + + + + + Reference For Name + Represents the following attribute in the schema: refForName + + + + + Reference Point Type + Represents the following attribute in the schema: refPtType + + + + + Operator + Represents the following attribute in the schema: op + + + + + Value + Represents the following attribute in the schema: val + + + + + Factor + Represents the following attribute in the schema: fact + + + + + ExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Rule. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:rule. + + + The following table lists the possible child types: + + <dgm:extLst> + + + + + + Initializes a new instance of the Rule class. + + + + + Initializes a new instance of the Rule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rule class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Rule class from outer XML. + + Specifies the outer XML of the element. + + + + Constraint Type + Represents the following attribute in the schema: type + + + + + For + Represents the following attribute in the schema: for + + + + + For Name + Represents the following attribute in the schema: forName + + + + + Data Point Type + Represents the following attribute in the schema: ptType + + + + + Value + Represents the following attribute in the schema: val + + + + + Factor + Represents the following attribute in the schema: fact + + + + + Max Value + Represents the following attribute in the schema: max + + + + + ExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Shape Adjust. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:adj. + + + + + Initializes a new instance of the Adjust class. + + + + + Adjust Handle Index + Represents the following attribute in the schema: idx + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Shape Adjust List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:adjLst. + + + The following table lists the possible child types: + + <dgm:adj> + + + + + + Initializes a new instance of the AdjustList class. + + + + + Initializes a new instance of the AdjustList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Parameter. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:param. + + + + + Initializes a new instance of the Parameter class. + + + + + Parameter Type + Represents the following attribute in the schema: type + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Algorithm. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:alg. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:param> + + + + + + Initializes a new instance of the Algorithm class. + + + + + Initializes a new instance of the Algorithm class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Algorithm class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Algorithm class from outer XML. + + Specifies the outer XML of the element. + + + + Algorithm Type + Represents the following attribute in the schema: type + + + + + Revision Number + Represents the following attribute in the schema: rev + + + + + + + + Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:shape. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:adjLst> + + + + + + Initializes a new instance of the Shape class. + + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Shape Type + Represents the following attribute in the schema: type + + + + + Relationship to Image Part + Represents the following attribute in the schema: r:blip + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Z-Order Offset + Represents the following attribute in the schema: zOrderOff + + + + + Hide Geometry + Represents the following attribute in the schema: hideGeom + + + + + Prevent Text Editing + Represents the following attribute in the schema: lkTxEntry + + + + + Image Placeholder + Represents the following attribute in the schema: blipPhldr + + + + + Shape Adjust List. + Represents the following element tag in the schema: dgm:adjLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + ExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Presentation Of. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:presOf. + + + The following table lists the possible child types: + + <dgm:extLst> + + + + + + Initializes a new instance of the PresentationOf class. + + + + + Initializes a new instance of the PresentationOf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationOf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationOf class from outer XML. + + Specifies the outer XML of the element. + + + + Axis + Represents the following attribute in the schema: axis + + + + + Data Point Type + Represents the following attribute in the schema: ptType + + + + + Hide Last Transition + Represents the following attribute in the schema: hideLastTrans + + + + + Start + Represents the following attribute in the schema: st + + + + + Count + Represents the following attribute in the schema: cnt + + + + + Step + Represents the following attribute in the schema: step + + + + + ExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Constraint List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:constrLst. + + + The following table lists the possible child types: + + <dgm:constr> + + + + + + Initializes a new instance of the Constraints class. + + + + + Initializes a new instance of the Constraints class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Constraints class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Constraints class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Rule List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:ruleLst. + + + The following table lists the possible child types: + + <dgm:rule> + + + + + + Initializes a new instance of the RuleList class. + + + + + Initializes a new instance of the RuleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RuleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RuleList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Variable List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:varLst. + + + The following table lists the possible child types: + + <dgm:animLvl> + <dgm:animOne> + <dgm:bulletEnabled> + <dgm:chMax> + <dgm:chPref> + <dgm:dir> + <dgm:hierBranch> + <dgm:orgChart> + <dgm:resizeHandles> + + + + + + Initializes a new instance of the VariableList class. + + + + + Initializes a new instance of the VariableList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VariableList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VariableList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Presentation Layout Variables. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:presLayoutVars. + + + The following table lists the possible child types: + + <dgm:animLvl> + <dgm:animOne> + <dgm:bulletEnabled> + <dgm:chMax> + <dgm:chPref> + <dgm:dir> + <dgm:hierBranch> + <dgm:orgChart> + <dgm:resizeHandles> + + + + + + Initializes a new instance of the PresentationLayoutVariables class. + + + + + Initializes a new instance of the PresentationLayoutVariables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationLayoutVariables class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationLayoutVariables class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LayoutVariablePropertySetType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <dgm:animLvl> + <dgm:animOne> + <dgm:bulletEnabled> + <dgm:chMax> + <dgm:chPref> + <dgm:dir> + <dgm:hierBranch> + <dgm:orgChart> + <dgm:resizeHandles> + + + + + + Initializes a new instance of the LayoutVariablePropertySetType class. + + + + + Initializes a new instance of the LayoutVariablePropertySetType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutVariablePropertySetType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutVariablePropertySetType class from outer XML. + + Specifies the outer XML of the element. + + + + Show Organization Chart User Interface. + Represents the following element tag in the schema: dgm:orgChart. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Maximum Children. + Represents the following element tag in the schema: dgm:chMax. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Preferred Number of Children. + Represents the following element tag in the schema: dgm:chPref. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Show Insert Bullet. + Represents the following element tag in the schema: dgm:bulletEnabled. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Diagram Direction. + Represents the following element tag in the schema: dgm:dir. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Organization Chart Branch Style. + Represents the following element tag in the schema: dgm:hierBranch. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + One by One Animation String. + Represents the following element tag in the schema: dgm:animOne. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Level Animation. + Represents the following element tag in the schema: dgm:animLvl. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Shape Resize Style. + Represents the following element tag in the schema: dgm:resizeHandles. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + For Each. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:forEach. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:alg> + <dgm:choose> + <dgm:constrLst> + <dgm:forEach> + <dgm:layoutNode> + <dgm:presOf> + <dgm:ruleLst> + <dgm:shape> + + + + + + Initializes a new instance of the ForEach class. + + + + + Initializes a new instance of the ForEach class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ForEach class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ForEach class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + Reference + Represents the following attribute in the schema: ref + + + + + Axis + Represents the following attribute in the schema: axis + + + + + Data Point Type + Represents the following attribute in the schema: ptType + + + + + Hide Last Transition + Represents the following attribute in the schema: hideLastTrans + + + + + Start + Represents the following attribute in the schema: st + + + + + Count + Represents the following attribute in the schema: cnt + + + + + Step + Represents the following attribute in the schema: step + + + + + + + + Layout Node. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:layoutNode. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:alg> + <dgm:choose> + <dgm:constrLst> + <dgm:forEach> + <dgm:layoutNode> + <dgm:varLst> + <dgm:presOf> + <dgm:ruleLst> + <dgm:shape> + + + + + + Initializes a new instance of the LayoutNode class. + + + + + Initializes a new instance of the LayoutNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LayoutNode class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + Style Label + Represents the following attribute in the schema: styleLbl + + + + + Child Order + Represents the following attribute in the schema: chOrder + + + + + Move With + Represents the following attribute in the schema: moveWith + + + + + + + + Choose Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:choose. + + + The following table lists the possible child types: + + <dgm:else> + <dgm:if> + + + + + + Initializes a new instance of the Choose class. + + + + + Initializes a new instance of the Choose class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Choose class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Choose class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + + + + If. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:if. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:alg> + <dgm:choose> + <dgm:constrLst> + <dgm:forEach> + <dgm:layoutNode> + <dgm:presOf> + <dgm:ruleLst> + <dgm:shape> + + + + + + Initializes a new instance of the DiagramChooseIf class. + + + + + Initializes a new instance of the DiagramChooseIf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramChooseIf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramChooseIf class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + Axis + Represents the following attribute in the schema: axis + + + + + Data Point Type + Represents the following attribute in the schema: ptType + + + + + Hide Last Transition + Represents the following attribute in the schema: hideLastTrans + + + + + Start + Represents the following attribute in the schema: st + + + + + Count + Represents the following attribute in the schema: cnt + + + + + Step + Represents the following attribute in the schema: step + + + + + Function + Represents the following attribute in the schema: func + + + + + Argument + Represents the following attribute in the schema: arg + + + + + Operator + Represents the following attribute in the schema: op + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Else. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:else. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:alg> + <dgm:choose> + <dgm:constrLst> + <dgm:forEach> + <dgm:layoutNode> + <dgm:presOf> + <dgm:ruleLst> + <dgm:shape> + + + + + + Initializes a new instance of the DiagramChooseElse class. + + + + + Initializes a new instance of the DiagramChooseElse class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramChooseElse class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramChooseElse class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + + + + Data Model. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:dataModel. + + + The following table lists the possible child types: + + <dgm:bg> + <dgm:extLst> + <dgm:whole> + <dgm:cxnLst> + <dgm:ptLst> + + + + + + Initializes a new instance of the DataModel class. + + + + + Initializes a new instance of the DataModel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModel class from outer XML. + + Specifies the outer XML of the element. + + + + Point List. + Represents the following element tag in the schema: dgm:ptLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Connection List. + Represents the following element tag in the schema: dgm:cxnLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Background Formatting. + Represents the following element tag in the schema: dgm:bg. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Whole E2O Formatting. + Represents the following element tag in the schema: dgm:whole. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + DataModelExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Category. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:cat. + + + + + Initializes a new instance of the Category class. + + + + + Category Type + Represents the following attribute in the schema: type + + + + + Priority + Represents the following attribute in the schema: pri + + + + + + + + Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:title. + + + + + Initializes a new instance of the Title class. + + + + + Language + Represents the following attribute in the schema: lang + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Description. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:desc. + + + + + Initializes a new instance of the Description class. + + + + + Language + Represents the following attribute in the schema: lang + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Category List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:catLst. + + + The following table lists the possible child types: + + <dgm:cat> + + + + + + Initializes a new instance of the CategoryList class. + + + + + Initializes a new instance of the CategoryList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CategoryList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Shape Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:style. + + + The following table lists the possible child types: + + <a:fontRef> + <a:lnRef> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the Style class. + + + + + Initializes a new instance of the Style class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Style class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Style class from outer XML. + + Specifies the outer XML of the element. + + + + LineReference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillReference. + Represents the following element tag in the schema: a:fillRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + EffectReference. + Represents the following element tag in the schema: a:effectRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Reference. + Represents the following element tag in the schema: a:fontRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Show Organization Chart User Interface. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:orgChart. + + + + + Initializes a new instance of the OrganizationChart class. + + + + + Show Organization Chart User Interface Value + Represents the following attribute in the schema: val + + + + + + + + Maximum Children. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:chMax. + + + + + Initializes a new instance of the MaxNumberOfChildren class. + + + + + Maximum Children Value + Represents the following attribute in the schema: val + + + + + + + + Preferred Number of Children. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:chPref. + + + + + Initializes a new instance of the PreferredNumberOfChildren class. + + + + + Preferred Number of CHildren Value + Represents the following attribute in the schema: val + + + + + + + + Show Insert Bullet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:bulletEnabled. + + + + + Initializes a new instance of the BulletEnabled class. + + + + + Show Insert Bullet Value + Represents the following attribute in the schema: val + + + + + + + + Diagram Direction. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:dir. + + + + + Initializes a new instance of the Direction class. + + + + + Diagram Direction Value + Represents the following attribute in the schema: val + + + + + + + + Organization Chart Branch Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:hierBranch. + + + + + Initializes a new instance of the HierarchyBranch class. + + + + + Organization Chart Branch Style Value + Represents the following attribute in the schema: val + + + + + + + + One by One Animation String. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:animOne. + + + + + Initializes a new instance of the AnimateOneByOne class. + + + + + One By One Animation Value + Represents the following attribute in the schema: val + + + + + + + + Level Animation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:animLvl. + + + + + Initializes a new instance of the AnimationLevel class. + + + + + Level Animation Value + Represents the following attribute in the schema: val + + + + + + + + Shape Resize Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:resizeHandles. + + + + + Initializes a new instance of the ResizeHandles class. + + + + + Shape Resize Style Type + Represents the following attribute in the schema: val + + + + + + + + Category. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:cat. + + + + + Initializes a new instance of the StyleDisplayCategory class. + + + + + Category Type + Represents the following attribute in the schema: type + + + + + Priority + Represents the following attribute in the schema: pri + + + + + + + + 3-D Scene. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:scene3d. + + + The following table lists the possible child types: + + <a:backdrop> + <a:camera> + <a:lightRig> + <a:extLst> + + + + + + Initializes a new instance of the Scene3D class. + + + + + Initializes a new instance of the Scene3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scene3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scene3D class from outer XML. + + Specifies the outer XML of the element. + + + + Camera. + Represents the following element tag in the schema: a:camera. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Light Rig. + Represents the following element tag in the schema: a:lightRig. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Backdrop Plane. + Represents the following element tag in the schema: a:backdrop. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + 3-D Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:sp3d. + + + The following table lists the possible child types: + + <a:bevelT> + <a:bevelB> + <a:extrusionClr> + <a:contourClr> + <a:extLst> + + + + + + Initializes a new instance of the Shape3D class. + + + + + Initializes a new instance of the Shape3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape3D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape3D class from outer XML. + + Specifies the outer XML of the element. + + + + Shape Depth + Represents the following attribute in the schema: z + + + + + Extrusion Height + Represents the following attribute in the schema: extrusionH + + + + + Contour Width + Represents the following attribute in the schema: contourW + + + + + Preset Material Type + Represents the following attribute in the schema: prstMaterial + + + + + Top Bevel. + Represents the following element tag in the schema: a:bevelT. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Bottom Bevel. + Represents the following element tag in the schema: a:bevelB. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extrusion Color. + Represents the following element tag in the schema: a:extrusionClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Contour Color. + Represents the following element tag in the schema: a:contourClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Text Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:txPr. + + + The following table lists the possible child types: + + <a:flatTx> + <a:sp3d> + + + + + + Initializes a new instance of the TextProperties class. + + + + + Initializes a new instance of the TextProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Apply 3D shape properties. + Represents the following element tag in the schema: a:sp3d. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + No text in 3D scene. + Represents the following element tag in the schema: a:flatTx. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Title. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:title. + + + + + Initializes a new instance of the StyleDefinitionTitle class. + + + + + Natural Language + Represents the following attribute in the schema: lang + + + + + Description Value + Represents the following attribute in the schema: val + + + + + + + + Style Label Description. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:desc. + + + + + Initializes a new instance of the StyleLabelDescription class. + + + + + Natural Language + Represents the following attribute in the schema: lang + + + + + Description Value + Represents the following attribute in the schema: val + + + + + + + + Category List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:catLst. + + + The following table lists the possible child types: + + <dgm:cat> + + + + + + Initializes a new instance of the StyleDisplayCategories class. + + + + + Initializes a new instance of the StyleDisplayCategories class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleDisplayCategories class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleDisplayCategories class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Style Label. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:styleLbl. + + + The following table lists the possible child types: + + <dgm:extLst> + <dgm:scene3d> + <dgm:sp3d> + <dgm:style> + <dgm:txPr> + + + + + + Initializes a new instance of the StyleLabel class. + + + + + Initializes a new instance of the StyleLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleLabel class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleLabel class from outer XML. + + Specifies the outer XML of the element. + + + + Style Name + Represents the following attribute in the schema: name + + + + + 3-D Scene. + Represents the following element tag in the schema: dgm:scene3d. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + 3-D Shape Properties. + Represents the following element tag in the schema: dgm:sp3d. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Text Properties. + Represents the following element tag in the schema: dgm:txPr. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Shape Style. + Represents the following element tag in the schema: dgm:style. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + ExtensionList. + Represents the following element tag in the schema: dgm:extLst. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Point List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:ptLst. + + + The following table lists the possible child types: + + <dgm:pt> + + + + + + Initializes a new instance of the PointList class. + + + + + Initializes a new instance of the PointList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PointList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PointList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Connection List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:cxnLst. + + + The following table lists the possible child types: + + <dgm:cxn> + + + + + + Initializes a new instance of the ConnectionList class. + + + + + Initializes a new instance of the ConnectionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Background Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:bg. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the Background class. + + + + + Initializes a new instance of the Background class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Background class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Background class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Whole E2O Formatting. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:whole. + + + The following table lists the possible child types: + + <a:effectDag> + <a:effectLst> + <a:ln> + + + + + + Initializes a new instance of the Whole class. + + + + + Initializes a new instance of the Whole class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Whole class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Whole class from outer XML. + + Specifies the outer XML of the element. + + + + Outline. + Represents the following element tag in the schema: a:ln. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the DataModelExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the DataModelExtensionList class. + + + + + Initializes a new instance of the DataModelExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModelExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModelExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Property Set. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:prSet. + + + The following table lists the possible child types: + + <dgm:style> + <dgm:presLayoutVars> + + + + + + Initializes a new instance of the PropertySet class. + + + + + Initializes a new instance of the PropertySet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PropertySet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PropertySet class from outer XML. + + Specifies the outer XML of the element. + + + + Presentation Element Identifier + Represents the following attribute in the schema: presAssocID + + + + + Presentation Name + Represents the following attribute in the schema: presName + + + + + Presentation Style Label + Represents the following attribute in the schema: presStyleLbl + + + + + Presentation Style Index + Represents the following attribute in the schema: presStyleIdx + + + + + Presentation Style Count + Represents the following attribute in the schema: presStyleCnt + + + + + Current Diagram Type + Represents the following attribute in the schema: loTypeId + + + + + Current Diagram Category + Represents the following attribute in the schema: loCatId + + + + + Current Style Type + Represents the following attribute in the schema: qsTypeId + + + + + Current Style Category + Represents the following attribute in the schema: qsCatId + + + + + Color Transform Type Identifier + Represents the following attribute in the schema: csTypeId + + + + + Color Transform Category + Represents the following attribute in the schema: csCatId + + + + + Coherent 3D Behavior + Represents the following attribute in the schema: coherent3DOff + + + + + Placeholder Text + Represents the following attribute in the schema: phldrT + + + + + Placeholder + Represents the following attribute in the schema: phldr + + + + + Custom Rotation + Represents the following attribute in the schema: custAng + + + + + Custom Vertical Flip + Represents the following attribute in the schema: custFlipVert + + + + + Custom Horizontal Flip + Represents the following attribute in the schema: custFlipHor + + + + + Fixed Width Override + Represents the following attribute in the schema: custSzX + + + + + Fixed Height Override + Represents the following attribute in the schema: custSzY + + + + + Width Scale + Represents the following attribute in the schema: custScaleX + + + + + Height Scale + Represents the following attribute in the schema: custScaleY + + + + + Text Changed + Represents the following attribute in the schema: custT + + + + + Custom Factor Width + Represents the following attribute in the schema: custLinFactX + + + + + Custom Factor Height + Represents the following attribute in the schema: custLinFactY + + + + + Neighbor Offset Width + Represents the following attribute in the schema: custLinFactNeighborX + + + + + Neighbor Offset Height + Represents the following attribute in the schema: custLinFactNeighborY + + + + + Radius Scale + Represents the following attribute in the schema: custRadScaleRad + + + + + Include Angle Scale + Represents the following attribute in the schema: custRadScaleInc + + + + + Presentation Layout Variables. + Represents the following element tag in the schema: dgm:presLayoutVars. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + Shape Style. + Represents the following element tag in the schema: dgm:style. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + + + + Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Text Body. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:t. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBody class. + + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the PtExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the PtExtensionList class. + + + + + Initializes a new instance of the PtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PtExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PtExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DiagramDefinitionExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:ext. + + + The following table lists the possible child types: + + <dgm1612:lstStyle> + <dgm1611:autoBuNodeInfoLst> + + + + + + Initializes a new instance of the DiagramDefinitionExtension class. + + + + + Initializes a new instance of the DiagramDefinitionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramDefinitionExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramDefinitionExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the SampleData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:sampData. + + + The following table lists the possible child types: + + <dgm:dataModel> + + + + + + Initializes a new instance of the SampleData class. + + + + + Initializes a new instance of the SampleData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SampleData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SampleData class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StyleData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:styleData. + + + The following table lists the possible child types: + + <dgm:dataModel> + + + + + + Initializes a new instance of the StyleData class. + + + + + Initializes a new instance of the StyleData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleData class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColorData Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:clrData. + + + The following table lists the possible child types: + + <dgm:dataModel> + + + + + + Initializes a new instance of the ColorData class. + + + + + Initializes a new instance of the ColorData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorData class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SampleDataType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <dgm:dataModel> + + + + + + Initializes a new instance of the SampleDataType class. + + + + + Initializes a new instance of the SampleDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SampleDataType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SampleDataType class from outer XML. + + Specifies the outer XML of the element. + + + + Use Default + Represents the following attribute in the schema: useDef + + + + + Data Model. + Represents the following element tag in the schema: dgm:dataModel. + + + xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram + + + + + List of extensions to the CT_DiagramDefintions type.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is dgm:extLst. + + + The following table lists the possible child types: + + <dgm:ext> + + + + + + Initializes a new instance of the DiagramDefinitionExtensionList class. + + + + + Initializes a new instance of the DiagramDefinitionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramDefinitionExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DiagramDefinitionExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Color Application Method Type + + + + + Creates a new ColorApplicationMethodValues enum instance + + + + + Span. + When the item is serialized out as xml, its value is "span". + + + + + Cycle. + When the item is serialized out as xml, its value is "cycle". + + + + + Repeat. + When the item is serialized out as xml, its value is "repeat". + + + + + Hue Direction + + + + + Creates a new HueDirectionValues enum instance + + + + + Clockwise Hue Direction. + When the item is serialized out as xml, its value is "cw". + + + + + Counterclockwise Hue Direction. + When the item is serialized out as xml, its value is "ccw". + + + + + Point Type + + + + + Creates a new PointValues enum instance + + + + + Node. + When the item is serialized out as xml, its value is "node". + + + + + Assistant Element. + When the item is serialized out as xml, its value is "asst". + + + + + Document. + When the item is serialized out as xml, its value is "doc". + + + + + Presentation. + When the item is serialized out as xml, its value is "pres". + + + + + Parent Transition. + When the item is serialized out as xml, its value is "parTrans". + + + + + Sibling Transition. + When the item is serialized out as xml, its value is "sibTrans". + + + + + Connection Type + + + + + Creates a new ConnectionValues enum instance + + + + + Parent Of. + When the item is serialized out as xml, its value is "parOf". + + + + + Presentation Of. + When the item is serialized out as xml, its value is "presOf". + + + + + Presentation Parent Of. + When the item is serialized out as xml, its value is "presParOf". + + + + + Unknown Relationship. + When the item is serialized out as xml, its value is "unknownRelationship". + + + + + Diagram Direction Definition + + + + + Creates a new DirectionValues enum instance + + + + + Normal Direction. + When the item is serialized out as xml, its value is "norm". + + + + + Reversed Direction. + When the item is serialized out as xml, its value is "rev". + + + + + Hierarchy Branch Style Definition + + + + + Creates a new HierarchyBranchStyleValues enum instance + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Hanging. + When the item is serialized out as xml, its value is "hang". + + + + + Standard. + When the item is serialized out as xml, its value is "std". + + + + + Initial. + When the item is serialized out as xml, its value is "init". + + + + + One by One Animation Value Definition + + + + + Creates a new AnimateOneByOneValues enum instance + + + + + Disable One-by-One. + When the item is serialized out as xml, its value is "none". + + + + + One By One. + When the item is serialized out as xml, its value is "one". + + + + + By Branch One By One. + When the item is serialized out as xml, its value is "branch". + + + + + Animation Level String Definition + + + + + Creates a new AnimationLevelStringValues enum instance + + + + + Disable Level At Once. + When the item is serialized out as xml, its value is "none". + + + + + By Level Animation. + When the item is serialized out as xml, its value is "lvl". + + + + + From Center Animation. + When the item is serialized out as xml, its value is "ctr". + + + + + Resize Handle + + + + + Creates a new ResizeHandlesStringValues enum instance + + + + + Exact. + When the item is serialized out as xml, its value is "exact". + + + + + Relative. + When the item is serialized out as xml, its value is "rel". + + + + + Algorithm Types + + + + + Creates a new AlgorithmValues enum instance + + + + + Composite. + When the item is serialized out as xml, its value is "composite". + + + + + Connector Algorithm. + When the item is serialized out as xml, its value is "conn". + + + + + Cycle Algorithm. + When the item is serialized out as xml, its value is "cycle". + + + + + Hierarchy Child Algorithm. + When the item is serialized out as xml, its value is "hierChild". + + + + + Hierarchy Root Algorithm. + When the item is serialized out as xml, its value is "hierRoot". + + + + + Pyramid Algorithm. + When the item is serialized out as xml, its value is "pyra". + + + + + Linear Algorithm. + When the item is serialized out as xml, its value is "lin". + + + + + Space Algorithm. + When the item is serialized out as xml, its value is "sp". + + + + + Text Algorithm. + When the item is serialized out as xml, its value is "tx". + + + + + Snake Algorithm. + When the item is serialized out as xml, its value is "snake". + + + + + Axis Type + + + + + Creates a new AxisValues enum instance + + + + + Self. + When the item is serialized out as xml, its value is "self". + + + + + Child. + When the item is serialized out as xml, its value is "ch". + + + + + Descendant. + When the item is serialized out as xml, its value is "des". + + + + + Descendant or Self. + When the item is serialized out as xml, its value is "desOrSelf". + + + + + Parent. + When the item is serialized out as xml, its value is "par". + + + + + Ancestor. + When the item is serialized out as xml, its value is "ancst". + + + + + Ancestor or Self. + When the item is serialized out as xml, its value is "ancstOrSelf". + + + + + Follow Sibling. + When the item is serialized out as xml, its value is "followSib". + + + + + Preceding Sibling. + When the item is serialized out as xml, its value is "precedSib". + + + + + Follow. + When the item is serialized out as xml, its value is "follow". + + + + + Preceding. + When the item is serialized out as xml, its value is "preced". + + + + + Root. + When the item is serialized out as xml, its value is "root". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Boolean Constraint + + + + + Creates a new BoolOperatorValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Equal. + When the item is serialized out as xml, its value is "equ". + + + + + Greater Than or Equal to. + When the item is serialized out as xml, its value is "gte". + + + + + Less Than or Equal to. + When the item is serialized out as xml, its value is "lte". + + + + + Child Order + + + + + Creates a new ChildOrderValues enum instance + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Constraint Type + + + + + Creates a new ConstraintValues enum instance + + + + + Unknown. + When the item is serialized out as xml, its value is "none". + + + + + Alignment Offset. + When the item is serialized out as xml, its value is "alignOff". + + + + + Beginning Margin. + When the item is serialized out as xml, its value is "begMarg". + + + + + Bending Distance. + When the item is serialized out as xml, its value is "bendDist". + + + + + Beginning Padding. + When the item is serialized out as xml, its value is "begPad". + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Bottom Margin. + When the item is serialized out as xml, its value is "bMarg". + + + + + Bottom Offset. + When the item is serialized out as xml, its value is "bOff". + + + + + Center Height. + When the item is serialized out as xml, its value is "ctrX". + + + + + Center X Offset. + When the item is serialized out as xml, its value is "ctrXOff". + + + + + Center Width. + When the item is serialized out as xml, its value is "ctrY". + + + + + Center Y Offset. + When the item is serialized out as xml, its value is "ctrYOff". + + + + + Connection Distance. + When the item is serialized out as xml, its value is "connDist". + + + + + Diameter. + When the item is serialized out as xml, its value is "diam". + + + + + End Margin. + When the item is serialized out as xml, its value is "endMarg". + + + + + End Padding. + When the item is serialized out as xml, its value is "endPad". + + + + + Height. + When the item is serialized out as xml, its value is "h". + + + + + Arrowhead Height. + When the item is serialized out as xml, its value is "hArH". + + + + + Height Offset. + When the item is serialized out as xml, its value is "hOff". + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Left Margin. + When the item is serialized out as xml, its value is "lMarg". + + + + + Left Offset. + When the item is serialized out as xml, its value is "lOff". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Right Margin. + When the item is serialized out as xml, its value is "rMarg". + + + + + Right Offset. + When the item is serialized out as xml, its value is "rOff". + + + + + Primary Font Size. + When the item is serialized out as xml, its value is "primFontSz". + + + + + Pyramid Accent Ratio. + When the item is serialized out as xml, its value is "pyraAcctRatio". + + + + + Secondary Font Size. + When the item is serialized out as xml, its value is "secFontSz". + + + + + Sibling Spacing. + When the item is serialized out as xml, its value is "sibSp". + + + + + Secondary Sibling Spacing. + When the item is serialized out as xml, its value is "secSibSp". + + + + + Spacing. + When the item is serialized out as xml, its value is "sp". + + + + + Stem Thickness. + When the item is serialized out as xml, its value is "stemThick". + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Top Margin. + When the item is serialized out as xml, its value is "tMarg". + + + + + Top Offset. + When the item is serialized out as xml, its value is "tOff". + + + + + User Defined A. + When the item is serialized out as xml, its value is "userA". + + + + + User Defined B. + When the item is serialized out as xml, its value is "userB". + + + + + User Defined C. + When the item is serialized out as xml, its value is "userC". + + + + + User Defined D. + When the item is serialized out as xml, its value is "userD". + + + + + User Defined E. + When the item is serialized out as xml, its value is "userE". + + + + + User Defined F. + When the item is serialized out as xml, its value is "userF". + + + + + User Defined G. + When the item is serialized out as xml, its value is "userG". + + + + + User Defined H. + When the item is serialized out as xml, its value is "userH". + + + + + User Defined I. + When the item is serialized out as xml, its value is "userI". + + + + + User Defined J. + When the item is serialized out as xml, its value is "userJ". + + + + + User Defined K. + When the item is serialized out as xml, its value is "userK". + + + + + User Defined L. + When the item is serialized out as xml, its value is "userL". + + + + + User Defined M. + When the item is serialized out as xml, its value is "userM". + + + + + User Defined N. + When the item is serialized out as xml, its value is "userN". + + + + + User Defined O. + When the item is serialized out as xml, its value is "userO". + + + + + User Defined P. + When the item is serialized out as xml, its value is "userP". + + + + + User Defined Q. + When the item is serialized out as xml, its value is "userQ". + + + + + User Defined R. + When the item is serialized out as xml, its value is "userR". + + + + + User Defined S. + When the item is serialized out as xml, its value is "userS". + + + + + User Defined T. + When the item is serialized out as xml, its value is "userT". + + + + + User Defined U. + When the item is serialized out as xml, its value is "userU". + + + + + User Defined V. + When the item is serialized out as xml, its value is "userV". + + + + + User Defined W. + When the item is serialized out as xml, its value is "userW". + + + + + User Defined X. + When the item is serialized out as xml, its value is "userX". + + + + + User Defined Y. + When the item is serialized out as xml, its value is "userY". + + + + + User Defined Z. + When the item is serialized out as xml, its value is "userZ". + + + + + Width. + When the item is serialized out as xml, its value is "w". + + + + + Arrowhead Width. + When the item is serialized out as xml, its value is "wArH". + + + + + Width Offset. + When the item is serialized out as xml, its value is "wOff". + + + + + Constraint Relationship + + + + + Creates a new ConstraintRelationshipValues enum instance + + + + + Self. + When the item is serialized out as xml, its value is "self". + + + + + Child. + When the item is serialized out as xml, its value is "ch". + + + + + Descendant. + When the item is serialized out as xml, its value is "des". + + + + + Element Type + + + + + Creates a new ElementValues enum instance + + + + + All. + When the item is serialized out as xml, its value is "all". + + + + + Document. + When the item is serialized out as xml, its value is "doc". + + + + + Node. + When the item is serialized out as xml, its value is "node". + + + + + Normal. + When the item is serialized out as xml, its value is "norm". + + + + + Non Normal. + When the item is serialized out as xml, its value is "nonNorm". + + + + + Assistant. + When the item is serialized out as xml, its value is "asst". + + + + + Non Assistant. + When the item is serialized out as xml, its value is "nonAsst". + + + + + Parent Transition. + When the item is serialized out as xml, its value is "parTrans". + + + + + Presentation. + When the item is serialized out as xml, its value is "pres". + + + + + Sibling Transition. + When the item is serialized out as xml, its value is "sibTrans". + + + + + Parameter Identifier + + + + + Creates a new ParameterIdValues enum instance + + + + + Horizontal Alignment. + When the item is serialized out as xml, its value is "horzAlign". + + + + + Vertical Alignment. + When the item is serialized out as xml, its value is "vertAlign". + + + + + Child Direction. + When the item is serialized out as xml, its value is "chDir". + + + + + Child Alignment. + When the item is serialized out as xml, its value is "chAlign". + + + + + Secondary Child Alignment. + When the item is serialized out as xml, its value is "secChAlign". + + + + + Linear Direction. + When the item is serialized out as xml, its value is "linDir". + + + + + Secondary Linear Direction. + When the item is serialized out as xml, its value is "secLinDir". + + + + + Start Element. + When the item is serialized out as xml, its value is "stElem". + + + + + Bend Point. + When the item is serialized out as xml, its value is "bendPt". + + + + + Connection Route. + When the item is serialized out as xml, its value is "connRout". + + + + + Beginning Arrowhead Style. + When the item is serialized out as xml, its value is "begSty". + + + + + End Style. + When the item is serialized out as xml, its value is "endSty". + + + + + Connector Dimension. + When the item is serialized out as xml, its value is "dim". + + + + + Rotation Path. + When the item is serialized out as xml, its value is "rotPath". + + + + + Center Shape Mapping. + When the item is serialized out as xml, its value is "ctrShpMap". + + + + + Node Horizontal Alignment. + When the item is serialized out as xml, its value is "nodeHorzAlign". + + + + + Node Vertical Alignment. + When the item is serialized out as xml, its value is "nodeVertAlign". + + + + + Fallback Scale. + When the item is serialized out as xml, its value is "fallback". + + + + + Text Direction. + When the item is serialized out as xml, its value is "txDir". + + + + + Pyramid Accent Position. + When the item is serialized out as xml, its value is "pyraAcctPos". + + + + + Pyramid Accent Text Margin. + When the item is serialized out as xml, its value is "pyraAcctTxMar". + + + + + Text Block Direction. + When the item is serialized out as xml, its value is "txBlDir". + + + + + Text Anchor Horizontal. + When the item is serialized out as xml, its value is "txAnchorHorz". + + + + + Text Anchor Vertical. + When the item is serialized out as xml, its value is "txAnchorVert". + + + + + Text Anchor Horizontal With Children. + When the item is serialized out as xml, its value is "txAnchorHorzCh". + + + + + Text Anchor Vertical With Children. + When the item is serialized out as xml, its value is "txAnchorVertCh". + + + + + Parent Text Left-to-Right Alignment. + When the item is serialized out as xml, its value is "parTxLTRAlign". + + + + + Parent Text Right-to-Left Alignment. + When the item is serialized out as xml, its value is "parTxRTLAlign". + + + + + Shape Text Left-to-Right Alignment. + When the item is serialized out as xml, its value is "shpTxLTRAlignCh". + + + + + Shape Text Right-to-Left Alignment. + When the item is serialized out as xml, its value is "shpTxRTLAlignCh". + + + + + Auto Text Rotation. + When the item is serialized out as xml, its value is "autoTxRot". + + + + + Grow Direction. + When the item is serialized out as xml, its value is "grDir". + + + + + Flow Direction. + When the item is serialized out as xml, its value is "flowDir". + + + + + Continue Direction. + When the item is serialized out as xml, its value is "contDir". + + + + + Breakpoint. + When the item is serialized out as xml, its value is "bkpt". + + + + + Offset. + When the item is serialized out as xml, its value is "off". + + + + + Hierarchy Alignment. + When the item is serialized out as xml, its value is "hierAlign". + + + + + Breakpoint Fixed Value. + When the item is serialized out as xml, its value is "bkPtFixedVal". + + + + + Start Bullets At Level. + When the item is serialized out as xml, its value is "stBulletLvl". + + + + + Start Angle. + When the item is serialized out as xml, its value is "stAng". + + + + + Span Angle. + When the item is serialized out as xml, its value is "spanAng". + + + + + Aspect Ratio. + When the item is serialized out as xml, its value is "ar". + + + + + Line Spacing Parent. + When the item is serialized out as xml, its value is "lnSpPar". + + + + + Line Spacing After Parent Paragraph. + When the item is serialized out as xml, its value is "lnSpAfParP". + + + + + Line Spacing Children. + When the item is serialized out as xml, its value is "lnSpCh". + + + + + Line Spacing After Children Paragraph. + When the item is serialized out as xml, its value is "lnSpAfChP". + + + + + Route Shortest Distance. + When the item is serialized out as xml, its value is "rtShortDist". + + + + + Text Alignment. + When the item is serialized out as xml, its value is "alignTx". + + + + + Pyramid Level Node. + When the item is serialized out as xml, its value is "pyraLvlNode". + + + + + Pyramid Accent Background Node. + When the item is serialized out as xml, its value is "pyraAcctBkgdNode". + + + + + Pyramid Accent Text Node. + When the item is serialized out as xml, its value is "pyraAcctTxNode". + + + + + Source Node. + When the item is serialized out as xml, its value is "srcNode". + + + + + Destination Node. + When the item is serialized out as xml, its value is "dstNode". + + + + + Beginning Points. + When the item is serialized out as xml, its value is "begPts". + + + + + End Points. + When the item is serialized out as xml, its value is "endPts". + + + + + Function Type + + + + + Creates a new FunctionValues enum instance + + + + + Count. + When the item is serialized out as xml, its value is "cnt". + + + + + Position. + When the item is serialized out as xml, its value is "pos". + + + + + Reverse Position. + When the item is serialized out as xml, its value is "revPos". + + + + + Position Even. + When the item is serialized out as xml, its value is "posEven". + + + + + Position Odd. + When the item is serialized out as xml, its value is "posOdd". + + + + + Variable. + When the item is serialized out as xml, its value is "var". + + + + + Depth. + When the item is serialized out as xml, its value is "depth". + + + + + Max Depth. + When the item is serialized out as xml, its value is "maxDepth". + + + + + Function Operator + + + + + Creates a new FunctionOperatorValues enum instance + + + + + Equal. + When the item is serialized out as xml, its value is "equ". + + + + + Not Equal To. + When the item is serialized out as xml, its value is "neq". + + + + + Greater Than. + When the item is serialized out as xml, its value is "gt". + + + + + Less Than. + When the item is serialized out as xml, its value is "lt". + + + + + Greater Than or Equal to. + When the item is serialized out as xml, its value is "gte". + + + + + Less Than or Equal to. + When the item is serialized out as xml, its value is "lte". + + + + + Horizontal Alignment + + + + + Creates a new HorizontalAlignmentValues enum instance + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Center. + When the item is serialized out as xml, its value is "ctr". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Child Direction + + + + + Creates a new ChildDirectionValues enum instance + + + + + Horizontal. + When the item is serialized out as xml, its value is "horz". + + + + + Vertical. + When the item is serialized out as xml, its value is "vert". + + + + + Child Alignment + + + + + Creates a new ChildAlignmentValues enum instance + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Secondary Child Alignment + + + + + Creates a new SecondaryChildAlignmentValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Linear Direction + + + + + Creates a new LinearDirectionValues enum instance + + + + + From Left. + When the item is serialized out as xml, its value is "fromL". + + + + + From Right. + When the item is serialized out as xml, its value is "fromR". + + + + + From Top. + When the item is serialized out as xml, its value is "fromT". + + + + + From Bottom. + When the item is serialized out as xml, its value is "fromB". + + + + + Secondary Linear Direction + + + + + Creates a new SecondaryLinearDirectionValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + From Left. + When the item is serialized out as xml, its value is "fromL". + + + + + From Right. + When the item is serialized out as xml, its value is "fromR". + + + + + From Top. + When the item is serialized out as xml, its value is "fromT". + + + + + From Bottom. + When the item is serialized out as xml, its value is "fromB". + + + + + Starting Element + + + + + Creates a new StartingElementValues enum instance + + + + + Node. + When the item is serialized out as xml, its value is "node". + + + + + Transition. + When the item is serialized out as xml, its value is "trans". + + + + + Rotation Path + + + + + Creates a new RotationPathValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Along Path. + When the item is serialized out as xml, its value is "alongPath". + + + + + Center Shape Mapping + + + + + Creates a new CenterShapeMappingValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + First Node. + When the item is serialized out as xml, its value is "fNode". + + + + + Bend Point + + + + + Creates a new BendPointValues enum instance + + + + + Beginning. + When the item is serialized out as xml, its value is "beg". + + + + + Default. + When the item is serialized out as xml, its value is "def". + + + + + End. + When the item is serialized out as xml, its value is "end". + + + + + Connector Routing + + + + + Creates a new ConnectorRoutingValues enum instance + + + + + Straight. + When the item is serialized out as xml, its value is "stra". + + + + + Bending. + When the item is serialized out as xml, its value is "bend". + + + + + Curve. + When the item is serialized out as xml, its value is "curve". + + + + + Long Curve. + When the item is serialized out as xml, its value is "longCurve". + + + + + Arrowhead Styles + + + + + Creates a new ArrowheadStyleValues enum instance + + + + + Auto. + When the item is serialized out as xml, its value is "auto". + + + + + Arrowhead Present. + When the item is serialized out as xml, its value is "arr". + + + + + No Arrowhead. + When the item is serialized out as xml, its value is "noArr". + + + + + Connector Dimension + + + + + Creates a new ConnectorDimensionValues enum instance + + + + + 1 Dimension. + When the item is serialized out as xml, its value is "1D". + + + + + 2 Dimensions. + When the item is serialized out as xml, its value is "2D". + + + + + Custom. + When the item is serialized out as xml, its value is "cust". + + + + + Connector Point + + + + + Creates a new ConnectorPointValues enum instance + + + + + Auto. + When the item is serialized out as xml, its value is "auto". + + + + + Bottom Center. + When the item is serialized out as xml, its value is "bCtr". + + + + + Center. + When the item is serialized out as xml, its value is "ctr". + + + + + Middle Left. + When the item is serialized out as xml, its value is "midL". + + + + + Middle Right. + When the item is serialized out as xml, its value is "midR". + + + + + Top Center. + When the item is serialized out as xml, its value is "tCtr". + + + + + Bottom Left. + When the item is serialized out as xml, its value is "bL". + + + + + Bottom Right. + When the item is serialized out as xml, its value is "bR". + + + + + Top Left. + When the item is serialized out as xml, its value is "tL". + + + + + Top Right. + When the item is serialized out as xml, its value is "tR". + + + + + Radial. + When the item is serialized out as xml, its value is "radial". + + + + + Node Horizontal Alignment + + + + + Creates a new NodeHorizontalAlignmentValues enum instance + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Center. + When the item is serialized out as xml, its value is "ctr". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Node Vertical Alignment + + + + + Creates a new NodeVerticalAlignmentValues enum instance + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Middle. + When the item is serialized out as xml, its value is "mid". + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Fallback Dimension + + + + + Creates a new FallbackDimensionValues enum instance + + + + + 1 Dimension. + When the item is serialized out as xml, its value is "1D". + + + + + 2 Dimensions. + When the item is serialized out as xml, its value is "2D". + + + + + Text Direction + + + + + Creates a new TextDirectionValues enum instance + + + + + From Top. + When the item is serialized out as xml, its value is "fromT". + + + + + From Bottom. + When the item is serialized out as xml, its value is "fromB". + + + + + Pyramid Accent Position + + + + + Creates a new PyramidAccentPositionValues enum instance + + + + + Before. + When the item is serialized out as xml, its value is "bef". + + + + + Pyramid Accent After. + When the item is serialized out as xml, its value is "aft". + + + + + Pyramid Accent Text Margin + + + + + Creates a new PyramidAccentTextMarginValues enum instance + + + + + Step. + When the item is serialized out as xml, its value is "step". + + + + + Stack. + When the item is serialized out as xml, its value is "stack". + + + + + Text Block Direction + + + + + Creates a new TextBlockDirectionValues enum instance + + + + + Horizontal. + When the item is serialized out as xml, its value is "horz". + + + + + Vertical Direction. + When the item is serialized out as xml, its value is "vert". + + + + + Text Anchor Horizontal + + + + + Creates a new TextAnchorHorizontalValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Center. + When the item is serialized out as xml, its value is "ctr". + + + + + Text Anchor Vertical + + + + + Creates a new TextAnchorVerticalValues enum instance + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Middle. + When the item is serialized out as xml, its value is "mid". + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Text Alignment + + + + + Creates a new TextAlignmentValues enum instance + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Center. + When the item is serialized out as xml, its value is "ctr". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Auto Text Rotation + + + + + Creates a new AutoTextRotationValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Upright. + When the item is serialized out as xml, its value is "upr". + + + + + Gravity. + When the item is serialized out as xml, its value is "grav". + + + + + Grow Direction + + + + + Creates a new GrowDirectionValues enum instance + + + + + Top Left. + When the item is serialized out as xml, its value is "tL". + + + + + Top Right. + When the item is serialized out as xml, its value is "tR". + + + + + Bottom Left. + When the item is serialized out as xml, its value is "bL". + + + + + Bottom Right. + When the item is serialized out as xml, its value is "bR". + + + + + Flow Direction + + + + + Creates a new FlowDirectionValues enum instance + + + + + Row. + When the item is serialized out as xml, its value is "row". + + + + + Column. + When the item is serialized out as xml, its value is "col". + + + + + Continue Direction + + + + + Creates a new ContinueDirectionValues enum instance + + + + + Reverse Direction. + When the item is serialized out as xml, its value is "revDir". + + + + + Same Direction. + When the item is serialized out as xml, its value is "sameDir". + + + + + Breakpoint + + + + + Creates a new BreakpointValues enum instance + + + + + End of Canvas. + When the item is serialized out as xml, its value is "endCnv". + + + + + Balanced. + When the item is serialized out as xml, its value is "bal". + + + + + Fixed. + When the item is serialized out as xml, its value is "fixed". + + + + + Offset + + + + + Creates a new OffsetValues enum instance + + + + + Center. + When the item is serialized out as xml, its value is "ctr". + + + + + Offset. + When the item is serialized out as xml, its value is "off". + + + + + Hierarchy Alignment + + + + + Creates a new HierarchyAlignmentValues enum instance + + + + + Top Left. + When the item is serialized out as xml, its value is "tL". + + + + + Top Right. + When the item is serialized out as xml, its value is "tR". + + + + + Top Center Children. + When the item is serialized out as xml, its value is "tCtrCh". + + + + + Top Center Descendants. + When the item is serialized out as xml, its value is "tCtrDes". + + + + + Bottom Left. + When the item is serialized out as xml, its value is "bL". + + + + + Bottom Right. + When the item is serialized out as xml, its value is "bR". + + + + + Bottom Center Child. + When the item is serialized out as xml, its value is "bCtrCh". + + + + + Bottom Center Descendant. + When the item is serialized out as xml, its value is "bCtrDes". + + + + + Left Top. + When the item is serialized out as xml, its value is "lT". + + + + + Left Bottom. + When the item is serialized out as xml, its value is "lB". + + + + + Left Center Child. + When the item is serialized out as xml, its value is "lCtrCh". + + + + + Left Center Descendant. + When the item is serialized out as xml, its value is "lCtrDes". + + + + + Right Top. + When the item is serialized out as xml, its value is "rT". + + + + + Right Bottom. + When the item is serialized out as xml, its value is "rB". + + + + + Right Center Children. + When the item is serialized out as xml, its value is "rCtrCh". + + + + + Right Center Descendants. + When the item is serialized out as xml, its value is "rCtrDes". + + + + + Variable Type + + + + + Creates a new VariableValues enum instance + + + + + Unknown. + When the item is serialized out as xml, its value is "none". + + + + + Organizational Chart Algorithm. + When the item is serialized out as xml, its value is "orgChart". + + + + + Child Max. + When the item is serialized out as xml, its value is "chMax". + + + + + Child Preference. + When the item is serialized out as xml, its value is "chPref". + + + + + Bullets Enabled. + When the item is serialized out as xml, its value is "bulEnabled". + + + + + Direction. + When the item is serialized out as xml, its value is "dir". + + + + + Hierarchy Branch. + When the item is serialized out as xml, its value is "hierBranch". + + + + + Animate One. + When the item is serialized out as xml, its value is "animOne". + + + + + Animation Level. + When the item is serialized out as xml, its value is "animLvl". + + + + + Resize Handles. + When the item is serialized out as xml, its value is "resizeHandles". + + + + + Output Shape Type + + + + + Creates a new OutputShapeValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Connection. + When the item is serialized out as xml, its value is "conn". + + + + + Vertical Alignment + + + + + Creates a new VerticalAlignmentValues enum instance + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Middle. + When the item is serialized out as xml, its value is "mid". + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + top. + When the item is serialized out as xml, its value is "top". + This item is only available in Office 2010 and later. + + + + + center. + When the item is serialized out as xml, its value is "center". + This item is only available in Office 2010 and later. + + + + + bottom. + When the item is serialized out as xml, its value is "bottom". + This item is only available in Office 2010 and later. + + + + + Locked Canvas Container. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is lc:lockedCanvas. + + + The following table lists the possible child types: + + <a:grpSpPr> + <a:cxnSp> + <a:graphicFrame> + <a:grpSp> + <a:extLst> + <a:nvGrpSpPr> + <a:pic> + <a:sp> + <a:txSp> + <a14:contentPart> + + + + + + Initializes a new instance of the LockedCanvas class. + + + + + Initializes a new instance of the LockedCanvas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LockedCanvas class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LockedCanvas class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Group Shape. + Represents the following element tag in the schema: a:nvGrpSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Visual Group Shape Properties. + Represents the following element tag in the schema: a:grpSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Audio from CD. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:audioCd. + + + The following table lists the possible child types: + + <a:st> + <a:end> + <a:extLst> + + + + + + Initializes a new instance of the AudioFromCD class. + + + + + Initializes a new instance of the AudioFromCD class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AudioFromCD class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AudioFromCD class from outer XML. + + Specifies the outer XML of the element. + + + + Audio Start Time. + Represents the following element tag in the schema: a:st. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Audio End Time. + Represents the following element tag in the schema: a:end. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Audio from WAV File. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:wavAudioFile. + + + + + Initializes a new instance of the WaveAudioFile class. + + + + + + + + Sound to play.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:snd. + + + + + Initializes a new instance of the HyperlinkSound class. + + + + + + + + Defines the EmbeddedWavAudioFileType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmbeddedWavAudioFileType class. + + + + + Embedded Audio File Relationship ID + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Sound Name + Represents the following attribute in the schema: name + + + + + Recognized Built-In Sound + Represents the following attribute in the schema: builtIn + + + + + Audio from File. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:audioFile. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the AudioFromFile class. + + + + + Initializes a new instance of the AudioFromFile class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AudioFromFile class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AudioFromFile class from outer XML. + + Specifies the outer XML of the element. + + + + Linked Relationship ID + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Video from File. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:videoFile. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the VideoFromFile class. + + + + + Initializes a new instance of the VideoFromFile class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VideoFromFile class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VideoFromFile class from outer XML. + + Specifies the outer XML of the element. + + + + Linked Relationship ID + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + QuickTime from File. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:quickTimeFile. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the QuickTimeFromFile class. + + + + + Initializes a new instance of the QuickTimeFromFile class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuickTimeFromFile class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuickTimeFromFile class from outer XML. + + Specifies the outer XML of the element. + + + + Linked Relationship ID + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Tint. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tint. + + + + + Initializes a new instance of the Tint class. + + + + + + + + Shade. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:shade. + + + + + Initializes a new instance of the Shade class. + + + + + + + + Alpha. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alpha. + + + + + Initializes a new instance of the Alpha class. + + + + + + + + Defines the PositiveFixedPercentageType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the PositiveFixedPercentageType class. + + + + + Value + Represents the following attribute in the schema: val + + + + + Complement. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:comp. + + + + + Initializes a new instance of the Complement class. + + + + + + + + Inverse. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:inv. + + + + + Initializes a new instance of the Inverse class. + + + + + + + + Gray. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:gray. + + + + + Initializes a new instance of the Gray class. + + + + + + + + Alpha Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaOff. + + + + + Initializes a new instance of the AlphaOffset class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Alpha Modulation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaMod. + + + + + Initializes a new instance of the AlphaModulation class. + + + + + + + + Hue Modulate. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hueMod. + + + + + Initializes a new instance of the HueModulation class. + + + + + + + + Defines the PositivePercentageType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the PositivePercentageType class. + + + + + Value + Represents the following attribute in the schema: val + + + + + Hue. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hue. + + + + + Initializes a new instance of the Hue class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Hue Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hueOff. + + + + + Initializes a new instance of the HueOffset class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Saturation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:sat. + + + + + Initializes a new instance of the Saturation class. + + + + + + + + Saturation Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:satOff. + + + + + Initializes a new instance of the SaturationOffset class. + + + + + + + + Saturation Modulation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:satMod. + + + + + Initializes a new instance of the SaturationModulation class. + + + + + + + + Luminance. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lum. + + + + + Initializes a new instance of the Luminance class. + + + + + + + + Luminance Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lumOff. + + + + + Initializes a new instance of the LuminanceOffset class. + + + + + + + + Luminance Modulation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lumMod. + + + + + Initializes a new instance of the LuminanceModulation class. + + + + + + + + Red. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:red. + + + + + Initializes a new instance of the Red class. + + + + + + + + Red Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:redOff. + + + + + Initializes a new instance of the RedOffset class. + + + + + + + + Red Modulation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:redMod. + + + + + Initializes a new instance of the RedModulation class. + + + + + + + + Green. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:green. + + + + + Initializes a new instance of the Green class. + + + + + + + + Green Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:greenOff. + + + + + Initializes a new instance of the GreenOffset class. + + + + + + + + Green Modification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:greenMod. + + + + + Initializes a new instance of the GreenModulation class. + + + + + + + + Blue. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:blue. + + + + + Initializes a new instance of the Blue class. + + + + + + + + Blue Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:blueOff. + + + + + Initializes a new instance of the BlueOffset class. + + + + + + + + Blue Modification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:blueMod. + + + + + Initializes a new instance of the BlueModulation class. + + + + + + + + Defines the PercentageType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the PercentageType class. + + + + + Value + Represents the following attribute in the schema: val + + + + + Gamma. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:gamma. + + + + + Initializes a new instance of the Gamma class. + + + + + + + + Inverse Gamma. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:invGamma. + + + + + Initializes a new instance of the InverseGamma class. + + + + + + + + Extension. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + + + Initializes a new instance of the Extension class. + + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + RGB Color Model - Percentage Variant. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:scrgbClr. + + + The following table lists the possible child types: + + <a:hueOff> + <a:comp> + <a:alphaOff> + <a:gamma> + <a:gray> + <a:invGamma> + <a:inv> + <a:sat> + <a:satOff> + <a:satMod> + <a:lum> + <a:lumOff> + <a:lumMod> + <a:red> + <a:redOff> + <a:redMod> + <a:green> + <a:greenOff> + <a:greenMod> + <a:blue> + <a:blueOff> + <a:blueMod> + <a:hue> + <a:tint> + <a:shade> + <a:alpha> + <a:alphaMod> + <a:hueMod> + + + + + + Initializes a new instance of the RgbColorModelPercentage class. + + + + + Initializes a new instance of the RgbColorModelPercentage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RgbColorModelPercentage class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RgbColorModelPercentage class from outer XML. + + Specifies the outer XML of the element. + + + + Red + Represents the following attribute in the schema: r + + + + + Green + Represents the following attribute in the schema: g + + + + + Blue + Represents the following attribute in the schema: b + + + + + + + + RGB Color Model - Hex Variant. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:srgbClr. + + + The following table lists the possible child types: + + <a:hueOff> + <a:comp> + <a:alphaOff> + <a:gamma> + <a:gray> + <a:invGamma> + <a:inv> + <a:sat> + <a:satOff> + <a:satMod> + <a:lum> + <a:lumOff> + <a:lumMod> + <a:red> + <a:redOff> + <a:redMod> + <a:green> + <a:greenOff> + <a:greenMod> + <a:blue> + <a:blueOff> + <a:blueMod> + <a:hue> + <a:tint> + <a:shade> + <a:alpha> + <a:alphaMod> + <a:hueMod> + + + + + + Initializes a new instance of the RgbColorModelHex class. + + + + + Initializes a new instance of the RgbColorModelHex class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RgbColorModelHex class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RgbColorModelHex class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: val + + + + + legacySpreadsheetColorIndex, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: a14:legacySpreadsheetColorIndex + + + xmlns:a14=http://schemas.microsoft.com/office/drawing/2010/main + + + + + + + + Hue, Saturation, Luminance Color Model. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hslClr. + + + The following table lists the possible child types: + + <a:hueOff> + <a:comp> + <a:alphaOff> + <a:gamma> + <a:gray> + <a:invGamma> + <a:inv> + <a:sat> + <a:satOff> + <a:satMod> + <a:lum> + <a:lumOff> + <a:lumMod> + <a:red> + <a:redOff> + <a:redMod> + <a:green> + <a:greenOff> + <a:greenMod> + <a:blue> + <a:blueOff> + <a:blueMod> + <a:hue> + <a:tint> + <a:shade> + <a:alpha> + <a:alphaMod> + <a:hueMod> + + + + + + Initializes a new instance of the HslColor class. + + + + + Initializes a new instance of the HslColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HslColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HslColor class from outer XML. + + Specifies the outer XML of the element. + + + + Hue + Represents the following attribute in the schema: hue + + + + + Saturation + Represents the following attribute in the schema: sat + + + + + Luminance + Represents the following attribute in the schema: lum + + + + + + + + System Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:sysClr. + + + The following table lists the possible child types: + + <a:hueOff> + <a:comp> + <a:alphaOff> + <a:gamma> + <a:gray> + <a:invGamma> + <a:inv> + <a:sat> + <a:satOff> + <a:satMod> + <a:lum> + <a:lumOff> + <a:lumMod> + <a:red> + <a:redOff> + <a:redMod> + <a:green> + <a:greenOff> + <a:greenMod> + <a:blue> + <a:blueOff> + <a:blueMod> + <a:hue> + <a:tint> + <a:shade> + <a:alpha> + <a:alphaMod> + <a:hueMod> + + + + + + Initializes a new instance of the SystemColor class. + + + + + Initializes a new instance of the SystemColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SystemColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SystemColor class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: val + + + + + Last Color + Represents the following attribute in the schema: lastClr + + + + + + + + Scheme Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:schemeClr. + + + The following table lists the possible child types: + + <a:hueOff> + <a:comp> + <a:alphaOff> + <a:gamma> + <a:gray> + <a:invGamma> + <a:inv> + <a:sat> + <a:satOff> + <a:satMod> + <a:lum> + <a:lumOff> + <a:lumMod> + <a:red> + <a:redOff> + <a:redMod> + <a:green> + <a:greenOff> + <a:greenMod> + <a:blue> + <a:blueOff> + <a:blueMod> + <a:hue> + <a:tint> + <a:shade> + <a:alpha> + <a:alphaMod> + <a:hueMod> + + + + + + Initializes a new instance of the SchemeColor class. + + + + + Initializes a new instance of the SchemeColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SchemeColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SchemeColor class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Preset Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:prstClr. + + + The following table lists the possible child types: + + <a:hueOff> + <a:comp> + <a:alphaOff> + <a:gamma> + <a:gray> + <a:invGamma> + <a:inv> + <a:sat> + <a:satOff> + <a:satMod> + <a:lum> + <a:lumOff> + <a:lumMod> + <a:red> + <a:redOff> + <a:redMod> + <a:green> + <a:greenOff> + <a:greenMod> + <a:blue> + <a:blueOff> + <a:blueMod> + <a:hue> + <a:tint> + <a:shade> + <a:alpha> + <a:alphaMod> + <a:hueMod> + + + + + + Initializes a new instance of the PresetColor class. + + + + + Initializes a new instance of the PresetColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresetColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresetColor class from outer XML. + + Specifies the outer XML of the element. + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Apply 3D shape properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:sp3d. + + + The following table lists the possible child types: + + <a:bevelT> + <a:bevelB> + <a:extrusionClr> + <a:contourClr> + <a:extLst> + + + + + + Initializes a new instance of the Shape3DType class. + + + + + Initializes a new instance of the Shape3DType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape3DType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape3DType class from outer XML. + + Specifies the outer XML of the element. + + + + Shape Depth + Represents the following attribute in the schema: z + + + + + Extrusion Height + Represents the following attribute in the schema: extrusionH + + + + + Contour Width + Represents the following attribute in the schema: contourW + + + + + Preset Material Type + Represents the following attribute in the schema: prstMaterial + + + + + Top Bevel. + Represents the following element tag in the schema: a:bevelT. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Bottom Bevel. + Represents the following element tag in the schema: a:bevelB. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extrusion Color. + Represents the following element tag in the schema: a:extrusionClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Contour Color. + Represents the following element tag in the schema: a:contourClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + No text in 3D scene. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:flatTx. + + + + + Initializes a new instance of the FlatText class. + + + + + Z Coordinate + Represents the following attribute in the schema: z + + + + + + + + Linear Gradient Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lin. + + + + + Initializes a new instance of the LinearGradientFill class. + + + + + Angle + Represents the following attribute in the schema: ang + + + + + Scaled + Represents the following attribute in the schema: scaled + + + + + + + + Path Gradient. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:path. + + + The following table lists the possible child types: + + <a:fillToRect> + + + + + + Initializes a new instance of the PathGradientFill class. + + + + + Initializes a new instance of the PathGradientFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PathGradientFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PathGradientFill class from outer XML. + + Specifies the outer XML of the element. + + + + Gradient Fill Path + Represents the following attribute in the schema: path + + + + + Fill To Rectangle. + Represents the following element tag in the schema: a:fillToRect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Tile. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tile. + + + + + Initializes a new instance of the Tile class. + + + + + Horizontal Offset + Represents the following attribute in the schema: tx + + + + + Vertical Offset + Represents the following attribute in the schema: ty + + + + + Horizontal Ratio + Represents the following attribute in the schema: sx + + + + + Vertical Ratio + Represents the following attribute in the schema: sy + + + + + Tile Flipping + Represents the following attribute in the schema: flip + + + + + Alignment + Represents the following attribute in the schema: algn + + + + + + + + Stretch. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:stretch. + + + The following table lists the possible child types: + + <a:fillRect> + + + + + + Initializes a new instance of the Stretch class. + + + + + Initializes a new instance of the Stretch class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Stretch class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Stretch class from outer XML. + + Specifies the outer XML of the element. + + + + Fill Rectangle. + Represents the following element tag in the schema: a:fillRect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NoFill Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:noFill. + + + + + Initializes a new instance of the NoFill class. + + + + + + + + Defines the SolidFill Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:solidFill. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the SolidFill class. + + + + + Initializes a new instance of the SolidFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SolidFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SolidFill class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the GradientFill Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:gradFill. + + + The following table lists the possible child types: + + <a:gsLst> + <a:lin> + <a:path> + <a:tileRect> + + + + + + Initializes a new instance of the GradientFill class. + + + + + Initializes a new instance of the GradientFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientFill class from outer XML. + + Specifies the outer XML of the element. + + + + Tile Flip + Represents the following attribute in the schema: flip + + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + Gradient Stop List. + Represents the following element tag in the schema: a:gsLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the BlipFill Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:blipFill. + + + The following table lists the possible child types: + + <a:blip> + <a:srcRect> + <a:stretch> + <a:tile> + + + + + + Initializes a new instance of the BlipFill class. + + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class from outer XML. + + Specifies the outer XML of the element. + + + + DPI Setting + Represents the following attribute in the schema: dpi + + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + Blip. + Represents the following element tag in the schema: a:blip. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Source Rectangle. + Represents the following element tag in the schema: a:srcRect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Pattern Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:pattFill. + + + The following table lists the possible child types: + + <a:fgClr> + <a:bgClr> + + + + + + Initializes a new instance of the PatternFill class. + + + + + Initializes a new instance of the PatternFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PatternFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PatternFill class from outer XML. + + Specifies the outer XML of the element. + + + + Preset Pattern + Represents the following attribute in the schema: prst + + + + + Foreground color. + Represents the following element tag in the schema: a:fgClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Background color. + Represents the following element tag in the schema: a:bgClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Group Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:grpFill. + + + + + Initializes a new instance of the GroupFill class. + + + + + + + + Effect Container. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cont. + + + The following table lists the possible child types: + + <a:alphaBiLevel> + <a:alphaCeiling> + <a:alphaFloor> + <a:alphaInv> + <a:alphaMod> + <a:alphaModFix> + <a:alphaOutset> + <a:alphaRepl> + <a:biLevel> + <a:blend> + <a:blur> + <a:clrChange> + <a:clrRepl> + <a:duotone> + <a:cont> + <a:effect> + <a:fill> + <a:fillOverlay> + <a:glow> + <a:grayscl> + <a:hsl> + <a:innerShdw> + <a:lum> + <a:outerShdw> + <a:prstShdw> + <a:reflection> + <a:relOff> + <a:softEdge> + <a:tint> + <a:xfrm> + + + + + + Initializes a new instance of the EffectContainer class. + + + + + Initializes a new instance of the EffectContainer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectContainer class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectContainer class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Effect Container. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:effectDag. + + + The following table lists the possible child types: + + <a:alphaBiLevel> + <a:alphaCeiling> + <a:alphaFloor> + <a:alphaInv> + <a:alphaMod> + <a:alphaModFix> + <a:alphaOutset> + <a:alphaRepl> + <a:biLevel> + <a:blend> + <a:blur> + <a:clrChange> + <a:clrRepl> + <a:duotone> + <a:cont> + <a:effect> + <a:fill> + <a:fillOverlay> + <a:glow> + <a:grayscl> + <a:hsl> + <a:innerShdw> + <a:lum> + <a:outerShdw> + <a:prstShdw> + <a:reflection> + <a:relOff> + <a:softEdge> + <a:tint> + <a:xfrm> + + + + + + Initializes a new instance of the EffectDag class. + + + + + Initializes a new instance of the EffectDag class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectDag class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectDag class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the EffectContainerType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:alphaBiLevel> + <a:alphaCeiling> + <a:alphaFloor> + <a:alphaInv> + <a:alphaMod> + <a:alphaModFix> + <a:alphaOutset> + <a:alphaRepl> + <a:biLevel> + <a:blend> + <a:blur> + <a:clrChange> + <a:clrRepl> + <a:duotone> + <a:cont> + <a:effect> + <a:fill> + <a:fillOverlay> + <a:glow> + <a:grayscl> + <a:hsl> + <a:innerShdw> + <a:lum> + <a:outerShdw> + <a:prstShdw> + <a:reflection> + <a:relOff> + <a:softEdge> + <a:tint> + <a:xfrm> + + + + + + Initializes a new instance of the EffectContainerType class. + + + + + Initializes a new instance of the EffectContainerType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectContainerType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectContainerType class from outer XML. + + Specifies the outer XML of the element. + + + + Effect Container Type + Represents the following attribute in the schema: type + + + + + Name + Represents the following attribute in the schema: name + + + + + Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:effect. + + + + + Initializes a new instance of the Effect class. + + + + + Reference + Represents the following attribute in the schema: ref + + + + + + + + Defines the AlphaBiLevel Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaBiLevel. + + + + + Initializes a new instance of the AlphaBiLevel class. + + + + + Threshold + Represents the following attribute in the schema: thresh + + + + + + + + Alpha Ceiling Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaCeiling. + + + + + Initializes a new instance of the AlphaCeiling class. + + + + + + + + Alpha Floor Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaFloor. + + + + + Initializes a new instance of the AlphaFloor class. + + + + + + + + Alpha Inverse Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaInv. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the AlphaInverse class. + + + + + Initializes a new instance of the AlphaInverse class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AlphaInverse class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AlphaInverse class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Alpha Modulate Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaMod. + + + The following table lists the possible child types: + + <a:cont> + + + + + + Initializes a new instance of the AlphaModulationEffect class. + + + + + Initializes a new instance of the AlphaModulationEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AlphaModulationEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AlphaModulationEffect class from outer XML. + + Specifies the outer XML of the element. + + + + EffectContainer. + Represents the following element tag in the schema: a:cont. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the AlphaModulationFixed Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaModFix. + + + + + Initializes a new instance of the AlphaModulationFixed class. + + + + + Amount + Represents the following attribute in the schema: amt + + + + + + + + Alpha Inset/Outset Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaOutset. + + + + + Initializes a new instance of the AlphaOutset class. + + + + + Radius + Represents the following attribute in the schema: rad + + + + + + + + Alpha Replace Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:alphaRepl. + + + + + Initializes a new instance of the AlphaReplace class. + + + + + Alpha + Represents the following attribute in the schema: a + + + + + + + + Defines the BiLevel Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:biLevel. + + + + + Initializes a new instance of the BiLevel class. + + + + + Threshold + Represents the following attribute in the schema: thresh + + + + + + + + Blend Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:blend. + + + The following table lists the possible child types: + + <a:cont> + + + + + + Initializes a new instance of the Blend class. + + + + + Initializes a new instance of the Blend class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Blend class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Blend class from outer XML. + + Specifies the outer XML of the element. + + + + Blend Mode + Represents the following attribute in the schema: blend + + + + + Effect to blend. + Represents the following element tag in the schema: a:cont. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the Blur Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:blur. + + + + + Initializes a new instance of the Blur class. + + + + + Radius + Represents the following attribute in the schema: rad + + + + + Grow Bounds + Represents the following attribute in the schema: grow + + + + + + + + Color Change Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:clrChange. + + + The following table lists the possible child types: + + <a:clrFrom> + <a:clrTo> + + + + + + Initializes a new instance of the ColorChange class. + + + + + Initializes a new instance of the ColorChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorChange class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorChange class from outer XML. + + Specifies the outer XML of the element. + + + + Consider Alpha Values + Represents the following attribute in the schema: useA + + + + + Change Color From. + Represents the following element tag in the schema: a:clrFrom. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Change Color To. + Represents the following element tag in the schema: a:clrTo. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ColorReplacement Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:clrRepl. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorReplacement class. + + + + + Initializes a new instance of the ColorReplacement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorReplacement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorReplacement class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Duotone Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:duotone. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Duotone class. + + + + + Initializes a new instance of the Duotone class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Duotone class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Duotone class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fill. + + + The following table lists the possible child types: + + <a:blipFill> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the Fill class. + + + + + Initializes a new instance of the Fill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fill class from outer XML. + + Specifies the outer XML of the element. + + + + NoFill. + Represents the following element tag in the schema: a:noFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + SolidFill. + Represents the following element tag in the schema: a:solidFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + GradientFill. + Represents the following element tag in the schema: a:gradFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + BlipFill. + Represents the following element tag in the schema: a:blipFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Pattern Fill. + Represents the following element tag in the schema: a:pattFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Group Fill. + Represents the following element tag in the schema: a:grpFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Fill Overlay Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fillOverlay. + + + The following table lists the possible child types: + + <a:blipFill> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the FillOverlay class. + + + + + Initializes a new instance of the FillOverlay class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillOverlay class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillOverlay class from outer XML. + + Specifies the outer XML of the element. + + + + Blend + Represents the following attribute in the schema: blend + + + + + NoFill. + Represents the following element tag in the schema: a:noFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + SolidFill. + Represents the following element tag in the schema: a:solidFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + GradientFill. + Represents the following element tag in the schema: a:gradFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + BlipFill. + Represents the following element tag in the schema: a:blipFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Pattern Fill. + Represents the following element tag in the schema: a:pattFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Group Fill. + Represents the following element tag in the schema: a:grpFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Glow Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:glow. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Glow class. + + + + + Initializes a new instance of the Glow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Glow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Glow class from outer XML. + + Specifies the outer XML of the element. + + + + Radius + Represents the following attribute in the schema: rad + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Gray Scale Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:grayscl. + + + + + Initializes a new instance of the Grayscale class. + + + + + + + + Hue Saturation Luminance Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hsl. + + + + + Initializes a new instance of the Hsl class. + + + + + Hue + Represents the following attribute in the schema: hue + + + + + Saturation + Represents the following attribute in the schema: sat + + + + + Luminance + Represents the following attribute in the schema: lum + + + + + + + + Inner Shadow Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:innerShdw. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the InnerShadow class. + + + + + Initializes a new instance of the InnerShadow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InnerShadow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InnerShadow class from outer XML. + + Specifies the outer XML of the element. + + + + Blur Radius + Represents the following attribute in the schema: blurRad + + + + + Distance + Represents the following attribute in the schema: dist + + + + + Direction + Represents the following attribute in the schema: dir + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Luminance. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lum. + + + + + Initializes a new instance of the LuminanceEffect class. + + + + + Brightness + Represents the following attribute in the schema: bright + + + + + Contrast + Represents the following attribute in the schema: contrast + + + + + + + + Outer Shadow Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:outerShdw. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the OuterShadow class. + + + + + Initializes a new instance of the OuterShadow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OuterShadow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OuterShadow class from outer XML. + + Specifies the outer XML of the element. + + + + Blur Radius + Represents the following attribute in the schema: blurRad + + + + + Shadow Offset Distance + Represents the following attribute in the schema: dist + + + + + Shadow Direction + Represents the following attribute in the schema: dir + + + + + Horizontal Scaling Factor + Represents the following attribute in the schema: sx + + + + + Vertical Scaling Factor + Represents the following attribute in the schema: sy + + + + + Horizontal Skew + Represents the following attribute in the schema: kx + + + + + Vertical Skew + Represents the following attribute in the schema: ky + + + + + Shadow Alignment + Represents the following attribute in the schema: algn + + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Preset Shadow. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:prstShdw. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the PresetShadow class. + + + + + Initializes a new instance of the PresetShadow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresetShadow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresetShadow class from outer XML. + + Specifies the outer XML of the element. + + + + Preset Shadow + Represents the following attribute in the schema: prst + + + + + Distance + Represents the following attribute in the schema: dist + + + + + Direction + Represents the following attribute in the schema: dir + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Reflection Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:reflection. + + + + + Initializes a new instance of the Reflection class. + + + + + Blur Radius + Represents the following attribute in the schema: blurRad + + + + + Start Opacity + Represents the following attribute in the schema: stA + + + + + Start Position + Represents the following attribute in the schema: stPos + + + + + End Alpha + Represents the following attribute in the schema: endA + + + + + End Position + Represents the following attribute in the schema: endPos + + + + + Distance + Represents the following attribute in the schema: dist + + + + + Direction + Represents the following attribute in the schema: dir + + + + + Fade Direction + Represents the following attribute in the schema: fadeDir + + + + + Horizontal Ratio + Represents the following attribute in the schema: sx + + + + + Vertical Ratio + Represents the following attribute in the schema: sy + + + + + Horizontal Skew + Represents the following attribute in the schema: kx + + + + + Vertical Skew + Represents the following attribute in the schema: ky + + + + + Shadow Alignment + Represents the following attribute in the schema: algn + + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + + + + Relative Offset Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:relOff. + + + + + Initializes a new instance of the RelativeOffset class. + + + + + Offset X + Represents the following attribute in the schema: tx + + + + + Offset Y + Represents the following attribute in the schema: ty + + + + + + + + Soft Edge Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:softEdge. + + + + + Initializes a new instance of the SoftEdge class. + + + + + Radius + Represents the following attribute in the schema: rad + + + + + + + + Defines the TintEffect Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tint. + + + + + Initializes a new instance of the TintEffect class. + + + + + Hue + Represents the following attribute in the schema: hue + + + + + Amount + Represents the following attribute in the schema: amt + + + + + + + + Transform Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:xfrm. + + + + + Initializes a new instance of the TransformEffect class. + + + + + Horizontal Ratio + Represents the following attribute in the schema: sx + + + + + Vertical Ratio + Represents the following attribute in the schema: sy + + + + + Horizontal Skew + Represents the following attribute in the schema: kx + + + + + Vertical Skew + Represents the following attribute in the schema: ky + + + + + Horizontal Shift + Represents the following attribute in the schema: tx + + + + + Vertical Shift + Represents the following attribute in the schema: ty + + + + + + + + Effect Container. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:effectLst. + + + The following table lists the possible child types: + + <a:blur> + <a:fillOverlay> + <a:glow> + <a:innerShdw> + <a:outerShdw> + <a:prstShdw> + <a:reflection> + <a:softEdge> + + + + + + Initializes a new instance of the EffectList class. + + + + + Initializes a new instance of the EffectList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectList class from outer XML. + + Specifies the outer XML of the element. + + + + Blur Effect. + Represents the following element tag in the schema: a:blur. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillOverlay. + Represents the following element tag in the schema: a:fillOverlay. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Glow. + Represents the following element tag in the schema: a:glow. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + InnerShadow. + Represents the following element tag in the schema: a:innerShdw. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + OuterShadow. + Represents the following element tag in the schema: a:outerShdw. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + PresetShadow. + Represents the following element tag in the schema: a:prstShdw. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Reflection. + Represents the following element tag in the schema: a:reflection. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + SoftEdge. + Represents the following element tag in the schema: a:softEdge. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Custom geometry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:custGeom. + + + The following table lists the possible child types: + + <a:ahLst> + <a:cxnLst> + <a:avLst> + <a:gdLst> + <a:rect> + <a:pathLst> + + + + + + Initializes a new instance of the CustomGeometry class. + + + + + Initializes a new instance of the CustomGeometry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomGeometry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomGeometry class from outer XML. + + Specifies the outer XML of the element. + + + + Adjust Value List. + Represents the following element tag in the schema: a:avLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List of Shape Guides. + Represents the following element tag in the schema: a:gdLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List of Shape Adjust Handles. + Represents the following element tag in the schema: a:ahLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List of Shape Connection Sites. + Represents the following element tag in the schema: a:cxnLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Shape Text Rectangle. + Represents the following element tag in the schema: a:rect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List of Shape Paths. + Represents the following element tag in the schema: a:pathLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Preset geometry. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:prstGeom. + + + The following table lists the possible child types: + + <a:avLst> + + + + + + Initializes a new instance of the PresetGeometry class. + + + + + Initializes a new instance of the PresetGeometry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresetGeometry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresetGeometry class from outer XML. + + Specifies the outer XML of the element. + + + + Preset Shape + Represents the following attribute in the schema: prst + + + + + List of Shape Adjust Values. + Represents the following element tag in the schema: a:avLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Preset Text Warp. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:prstTxWarp. + + + The following table lists the possible child types: + + <a:avLst> + + + + + + Initializes a new instance of the PresetTextWarp class. + + + + + Initializes a new instance of the PresetTextWarp class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresetTextWarp class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresetTextWarp class from outer XML. + + Specifies the outer XML of the element. + + + + Preset Warp Shape + Represents the following attribute in the schema: prst + + + + + Adjust Value List. + Represents the following element tag in the schema: a:avLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Round Line Join. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:round. + + + + + Initializes a new instance of the Round class. + + + + + + + + Line Join Bevel. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bevel. + + + + + Initializes a new instance of the LineJoinBevel class. + + + + + + + + Miter Line Join. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:miter. + + + + + Initializes a new instance of the Miter class. + + + + + Miter Join Limit + Represents the following attribute in the schema: lim + + + + + + + + Preset Dash. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:prstDash. + + + + + Initializes a new instance of the PresetDash class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Custom Dash. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:custDash. + + + The following table lists the possible child types: + + <a:ds> + + + + + + Initializes a new instance of the CustomDash class. + + + + + Initializes a new instance of the CustomDash class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomDash class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomDash class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fill. + + + The following table lists the possible child types: + + <a:blipFill> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the FillProperties class. + + + + + Initializes a new instance of the FillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NoFill. + Represents the following element tag in the schema: a:noFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + SolidFill. + Represents the following element tag in the schema: a:solidFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + GradientFill. + Represents the following element tag in the schema: a:gradFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + BlipFill. + Represents the following element tag in the schema: a:blipFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Pattern Fill. + Represents the following element tag in the schema: a:pattFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Group Fill. + Represents the following element tag in the schema: a:grpFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Fill Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fillRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the FillReference class. + + + + + Initializes a new instance of the FillReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Effect Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:effectRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the EffectReference class. + + + + + Initializes a new instance of the EffectReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LineReference Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the LineReference class. + + + + + Initializes a new instance of the LineReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineReference class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StyleMatrixReferenceType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the StyleMatrixReferenceType class. + + + + + Initializes a new instance of the StyleMatrixReferenceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleMatrixReferenceType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StyleMatrixReferenceType class from outer XML. + + Specifies the outer XML of the element. + + + + Style Matrix Index + Represents the following attribute in the schema: idx + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:effect. + + + The following table lists the possible child types: + + <a:effectDag> + <a:effectLst> + + + + + + Initializes a new instance of the EffectPropertiesType class. + + + + + Initializes a new instance of the EffectPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectPropertiesType class from outer XML. + + Specifies the outer XML of the element. + + + + Effect Container. + Represents the following element tag in the schema: a:effectLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Effect Container. + Represents the following element tag in the schema: a:effectDag. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:font. + + + The following table lists the possible child types: + + <a:extLst> + <a:font> + <a:latin> + <a:ea> + <a:cs> + + + + + + Initializes a new instance of the Fonts class. + + + + + Initializes a new instance of the Fonts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fonts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fonts class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Major Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:majorFont. + + + The following table lists the possible child types: + + <a:extLst> + <a:font> + <a:latin> + <a:ea> + <a:cs> + + + + + + Initializes a new instance of the MajorFont class. + + + + + Initializes a new instance of the MajorFont class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MajorFont class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MajorFont class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Minor fonts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:minorFont. + + + The following table lists the possible child types: + + <a:extLst> + <a:font> + <a:latin> + <a:ea> + <a:cs> + + + + + + Initializes a new instance of the MinorFont class. + + + + + Initializes a new instance of the MinorFont class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinorFont class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MinorFont class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the FontCollectionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:extLst> + <a:font> + <a:latin> + <a:ea> + <a:cs> + + + + + + Initializes a new instance of the FontCollectionType class. + + + + + Initializes a new instance of the FontCollectionType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontCollectionType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontCollectionType class from outer XML. + + Specifies the outer XML of the element. + + + + Latin Font. + Represents the following element tag in the schema: a:latin. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + East Asian Font. + Represents the following element tag in the schema: a:ea. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Complex Script Font. + Represents the following element tag in the schema: a:cs. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Defines the FontReference Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fontRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the FontReference class. + + + + + Initializes a new instance of the FontReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontReference class from outer XML. + + Specifies the outer XML of the element. + + + + Identifier + Represents the following attribute in the schema: idx + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + No AutoFit. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:noAutofit. + + + + + Initializes a new instance of the NoAutoFit class. + + + + + + + + Normal AutoFit. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:normAutofit. + + + + + Initializes a new instance of the NormalAutoFit class. + + + + + Font Scale + Represents the following attribute in the schema: fontScale + + + + + Line Space Reduction + Represents the following attribute in the schema: lnSpcReduction + + + + + + + + Shape AutoFit. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:spAutoFit. + + + + + Initializes a new instance of the ShapeAutoFit class. + + + + + + + + Follow Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buClrTx. + + + + + Initializes a new instance of the BulletColorText class. + + + + + + + + Color Specified. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buClr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the BulletColor class. + + + + + Initializes a new instance of the BulletColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BulletColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BulletColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Extrusion Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extrusionClr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ExtrusionColor class. + + + + + Initializes a new instance of the ExtrusionColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtrusionColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtrusionColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Contour Color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:contourClr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ContourColor class. + + + + + Initializes a new instance of the ContourColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContourColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContourColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Change Color From. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:clrFrom. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorFrom class. + + + + + Initializes a new instance of the ColorFrom class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorFrom class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorFrom class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Change Color To. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:clrTo. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorTo class. + + + + + Initializes a new instance of the ColorTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorTo class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Foreground color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fgClr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ForegroundColor class. + + + + + Initializes a new instance of the ForegroundColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ForegroundColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ForegroundColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Background color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bgClr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the BackgroundColor class. + + + + + Initializes a new instance of the BackgroundColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Highlight Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:highlight. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Highlight class. + + + + + Initializes a new instance of the Highlight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Highlight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Highlight class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColorType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorType class. + + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Bullet Size Follows Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buSzTx. + + + + + Initializes a new instance of the BulletSizeText class. + + + + + + + + Bullet Size Percentage. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buSzPct. + + + + + Initializes a new instance of the BulletSizePercentage class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Bullet Size Points. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buSzPts. + + + + + Initializes a new instance of the BulletSizePoints class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Follow text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buFontTx. + + + + + Initializes a new instance of the BulletFontText class. + + + + + + + + Specified. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buFont. + + + + + Initializes a new instance of the BulletFont class. + + + + + + + + Latin Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:latin. + + + + + Initializes a new instance of the LatinFont class. + + + + + + + + East Asian Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ea. + + + + + Initializes a new instance of the EastAsianFont class. + + + + + + + + Complex Script Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cs. + + + + + Initializes a new instance of the ComplexScriptFont class. + + + + + + + + Defines the SymbolFont Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:sym. + + + + + Initializes a new instance of the SymbolFont class. + + + + + + + + Defines the TextFontType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TextFontType class. + + + + + Text Typeface + Represents the following attribute in the schema: typeface + + + + + Panose Setting + Represents the following attribute in the schema: panose + + + + + Similar Font Family + Represents the following attribute in the schema: pitchFamily + + + + + Similar Character Set + Represents the following attribute in the schema: charset + + + + + No Bullet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buNone. + + + + + Initializes a new instance of the NoBullet class. + + + + + + + + Auto-Numbered Bullet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buAutoNum. + + + + + Initializes a new instance of the AutoNumberedBullet class. + + + + + Bullet Autonumbering Type + Represents the following attribute in the schema: type + + + + + Start Numbering At + Represents the following attribute in the schema: startAt + + + + + + + + Character Bullet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buChar. + + + + + Initializes a new instance of the CharacterBullet class. + + + + + Bullet Character + Represents the following attribute in the schema: char + + + + + + + + Picture Bullet. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:buBlip. + + + The following table lists the possible child types: + + <a:blip> + + + + + + Initializes a new instance of the PictureBullet class. + + + + + Initializes a new instance of the PictureBullet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureBullet class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureBullet class from outer XML. + + Specifies the outer XML of the element. + + + + Blip. + Represents the following element tag in the schema: a:blip. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Underline Follows Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:uLnTx. + + + + + Initializes a new instance of the UnderlineFollowsText class. + + + + + + + + Underline Stroke. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:uLn. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the Underline class. + + + + + Initializes a new instance of the Underline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Underline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Underline class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Outline Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ln. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the Outline class. + + + + + Initializes a new instance of the Outline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Outline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Outline class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Left Border Line Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnL. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the LeftBorderLineProperties class. + + + + + Initializes a new instance of the LeftBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeftBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeftBorderLineProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Right Border Line Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnR. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the RightBorderLineProperties class. + + + + + Initializes a new instance of the RightBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RightBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RightBorderLineProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Top Border Line Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnT. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the TopBorderLineProperties class. + + + + + Initializes a new instance of the TopBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopBorderLineProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Bottom Border Line Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnB. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the BottomBorderLineProperties class. + + + + + Initializes a new instance of the BottomBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomBorderLineProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Top-Left to Bottom-Right Border Line Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnTlToBr. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the TopLeftToBottomRightBorderLineProperties class. + + + + + Initializes a new instance of the TopLeftToBottomRightBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopLeftToBottomRightBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopLeftToBottomRightBorderLineProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Bottom-Left to Top-Right Border Line Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnBlToTr. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the BottomLeftToTopRightBorderLineProperties class. + + + + + Initializes a new instance of the BottomLeftToTopRightBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomLeftToTopRightBorderLineProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomLeftToTopRightBorderLineProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LinePropertiesType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:custDash> + <a:gradFill> + <a:headEnd> + <a:tailEnd> + <a:bevel> + <a:miter> + <a:round> + <a:extLst> + <a:noFill> + <a:pattFill> + <a:prstDash> + <a:solidFill> + + + + + + Initializes a new instance of the LinePropertiesType class. + + + + + Initializes a new instance of the LinePropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinePropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinePropertiesType class from outer XML. + + Specifies the outer XML of the element. + + + + line width + Represents the following attribute in the schema: w + + + + + line cap + Represents the following attribute in the schema: cap + + + + + compound line type + Represents the following attribute in the schema: cmpd + + + + + pen alignment + Represents the following attribute in the schema: algn + + + + + Underline Fill Properties Follow Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:uFillTx. + + + + + Initializes a new instance of the UnderlineFillText class. + + + + + + + + Underline Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:uFill. + + + The following table lists the possible child types: + + <a:blipFill> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the UnderlineFill class. + + + + + Initializes a new instance of the UnderlineFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UnderlineFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the UnderlineFill class from outer XML. + + Specifies the outer XML of the element. + + + + NoFill. + Represents the following element tag in the schema: a:noFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + SolidFill. + Represents the following element tag in the schema: a:solidFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + GradientFill. + Represents the following element tag in the schema: a:gradFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + BlipFill. + Represents the following element tag in the schema: a:blipFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Pattern Fill. + Represents the following element tag in the schema: a:pattFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Group Fill. + Represents the following element tag in the schema: a:grpFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Text Run. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:r. + + + The following table lists the possible child types: + + <a:rPr> + <a:t> + + + + + + Initializes a new instance of the Run class. + + + + + Initializes a new instance of the Run class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Run class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Run class from outer XML. + + Specifies the outer XML of the element. + + + + Text Character Properties. + Represents the following element tag in the schema: a:rPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text String. + Represents the following element tag in the schema: a:t. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Text Line Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:br. + + + The following table lists the possible child types: + + <a:rPr> + + + + + + Initializes a new instance of the Break class. + + + + + Initializes a new instance of the Break class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Break class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Break class from outer XML. + + Specifies the outer XML of the element. + + + + Text Run Properties. + Represents the following element tag in the schema: a:rPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Text Field. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fld. + + + The following table lists the possible child types: + + <a:rPr> + <a:pPr> + <a:t> + + + + + + Initializes a new instance of the Field class. + + + + + Initializes a new instance of the Field class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Field class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Field class from outer XML. + + Specifies the outer XML of the element. + + + + Field ID + Represents the following attribute in the schema: id + + + + + Field Type + Represents the following attribute in the schema: type + + + + + Text Character Properties. + Represents the following element tag in the schema: a:rPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text Paragraph Properties. + Represents the following element tag in the schema: a:pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text. + Represents the following element tag in the schema: a:t. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Graphic Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:graphic. + + + The following table lists the possible child types: + + <a:graphicData> + + + + + + Initializes a new instance of the Graphic class. + + + + + Initializes a new instance of the Graphic class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Graphic class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Graphic class from outer XML. + + Specifies the outer XML of the element. + + + + Graphic Object Data. + Represents the following element tag in the schema: a:graphicData. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the Blip Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:blip. + + + The following table lists the possible child types: + + <a:alphaBiLevel> + <a:alphaCeiling> + <a:alphaFloor> + <a:alphaInv> + <a:alphaMod> + <a:alphaModFix> + <a:alphaRepl> + <a:biLevel> + <a:extLst> + <a:blur> + <a:clrChange> + <a:clrRepl> + <a:duotone> + <a:fillOverlay> + <a:grayscl> + <a:hsl> + <a:lum> + <a:tint> + + + + + + Initializes a new instance of the Blip class. + + + + + Initializes a new instance of the Blip class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Blip class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Blip class from outer XML. + + Specifies the outer XML of the element. + + + + Embedded Picture Reference + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Linked Picture Reference + Represents the following attribute in the schema: r:link + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Compression state for blips. + Represents the following attribute in the schema: cstate + + + + + + + + Theme. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:theme. + + + The following table lists the possible child types: + + <a:themeElements> + <a:extraClrSchemeLst> + <a:custClrLst> + <a:objectDefaults> + <a:extLst> + + + + + + Initializes a new instance of the Theme class. + + + + + Initializes a new instance of the Theme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Theme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Theme class from outer XML. + + Specifies the outer XML of the element. + + + + name + Represents the following attribute in the schema: name + + + + + id, this property is only available in Office 2013 and later. + Represents the following attribute in the schema: thm15:id + + + xmlns:thm15=http://schemas.microsoft.com/office/thememl/2012/main + + + + + ThemeElements. + Represents the following element tag in the schema: a:themeElements. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ObjectDefaults. + Represents the following element tag in the schema: a:objectDefaults. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtraColorSchemeList. + Represents the following element tag in the schema: a:extraClrSchemeLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + CustomColorList. + Represents the following element tag in the schema: a:custClrLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + OfficeStyleSheetExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Loads the DOM from the ThemePart + + Specifies the part to be loaded. + + + + Saves the DOM into the ThemePart. + + Specifies the part to save to. + + + + Gets the ThemePart associated with this element. + + + + + Theme Override. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:themeOverride. + + + The following table lists the possible child types: + + <a:clrScheme> + <a:fontScheme> + <a:fmtScheme> + + + + + + Initializes a new instance of the ThemeOverride class. + + + + + Initializes a new instance of the ThemeOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeOverride class from outer XML. + + Specifies the outer XML of the element. + + + + Color Scheme. + Represents the following element tag in the schema: a:clrScheme. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FontScheme. + Represents the following element tag in the schema: a:fontScheme. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FormatScheme. + Represents the following element tag in the schema: a:fmtScheme. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Loads the DOM from the ThemeOverridePart + + Specifies the part to be loaded. + + + + Saves the DOM into the ThemeOverridePart. + + Specifies the part to save to. + + + + Gets the ThemeOverridePart associated with this element. + + + + + Theme Manager. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:themeManager. + + + + + Initializes a new instance of the ThemeManager class. + + + + + + + + Master Color Mapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:masterClrMapping. + + + + + Initializes a new instance of the MasterColorMapping class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Table. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tbl. + + + The following table lists the possible child types: + + <a:tblGrid> + <a:tblPr> + <a:tr> + + + + + + Initializes a new instance of the Table class. + + + + + Initializes a new instance of the Table class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Table class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Table class from outer XML. + + Specifies the outer XML of the element. + + + + Table Properties. + Represents the following element tag in the schema: a:tblPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Table Grid. + Represents the following element tag in the schema: a:tblGrid. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Table Style List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tblStyleLst. + + + The following table lists the possible child types: + + <a:tblStyle> + + + + + + Initializes a new instance of the TableStyleList class. + + + + + Initializes a new instance of the TableStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleList class from outer XML. + + Specifies the outer XML of the element. + + + + Default + Represents the following attribute in the schema: def + + + + + + + + Loads the DOM from the TableStylesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the TableStylesPart. + + Specifies the part to save to. + + + + Gets the TableStylesPart associated with this element. + + + + + Defines the ExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Audio Start Time. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:st. + + + + + Initializes a new instance of the StartTime class. + + + + + + + + Audio End Time. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:end. + + + + + Initializes a new instance of the EndTime class. + + + + + + + + Defines the AudioCDTimeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the AudioCDTimeType class. + + + + + Track + Represents the following attribute in the schema: track + + + + + Time + Represents the following attribute in the schema: time + + + + + Custom color. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:custClr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the CustomColor class. + + + + + Initializes a new instance of the CustomColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomColor class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:font. + + + + + Initializes a new instance of the SupplementalFont class. + + + + + Script + Represents the following attribute in the schema: script + + + + + Typeface + Represents the following attribute in the schema: typeface + + + + + + + + 3D Scene Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:scene3d. + + + The following table lists the possible child types: + + <a:backdrop> + <a:camera> + <a:lightRig> + <a:extLst> + + + + + + Initializes a new instance of the Scene3DType class. + + + + + Initializes a new instance of the Scene3DType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scene3DType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Scene3DType class from outer XML. + + Specifies the outer XML of the element. + + + + Camera. + Represents the following element tag in the schema: a:camera. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Light Rig. + Represents the following element tag in the schema: a:lightRig. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Backdrop Plane. + Represents the following element tag in the schema: a:backdrop. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Effect Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:effectStyle. + + + The following table lists the possible child types: + + <a:effectDag> + <a:effectLst> + <a:scene3d> + <a:sp3d> + + + + + + Initializes a new instance of the EffectStyle class. + + + + + Initializes a new instance of the EffectStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Fill Style List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fillStyleLst. + + + The following table lists the possible child types: + + <a:blipFill> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the FillStyleList class. + + + + + Initializes a new instance of the FillStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FillStyleList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Line Style List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnStyleLst. + + + The following table lists the possible child types: + + <a:ln> + + + + + + Initializes a new instance of the LineStyleList class. + + + + + Initializes a new instance of the LineStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineStyleList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Effect Style List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:effectStyleLst. + + + The following table lists the possible child types: + + <a:effectStyle> + + + + + + Initializes a new instance of the EffectStyleList class. + + + + + Initializes a new instance of the EffectStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EffectStyleList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Background Fill Style List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bgFillStyleLst. + + + The following table lists the possible child types: + + <a:blipFill> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the BackgroundFillStyleList class. + + + + + Initializes a new instance of the BackgroundFillStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundFillStyleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundFillStyleList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColorScheme Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:clrScheme. + + + The following table lists the possible child types: + + <a:dk1> + <a:lt1> + <a:dk2> + <a:lt2> + <a:accent1> + <a:accent2> + <a:accent3> + <a:accent4> + <a:accent5> + <a:accent6> + <a:hlink> + <a:folHlink> + <a:extLst> + + + + + + Initializes a new instance of the ColorScheme class. + + + + + Initializes a new instance of the ColorScheme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorScheme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorScheme class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + Dark 1. + Represents the following element tag in the schema: a:dk1. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Light 1. + Represents the following element tag in the schema: a:lt1. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Dark 2. + Represents the following element tag in the schema: a:dk2. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Light 2. + Represents the following element tag in the schema: a:lt2. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Accent 1. + Represents the following element tag in the schema: a:accent1. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Accent 2. + Represents the following element tag in the schema: a:accent2. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Accent 3. + Represents the following element tag in the schema: a:accent3. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Accent 4. + Represents the following element tag in the schema: a:accent4. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Accent 5. + Represents the following element tag in the schema: a:accent5. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Accent 6. + Represents the following element tag in the schema: a:accent6. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink. + Represents the following element tag in the schema: a:hlink. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Followed Hyperlink. + Represents the following element tag in the schema: a:folHlink. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Font Scheme. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fontScheme. + + + The following table lists the possible child types: + + <a:majorFont> + <a:minorFont> + <a:extLst> + + + + + + Initializes a new instance of the FontScheme class. + + + + + Initializes a new instance of the FontScheme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontScheme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FontScheme class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + Major Font. + Represents the following element tag in the schema: a:majorFont. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Minor fonts. + Represents the following element tag in the schema: a:minorFont. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Format Scheme. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fmtScheme. + + + The following table lists the possible child types: + + <a:bgFillStyleLst> + <a:effectStyleLst> + <a:fillStyleLst> + <a:lnStyleLst> + + + + + + Initializes a new instance of the FormatScheme class. + + + + + Initializes a new instance of the FormatScheme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormatScheme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FormatScheme class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + Fill Style List. + Represents the following element tag in the schema: a:fillStyleLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Line Style List. + Represents the following element tag in the schema: a:lnStyleLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Effect Style List. + Represents the following element tag in the schema: a:effectStyleLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Background Fill Style List. + Represents the following element tag in the schema: a:bgFillStyleLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Dark 1. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:dk1. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Dark1Color class. + + + + + Initializes a new instance of the Dark1Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Dark1Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Dark1Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Light 1. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lt1. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Light1Color class. + + + + + Initializes a new instance of the Light1Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Light1Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Light1Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Dark 2. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:dk2. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Dark2Color class. + + + + + Initializes a new instance of the Dark2Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Dark2Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Dark2Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Light 2. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lt2. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Light2Color class. + + + + + Initializes a new instance of the Light2Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Light2Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Light2Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Accent 1. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:accent1. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Accent1Color class. + + + + + Initializes a new instance of the Accent1Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent1Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent1Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Accent 2. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:accent2. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Accent2Color class. + + + + + Initializes a new instance of the Accent2Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent2Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent2Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Accent 3. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:accent3. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Accent3Color class. + + + + + Initializes a new instance of the Accent3Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent3Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent3Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Accent 4. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:accent4. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Accent4Color class. + + + + + Initializes a new instance of the Accent4Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent4Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent4Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Accent 5. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:accent5. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Accent5Color class. + + + + + Initializes a new instance of the Accent5Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent5Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent5Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Accent 6. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:accent6. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Accent6Color class. + + + + + Initializes a new instance of the Accent6Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent6Color class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent6Color class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Hyperlink. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hlink. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Hyperlink class. + + + + + Initializes a new instance of the Hyperlink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Hyperlink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Hyperlink class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Followed Hyperlink. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:folHlink. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the FollowedHyperlinkColor class. + + + + + Initializes a new instance of the FollowedHyperlinkColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FollowedHyperlinkColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FollowedHyperlinkColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Color2Type Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Color2Type class. + + + + + Initializes a new instance of the Color2Type class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Color2Type class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Color2Type class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Horizontal Ratio. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:sx. + + + + + Initializes a new instance of the ScaleX class. + + + + + + + + Vertical Ratio. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:sy. + + + + + Initializes a new instance of the ScaleY class. + + + + + + + + Defines the RatioType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the RatioType class. + + + + + Numerator + Represents the following attribute in the schema: n + + + + + Denominator + Represents the following attribute in the schema: d + + + + + Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:off. + + + + + Initializes a new instance of the Offset class. + + + + + + + + Child Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:chOff. + + + + + Initializes a new instance of the ChildOffset class. + + + + + + + + Defines the Point2DType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the Point2DType class. + + + + + X-Axis Coordinate + Represents the following attribute in the schema: x + + + + + Y-Axis Coordinate + Represents the following attribute in the schema: y + + + + + Extents. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + + + Initializes a new instance of the Extents class. + + + + + + + + Child Extents. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:chExt. + + + + + Initializes a new instance of the ChildExtents class. + + + + + + + + Defines the PositiveSize2DType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the PositiveSize2DType class. + + + + + Extent Length + Represents the following attribute in the schema: cx + + + + + Extent Width + Represents the following attribute in the schema: cy + + + + + Shape Locks. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:spLocks. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the ShapeLocks class. + + + + + Initializes a new instance of the ShapeLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeLocks class from outer XML. + + Specifies the outer XML of the element. + + + + Disallow Shape Grouping + Represents the following attribute in the schema: noGrp + + + + + Disallow Shape Selection + Represents the following attribute in the schema: noSelect + + + + + Disallow Shape Rotation + Represents the following attribute in the schema: noRot + + + + + Disallow Aspect Ratio Change + Represents the following attribute in the schema: noChangeAspect + + + + + Disallow Shape Movement + Represents the following attribute in the schema: noMove + + + + + Disallow Shape Resize + Represents the following attribute in the schema: noResize + + + + + Disallow Shape Point Editing + Represents the following attribute in the schema: noEditPoints + + + + + Disallow Showing Adjust Handles + Represents the following attribute in the schema: noAdjustHandles + + + + + Disallow Arrowhead Changes + Represents the following attribute in the schema: noChangeArrowheads + + + + + Disallow Shape Type Change + Represents the following attribute in the schema: noChangeShapeType + + + + + Disallow Shape Text Editing + Represents the following attribute in the schema: noTextEdit + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Connection Shape Locks. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cxnSpLocks. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the ConnectionShapeLocks class. + + + + + Initializes a new instance of the ConnectionShapeLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShapeLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShapeLocks class from outer XML. + + Specifies the outer XML of the element. + + + + Disallow Shape Grouping + Represents the following attribute in the schema: noGrp + + + + + Disallow Shape Selection + Represents the following attribute in the schema: noSelect + + + + + Disallow Shape Rotation + Represents the following attribute in the schema: noRot + + + + + Disallow Aspect Ratio Change + Represents the following attribute in the schema: noChangeAspect + + + + + Disallow Shape Movement + Represents the following attribute in the schema: noMove + + + + + Disallow Shape Resize + Represents the following attribute in the schema: noResize + + + + + Disallow Shape Point Editing + Represents the following attribute in the schema: noEditPoints + + + + + Disallow Showing Adjust Handles + Represents the following attribute in the schema: noAdjustHandles + + + + + Disallow Arrowhead Changes + Represents the following attribute in the schema: noChangeArrowheads + + + + + Disallow Shape Type Change + Represents the following attribute in the schema: noChangeShapeType + + + + + ConnectorLockingExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Connection Start. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:stCxn. + + + + + Initializes a new instance of the StartConnection class. + + + + + + + + Connection End. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:endCxn. + + + + + Initializes a new instance of the EndConnection class. + + + + + + + + Defines the ConnectionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the ConnectionType class. + + + + + Identifier + Represents the following attribute in the schema: id + + + + + Index + Represents the following attribute in the schema: idx + + + + + Graphic Frame Locks. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:graphicFrameLocks. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the GraphicFrameLocks class. + + + + + Initializes a new instance of the GraphicFrameLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrameLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrameLocks class from outer XML. + + Specifies the outer XML of the element. + + + + Disallow Shape Grouping + Represents the following attribute in the schema: noGrp + + + + + Disallow Selection of Child Shapes + Represents the following attribute in the schema: noDrilldown + + + + + Disallow Shape Selection + Represents the following attribute in the schema: noSelect + + + + + Disallow Aspect Ratio Change + Represents the following attribute in the schema: noChangeAspect + + + + + Disallow Shape Movement + Represents the following attribute in the schema: noMove + + + + + Disallow Shape Resize + Represents the following attribute in the schema: noResize + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Graphic Object Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:graphicData. + + + The following table lists the possible child types: + + <a:themeOverride> + <a:blip> + <p14:laserClr> + <a14:hiddenEffects> + <a:themeManager> + <a14:hiddenFill> + <a:graphic> + <lc:lockedCanvas> + <a14:hiddenLine> + <dgm14:cNvPr> + <pic14:extLst> + <a:theme> + <a14:hiddenScene3d> + <a14:hiddenSp3d> + <dgm1612:spPr> + <c16:spPr> + <c15:spPr> + <pic14:style> + <a:tbl> + <a:tblStyleLst> + <dgm1612:lstStyle> + <p14:xfrm> + <wp14:pctPosHOffset> + <wp14:pctPosVOffset> + <a14:cameraTool> + <a14:compatExt> + <a14:contentPart> + <a14:isCanvas> + <a14:imgProps> + <a14:shadowObscured> + <a14:m> + <a14:useLocalDpi> + <a15:backgroundPr> + <a15:nonVisualGroupProps> + <a15:objectPr> + <a15:signatureLine> + <a16:cxnDERefs> + <a16:creationId> + <a16:rowId> + <a16:colId> + <a16:predDERef> + <a1611:picAttrSrcUrl> + <aclsh:classification> + <adec:decorative> + <ahyp:hlinkClr> + <aif:imageFormula> + <alf:liveFeedProps> + <aoe:oembedShared> + <ask:lineSketchStyleProps> + <asl:scriptLink> + <asvg:svgBlip> + <c16:invertIfNegative> + <c16:bubble3D> + <c15:xForSave> + <c15:showDataLabelsRange> + <c15:showLeaderLines> + <c15:autoCat> + <c15:leaderLines> + <c:chartSpace> + <c16:dLbl> + <c15:layout> + <c16:marker> + <c15:numFmt> + <c15:pivotSource> + <c:chart> + <c15:tx> + <c16:explosion> + <c14:invertSolidFillFmt> + <c14:pivotOptions> + <c14:sketchOptions> + <c14:style> + <c15:categoryFilterExceptions> + <c15:dlblFieldTable> + <c15:filteredAreaSeries> + <c15:filteredBarSeries> + <c15:filteredBubbleSeries> + <c15:filteredCategoryTitle> + <c15:filteredLineSeries> + <c15:filteredPieSeries> + <c15:filteredRadarSeries> + <c15:filteredScatterSeries> + <c15:filteredSeriesTitle> + <c15:filteredSurfaceSeries> + <c15:formulaRef> + <c15:fullRef> + <c15:levelRef> + <c15:datalabelsRange> + <c16:categoryFilterExceptions> + <c16:datapointuniqueidmap> + <c16:uniqueId> + <c16:pivotOptions16> + <c16r3:dataDisplayOptions16> + <c:userShapes> + <cdr14:contentPart> + <comp:legacyDrawing> + <cs:chartStyle> + <cs:colorStyle> + <dgm:colorsDef> + <dgm:colorsDefHdr> + <dgm:colorsDefHdrLst> + <dgm:dataModel> + <dgm:layoutDef> + <dgm:layoutDefHdr> + <dgm:layoutDefHdrLst> + <dgm:relIds> + <dgm:styleDef> + <dgm:styleDefHdr> + <dgm:styleDefHdrLst> + <dgm14:recolorImg> + <dgm1611:autoBuNodeInfoLst> + <dsp:dataModelExt> + <dsp:drawing> + <emma:arc> + <emma:derivation> + <emma:derived-from> + <emma:emma> + <emma:endpoint> + <emma:endpoint-info> + <emma:grammar> + <emma:group> + <emma:group-info> + <emma:info> + <emma:interpretation> + <emma:lattice> + <emma:literal> + <emma:model> + <emma:node> + <emma:one-of> + <emma:sequence> + <inkml:ink> + <m:mathPr> + <m:oMath> + <m:oMathPara> + <msink:context> + <o:callout> + <o:clippath> + <o:complex> + <o:diagram> + <o:extrusion> + <o:fill> + <o:ink> + <o:lock> + <o:OLEObject> + <o:shapedefaults> + <o:shapelayout> + <o:signatureline> + <o:skew> + <o:left> + <o:top> + <o:right> + <o:bottom> + <o:column> + <oac:cxnSpMkLst> + <oac:dcMkLst> + <oac:deMkLst> + <oac:deMasterMkLst> + <oac:dgMkLst> + <oac:drSelLst> + <oac:editorSelLst> + <oac:graphicFrameMkLst> + <oac:graphicParentMkLst> + <oac:grpCmd> + <oac:grpSpMkLst> + <oac:hlinkMkLst> + <oac:imgData> + <oac:origImgData> + <oac:imgLink> + <oac:inkMkLst> + <oac:model3DMkLst> + <oac:picMkLst> + <oac:spMkLst> + <oac:tcMkLst> + <oac:gridColMkLst> + <oac:tblMkLst> + <oac:trMkLst> + <oac:txBodyMkLst> + <oac:txBodyPkg> + <oac:txMkLst> + <oac:viewSelLst> + <p:cmAuthorLst> + <p:cmLst> + <p:contentPart> + <p14:honeycomb> + <p14:flash> + <p14:extLst> + <p:handoutMaster> + <p14:warp> + <p:notesMaster> + <p:notes> + <p:oleObj> + <p14:doors> + <p14:window> + <p:presentation> + <p:presentationPr> + <p14:vortex> + <p14:pan> + <p:sld> + <p:sldLayout> + <p:sldMaster> + <p:sldSyncPr> + <p:tagLst> + <p:viewPr> + <p14:wheelReverse> + <p14:browseMode> + <p14:nvContentPartPr> + <p14:defaultImageDpi> + <p14:discardImageEditData> + <p14:flythrough> + <p14:glitter> + <p14:laserTraceLst> + <p14:switch> + <p14:flip> + <p14:ferris> + <p14:gallery> + <p14:conveyor> + <p14:media> + <p14:bmkTgt> + <p14:prism> + <p14:creationId> + <p14:modId> + <p14:reveal> + <p14:ripple> + <p14:sectionLst> + <p14:sectionPr> + <p14:showEvtLst> + <p14:showMediaCtrls> + <p14:shred> + <p15:chartTrackingRefBased> + <p15:threadingInfo> + <p15:sldGuideLst> + <p15:notesGuideLst> + <p15:presenceInfo> + <p15:prstTrans> + <p188:authorLst> + <p188:cmLst> + <p188:commentRel> + <p1912:taskHistoryDetails> + <p223:reactions> + <p228:taskDetails> + <p232:phTypeExt> + <pc:animEffectMkLst> + <pc:animEffectParentMkLst> + <pc:cmAuthorMkLst> + <pc:cmMkLst> + <pc:custShowMkLst> + <pc:cXmlMkLst> + <pc:designTagMkLst> + <pc:docMkLst> + <pc:handoutMkLst> + <pc:sldMasterMkLst> + <pc:notesMasterMkLst> + <pc:notesMkLst> + <pc:notesTxtMkLst> + <pc:tkAppMkLst> + <pc:sectionLnkObjMkLst> + <pc:sectionMkLst> + <pc:sldBaseMkLst> + <pc:sldLayoutMkLst> + <pc:sldMkLst> + <pc:sldPosMkLst> + <pc:tagMkLst> + <pc:tocMkLst> + <pic:pic> + <pvml:iscomment> + <pvml:textdata> + <sl:schemaLibrary> + <sle:slicer> + <thm15:themeFamily> + <tsle:timeslicer> + <v:arc> + <v:background> + <v:curve> + <v:fill> + <v:formulas> + <v:group> + <v:handles> + <v:image> + <v:imagedata> + <v:line> + <v:oval> + <v:path> + <v:polyline> + <v:rect> + <v:roundrect> + <v:shadow> + <v:shape> + <v:shapetype> + <v:stroke> + <v:textbox> + <v:textpath> + <w15:color> + <w:comments> + <w15:dataBinding> + <w15:footnoteColumns> + <w:document> + <w15:repeatingSectionItem> + <w14:entityPicker> + <w:endnotes> + <w:fonts> + <w:footnotes> + <w:glossaryDocument> + <w:hdr> + <w:ftr> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:numbering> + <w15:chartTrackingRefBased> + <w15:collapsed> + <w15:webExtensionLinked> + <w15:webExtensionCreated> + <w:recipients> + <w:settings> + <w:styles> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + <w:txbxContent> + <w:webSettings> + <w10:anchorlock> + <w10:bordertop> + <w10:borderleft> + <w10:borderright> + <w10:borderbottom> + <w10:wrap> + <w14:defaultImageDpi> + <w14:docId> + <w14:conflictMode> + <w14:discardImageEditingData> + <w14:checkbox> + <w14:contentPart> + <w15:commentsEx> + <w15:docId> + <w15:people> + <w15:appearance> + <w15:repeatingSection> + <we:webextension> + <we:webextensionref> + <woe:oembed> + <wp:anchor> + <wp:inline> + <wp14:sizeRelH> + <wp14:sizeRelV> + <wp15:webVideoPr> + <wpc:wpc> + <wpg:wgp> + <wps:wsp> + <xdr:wsDr> + <xdr:contentPart> + <xdr14:contentPart> + <xvml:ClientData> + + + + + + Initializes a new instance of the GraphicData class. + + + + + Initializes a new instance of the GraphicData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicData class from outer XML. + + Specifies the outer XML of the element. + + + + Uniform Resource Identifier + Represents the following attribute in the schema: uri + + + + + + + + Diagram to Animate. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:dgm. + + + + + Initializes a new instance of the Diagram class. + + + + + Identifier + Represents the following attribute in the schema: id + + + + + Animation Build Step + Represents the following attribute in the schema: bldStep + + + + + + + + Chart to Animate. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:chart. + + + + + Initializes a new instance of the Chart class. + + + + + Series Index + Represents the following attribute in the schema: seriesIdx + + + + + Category Index + Represents the following attribute in the schema: categoryIdx + + + + + Animation Build Step + Represents the following attribute in the schema: bldStep + + + + + + + + Build Diagram. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bldDgm. + + + + + Initializes a new instance of the BuildDiagram class. + + + + + Build + Represents the following attribute in the schema: bld + + + + + Reverse Animation + Represents the following attribute in the schema: rev + + + + + + + + Build Chart. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bldChart. + + + + + Initializes a new instance of the BuildChart class. + + + + + Build + Represents the following attribute in the schema: bld + + + + + Animate Background + Represents the following attribute in the schema: animBg + + + + + + + + Shape Text Body. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:txBody. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBody class. + + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Use Shape Text Rectangle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:useSpRect. + + + + + Initializes a new instance of the UseShapeRectangle class. + + + + + + + + Defines the Transform2D Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform2D class. + + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform2D class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualDrawingProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cNvSpPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:spLocks> + + + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Text Box + Represents the following attribute in the schema: txBox + + + + + Shape Locks. + Represents the following element tag in the schema: a:spLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:nvSpPr. + + + The following table lists the possible child types: + + <a:cNvPr> + <a:cNvSpPr> + + + + + + Initializes a new instance of the NonVisualShapeProperties class. + + + + + Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: a:cNvPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Non-Visual Shape Drawing Properties. + Represents the following element tag in the schema: a:cNvSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Visual Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Text Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:txSp. + + + The following table lists the possible child types: + + <a:useSpRect> + <a:extLst> + <a:txBody> + <a:xfrm> + + + + + + Initializes a new instance of the TextShape class. + + + + + Initializes a new instance of the TextShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextShape class from outer XML. + + Specifies the outer XML of the element. + + + + Shape Text Body. + Represents the following element tag in the schema: a:txBody. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:style. + + + The following table lists the possible child types: + + <a:fontRef> + <a:lnRef> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the ShapeStyle class. + + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class from outer XML. + + Specifies the outer XML of the element. + + + + LineReference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillReference. + Represents the following element tag in the schema: a:fillRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + EffectReference. + Represents the following element tag in the schema: a:effectRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Reference. + Represents the following element tag in the schema: a:fontRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Connector Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cNvCxnSpPr. + + + The following table lists the possible child types: + + <a:stCxn> + <a:endCxn> + <a:cxnSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Shape Locks. + Represents the following element tag in the schema: a:cxnSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection Start. + Represents the following element tag in the schema: a:stCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection End. + Represents the following element tag in the schema: a:endCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Connection Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:nvCxnSpPr. + + + The following table lists the possible child types: + + <a:cNvCxnSpPr> + <a:cNvPr> + + + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class. + + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Drawing Properties. + Represents the following element tag in the schema: a:cNvPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Non-Visual Connector Shape Drawing Properties. + Represents the following element tag in the schema: a:cNvCxnSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Picture Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cNvPicPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:picLocks> + + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class. + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + preferRelativeResize + Represents the following attribute in the schema: preferRelativeResize + + + + + PictureLocks. + Represents the following element tag in the schema: a:picLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualPicturePropertiesExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Picture. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:nvPicPr. + + + The following table lists the possible child types: + + <a:cNvPr> + <a:cNvPicPr> + + + + + + Initializes a new instance of the NonVisualPictureProperties class. + + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: a:cNvPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Non-Visual Picture Drawing Properties. + Represents the following element tag in the schema: a:cNvPicPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Graphic Frame Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cNvGraphicFramePr. + + + The following table lists the possible child types: + + <a:graphicFrameLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Graphic Frame Locks. + Represents the following element tag in the schema: a:graphicFrameLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Graphic Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:nvGraphicFramePr. + + + The following table lists the possible child types: + + <a:cNvPr> + <a:cNvGraphicFramePr> + + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: a:cNvPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Non-Visual Graphic Frame Drawing Properties. + Represents the following element tag in the schema: a:cNvGraphicFramePr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Group Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cNvGrpSpPr. + + + The following table lists the possible child types: + + <a:grpSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + GroupShapeLocks. + Represents the following element tag in the schema: a:grpSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualGroupDrawingShapePropsExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Rotation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:rot. + + + + + Initializes a new instance of the Rotation class. + + + + + Latitude + Represents the following attribute in the schema: lat + + + + + Longitude + Represents the following attribute in the schema: lon + + + + + Revolution + Represents the following attribute in the schema: rev + + + + + + + + Camera. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:camera. + + + The following table lists the possible child types: + + <a:rot> + + + + + + Initializes a new instance of the Camera class. + + + + + Initializes a new instance of the Camera class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Camera class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Camera class from outer XML. + + Specifies the outer XML of the element. + + + + Preset Camera Type + Represents the following attribute in the schema: prst + + + + + Field of View + Represents the following attribute in the schema: fov + + + + + Zoom + Represents the following attribute in the schema: zoom + + + + + Rotation. + Represents the following element tag in the schema: a:rot. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Light Rig. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lightRig. + + + The following table lists the possible child types: + + <a:rot> + + + + + + Initializes a new instance of the LightRig class. + + + + + Initializes a new instance of the LightRig class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LightRig class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LightRig class from outer XML. + + Specifies the outer XML of the element. + + + + Rig Preset + Represents the following attribute in the schema: rig + + + + + Direction + Represents the following attribute in the schema: dir + + + + + Rotation. + Represents the following element tag in the schema: a:rot. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Backdrop Plane. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:backdrop. + + + The following table lists the possible child types: + + <a:extLst> + <a:anchor> + <a:norm> + <a:up> + + + + + + Initializes a new instance of the Backdrop class. + + + + + Initializes a new instance of the Backdrop class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Backdrop class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Backdrop class from outer XML. + + Specifies the outer XML of the element. + + + + Anchor Point. + Represents the following element tag in the schema: a:anchor. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Normal. + Represents the following element tag in the schema: a:norm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Up Vector. + Represents the following element tag in the schema: a:up. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Anchor Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:anchor. + + + + + Initializes a new instance of the Anchor class. + + + + + X-Coordinate in 3D + Represents the following attribute in the schema: x + + + + + Y-Coordinate in 3D + Represents the following attribute in the schema: y + + + + + Z-Coordinate in 3D + Represents the following attribute in the schema: z + + + + + + + + Normal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:norm. + + + + + Initializes a new instance of the Normal class. + + + + + + + + Up Vector. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:up. + + + + + Initializes a new instance of the UpVector class. + + + + + + + + Defines the Vector3DType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the Vector3DType class. + + + + + Distance along X-axis in 3D + Represents the following attribute in the schema: dx + + + + + Distance along Y-axis in 3D + Represents the following attribute in the schema: dy + + + + + Distance along Z-axis in 3D + Represents the following attribute in the schema: dz + + + + + Top Bevel. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bevelT. + + + + + Initializes a new instance of the BevelTop class. + + + + + + + + Bottom Bevel. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bevelB. + + + + + Initializes a new instance of the BevelBottom class. + + + + + + + + Bevel. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bevel. + + + + + Initializes a new instance of the Bevel class. + + + + + + + + Defines the BevelType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the BevelType class. + + + + + Width + Represents the following attribute in the schema: w + + + + + Height + Represents the following attribute in the schema: h + + + + + Preset Bevel + Represents the following attribute in the schema: prst + + + + + Fill To Rectangle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fillToRect. + + + + + Initializes a new instance of the FillToRectangle class. + + + + + + + + Tile Rectangle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tileRect. + + + + + Initializes a new instance of the TileRectangle class. + + + + + + + + Fill Rectangle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:fillRect. + + + + + Initializes a new instance of the FillRectangle class. + + + + + + + + Source Rectangle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:srcRect. + + + + + Initializes a new instance of the SourceRectangle class. + + + + + + + + Defines the RelativeRectangleType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the RelativeRectangleType class. + + + + + Left Offset + Represents the following attribute in the schema: l + + + + + Top Offset + Represents the following attribute in the schema: t + + + + + Right Offset + Represents the following attribute in the schema: r + + + + + Bottom Offset + Represents the following attribute in the schema: b + + + + + Gradient stops. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:gs. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the GradientStop class. + + + + + Initializes a new instance of the GradientStop class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStop class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStop class from outer XML. + + Specifies the outer XML of the element. + + + + Position + Represents the following attribute in the schema: pos + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Gradient Stop List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:gsLst. + + + The following table lists the possible child types: + + <a:gs> + + + + + + Initializes a new instance of the GradientStopList class. + + + + + Initializes a new instance of the GradientStopList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStopList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GradientStopList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Shape Guide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:gd. + + + + + Initializes a new instance of the ShapeGuide class. + + + + + Shape Guide Name + Represents the following attribute in the schema: name + + + + + Shape Guide Formula + Represents the following attribute in the schema: fmla + + + + + + + + Position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:pos. + + + + + Initializes a new instance of the Position class. + + + + + + + + Move end point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:pt. + + + + + Initializes a new instance of the Point class. + + + + + + + + Defines the AdjustPoint2DType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the AdjustPoint2DType class. + + + + + X-Coordinate + Represents the following attribute in the schema: x + + + + + Y-Coordinate + Represents the following attribute in the schema: y + + + + + XY Adjust Handle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ahXY. + + + The following table lists the possible child types: + + <a:pos> + + + + + + Initializes a new instance of the AdjustHandleXY class. + + + + + Initializes a new instance of the AdjustHandleXY class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustHandleXY class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustHandleXY class from outer XML. + + Specifies the outer XML of the element. + + + + Horizontal Adjustment Guide + Represents the following attribute in the schema: gdRefX + + + + + Minimum Horizontal Adjustment + Represents the following attribute in the schema: minX + + + + + Maximum Horizontal Adjustment + Represents the following attribute in the schema: maxX + + + + + Vertical Adjustment Guide + Represents the following attribute in the schema: gdRefY + + + + + Minimum Vertical Adjustment + Represents the following attribute in the schema: minY + + + + + Maximum Vertical Adjustment + Represents the following attribute in the schema: maxY + + + + + Position. + Represents the following element tag in the schema: a:pos. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Polar Adjust Handle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ahPolar. + + + The following table lists the possible child types: + + <a:pos> + + + + + + Initializes a new instance of the AdjustHandlePolar class. + + + + + Initializes a new instance of the AdjustHandlePolar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustHandlePolar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustHandlePolar class from outer XML. + + Specifies the outer XML of the element. + + + + Radial Adjustment Guide + Represents the following attribute in the schema: gdRefR + + + + + Minimum Radial Adjustment + Represents the following attribute in the schema: minR + + + + + Maximum Radial Adjustment + Represents the following attribute in the schema: maxR + + + + + Angle Adjustment Guide + Represents the following attribute in the schema: gdRefAng + + + + + Minimum Angle Adjustment + Represents the following attribute in the schema: minAng + + + + + Maximum Angle Adjustment + Represents the following attribute in the schema: maxAng + + + + + Shape Position Coordinate. + Represents the following element tag in the schema: a:pos. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape Connection Site. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cxn. + + + The following table lists the possible child types: + + <a:pos> + + + + + + Initializes a new instance of the ConnectionSite class. + + + + + Initializes a new instance of the ConnectionSite class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionSite class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionSite class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Site Angle + Represents the following attribute in the schema: ang + + + + + Position. + Represents the following element tag in the schema: a:pos. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Close Shape Path. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:close. + + + + + Initializes a new instance of the CloseShapePath class. + + + + + + + + Move Path To. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:moveTo. + + + The following table lists the possible child types: + + <a:pt> + + + + + + Initializes a new instance of the MoveTo class. + + + + + Initializes a new instance of the MoveTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MoveTo class from outer XML. + + Specifies the outer XML of the element. + + + + Move end point. + Represents the following element tag in the schema: a:pt. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Draw Line To. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnTo. + + + The following table lists the possible child types: + + <a:pt> + + + + + + Initializes a new instance of the LineTo class. + + + + + Initializes a new instance of the LineTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineTo class from outer XML. + + Specifies the outer XML of the element. + + + + Line end point. + Represents the following element tag in the schema: a:pt. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Draw Arc To. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:arcTo. + + + + + Initializes a new instance of the ArcTo class. + + + + + Shape Arc Width Radius + Represents the following attribute in the schema: wR + + + + + Shape Arc Height Radius + Represents the following attribute in the schema: hR + + + + + Shape Arc Start Angle + Represents the following attribute in the schema: stAng + + + + + Shape Arc Swing Angle + Represents the following attribute in the schema: swAng + + + + + + + + Draw Quadratic Bezier Curve To. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:quadBezTo. + + + The following table lists the possible child types: + + <a:pt> + + + + + + Initializes a new instance of the QuadraticBezierCurveTo class. + + + + + Initializes a new instance of the QuadraticBezierCurveTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuadraticBezierCurveTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the QuadraticBezierCurveTo class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Draw Cubic Bezier Curve To. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cubicBezTo. + + + The following table lists the possible child types: + + <a:pt> + + + + + + Initializes a new instance of the CubicBezierCurveTo class. + + + + + Initializes a new instance of the CubicBezierCurveTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CubicBezierCurveTo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CubicBezierCurveTo class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Shape Path. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:path. + + + The following table lists the possible child types: + + <a:arcTo> + <a:close> + <a:cubicBezTo> + <a:lnTo> + <a:moveTo> + <a:quadBezTo> + + + + + + Initializes a new instance of the Path class. + + + + + Initializes a new instance of the Path class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Path class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Path class from outer XML. + + Specifies the outer XML of the element. + + + + Path Width + Represents the following attribute in the schema: w + + + + + Path Height + Represents the following attribute in the schema: h + + + + + Path Fill + Represents the following attribute in the schema: fill + + + + + Path Stroke + Represents the following attribute in the schema: stroke + + + + + 3D Extrusion Allowed + Represents the following attribute in the schema: extrusionOk + + + + + + + + List of Shape Adjust Values. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:avLst. + + + The following table lists the possible child types: + + <a:gd> + + + + + + Initializes a new instance of the AdjustValueList class. + + + + + Initializes a new instance of the AdjustValueList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustValueList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustValueList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List of Shape Guides. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:gdLst. + + + The following table lists the possible child types: + + <a:gd> + + + + + + Initializes a new instance of the ShapeGuideList class. + + + + + Initializes a new instance of the ShapeGuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeGuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeGuideList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GeometryGuideListType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:gd> + + + + + + Initializes a new instance of the GeometryGuideListType class. + + + + + Initializes a new instance of the GeometryGuideListType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeometryGuideListType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GeometryGuideListType class from outer XML. + + Specifies the outer XML of the element. + + + + List of Shape Adjust Handles. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ahLst. + + + The following table lists the possible child types: + + <a:ahPolar> + <a:ahXY> + + + + + + Initializes a new instance of the AdjustHandleList class. + + + + + Initializes a new instance of the AdjustHandleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustHandleList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AdjustHandleList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List of Shape Connection Sites. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cxnLst. + + + The following table lists the possible child types: + + <a:cxn> + + + + + + Initializes a new instance of the ConnectionSiteList class. + + + + + Initializes a new instance of the ConnectionSiteList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionSiteList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionSiteList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Shape Text Rectangle. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:rect. + + + + + Initializes a new instance of the Rectangle class. + + + + + Left + Represents the following attribute in the schema: l + + + + + Top + Represents the following attribute in the schema: t + + + + + Right + Represents the following attribute in the schema: r + + + + + Bottom Position + Represents the following attribute in the schema: b + + + + + + + + List of Shape Paths. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:pathLst. + + + The following table lists the possible child types: + + <a:path> + + + + + + Initializes a new instance of the PathList class. + + + + + Initializes a new instance of the PathList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PathList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PathList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Dash Stop. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ds. + + + + + Initializes a new instance of the DashStop class. + + + + + Dash Length + Represents the following attribute in the schema: d + + + + + Space Length + Represents the following attribute in the schema: sp + + + + + + + + 2D Transform for Grouped Objects. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:chOff> + <a:ext> + <a:chExt> + + + + + + Initializes a new instance of the TransformGroup class. + + + + + Initializes a new instance of the TransformGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TransformGroup class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TransformGroup class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Child Offset. + Represents the following element tag in the schema: a:chOff. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Child Extents. + Represents the following element tag in the schema: a:chExt. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the BodyProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bodyPr. + + + The following table lists the possible child types: + + <a:flatTx> + <a:extLst> + <a:prstTxWarp> + <a:scene3d> + <a:sp3d> + <a:noAutofit> + <a:normAutofit> + <a:spAutoFit> + + + + + + Initializes a new instance of the BodyProperties class. + + + + + Initializes a new instance of the BodyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BodyProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BodyProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Paragraph Spacing + Represents the following attribute in the schema: spcFirstLastPara + + + + + Text Vertical Overflow + Represents the following attribute in the schema: vertOverflow + + + + + Text Horizontal Overflow + Represents the following attribute in the schema: horzOverflow + + + + + Vertical Text + Represents the following attribute in the schema: vert + + + + + Text Wrapping Type + Represents the following attribute in the schema: wrap + + + + + Left Inset + Represents the following attribute in the schema: lIns + + + + + Top Inset + Represents the following attribute in the schema: tIns + + + + + Right Inset + Represents the following attribute in the schema: rIns + + + + + Bottom Inset + Represents the following attribute in the schema: bIns + + + + + Number of Columns + Represents the following attribute in the schema: numCol + + + + + Space Between Columns + Represents the following attribute in the schema: spcCol + + + + + Columns Right-To-Left + Represents the following attribute in the schema: rtlCol + + + + + From WordArt + Represents the following attribute in the schema: fromWordArt + + + + + Anchor + Represents the following attribute in the schema: anchor + + + + + Anchor Center + Represents the following attribute in the schema: anchorCtr + + + + + Force Anti-Alias + Represents the following attribute in the schema: forceAA + + + + + Text Upright + Represents the following attribute in the schema: upright + + + + + Compatible Line Spacing + Represents the following attribute in the schema: compatLnSpc + + + + + Preset Text Shape. + Represents the following element tag in the schema: a:prstTxWarp. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ListStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lstStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:defPPr> + <a:lvl1pPr> + <a:lvl2pPr> + <a:lvl3pPr> + <a:lvl4pPr> + <a:lvl5pPr> + <a:lvl6pPr> + <a:lvl7pPr> + <a:lvl8pPr> + <a:lvl9pPr> + + + + + + Initializes a new instance of the ListStyle class. + + + + + Initializes a new instance of the ListStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ListStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ListStyle class from outer XML. + + Specifies the outer XML of the element. + + + + Default Paragraph Style. + Represents the following element tag in the schema: a:defPPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 1 Text Style. + Represents the following element tag in the schema: a:lvl1pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 2 Text Style. + Represents the following element tag in the schema: a:lvl2pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 3 Text Style. + Represents the following element tag in the schema: a:lvl3pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 4 Text Style. + Represents the following element tag in the schema: a:lvl4pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 5 Text Style. + Represents the following element tag in the schema: a:lvl5pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 6 Text Style. + Represents the following element tag in the schema: a:lvl6pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 7 Text Style. + Represents the following element tag in the schema: a:lvl7pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 8 Text Style. + Represents the following element tag in the schema: a:lvl8pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 9 Text Style. + Represents the following element tag in the schema: a:lvl9pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape Default. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:spDef. + + + The following table lists the possible child types: + + <a:extLst> + <a:spPr> + <a:style> + <a:bodyPr> + <a:lstStyle> + + + + + + Initializes a new instance of the ShapeDefault class. + + + + + Initializes a new instance of the ShapeDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeDefault class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Line Default. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnDef. + + + The following table lists the possible child types: + + <a:extLst> + <a:spPr> + <a:style> + <a:bodyPr> + <a:lstStyle> + + + + + + Initializes a new instance of the LineDefault class. + + + + + Initializes a new instance of the LineDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineDefault class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Text Default. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:txDef. + + + The following table lists the possible child types: + + <a:extLst> + <a:spPr> + <a:style> + <a:bodyPr> + <a:lstStyle> + + + + + + Initializes a new instance of the TextDefault class. + + + + + Initializes a new instance of the TextDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextDefault class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextDefault class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DefaultShapeDefinitionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:extLst> + <a:spPr> + <a:style> + <a:bodyPr> + <a:lstStyle> + + + + + + Initializes a new instance of the DefaultShapeDefinitionType class. + + + + + Initializes a new instance of the DefaultShapeDefinitionType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefaultShapeDefinitionType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefaultShapeDefinitionType class from outer XML. + + Specifies the outer XML of the element. + + + + Visual Properties. + Represents the following element tag in the schema: a:spPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + BodyProperties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ListStyle. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ShapeStyle. + Represents the following element tag in the schema: a:style. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Override Color Mapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:overrideClrMapping. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the OverrideColorMapping class. + + + + + Initializes a new instance of the OverrideColorMapping class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OverrideColorMapping class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OverrideColorMapping class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColorMap Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:clrMap. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the ColorMap class. + + + + + Initializes a new instance of the ColorMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMap class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColorMappingType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the ColorMappingType class. + + + + + Initializes a new instance of the ColorMappingType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMappingType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMappingType class from outer XML. + + Specifies the outer XML of the element. + + + + Background 1 + Represents the following attribute in the schema: bg1 + + + + + Text 1 + Represents the following attribute in the schema: tx1 + + + + + Background 2 + Represents the following attribute in the schema: bg2 + + + + + Text 2 + Represents the following attribute in the schema: tx2 + + + + + Accent 1 + Represents the following attribute in the schema: accent1 + + + + + Accent 2 + Represents the following attribute in the schema: accent2 + + + + + Accent 3 + Represents the following attribute in the schema: accent3 + + + + + Accent 4 + Represents the following attribute in the schema: accent4 + + + + + Accent 5 + Represents the following attribute in the schema: accent5 + + + + + Accent 6 + Represents the following attribute in the schema: accent6 + + + + + Hyperlink + Represents the following attribute in the schema: hlink + + + + + Followed Hyperlink + Represents the following attribute in the schema: folHlink + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extra Color Scheme. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extraClrScheme. + + + The following table lists the possible child types: + + <a:clrMap> + <a:clrScheme> + + + + + + Initializes a new instance of the ExtraColorScheme class. + + + + + Initializes a new instance of the ExtraColorScheme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtraColorScheme class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtraColorScheme class from outer XML. + + Specifies the outer XML of the element. + + + + ColorScheme. + Represents the following element tag in the schema: a:clrScheme. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ColorMap. + Represents the following element tag in the schema: a:clrMap. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ThemeElements Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:themeElements. + + + The following table lists the possible child types: + + <a:clrScheme> + <a:fontScheme> + <a:extLst> + <a:fmtScheme> + + + + + + Initializes a new instance of the ThemeElements class. + + + + + Initializes a new instance of the ThemeElements class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeElements class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeElements class from outer XML. + + Specifies the outer XML of the element. + + + + ColorScheme. + Represents the following element tag in the schema: a:clrScheme. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Scheme. + Represents the following element tag in the schema: a:fontScheme. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Format Scheme. + Represents the following element tag in the schema: a:fmtScheme. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Cell 3-D. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cell3D. + + + The following table lists the possible child types: + + <a:bevel> + <a:lightRig> + <a:extLst> + + + + + + Initializes a new instance of the Cell3DProperties class. + + + + + Initializes a new instance of the Cell3DProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Cell3DProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Cell3DProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Preset Material + Represents the following attribute in the schema: prstMaterial + + + + + Bevel. + Represents the following element tag in the schema: a:bevel. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Light Rig. + Represents the following element tag in the schema: a:lightRig. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Table Cell Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tcPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:cell3D> + <a:gradFill> + <a:grpFill> + <a:lnL> + <a:lnR> + <a:lnT> + <a:lnB> + <a:lnTlToBr> + <a:lnBlToTr> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:solidFill> + + + + + + Initializes a new instance of the TableCellProperties class. + + + + + Initializes a new instance of the TableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Left Margin + Represents the following attribute in the schema: marL + + + + + Right Margin + Represents the following attribute in the schema: marR + + + + + Top Margin + Represents the following attribute in the schema: marT + + + + + Bottom Margin + Represents the following attribute in the schema: marB + + + + + Text Direction + Represents the following attribute in the schema: vert + + + + + Anchor + Represents the following attribute in the schema: anchor + + + + + Anchor Center + Represents the following attribute in the schema: anchorCtr + + + + + Horizontal Overflow + Represents the following attribute in the schema: horzOverflow + + + + + Left Border Line Properties. + Represents the following element tag in the schema: a:lnL. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Right Border Line Properties. + Represents the following element tag in the schema: a:lnR. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Top Border Line Properties. + Represents the following element tag in the schema: a:lnT. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Bottom Border Line Properties. + Represents the following element tag in the schema: a:lnB. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Top-Left to Bottom-Right Border Line Properties. + Represents the following element tag in the schema: a:lnTlToBr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Bottom-Left to Top-Right Border Line Properties. + Represents the following element tag in the schema: a:lnBlToTr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Cell 3-D. + Represents the following element tag in the schema: a:cell3D. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Table Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tc. + + + The following table lists the possible child types: + + <a:extLst> + <a:tcPr> + <a:txBody> + + + + + + Initializes a new instance of the TableCell class. + + + + + Initializes a new instance of the TableCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCell class from outer XML. + + Specifies the outer XML of the element. + + + + Row Span + Represents the following attribute in the schema: rowSpan + + + + + Grid Span + Represents the following attribute in the schema: gridSpan + + + + + Horizontal Merge + Represents the following attribute in the schema: hMerge + + + + + Vertical Merge + Represents the following attribute in the schema: vMerge + + + + + Text Body. + Represents the following element tag in the schema: a:txBody. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Table Cell Properties. + Represents the following element tag in the schema: a:tcPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Table Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tableStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:tblBg> + <a:wholeTbl> + <a:band1H> + <a:band2H> + <a:band1V> + <a:band2V> + <a:lastCol> + <a:firstCol> + <a:lastRow> + <a:seCell> + <a:swCell> + <a:firstRow> + <a:neCell> + <a:nwCell> + + + + + + Initializes a new instance of the TableStyle class. + + + + + Initializes a new instance of the TableStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Table Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tblStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:tblBg> + <a:wholeTbl> + <a:band1H> + <a:band2H> + <a:band1V> + <a:band2V> + <a:lastCol> + <a:firstCol> + <a:lastRow> + <a:seCell> + <a:swCell> + <a:firstRow> + <a:neCell> + <a:nwCell> + + + + + + Initializes a new instance of the TableStyleEntry class. + + + + + Initializes a new instance of the TableStyleEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleEntry class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleEntry class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TableStyleType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:extLst> + <a:tblBg> + <a:wholeTbl> + <a:band1H> + <a:band2H> + <a:band1V> + <a:band2V> + <a:lastCol> + <a:firstCol> + <a:lastRow> + <a:seCell> + <a:swCell> + <a:firstRow> + <a:neCell> + <a:nwCell> + + + + + + Initializes a new instance of the TableStyleType class. + + + + + Initializes a new instance of the TableStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableStyleType class from outer XML. + + Specifies the outer XML of the element. + + + + Style ID + Represents the following attribute in the schema: styleId + + + + + Name + Represents the following attribute in the schema: styleName + + + + + Table Background. + Represents the following element tag in the schema: a:tblBg. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Whole Table. + Represents the following element tag in the schema: a:wholeTbl. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Band 1 Horizontal. + Represents the following element tag in the schema: a:band1H. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Band 2 Horizontal. + Represents the following element tag in the schema: a:band2H. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Band 1 Vertical. + Represents the following element tag in the schema: a:band1V. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Band 2 Vertical. + Represents the following element tag in the schema: a:band2V. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Last Column. + Represents the following element tag in the schema: a:lastCol. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + First Column. + Represents the following element tag in the schema: a:firstCol. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Last Row. + Represents the following element tag in the schema: a:lastRow. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Southeast Cell. + Represents the following element tag in the schema: a:seCell. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Southwest Cell. + Represents the following element tag in the schema: a:swCell. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + First Row. + Represents the following element tag in the schema: a:firstRow. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Northeast Cell. + Represents the following element tag in the schema: a:neCell. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Northwest Cell. + Represents the following element tag in the schema: a:nwCell. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Table Style ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tableStyleId. + + + + + Initializes a new instance of the TableStyleId class. + + + + + Initializes a new instance of the TableStyleId class with the specified text content. + + Specifies the text content of the element. + + + + + + + Table Grid Column. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:gridCol. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the GridColumn class. + + + + + Initializes a new instance of the GridColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GridColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GridColumn class from outer XML. + + Specifies the outer XML of the element. + + + + Width + Represents the following attribute in the schema: w + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Table Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tblPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:solidFill> + <a:tableStyle> + <a:tableStyleId> + + + + + + Initializes a new instance of the TableProperties class. + + + + + Initializes a new instance of the TableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Right-to-Left + Represents the following attribute in the schema: rtl + + + + + First Row + Represents the following attribute in the schema: firstRow + + + + + First Column + Represents the following attribute in the schema: firstCol + + + + + Last Row + Represents the following attribute in the schema: lastRow + + + + + Last Column + Represents the following attribute in the schema: lastCol + + + + + Banded Rows + Represents the following attribute in the schema: bandRow + + + + + Banded Columns + Represents the following attribute in the schema: bandCol + + + + + + + + Table Grid. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tblGrid. + + + The following table lists the possible child types: + + <a:gridCol> + + + + + + Initializes a new instance of the TableGrid class. + + + + + Initializes a new instance of the TableGrid class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableGrid class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableGrid class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Table Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tr. + + + The following table lists the possible child types: + + <a:extLst> + <a:tc> + + + + + + Initializes a new instance of the TableRow class. + + + + + Initializes a new instance of the TableRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableRow class from outer XML. + + Specifies the outer XML of the element. + + + + Height + Represents the following attribute in the schema: h + + + + + + + + Left Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:left. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the LeftBorder class. + + + + + Initializes a new instance of the LeftBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeftBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LeftBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Right Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:right. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the RightBorder class. + + + + + Initializes a new instance of the RightBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RightBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RightBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Top Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:top. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the TopBorder class. + + + + + Initializes a new instance of the TopBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Bottom Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:bottom. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the BottomBorder class. + + + + + Initializes a new instance of the BottomBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BottomBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Inside Horizontal Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:insideH. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the InsideHorizontalBorder class. + + + + + Initializes a new instance of the InsideHorizontalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InsideHorizontalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InsideHorizontalBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Inside Vertical Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:insideV. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the InsideVerticalBorder class. + + + + + Initializes a new instance of the InsideVerticalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InsideVerticalBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the InsideVerticalBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Top Left to Bottom Right Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tl2br. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the TopLeftToBottomRightBorder class. + + + + + Initializes a new instance of the TopLeftToBottomRightBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopLeftToBottomRightBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopLeftToBottomRightBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Top Right to Bottom Left Border. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tr2bl. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the TopRightToBottomLeftBorder class. + + + + + Initializes a new instance of the TopRightToBottomLeftBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopRightToBottomLeftBorder class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TopRightToBottomLeftBorder class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ThemeableLineStyleType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:ln> + <a:lnRef> + + + + + + Initializes a new instance of the ThemeableLineStyleType class. + + + + + Initializes a new instance of the ThemeableLineStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeableLineStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ThemeableLineStyleType class from outer XML. + + Specifies the outer XML of the element. + + + + Outline. + Represents the following element tag in the schema: a:ln. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Line Reference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Table Cell Borders. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tcBdr. + + + The following table lists the possible child types: + + <a:extLst> + <a:left> + <a:right> + <a:top> + <a:bottom> + <a:insideH> + <a:insideV> + <a:tl2br> + <a:tr2bl> + + + + + + Initializes a new instance of the TableCellBorders class. + + + + + Initializes a new instance of the TableCellBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellBorders class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellBorders class from outer XML. + + Specifies the outer XML of the element. + + + + Left Border. + Represents the following element tag in the schema: a:left. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Right Border. + Represents the following element tag in the schema: a:right. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Top Border. + Represents the following element tag in the schema: a:top. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Bottom Border. + Represents the following element tag in the schema: a:bottom. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Inside Horizontal Border. + Represents the following element tag in the schema: a:insideH. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Inside Vertical Border. + Represents the following element tag in the schema: a:insideV. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Top Left to Bottom Right Border. + Represents the following element tag in the schema: a:tl2br. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Top Right to Bottom Left Border. + Represents the following element tag in the schema: a:tr2bl. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Table Cell Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tcTxStyle. + + + The following table lists the possible child types: + + <a:font> + <a:fontRef> + <a:hslClr> + <a:extLst> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the TableCellTextStyle class. + + + + + Initializes a new instance of the TableCellTextStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellTextStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellTextStyle class from outer XML. + + Specifies the outer XML of the element. + + + + Bold + Represents the following attribute in the schema: b + + + + + Italic + Represents the following attribute in the schema: i + + + + + + + + Table Cell Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tcStyle. + + + The following table lists the possible child types: + + <a:cell3D> + <a:fill> + <a:fillRef> + <a:tcBdr> + + + + + + Initializes a new instance of the TableCellStyle class. + + + + + Initializes a new instance of the TableCellStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableCellStyle class from outer XML. + + Specifies the outer XML of the element. + + + + Table Cell Borders. + Represents the following element tag in the schema: a:tcBdr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Table Background. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tblBg. + + + The following table lists the possible child types: + + <a:effect> + <a:fill> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the TableBackground class. + + + + + Initializes a new instance of the TableBackground class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableBackground class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TableBackground class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Whole Table. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:wholeTbl. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the WholeTable class. + + + + + Initializes a new instance of the WholeTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WholeTable class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WholeTable class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Band 1 Horizontal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:band1H. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the Band1Horizontal class. + + + + + Initializes a new instance of the Band1Horizontal class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Band1Horizontal class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Band1Horizontal class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Band 2 Horizontal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:band2H. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the Band2Horizontal class. + + + + + Initializes a new instance of the Band2Horizontal class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Band2Horizontal class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Band2Horizontal class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Band 1 Vertical. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:band1V. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the Band1Vertical class. + + + + + Initializes a new instance of the Band1Vertical class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Band1Vertical class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Band1Vertical class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Band 2 Vertical. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:band2V. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the Band2Vertical class. + + + + + Initializes a new instance of the Band2Vertical class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Band2Vertical class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Band2Vertical class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Last Column. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lastCol. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the LastColumn class. + + + + + Initializes a new instance of the LastColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LastColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LastColumn class from outer XML. + + Specifies the outer XML of the element. + + + + + + + First Column. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:firstCol. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the FirstColumn class. + + + + + Initializes a new instance of the FirstColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FirstColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FirstColumn class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Last Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lastRow. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the LastRow class. + + + + + Initializes a new instance of the LastRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LastRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LastRow class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Southeast Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:seCell. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the SoutheastCell class. + + + + + Initializes a new instance of the SoutheastCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SoutheastCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SoutheastCell class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Southwest Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:swCell. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the SouthwestCell class. + + + + + Initializes a new instance of the SouthwestCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SouthwestCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SouthwestCell class from outer XML. + + Specifies the outer XML of the element. + + + + + + + First Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:firstRow. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the FirstRow class. + + + + + Initializes a new instance of the FirstRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FirstRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FirstRow class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Northeast Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:neCell. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the NortheastCell class. + + + + + Initializes a new instance of the NortheastCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NortheastCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NortheastCell class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Northwest Cell. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:nwCell. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the NorthwestCell class. + + + + + Initializes a new instance of the NorthwestCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NorthwestCell class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NorthwestCell class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TablePartStyleType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:tcStyle> + <a:tcTxStyle> + + + + + + Initializes a new instance of the TablePartStyleType class. + + + + + Initializes a new instance of the TablePartStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TablePartStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TablePartStyleType class from outer XML. + + Specifies the outer XML of the element. + + + + Table Cell Text Style. + Represents the following element tag in the schema: a:tcTxStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Table Cell Style. + Represents the following element tag in the schema: a:tcStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text Paragraph Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the ParagraphProperties class. + + + + + Initializes a new instance of the ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Default Paragraph Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:defPPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the DefaultParagraphProperties class. + + + + + Initializes a new instance of the DefaultParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefaultParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefaultParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 1 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl1pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level1ParagraphProperties class. + + + + + Initializes a new instance of the Level1ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level1ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level1ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 2 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl2pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level2ParagraphProperties class. + + + + + Initializes a new instance of the Level2ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level2ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level2ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 3 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl3pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level3ParagraphProperties class. + + + + + Initializes a new instance of the Level3ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level3ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level3ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 4 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl4pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level4ParagraphProperties class. + + + + + Initializes a new instance of the Level4ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level4ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level4ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 5 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl5pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level5ParagraphProperties class. + + + + + Initializes a new instance of the Level5ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level5ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level5ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 6 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl6pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level6ParagraphProperties class. + + + + + Initializes a new instance of the Level6ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level6ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level6ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 7 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl7pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level7ParagraphProperties class. + + + + + Initializes a new instance of the Level7ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level7ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level7ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 8 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl8pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level8ParagraphProperties class. + + + + + Initializes a new instance of the Level8ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level8ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level8ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List Level 9 Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lvl9pPr. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the Level9ParagraphProperties class. + + + + + Initializes a new instance of the Level9ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level9ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Level9ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextParagraphPropertiesType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:buClr> + <a:extLst> + <a:buAutoNum> + <a:buBlip> + <a:buClrTx> + <a:buSzTx> + <a:buSzPct> + <a:buSzPts> + <a:buFontTx> + <a:defRPr> + <a:buChar> + <a:buFont> + <a:buNone> + <a:lnSpc> + <a:spcBef> + <a:spcAft> + <a:tabLst> + + + + + + Initializes a new instance of the TextParagraphPropertiesType class. + + + + + Initializes a new instance of the TextParagraphPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextParagraphPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextParagraphPropertiesType class from outer XML. + + Specifies the outer XML of the element. + + + + Left Margin + Represents the following attribute in the schema: marL + + + + + Right Margin + Represents the following attribute in the schema: marR + + + + + Level + Represents the following attribute in the schema: lvl + + + + + Indent + Represents the following attribute in the schema: indent + + + + + Alignment + Represents the following attribute in the schema: algn + + + + + Default Tab Size + Represents the following attribute in the schema: defTabSz + + + + + Right To Left + Represents the following attribute in the schema: rtl + + + + + East Asian Line Break + Represents the following attribute in the schema: eaLnBrk + + + + + Font Alignment + Represents the following attribute in the schema: fontAlgn + + + + + Latin Line Break + Represents the following attribute in the schema: latinLnBrk + + + + + Hanging Punctuation + Represents the following attribute in the schema: hangingPunct + + + + + Line Spacing. + Represents the following element tag in the schema: a:lnSpc. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Space Before. + Represents the following element tag in the schema: a:spcBef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Space After. + Represents the following element tag in the schema: a:spcAft. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + End Paragraph Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:endParaRPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:rtl> + <a:highlight> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:hlinkClick> + <a:hlinkMouseOver> + <a:ln> + <a:uLn> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:solidFill> + <a:latin> + <a:ea> + <a:cs> + <a:sym> + <a:uFillTx> + <a:uFill> + <a:uLnTx> + + + + + + Initializes a new instance of the EndParagraphRunProperties class. + + + + + Initializes a new instance of the EndParagraphRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndParagraphRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndParagraphRunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Text Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:rPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:rtl> + <a:highlight> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:hlinkClick> + <a:hlinkMouseOver> + <a:ln> + <a:uLn> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:solidFill> + <a:latin> + <a:ea> + <a:cs> + <a:sym> + <a:uFillTx> + <a:uFill> + <a:uLnTx> + + + + + + Initializes a new instance of the RunProperties class. + + + + + Initializes a new instance of the RunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Default Text Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:defRPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:rtl> + <a:highlight> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:hlinkClick> + <a:hlinkMouseOver> + <a:ln> + <a:uLn> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:solidFill> + <a:latin> + <a:ea> + <a:cs> + <a:sym> + <a:uFillTx> + <a:uFill> + <a:uLnTx> + + + + + + Initializes a new instance of the DefaultRunProperties class. + + + + + Initializes a new instance of the DefaultRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefaultRunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefaultRunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextCharacterPropertiesType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:blipFill> + <a:rtl> + <a:highlight> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:hlinkClick> + <a:hlinkMouseOver> + <a:ln> + <a:uLn> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:solidFill> + <a:latin> + <a:ea> + <a:cs> + <a:sym> + <a:uFillTx> + <a:uFill> + <a:uLnTx> + + + + + + Initializes a new instance of the TextCharacterPropertiesType class. + + + + + Initializes a new instance of the TextCharacterPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextCharacterPropertiesType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextCharacterPropertiesType class from outer XML. + + Specifies the outer XML of the element. + + + + kumimoji + Represents the following attribute in the schema: kumimoji + + + + + lang + Represents the following attribute in the schema: lang + + + + + altLang + Represents the following attribute in the schema: altLang + + + + + sz + Represents the following attribute in the schema: sz + + + + + b + Represents the following attribute in the schema: b + + + + + i + Represents the following attribute in the schema: i + + + + + u + Represents the following attribute in the schema: u + + + + + strike + Represents the following attribute in the schema: strike + + + + + kern + Represents the following attribute in the schema: kern + + + + + cap + Represents the following attribute in the schema: cap + + + + + spc + Represents the following attribute in the schema: spc + + + + + normalizeH + Represents the following attribute in the schema: normalizeH + + + + + baseline + Represents the following attribute in the schema: baseline + + + + + noProof + Represents the following attribute in the schema: noProof + + + + + dirty + Represents the following attribute in the schema: dirty + + + + + err + Represents the following attribute in the schema: err + + + + + smtClean + Represents the following attribute in the schema: smtClean + + + + + smtId + Represents the following attribute in the schema: smtId + + + + + bmk + Represents the following attribute in the schema: bmk + + + + + Outline. + Represents the following element tag in the schema: a:ln. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text Paragraphs. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:p. + + + The following table lists the possible child types: + + <a:r> + <a:endParaRPr> + <a:fld> + <a:br> + <a:pPr> + <a14:m> + + + + + + Initializes a new instance of the Paragraph class. + + + + + Initializes a new instance of the Paragraph class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Paragraph class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Paragraph class from outer XML. + + Specifies the outer XML of the element. + + + + Text Paragraph Properties. + Represents the following element tag in the schema: a:pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Tab Stop. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tab. + + + + + Initializes a new instance of the TabStop class. + + + + + Tab Position + Represents the following attribute in the schema: pos + + + + + Tab Alignment + Represents the following attribute in the schema: algn + + + + + + + + Spacing Percent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:spcPct. + + + + + Initializes a new instance of the SpacingPercent class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Spacing Points. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:spcPts. + + + + + Initializes a new instance of the SpacingPoints class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Line Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:lnSpc. + + + The following table lists the possible child types: + + <a:spcPct> + <a:spcPts> + + + + + + Initializes a new instance of the LineSpacing class. + + + + + Initializes a new instance of the LineSpacing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSpacing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LineSpacing class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Space Before. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:spcBef. + + + The following table lists the possible child types: + + <a:spcPct> + <a:spcPts> + + + + + + Initializes a new instance of the SpaceBefore class. + + + + + Initializes a new instance of the SpaceBefore class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SpaceBefore class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SpaceBefore class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Space After. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:spcAft. + + + The following table lists the possible child types: + + <a:spcPct> + <a:spcPts> + + + + + + Initializes a new instance of the SpaceAfter class. + + + + + Initializes a new instance of the SpaceAfter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SpaceAfter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SpaceAfter class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextSpacingType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:spcPct> + <a:spcPts> + + + + + + Initializes a new instance of the TextSpacingType class. + + + + + Initializes a new instance of the TextSpacingType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextSpacingType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextSpacingType class from outer XML. + + Specifies the outer XML of the element. + + + + Spacing Percent. + Represents the following element tag in the schema: a:spcPct. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Spacing Points. + Represents the following element tag in the schema: a:spcPts. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Tab List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tabLst. + + + The following table lists the possible child types: + + <a:tab> + + + + + + Initializes a new instance of the TabStopList class. + + + + + Initializes a new instance of the TabStopList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TabStopList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TabStopList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Text Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:t. + + + + + Initializes a new instance of the Text class. + + + + + Initializes a new instance of the Text class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the ShapePropertiesExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <a14:hiddenEffects> + <a14:hiddenFill> + <a14:hiddenLine> + <a14:hiddenScene3d> + <a14:hiddenSp3d> + <a14:shadowObscured> + + + + + + Initializes a new instance of the ShapePropertiesExtension class. + + + + + Initializes a new instance of the ShapePropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapePropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapePropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the GvmlGroupShapeExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <a14:isCanvas> + + + + + + Initializes a new instance of the GvmlGroupShapeExtension class. + + + + + Initializes a new instance of the GvmlGroupShapeExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GvmlGroupShapeExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GvmlGroupShapeExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the ShapePropertiesExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the ShapePropertiesExtensionList class. + + + + + Initializes a new instance of the ShapePropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapePropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapePropertiesExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Non-Visual Properties for a Group Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:nvGrpSpPr. + + + The following table lists the possible child types: + + <a:cNvPr> + <a:cNvGrpSpPr> + + + + + + Initializes a new instance of the NonVisualGroupShapeProperties class. + + + + + Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: a:cNvPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Non-Visual Group Shape Drawing Properties. + Represents the following element tag in the schema: a:cNvGrpSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Visual Group Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:grpSpPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:xfrm> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:scene3d> + <a:solidFill> + + + + + + Initializes a new instance of the VisualGroupShapeProperties class. + + + + + Initializes a new instance of the VisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VisualGroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Grouped Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:sp. + + + The following table lists the possible child types: + + <a:nvSpPr> + <a:txSp> + <a:extLst> + <a:spPr> + <a:style> + + + + + + Initializes a new instance of the Shape class. + + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Shape. + Represents the following element tag in the schema: a:nvSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Visual Properties. + Represents the following element tag in the schema: a:spPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text Shape. + Represents the following element tag in the schema: a:txSp. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Style. + Represents the following element tag in the schema: a:style. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Connection Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:cxnSp. + + + The following table lists the possible child types: + + <a:nvCxnSpPr> + <a:extLst> + <a:spPr> + <a:style> + + + + + + Initializes a new instance of the ConnectionShape class. + + + + + Initializes a new instance of the ConnectionShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShape class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Connection Shape. + Represents the following element tag in the schema: a:nvCxnSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Visual Properties. + Represents the following element tag in the schema: a:spPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Shape Style. + Represents the following element tag in the schema: a:style. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Picture. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:pic. + + + The following table lists the possible child types: + + <a:blipFill> + <a:nvPicPr> + <a:extLst> + <a:spPr> + <a:style> + + + + + + Initializes a new instance of the Picture class. + + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Picture. + Represents the following element tag in the schema: a:nvPicPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Picture Fill. + Represents the following element tag in the schema: a:blipFill. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Shape Properties. + Represents the following element tag in the schema: a:spPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ShapeStyle. + Represents the following element tag in the schema: a:style. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Graphic Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:graphicFrame. + + + The following table lists the possible child types: + + <a:graphic> + <a:nvGraphicFramePr> + <a:extLst> + <a:xfrm> + + + + + + Initializes a new instance of the GraphicFrame class. + + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Graphic Frame. + Represents the following element tag in the schema: a:nvGraphicFramePr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Graphic. + Represents the following element tag in the schema: a:graphic. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Transform2D. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Group shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:grpSp. + + + The following table lists the possible child types: + + <a:grpSpPr> + <a:cxnSp> + <a:graphicFrame> + <a:grpSp> + <a:extLst> + <a:nvGrpSpPr> + <a:pic> + <a:sp> + <a:txSp> + <a14:contentPart> + + + + + + Initializes a new instance of the GroupShape class. + + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Group Shape. + Represents the following element tag in the schema: a:nvGrpSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Visual Group Shape Properties. + Represents the following element tag in the schema: a:grpSpPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the GvmlGroupShapeExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the GvmlGroupShapeExtensionList class. + + + + + Initializes a new instance of the GvmlGroupShapeExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GvmlGroupShapeExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GvmlGroupShapeExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NonVisualGroupDrawingShapePropsExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <a15:nonVisualGroupProps> + + + + + + Initializes a new instance of the NonVisualGroupDrawingShapePropsExtension class. + + + + + Initializes a new instance of the NonVisualGroupDrawingShapePropsExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapePropsExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapePropsExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the OfficeStyleSheetExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <thm15:themeFamily> + + + + + + Initializes a new instance of the OfficeStyleSheetExtension class. + + + + + Initializes a new instance of the OfficeStyleSheetExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeStyleSheetExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeStyleSheetExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the ConnectorLockingExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <a:graphic> + + + + + + Initializes a new instance of the ConnectorLockingExtension class. + + + + + Initializes a new instance of the ConnectorLockingExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectorLockingExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectorLockingExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the GroupShapeLocks Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:grpSpLocks. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the GroupShapeLocks class. + + + + + Initializes a new instance of the GroupShapeLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeLocks class from outer XML. + + Specifies the outer XML of the element. + + + + Disallow Shape Grouping + Represents the following attribute in the schema: noGrp + + + + + Disallow Shape Ungrouping + Represents the following attribute in the schema: noUngrp + + + + + Disallow Shape Selection + Represents the following attribute in the schema: noSelect + + + + + Disallow Shape Rotation + Represents the following attribute in the schema: noRot + + + + + Disallow Aspect Ratio Change + Represents the following attribute in the schema: noChangeAspect + + + + + Disallow Moving Shape + Represents the following attribute in the schema: noMove + + + + + Disallow Shape Resizing + Represents the following attribute in the schema: noResize + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualGroupDrawingShapePropsExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the NonVisualGroupDrawingShapePropsExtensionList class. + + + + + Initializes a new instance of the NonVisualGroupDrawingShapePropsExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapePropsExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupDrawingShapePropsExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ObjectDefaults Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:objectDefaults. + + + The following table lists the possible child types: + + <a:spDef> + <a:lnDef> + <a:txDef> + <a:extLst> + + + + + + Initializes a new instance of the ObjectDefaults class. + + + + + Initializes a new instance of the ObjectDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ObjectDefaults class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ObjectDefaults class from outer XML. + + Specifies the outer XML of the element. + + + + Shape Default. + Represents the following element tag in the schema: a:spDef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Line Default. + Represents the following element tag in the schema: a:lnDef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text Default. + Represents the following element tag in the schema: a:txDef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ExtraColorSchemeList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extraClrSchemeLst. + + + The following table lists the possible child types: + + <a:extraClrScheme> + + + + + + Initializes a new instance of the ExtraColorSchemeList class. + + + + + Initializes a new instance of the ExtraColorSchemeList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtraColorSchemeList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtraColorSchemeList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CustomColorList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:custClrLst. + + + The following table lists the possible child types: + + <a:custClr> + + + + + + Initializes a new instance of the CustomColorList class. + + + + + Initializes a new instance of the CustomColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomColorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomColorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OfficeStyleSheetExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the OfficeStyleSheetExtensionList class. + + + + + Initializes a new instance of the OfficeStyleSheetExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeStyleSheetExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeStyleSheetExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HyperlinkOnClick Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hlinkClick. + + + The following table lists the possible child types: + + <a:snd> + <a:extLst> + + + + + + Initializes a new instance of the HyperlinkOnClick class. + + + + + Initializes a new instance of the HyperlinkOnClick class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkOnClick class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkOnClick class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HyperlinkOnMouseOver Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hlinkMouseOver. + + + The following table lists the possible child types: + + <a:snd> + <a:extLst> + + + + + + Initializes a new instance of the HyperlinkOnMouseOver class. + + + + + Initializes a new instance of the HyperlinkOnMouseOver class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkOnMouseOver class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkOnMouseOver class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HyperlinkOnHover Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:hlinkHover. + + + The following table lists the possible child types: + + <a:snd> + <a:extLst> + + + + + + Initializes a new instance of the HyperlinkOnHover class. + + + + + Initializes a new instance of the HyperlinkOnHover class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkOnHover class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkOnHover class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HyperlinkType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:snd> + <a:extLst> + + + + + + Initializes a new instance of the HyperlinkType class. + + + + + Initializes a new instance of the HyperlinkType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkType class from outer XML. + + Specifies the outer XML of the element. + + + + relationship identifier to find target URI + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + In case the url is invalid so we can't create a relationship, we'll save it here, r:id will point to a NULL one + Represents the following attribute in the schema: invalidUrl + + + + + Action to take, it may still need r:id to specify an action target + Represents the following attribute in the schema: action + + + + + target frame for navigating to the URI + Represents the following attribute in the schema: tgtFrame + + + + + tooltip for display + Represents the following attribute in the schema: tooltip + + + + + whether to add this URI to the history when navigating to it + Represents the following attribute in the schema: history + + + + + Whether to highlight it when click on a shape + Represents the following attribute in the schema: highlightClick + + + + + Whether to stop previous sound when click on it + Represents the following attribute in the schema: endSnd + + + + + Sound to play.. + Represents the following element tag in the schema: a:snd. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extensions.. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Defines the RightToLeft Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:rtl. + + + + + Initializes a new instance of the RightToLeft class. + + + + + val + Represents the following attribute in the schema: val + + + + + + + + Defines the NonVisualDrawingPropertiesExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the NonVisualDrawingPropertiesExtensionList class. + + + + + Initializes a new instance of the NonVisualDrawingPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingPropertiesExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ConnectorLockingExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the ConnectorLockingExtensionList class. + + + + + Initializes a new instance of the ConnectorLockingExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectorLockingExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectorLockingExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DataModelExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <dgm14:recolorImg> + <dsp:dataModelExt> + + + + + + Initializes a new instance of the DataModelExtension class. + + + + + Initializes a new instance of the DataModelExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModelExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataModelExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the PtExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <dgm14:cNvPr> + + + + + + Initializes a new instance of the PtExtension class. + + + + + Initializes a new instance of the PtExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PtExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PtExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the HyperlinkExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <ahyp:hlinkClr> + + + + + + Initializes a new instance of the HyperlinkExtension class. + + + + + Initializes a new instance of the HyperlinkExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Future extensions.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the HyperlinkExtensionList class. + + + + + Initializes a new instance of the HyperlinkExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the LinePropertiesExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <ask:lineSketchStyleProps> + + + + + + Initializes a new instance of the LinePropertiesExtension class. + + + + + Initializes a new instance of the LinePropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinePropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinePropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + default head line end style is none. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:headEnd. + + + + + Initializes a new instance of the HeadEnd class. + + + + + + + + default tail line end style is none. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:tailEnd. + + + + + Initializes a new instance of the TailEnd class. + + + + + + + + Defines the LineEndPropertiesType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the LineEndPropertiesType class. + + + + + Line Head/End Type + Represents the following attribute in the schema: type + + + + + Width of Head/End + Represents the following attribute in the schema: w + + + + + Length of Head/End + Represents the following attribute in the schema: len + + + + + Future extensions.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the LinePropertiesExtensionList class. + + + + + Initializes a new instance of the LinePropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinePropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LinePropertiesExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NonVisualDrawingPropertiesExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <a14:compatExt> + <a15:backgroundPr> + <a16:creationId> + <a16:predDERef> + <aclsh:classification> + <adec:decorative> + <asl:scriptLink> + + + + + + Initializes a new instance of the NonVisualDrawingPropertiesExtension class. + + + + + Initializes a new instance of the NonVisualDrawingPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingPropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the PictureLocks Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:picLocks. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the PictureLocks class. + + + + + Initializes a new instance of the PictureLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureLocks class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PictureLocks class from outer XML. + + Specifies the outer XML of the element. + + + + Disallow Shape Grouping + Represents the following attribute in the schema: noGrp + + + + + Disallow Shape Selection + Represents the following attribute in the schema: noSelect + + + + + Disallow Shape Rotation + Represents the following attribute in the schema: noRot + + + + + Disallow Aspect Ratio Change + Represents the following attribute in the schema: noChangeAspect + + + + + Disallow Shape Movement + Represents the following attribute in the schema: noMove + + + + + Disallow Shape Resize + Represents the following attribute in the schema: noResize + + + + + Disallow Shape Point Editing + Represents the following attribute in the schema: noEditPoints + + + + + Disallow Showing Adjust Handles + Represents the following attribute in the schema: noAdjustHandles + + + + + Disallow Arrowhead Changes + Represents the following attribute in the schema: noChangeArrowheads + + + + + Disallow Shape Type Change + Represents the following attribute in the schema: noChangeShapeType + + + + + Disallow Crop Changes + Represents the following attribute in the schema: noCrop + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualPicturePropertiesExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the NonVisualPicturePropertiesExtensionList class. + + + + + Initializes a new instance of the NonVisualPicturePropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPicturePropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPicturePropertiesExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NonVisualPicturePropertiesExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <a14:cameraTool> + <a15:objectPr> + <a15:signatureLine> + <aif:imageFormula> + <alf:liveFeedProps> + + + + + + Initializes a new instance of the NonVisualPicturePropertiesExtension class. + + + + + Initializes a new instance of the NonVisualPicturePropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPicturePropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPicturePropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Future extensions.. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:extLst. + + + The following table lists the possible child types: + + <a:ext> + + + + + + Initializes a new instance of the BlipExtensionList class. + + + + + Initializes a new instance of the BlipExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the BlipExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is a:ext. + + + The following table lists the possible child types: + + <a14:imgProps> + <a14:useLocalDpi> + <a1611:picAttrSrcUrl> + <aoe:oembedShared> + <asvg:svgBlip> + <woe:oembed> + <wp15:webVideoPr> + + + + + + Initializes a new instance of the BlipExtension class. + + + + + Initializes a new instance of the BlipExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Font Collection Index + + + + + Creates a new FontCollectionIndexValues enum instance + + + + + Major Font. + When the item is serialized out as xml, its value is "major". + + + + + Minor Font. + When the item is serialized out as xml, its value is "minor". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Theme Color Reference + + + + + Creates a new ColorSchemeIndexValues enum instance + + + + + Dark 1. + When the item is serialized out as xml, its value is "dk1". + + + + + Light 1. + When the item is serialized out as xml, its value is "lt1". + + + + + Dark 2. + When the item is serialized out as xml, its value is "dk2". + + + + + Light 2. + When the item is serialized out as xml, its value is "lt2". + + + + + Accent 1. + When the item is serialized out as xml, its value is "accent1". + + + + + Accent 2. + When the item is serialized out as xml, its value is "accent2". + + + + + Accent 3. + When the item is serialized out as xml, its value is "accent3". + + + + + Accent 4. + When the item is serialized out as xml, its value is "accent4". + + + + + Accent 5. + When the item is serialized out as xml, its value is "accent5". + + + + + Accent 6. + When the item is serialized out as xml, its value is "accent6". + + + + + Hyperlink. + When the item is serialized out as xml, its value is "hlink". + + + + + Followed Hyperlink. + When the item is serialized out as xml, its value is "folHlink". + + + + + System Color Value + + + + + Creates a new SystemColorValues enum instance + + + + + Scroll Bar System Color. + When the item is serialized out as xml, its value is "scrollBar". + + + + + Background System Color. + When the item is serialized out as xml, its value is "background". + + + + + Active Caption System Color. + When the item is serialized out as xml, its value is "activeCaption". + + + + + Inactive Caption System Color. + When the item is serialized out as xml, its value is "inactiveCaption". + + + + + Menu System Color. + When the item is serialized out as xml, its value is "menu". + + + + + Window System Color. + When the item is serialized out as xml, its value is "window". + + + + + Window Frame System Color. + When the item is serialized out as xml, its value is "windowFrame". + + + + + Menu Text System Color. + When the item is serialized out as xml, its value is "menuText". + + + + + Window Text System Color. + When the item is serialized out as xml, its value is "windowText". + + + + + Caption Text System Color. + When the item is serialized out as xml, its value is "captionText". + + + + + Active Border System Color. + When the item is serialized out as xml, its value is "activeBorder". + + + + + Inactive Border System Color. + When the item is serialized out as xml, its value is "inactiveBorder". + + + + + Application Workspace System Color. + When the item is serialized out as xml, its value is "appWorkspace". + + + + + Highlight System Color. + When the item is serialized out as xml, its value is "highlight". + + + + + Highlight Text System Color. + When the item is serialized out as xml, its value is "highlightText". + + + + + Button Face System Color. + When the item is serialized out as xml, its value is "btnFace". + + + + + Button Shadow System Color. + When the item is serialized out as xml, its value is "btnShadow". + + + + + Gray Text System Color. + When the item is serialized out as xml, its value is "grayText". + + + + + Button Text System Color. + When the item is serialized out as xml, its value is "btnText". + + + + + Inactive Caption Text System Color. + When the item is serialized out as xml, its value is "inactiveCaptionText". + + + + + Button Highlight System Color. + When the item is serialized out as xml, its value is "btnHighlight". + + + + + 3D Dark System Color. + When the item is serialized out as xml, its value is "3dDkShadow". + + + + + 3D Light System Color. + When the item is serialized out as xml, its value is "3dLight". + + + + + Info Text System Color. + When the item is serialized out as xml, its value is "infoText". + + + + + Info Back System Color. + When the item is serialized out as xml, its value is "infoBk". + + + + + Hot Light System Color. + When the item is serialized out as xml, its value is "hotLight". + + + + + Gradient Active Caption System Color. + When the item is serialized out as xml, its value is "gradientActiveCaption". + + + + + Gradient Inactive Caption System Color. + When the item is serialized out as xml, its value is "gradientInactiveCaption". + + + + + Menu Highlight System Color. + When the item is serialized out as xml, its value is "menuHighlight". + + + + + Menu Bar System Color. + When the item is serialized out as xml, its value is "menuBar". + + + + + Scheme Color + + + + + Creates a new SchemeColorValues enum instance + + + + + Background Color 1. + When the item is serialized out as xml, its value is "bg1". + + + + + Text Color 1. + When the item is serialized out as xml, its value is "tx1". + + + + + Background Color 2. + When the item is serialized out as xml, its value is "bg2". + + + + + Text Color 2. + When the item is serialized out as xml, its value is "tx2". + + + + + Accent Color 1. + When the item is serialized out as xml, its value is "accent1". + + + + + Accent Color 2. + When the item is serialized out as xml, its value is "accent2". + + + + + Accent Color 3. + When the item is serialized out as xml, its value is "accent3". + + + + + Accent Color 4. + When the item is serialized out as xml, its value is "accent4". + + + + + Accent Color 5. + When the item is serialized out as xml, its value is "accent5". + + + + + Accent Color 6. + When the item is serialized out as xml, its value is "accent6". + + + + + Hyperlink Color. + When the item is serialized out as xml, its value is "hlink". + + + + + Followed Hyperlink Color. + When the item is serialized out as xml, its value is "folHlink". + + + + + Style Color. + When the item is serialized out as xml, its value is "phClr". + + + + + Dark Color 1. + When the item is serialized out as xml, its value is "dk1". + + + + + Light Color 1. + When the item is serialized out as xml, its value is "lt1". + + + + + Dark Color 2. + When the item is serialized out as xml, its value is "dk2". + + + + + Light Color 2. + When the item is serialized out as xml, its value is "lt2". + + + + + Rectangle Alignments + + + + + Creates a new RectangleAlignmentValues enum instance + + + + + Rectangle Alignment Enum ( Top Left ). + When the item is serialized out as xml, its value is "tl". + + + + + Rectangle Alignment Enum ( Top ). + When the item is serialized out as xml, its value is "t". + + + + + Rectangle Alignment Enum ( Top Right ). + When the item is serialized out as xml, its value is "tr". + + + + + Rectangle Alignment Enum ( Left ). + When the item is serialized out as xml, its value is "l". + + + + + Rectangle Alignment Enum ( Center ). + When the item is serialized out as xml, its value is "ctr". + + + + + Rectangle Alignment Enum ( Right ). + When the item is serialized out as xml, its value is "r". + + + + + Rectangle Alignment Enum ( Bottom Left ). + When the item is serialized out as xml, its value is "bl". + + + + + Rectangle Alignment Enum ( Bottom ). + When the item is serialized out as xml, its value is "b". + + + + + Rectangle Alignment Enum ( Bottom Right ). + When the item is serialized out as xml, its value is "br". + + + + + Black and White Mode + + + + + Creates a new BlackWhiteModeValues enum instance + + + + + Color. + When the item is serialized out as xml, its value is "clr". + + + + + Automatic. + When the item is serialized out as xml, its value is "auto". + + + + + Gray. + When the item is serialized out as xml, its value is "gray". + + + + + Light Gray. + When the item is serialized out as xml, its value is "ltGray". + + + + + Inverse Gray. + When the item is serialized out as xml, its value is "invGray". + + + + + Gray and White. + When the item is serialized out as xml, its value is "grayWhite". + + + + + Black and Gray. + When the item is serialized out as xml, its value is "blackGray". + + + + + Black and White. + When the item is serialized out as xml, its value is "blackWhite". + + + + + Black. + When the item is serialized out as xml, its value is "black". + + + + + White. + When the item is serialized out as xml, its value is "white". + + + + + Hidden. + When the item is serialized out as xml, its value is "hidden". + + + + + Chart Animation Build Step + + + + + Creates a new ChartBuildStepValues enum instance + + + + + Category. + When the item is serialized out as xml, its value is "category". + + + + + Category Points. + When the item is serialized out as xml, its value is "ptInCategory". + + + + + Series. + When the item is serialized out as xml, its value is "series". + + + + + Series Points. + When the item is serialized out as xml, its value is "ptInSeries". + + + + + All Points. + When the item is serialized out as xml, its value is "allPts". + + + + + Grid and Legend. + When the item is serialized out as xml, its value is "gridLegend". + + + + + Diagram Animation Build Steps + + + + + Creates a new DiagramBuildStepValues enum instance + + + + + Shape. + When the item is serialized out as xml, its value is "sp". + + + + + Background. + When the item is serialized out as xml, its value is "bg". + + + + + Animation Build Type + + + + + Creates a new AnimationBuildValues enum instance + + + + + Animate At Once. + When the item is serialized out as xml, its value is "allAtOnce". + + + + + Diagram only Animation Types + + + + + Creates a new AnimationDiagramOnlyBuildValues enum instance + + + + + Elements One-by-One. + When the item is serialized out as xml, its value is "one". + + + + + Level One-by-One. + When the item is serialized out as xml, its value is "lvlOne". + + + + + Each Level at Once. + When the item is serialized out as xml, its value is "lvlAtOnce". + + + + + Chart only Animation Types + + + + + Creates a new AnimationChartOnlyBuildValues enum instance + + + + + Series. + When the item is serialized out as xml, its value is "series". + + + + + Category. + When the item is serialized out as xml, its value is "category". + + + + + Series Element. + When the item is serialized out as xml, its value is "seriesEl". + + + + + Category Element. + When the item is serialized out as xml, its value is "categoryEl". + + + + + Preset Camera Type + + + + + Creates a new PresetCameraValues enum instance + + + + + Legacy Oblique Top Left. + When the item is serialized out as xml, its value is "legacyObliqueTopLeft". + + + + + Legacy Oblique Top. + When the item is serialized out as xml, its value is "legacyObliqueTop". + + + + + Legacy Oblique Top Right. + When the item is serialized out as xml, its value is "legacyObliqueTopRight". + + + + + Legacy Oblique Left. + When the item is serialized out as xml, its value is "legacyObliqueLeft". + + + + + Legacy Oblique Front. + When the item is serialized out as xml, its value is "legacyObliqueFront". + + + + + Legacy Oblique Right. + When the item is serialized out as xml, its value is "legacyObliqueRight". + + + + + Legacy Oblique Bottom Left. + When the item is serialized out as xml, its value is "legacyObliqueBottomLeft". + + + + + Legacy Oblique Bottom. + When the item is serialized out as xml, its value is "legacyObliqueBottom". + + + + + Legacy Oblique Bottom Right. + When the item is serialized out as xml, its value is "legacyObliqueBottomRight". + + + + + Legacy Perspective Top Left. + When the item is serialized out as xml, its value is "legacyPerspectiveTopLeft". + + + + + Legacy Perspective Top. + When the item is serialized out as xml, its value is "legacyPerspectiveTop". + + + + + Legacy Perspective Top Right. + When the item is serialized out as xml, its value is "legacyPerspectiveTopRight". + + + + + Legacy Perspective Left. + When the item is serialized out as xml, its value is "legacyPerspectiveLeft". + + + + + Legacy Perspective Front. + When the item is serialized out as xml, its value is "legacyPerspectiveFront". + + + + + Legacy Perspective Right. + When the item is serialized out as xml, its value is "legacyPerspectiveRight". + + + + + Legacy Perspective Bottom Left. + When the item is serialized out as xml, its value is "legacyPerspectiveBottomLeft". + + + + + Legacy Perspective Bottom. + When the item is serialized out as xml, its value is "legacyPerspectiveBottom". + + + + + Legacy Perspective Bottom Right. + When the item is serialized out as xml, its value is "legacyPerspectiveBottomRight". + + + + + Orthographic Front. + When the item is serialized out as xml, its value is "orthographicFront". + + + + + Isometric Top Up. + When the item is serialized out as xml, its value is "isometricTopUp". + + + + + Isometric Top Down. + When the item is serialized out as xml, its value is "isometricTopDown". + + + + + Isometric Bottom Up. + When the item is serialized out as xml, its value is "isometricBottomUp". + + + + + Isometric Bottom Down. + When the item is serialized out as xml, its value is "isometricBottomDown". + + + + + Isometric Left Up. + When the item is serialized out as xml, its value is "isometricLeftUp". + + + + + Isometric Left Down. + When the item is serialized out as xml, its value is "isometricLeftDown". + + + + + Isometric Right Up. + When the item is serialized out as xml, its value is "isometricRightUp". + + + + + Isometric Right Down. + When the item is serialized out as xml, its value is "isometricRightDown". + + + + + Isometric Off Axis 1 Left. + When the item is serialized out as xml, its value is "isometricOffAxis1Left". + + + + + Isometric Off Axis 1 Right. + When the item is serialized out as xml, its value is "isometricOffAxis1Right". + + + + + Isometric Off Axis 1 Top. + When the item is serialized out as xml, its value is "isometricOffAxis1Top". + + + + + Isometric Off Axis 2 Left. + When the item is serialized out as xml, its value is "isometricOffAxis2Left". + + + + + Isometric Off Axis 2 Right. + When the item is serialized out as xml, its value is "isometricOffAxis2Right". + + + + + Isometric Off Axis 2 Top. + When the item is serialized out as xml, its value is "isometricOffAxis2Top". + + + + + Isometric Off Axis 3 Left. + When the item is serialized out as xml, its value is "isometricOffAxis3Left". + + + + + Isometric Off Axis 3 Right. + When the item is serialized out as xml, its value is "isometricOffAxis3Right". + + + + + Isometric Off Axis 3 Bottom. + When the item is serialized out as xml, its value is "isometricOffAxis3Bottom". + + + + + Isometric Off Axis 4 Left. + When the item is serialized out as xml, its value is "isometricOffAxis4Left". + + + + + Isometric Off Axis 4 Right. + When the item is serialized out as xml, its value is "isometricOffAxis4Right". + + + + + Isometric Off Axis 4 Bottom. + When the item is serialized out as xml, its value is "isometricOffAxis4Bottom". + + + + + Oblique Top Left. + When the item is serialized out as xml, its value is "obliqueTopLeft". + + + + + Oblique Top. + When the item is serialized out as xml, its value is "obliqueTop". + + + + + Oblique Top Right. + When the item is serialized out as xml, its value is "obliqueTopRight". + + + + + Oblique Left. + When the item is serialized out as xml, its value is "obliqueLeft". + + + + + Oblique Right. + When the item is serialized out as xml, its value is "obliqueRight". + + + + + Oblique Bottom Left. + When the item is serialized out as xml, its value is "obliqueBottomLeft". + + + + + Oblique Bottom. + When the item is serialized out as xml, its value is "obliqueBottom". + + + + + Oblique Bottom Right. + When the item is serialized out as xml, its value is "obliqueBottomRight". + + + + + Perspective Front. + When the item is serialized out as xml, its value is "perspectiveFront". + + + + + Perspective Left. + When the item is serialized out as xml, its value is "perspectiveLeft". + + + + + Perspective Right. + When the item is serialized out as xml, its value is "perspectiveRight". + + + + + Orthographic Above. + When the item is serialized out as xml, its value is "perspectiveAbove". + + + + + Perspective Below. + When the item is serialized out as xml, its value is "perspectiveBelow". + + + + + Perspective Above Left Facing. + When the item is serialized out as xml, its value is "perspectiveAboveLeftFacing". + + + + + Perspective Above Right Facing. + When the item is serialized out as xml, its value is "perspectiveAboveRightFacing". + + + + + Perspective Contrasting Left Facing. + When the item is serialized out as xml, its value is "perspectiveContrastingLeftFacing". + + + + + Perspective Contrasting Right Facing. + When the item is serialized out as xml, its value is "perspectiveContrastingRightFacing". + + + + + Perspective Heroic Left Facing. + When the item is serialized out as xml, its value is "perspectiveHeroicLeftFacing". + + + + + Perspective Heroic Right Facing. + When the item is serialized out as xml, its value is "perspectiveHeroicRightFacing". + + + + + Perspective Heroic Extreme Left Facing. + When the item is serialized out as xml, its value is "perspectiveHeroicExtremeLeftFacing". + + + + + Perspective Heroic Extreme Right Facing. + When the item is serialized out as xml, its value is "perspectiveHeroicExtremeRightFacing". + + + + + Perspective Relaxed. + When the item is serialized out as xml, its value is "perspectiveRelaxed". + + + + + Perspective Relaxed Moderately. + When the item is serialized out as xml, its value is "perspectiveRelaxedModerately". + + + + + Light Rig Direction + + + + + Creates a new LightRigDirectionValues enum instance + + + + + Top Left. + When the item is serialized out as xml, its value is "tl". + + + + + Top. + When the item is serialized out as xml, its value is "t". + + + + + Top Right. + When the item is serialized out as xml, its value is "tr". + + + + + Left. + When the item is serialized out as xml, its value is "l". + + + + + Right. + When the item is serialized out as xml, its value is "r". + + + + + Bottom Left. + When the item is serialized out as xml, its value is "bl". + + + + + Bottom. + When the item is serialized out as xml, its value is "b". + + + + + Bottom Right. + When the item is serialized out as xml, its value is "br". + + + + + Light Rig Type + + + + + Creates a new LightRigValues enum instance + + + + + Legacy Flat 1. + When the item is serialized out as xml, its value is "legacyFlat1". + + + + + Legacy Flat 2. + When the item is serialized out as xml, its value is "legacyFlat2". + + + + + Legacy Flat 3. + When the item is serialized out as xml, its value is "legacyFlat3". + + + + + Legacy Flat 4. + When the item is serialized out as xml, its value is "legacyFlat4". + + + + + Legacy Normal 1. + When the item is serialized out as xml, its value is "legacyNormal1". + + + + + Legacy Normal 2. + When the item is serialized out as xml, its value is "legacyNormal2". + + + + + Legacy Normal 3. + When the item is serialized out as xml, its value is "legacyNormal3". + + + + + Legacy Normal 4. + When the item is serialized out as xml, its value is "legacyNormal4". + + + + + Legacy Harsh 1. + When the item is serialized out as xml, its value is "legacyHarsh1". + + + + + Legacy Harsh 2. + When the item is serialized out as xml, its value is "legacyHarsh2". + + + + + Legacy Harsh 3. + When the item is serialized out as xml, its value is "legacyHarsh3". + + + + + Legacy Harsh 4. + When the item is serialized out as xml, its value is "legacyHarsh4". + + + + + Three Point. + When the item is serialized out as xml, its value is "threePt". + + + + + Light Rig Enum ( Balanced ). + When the item is serialized out as xml, its value is "balanced". + + + + + Soft. + When the item is serialized out as xml, its value is "soft". + + + + + Harsh. + When the item is serialized out as xml, its value is "harsh". + + + + + Flood. + When the item is serialized out as xml, its value is "flood". + + + + + Contrasting. + When the item is serialized out as xml, its value is "contrasting". + + + + + Morning. + When the item is serialized out as xml, its value is "morning". + + + + + Sunrise. + When the item is serialized out as xml, its value is "sunrise". + + + + + Sunset. + When the item is serialized out as xml, its value is "sunset". + + + + + Chilly. + When the item is serialized out as xml, its value is "chilly". + + + + + Freezing. + When the item is serialized out as xml, its value is "freezing". + + + + + Flat. + When the item is serialized out as xml, its value is "flat". + + + + + Two Point. + When the item is serialized out as xml, its value is "twoPt". + + + + + Glow. + When the item is serialized out as xml, its value is "glow". + + + + + Bright Room. + When the item is serialized out as xml, its value is "brightRoom". + + + + + Bevel Presets + + + + + Creates a new BevelPresetValues enum instance + + + + + Relaxed Inset. + When the item is serialized out as xml, its value is "relaxedInset". + + + + + Circle. + When the item is serialized out as xml, its value is "circle". + + + + + Slope. + When the item is serialized out as xml, its value is "slope". + + + + + Cross. + When the item is serialized out as xml, its value is "cross". + + + + + Angle. + When the item is serialized out as xml, its value is "angle". + + + + + Soft Round. + When the item is serialized out as xml, its value is "softRound". + + + + + Convex. + When the item is serialized out as xml, its value is "convex". + + + + + Cool Slant. + When the item is serialized out as xml, its value is "coolSlant". + + + + + Divot. + When the item is serialized out as xml, its value is "divot". + + + + + Riblet. + When the item is serialized out as xml, its value is "riblet". + + + + + Hard Edge. + When the item is serialized out as xml, its value is "hardEdge". + + + + + Art Deco. + When the item is serialized out as xml, its value is "artDeco". + + + + + Preset Material Type + + + + + Creates a new PresetMaterialTypeValues enum instance + + + + + Legacy Matte. + When the item is serialized out as xml, its value is "legacyMatte". + + + + + Legacy Plastic. + When the item is serialized out as xml, its value is "legacyPlastic". + + + + + Legacy Metal. + When the item is serialized out as xml, its value is "legacyMetal". + + + + + Legacy Wireframe. + When the item is serialized out as xml, its value is "legacyWireframe". + + + + + Matte. + When the item is serialized out as xml, its value is "matte". + + + + + Plastic. + When the item is serialized out as xml, its value is "plastic". + + + + + Metal. + When the item is serialized out as xml, its value is "metal". + + + + + Warm Matte. + When the item is serialized out as xml, its value is "warmMatte". + + + + + Translucent Powder. + When the item is serialized out as xml, its value is "translucentPowder". + + + + + Powder. + When the item is serialized out as xml, its value is "powder". + + + + + Dark Edge. + When the item is serialized out as xml, its value is "dkEdge". + + + + + Soft Edge. + When the item is serialized out as xml, its value is "softEdge". + + + + + Clear. + When the item is serialized out as xml, its value is "clear". + + + + + Flat. + When the item is serialized out as xml, its value is "flat". + + + + + Soft Metal. + When the item is serialized out as xml, its value is "softmetal". + + + + + Preset Shadow Type + + + + + Creates a new PresetShadowValues enum instance + + + + + Top Left Drop Shadow. + When the item is serialized out as xml, its value is "shdw1". + + + + + Top Right Drop Shadow. + When the item is serialized out as xml, its value is "shdw2". + + + + + Back Left Perspective Shadow. + When the item is serialized out as xml, its value is "shdw3". + + + + + Back Right Perspective Shadow. + When the item is serialized out as xml, its value is "shdw4". + + + + + Bottom Left Drop Shadow. + When the item is serialized out as xml, its value is "shdw5". + + + + + Bottom Right Drop Shadow. + When the item is serialized out as xml, its value is "shdw6". + + + + + Front Left Perspective Shadow. + When the item is serialized out as xml, its value is "shdw7". + + + + + Front Right Perspective Shadow. + When the item is serialized out as xml, its value is "shdw8". + + + + + Top Left Small Drop Shadow. + When the item is serialized out as xml, its value is "shdw9". + + + + + Top Left Large Drop Shadow. + When the item is serialized out as xml, its value is "shdw10". + + + + + Back Left Long Perspective Shadow. + When the item is serialized out as xml, its value is "shdw11". + + + + + Back Right Long Perspective Shadow. + When the item is serialized out as xml, its value is "shdw12". + + + + + Top Left Double Drop Shadow. + When the item is serialized out as xml, its value is "shdw13". + + + + + Bottom Right Small Drop Shadow. + When the item is serialized out as xml, its value is "shdw14". + + + + + Front Left Long Perspective Shadow. + When the item is serialized out as xml, its value is "shdw15". + + + + + Front Right LongPerspective Shadow. + When the item is serialized out as xml, its value is "shdw16". + + + + + 3D Outer Box Shadow. + When the item is serialized out as xml, its value is "shdw17". + + + + + 3D Inner Box Shadow. + When the item is serialized out as xml, its value is "shdw18". + + + + + Back Center Perspective Shadow. + When the item is serialized out as xml, its value is "shdw19". + + + + + Front Bottom Shadow. + When the item is serialized out as xml, its value is "shdw20". + + + + + Path Shade Type + + + + + Creates a new PathShadeValues enum instance + + + + + Shape. + When the item is serialized out as xml, its value is "shape". + + + + + Circle. + When the item is serialized out as xml, its value is "circle". + + + + + Rectangle. + When the item is serialized out as xml, its value is "rect". + + + + + Tile Flip Mode + + + + + Creates a new TileFlipValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Horizontal. + When the item is serialized out as xml, its value is "x". + + + + + Vertical. + When the item is serialized out as xml, its value is "y". + + + + + Horizontal and Vertical. + When the item is serialized out as xml, its value is "xy". + + + + + Blip Compression Type + + + + + Creates a new BlipCompressionValues enum instance + + + + + Email Compression. + When the item is serialized out as xml, its value is "email". + + + + + Screen Viewing Compression. + When the item is serialized out as xml, its value is "screen". + + + + + Printing Compression. + When the item is serialized out as xml, its value is "print". + + + + + High Quality Printing Compression. + When the item is serialized out as xml, its value is "hqprint". + + + + + No Compression. + When the item is serialized out as xml, its value is "none". + + + + + Preset Pattern Value + + + + + Creates a new PresetPatternValues enum instance + + + + + 5%. + When the item is serialized out as xml, its value is "pct5". + + + + + 10%. + When the item is serialized out as xml, its value is "pct10". + + + + + 20%. + When the item is serialized out as xml, its value is "pct20". + + + + + 25%. + When the item is serialized out as xml, its value is "pct25". + + + + + 30%. + When the item is serialized out as xml, its value is "pct30". + + + + + 40%. + When the item is serialized out as xml, its value is "pct40". + + + + + 50%. + When the item is serialized out as xml, its value is "pct50". + + + + + 60%. + When the item is serialized out as xml, its value is "pct60". + + + + + 70%. + When the item is serialized out as xml, its value is "pct70". + + + + + 75%. + When the item is serialized out as xml, its value is "pct75". + + + + + 80%. + When the item is serialized out as xml, its value is "pct80". + + + + + 90%. + When the item is serialized out as xml, its value is "pct90". + + + + + Horizontal. + When the item is serialized out as xml, its value is "horz". + + + + + Vertical. + When the item is serialized out as xml, its value is "vert". + + + + + Light Horizontal. + When the item is serialized out as xml, its value is "ltHorz". + + + + + Light Vertical. + When the item is serialized out as xml, its value is "ltVert". + + + + + Dark Horizontal. + When the item is serialized out as xml, its value is "dkHorz". + + + + + Dark Vertical. + When the item is serialized out as xml, its value is "dkVert". + + + + + Narrow Horizontal. + When the item is serialized out as xml, its value is "narHorz". + + + + + Narrow Vertical. + When the item is serialized out as xml, its value is "narVert". + + + + + Dashed Horizontal. + When the item is serialized out as xml, its value is "dashHorz". + + + + + Dashed Vertical. + When the item is serialized out as xml, its value is "dashVert". + + + + + Cross. + When the item is serialized out as xml, its value is "cross". + + + + + Downward Diagonal. + When the item is serialized out as xml, its value is "dnDiag". + + + + + Upward Diagonal. + When the item is serialized out as xml, its value is "upDiag". + + + + + Light Downward Diagonal. + When the item is serialized out as xml, its value is "ltDnDiag". + + + + + Light Upward Diagonal. + When the item is serialized out as xml, its value is "ltUpDiag". + + + + + Dark Downward Diagonal. + When the item is serialized out as xml, its value is "dkDnDiag". + + + + + Dark Upward Diagonal. + When the item is serialized out as xml, its value is "dkUpDiag". + + + + + Wide Downward Diagonal. + When the item is serialized out as xml, its value is "wdDnDiag". + + + + + Wide Upward Diagonal. + When the item is serialized out as xml, its value is "wdUpDiag". + + + + + Dashed Downward Diagonal. + When the item is serialized out as xml, its value is "dashDnDiag". + + + + + Dashed Upward DIagonal. + When the item is serialized out as xml, its value is "dashUpDiag". + + + + + Diagonal Cross. + When the item is serialized out as xml, its value is "diagCross". + + + + + Small Checker Board. + When the item is serialized out as xml, its value is "smCheck". + + + + + Large Checker Board. + When the item is serialized out as xml, its value is "lgCheck". + + + + + Small Grid. + When the item is serialized out as xml, its value is "smGrid". + + + + + Large Grid. + When the item is serialized out as xml, its value is "lgGrid". + + + + + Dotted Grid. + When the item is serialized out as xml, its value is "dotGrid". + + + + + Small Confetti. + When the item is serialized out as xml, its value is "smConfetti". + + + + + Large Confetti. + When the item is serialized out as xml, its value is "lgConfetti". + + + + + Horizontal Brick. + When the item is serialized out as xml, its value is "horzBrick". + + + + + Diagonal Brick. + When the item is serialized out as xml, its value is "diagBrick". + + + + + Solid Diamond. + When the item is serialized out as xml, its value is "solidDmnd". + + + + + Open Diamond. + When the item is serialized out as xml, its value is "openDmnd". + + + + + Dotted Diamond. + When the item is serialized out as xml, its value is "dotDmnd". + + + + + Plaid. + When the item is serialized out as xml, its value is "plaid". + + + + + Sphere. + When the item is serialized out as xml, its value is "sphere". + + + + + Weave. + When the item is serialized out as xml, its value is "weave". + + + + + Divot. + When the item is serialized out as xml, its value is "divot". + + + + + Shingle. + When the item is serialized out as xml, its value is "shingle". + + + + + Wave. + When the item is serialized out as xml, its value is "wave". + + + + + Trellis. + When the item is serialized out as xml, its value is "trellis". + + + + + Zig Zag. + When the item is serialized out as xml, its value is "zigZag". + + + + + Blend Mode + + + + + Creates a new BlendModeValues enum instance + + + + + Overlay. + When the item is serialized out as xml, its value is "over". + + + + + Multiply. + When the item is serialized out as xml, its value is "mult". + + + + + Screen. + When the item is serialized out as xml, its value is "screen". + + + + + Darken. + When the item is serialized out as xml, its value is "darken". + + + + + Lighten. + When the item is serialized out as xml, its value is "lighten". + + + + + Effect Container Type + + + + + Creates a new EffectContainerValues enum instance + + + + + Sibling. + When the item is serialized out as xml, its value is "sib". + + + + + Tree. + When the item is serialized out as xml, its value is "tree". + + + + + Preset Shape Types + + + + + Creates a new ShapeTypeValues enum instance + + + + + Line Shape. + When the item is serialized out as xml, its value is "line". + + + + + Line Inverse Shape. + When the item is serialized out as xml, its value is "lineInv". + + + + + Triangle Shape. + When the item is serialized out as xml, its value is "triangle". + + + + + Right Triangle Shape. + When the item is serialized out as xml, its value is "rtTriangle". + + + + + Rectangle Shape. + When the item is serialized out as xml, its value is "rect". + + + + + Diamond Shape. + When the item is serialized out as xml, its value is "diamond". + + + + + Parallelogram Shape. + When the item is serialized out as xml, its value is "parallelogram". + + + + + Trapezoid Shape. + When the item is serialized out as xml, its value is "trapezoid". + + + + + Non-Isosceles Trapezoid Shape. + When the item is serialized out as xml, its value is "nonIsoscelesTrapezoid". + + + + + Pentagon Shape. + When the item is serialized out as xml, its value is "pentagon". + + + + + Hexagon Shape. + When the item is serialized out as xml, its value is "hexagon". + + + + + Heptagon Shape. + When the item is serialized out as xml, its value is "heptagon". + + + + + Octagon Shape. + When the item is serialized out as xml, its value is "octagon". + + + + + Decagon Shape. + When the item is serialized out as xml, its value is "decagon". + + + + + Dodecagon Shape. + When the item is serialized out as xml, its value is "dodecagon". + + + + + Four Pointed Star Shape. + When the item is serialized out as xml, its value is "star4". + + + + + Five Pointed Star Shape. + When the item is serialized out as xml, its value is "star5". + + + + + Six Pointed Star Shape. + When the item is serialized out as xml, its value is "star6". + + + + + Seven Pointed Star Shape. + When the item is serialized out as xml, its value is "star7". + + + + + Eight Pointed Star Shape. + When the item is serialized out as xml, its value is "star8". + + + + + Ten Pointed Star Shape. + When the item is serialized out as xml, its value is "star10". + + + + + Twelve Pointed Star Shape. + When the item is serialized out as xml, its value is "star12". + + + + + Sixteen Pointed Star Shape. + When the item is serialized out as xml, its value is "star16". + + + + + Twenty Four Pointed Star Shape. + When the item is serialized out as xml, its value is "star24". + + + + + Thirty Two Pointed Star Shape. + When the item is serialized out as xml, its value is "star32". + + + + + Round Corner Rectangle Shape. + When the item is serialized out as xml, its value is "roundRect". + + + + + One Round Corner Rectangle Shape. + When the item is serialized out as xml, its value is "round1Rect". + + + + + Two Same-side Round Corner Rectangle Shape. + When the item is serialized out as xml, its value is "round2SameRect". + + + + + Two Diagonal Round Corner Rectangle Shape. + When the item is serialized out as xml, its value is "round2DiagRect". + + + + + One Snip One Round Corner Rectangle Shape. + When the item is serialized out as xml, its value is "snipRoundRect". + + + + + One Snip Corner Rectangle Shape. + When the item is serialized out as xml, its value is "snip1Rect". + + + + + Two Same-side Snip Corner Rectangle Shape. + When the item is serialized out as xml, its value is "snip2SameRect". + + + + + Two Diagonal Snip Corner Rectangle Shape. + When the item is serialized out as xml, its value is "snip2DiagRect". + + + + + Plaque Shape. + When the item is serialized out as xml, its value is "plaque". + + + + + Ellipse Shape. + When the item is serialized out as xml, its value is "ellipse". + + + + + Teardrop Shape. + When the item is serialized out as xml, its value is "teardrop". + + + + + Home Plate Shape. + When the item is serialized out as xml, its value is "homePlate". + + + + + Chevron Shape. + When the item is serialized out as xml, its value is "chevron". + + + + + Pie Wedge Shape. + When the item is serialized out as xml, its value is "pieWedge". + + + + + Pie Shape. + When the item is serialized out as xml, its value is "pie". + + + + + Block Arc Shape. + When the item is serialized out as xml, its value is "blockArc". + + + + + Donut Shape. + When the item is serialized out as xml, its value is "donut". + + + + + No Smoking Shape. + When the item is serialized out as xml, its value is "noSmoking". + + + + + Right Arrow Shape. + When the item is serialized out as xml, its value is "rightArrow". + + + + + Left Arrow Shape. + When the item is serialized out as xml, its value is "leftArrow". + + + + + Up Arrow Shape. + When the item is serialized out as xml, its value is "upArrow". + + + + + Down Arrow Shape. + When the item is serialized out as xml, its value is "downArrow". + + + + + Striped Right Arrow Shape. + When the item is serialized out as xml, its value is "stripedRightArrow". + + + + + Notched Right Arrow Shape. + When the item is serialized out as xml, its value is "notchedRightArrow". + + + + + Bent Up Arrow Shape. + When the item is serialized out as xml, its value is "bentUpArrow". + + + + + Left Right Arrow Shape. + When the item is serialized out as xml, its value is "leftRightArrow". + + + + + Up Down Arrow Shape. + When the item is serialized out as xml, its value is "upDownArrow". + + + + + Left Up Arrow Shape. + When the item is serialized out as xml, its value is "leftUpArrow". + + + + + Left Right Up Arrow Shape. + When the item is serialized out as xml, its value is "leftRightUpArrow". + + + + + Quad-Arrow Shape. + When the item is serialized out as xml, its value is "quadArrow". + + + + + Callout Left Arrow Shape. + When the item is serialized out as xml, its value is "leftArrowCallout". + + + + + Callout Right Arrow Shape. + When the item is serialized out as xml, its value is "rightArrowCallout". + + + + + Callout Up Arrow Shape. + When the item is serialized out as xml, its value is "upArrowCallout". + + + + + Callout Down Arrow Shape. + When the item is serialized out as xml, its value is "downArrowCallout". + + + + + Callout Left Right Arrow Shape. + When the item is serialized out as xml, its value is "leftRightArrowCallout". + + + + + Callout Up Down Arrow Shape. + When the item is serialized out as xml, its value is "upDownArrowCallout". + + + + + Callout Quad-Arrow Shape. + When the item is serialized out as xml, its value is "quadArrowCallout". + + + + + Bent Arrow Shape. + When the item is serialized out as xml, its value is "bentArrow". + + + + + U-Turn Arrow Shape. + When the item is serialized out as xml, its value is "uturnArrow". + + + + + Circular Arrow Shape. + When the item is serialized out as xml, its value is "circularArrow". + + + + + Left Circular Arrow Shape. + When the item is serialized out as xml, its value is "leftCircularArrow". + + + + + Left Right Circular Arrow Shape. + When the item is serialized out as xml, its value is "leftRightCircularArrow". + + + + + Curved Right Arrow Shape. + When the item is serialized out as xml, its value is "curvedRightArrow". + + + + + Curved Left Arrow Shape. + When the item is serialized out as xml, its value is "curvedLeftArrow". + + + + + Curved Up Arrow Shape. + When the item is serialized out as xml, its value is "curvedUpArrow". + + + + + Curved Down Arrow Shape. + When the item is serialized out as xml, its value is "curvedDownArrow". + + + + + Swoosh Arrow Shape. + When the item is serialized out as xml, its value is "swooshArrow". + + + + + Cube Shape. + When the item is serialized out as xml, its value is "cube". + + + + + Can Shape. + When the item is serialized out as xml, its value is "can". + + + + + Lightning Bolt Shape. + When the item is serialized out as xml, its value is "lightningBolt". + + + + + Heart Shape. + When the item is serialized out as xml, its value is "heart". + + + + + Sun Shape. + When the item is serialized out as xml, its value is "sun". + + + + + Moon Shape. + When the item is serialized out as xml, its value is "moon". + + + + + Smiley Face Shape. + When the item is serialized out as xml, its value is "smileyFace". + + + + + Irregular Seal 1 Shape. + When the item is serialized out as xml, its value is "irregularSeal1". + + + + + Irregular Seal 2 Shape. + When the item is serialized out as xml, its value is "irregularSeal2". + + + + + Folded Corner Shape. + When the item is serialized out as xml, its value is "foldedCorner". + + + + + Bevel Shape. + When the item is serialized out as xml, its value is "bevel". + + + + + Frame Shape. + When the item is serialized out as xml, its value is "frame". + + + + + Half Frame Shape. + When the item is serialized out as xml, its value is "halfFrame". + + + + + Corner Shape. + When the item is serialized out as xml, its value is "corner". + + + + + Diagonal Stripe Shape. + When the item is serialized out as xml, its value is "diagStripe". + + + + + Chord Shape. + When the item is serialized out as xml, its value is "chord". + + + + + Curved Arc Shape. + When the item is serialized out as xml, its value is "arc". + + + + + Left Bracket Shape. + When the item is serialized out as xml, its value is "leftBracket". + + + + + Right Bracket Shape. + When the item is serialized out as xml, its value is "rightBracket". + + + + + Left Brace Shape. + When the item is serialized out as xml, its value is "leftBrace". + + + + + Right Brace Shape. + When the item is serialized out as xml, its value is "rightBrace". + + + + + Bracket Pair Shape. + When the item is serialized out as xml, its value is "bracketPair". + + + + + Brace Pair Shape. + When the item is serialized out as xml, its value is "bracePair". + + + + + Straight Connector 1 Shape. + When the item is serialized out as xml, its value is "straightConnector1". + + + + + Bent Connector 2 Shape. + When the item is serialized out as xml, its value is "bentConnector2". + + + + + Bent Connector 3 Shape. + When the item is serialized out as xml, its value is "bentConnector3". + + + + + Bent Connector 4 Shape. + When the item is serialized out as xml, its value is "bentConnector4". + + + + + Bent Connector 5 Shape. + When the item is serialized out as xml, its value is "bentConnector5". + + + + + Curved Connector 2 Shape. + When the item is serialized out as xml, its value is "curvedConnector2". + + + + + Curved Connector 3 Shape. + When the item is serialized out as xml, its value is "curvedConnector3". + + + + + Curved Connector 4 Shape. + When the item is serialized out as xml, its value is "curvedConnector4". + + + + + Curved Connector 5 Shape. + When the item is serialized out as xml, its value is "curvedConnector5". + + + + + Callout 1 Shape. + When the item is serialized out as xml, its value is "callout1". + + + + + Callout 2 Shape. + When the item is serialized out as xml, its value is "callout2". + + + + + Callout 3 Shape. + When the item is serialized out as xml, its value is "callout3". + + + + + Callout 1 Shape. + When the item is serialized out as xml, its value is "accentCallout1". + + + + + Callout 2 Shape. + When the item is serialized out as xml, its value is "accentCallout2". + + + + + Callout 3 Shape. + When the item is serialized out as xml, its value is "accentCallout3". + + + + + Callout 1 with Border Shape. + When the item is serialized out as xml, its value is "borderCallout1". + + + + + Callout 2 with Border Shape. + When the item is serialized out as xml, its value is "borderCallout2". + + + + + Callout 3 with Border Shape. + When the item is serialized out as xml, its value is "borderCallout3". + + + + + Callout 1 with Border and Accent Shape. + When the item is serialized out as xml, its value is "accentBorderCallout1". + + + + + Callout 2 with Border and Accent Shape. + When the item is serialized out as xml, its value is "accentBorderCallout2". + + + + + Callout 3 with Border and Accent Shape. + When the item is serialized out as xml, its value is "accentBorderCallout3". + + + + + Callout Wedge Rectangle Shape. + When the item is serialized out as xml, its value is "wedgeRectCallout". + + + + + Callout Wedge Round Rectangle Shape. + When the item is serialized out as xml, its value is "wedgeRoundRectCallout". + + + + + Callout Wedge Ellipse Shape. + When the item is serialized out as xml, its value is "wedgeEllipseCallout". + + + + + Callout Cloud Shape. + When the item is serialized out as xml, its value is "cloudCallout". + + + + + Cloud Shape. + When the item is serialized out as xml, its value is "cloud". + + + + + Ribbon Shape. + When the item is serialized out as xml, its value is "ribbon". + + + + + Ribbon 2 Shape. + When the item is serialized out as xml, its value is "ribbon2". + + + + + Ellipse Ribbon Shape. + When the item is serialized out as xml, its value is "ellipseRibbon". + + + + + Ellipse Ribbon 2 Shape. + When the item is serialized out as xml, its value is "ellipseRibbon2". + + + + + Left Right Ribbon Shape. + When the item is serialized out as xml, its value is "leftRightRibbon". + + + + + Vertical Scroll Shape. + When the item is serialized out as xml, its value is "verticalScroll". + + + + + Horizontal Scroll Shape. + When the item is serialized out as xml, its value is "horizontalScroll". + + + + + Wave Shape. + When the item is serialized out as xml, its value is "wave". + + + + + Double Wave Shape. + When the item is serialized out as xml, its value is "doubleWave". + + + + + Plus Shape. + When the item is serialized out as xml, its value is "plus". + + + + + Process Flow Shape. + When the item is serialized out as xml, its value is "flowChartProcess". + + + + + Decision Flow Shape. + When the item is serialized out as xml, its value is "flowChartDecision". + + + + + Input Output Flow Shape. + When the item is serialized out as xml, its value is "flowChartInputOutput". + + + + + Predefined Process Flow Shape. + When the item is serialized out as xml, its value is "flowChartPredefinedProcess". + + + + + Internal Storage Flow Shape. + When the item is serialized out as xml, its value is "flowChartInternalStorage". + + + + + Document Flow Shape. + When the item is serialized out as xml, its value is "flowChartDocument". + + + + + Multi-Document Flow Shape. + When the item is serialized out as xml, its value is "flowChartMultidocument". + + + + + Terminator Flow Shape. + When the item is serialized out as xml, its value is "flowChartTerminator". + + + + + Preparation Flow Shape. + When the item is serialized out as xml, its value is "flowChartPreparation". + + + + + Manual Input Flow Shape. + When the item is serialized out as xml, its value is "flowChartManualInput". + + + + + Manual Operation Flow Shape. + When the item is serialized out as xml, its value is "flowChartManualOperation". + + + + + Connector Flow Shape. + When the item is serialized out as xml, its value is "flowChartConnector". + + + + + Punched Card Flow Shape. + When the item is serialized out as xml, its value is "flowChartPunchedCard". + + + + + Punched Tape Flow Shape. + When the item is serialized out as xml, its value is "flowChartPunchedTape". + + + + + Summing Junction Flow Shape. + When the item is serialized out as xml, its value is "flowChartSummingJunction". + + + + + Or Flow Shape. + When the item is serialized out as xml, its value is "flowChartOr". + + + + + Collate Flow Shape. + When the item is serialized out as xml, its value is "flowChartCollate". + + + + + Sort Flow Shape. + When the item is serialized out as xml, its value is "flowChartSort". + + + + + Extract Flow Shape. + When the item is serialized out as xml, its value is "flowChartExtract". + + + + + Merge Flow Shape. + When the item is serialized out as xml, its value is "flowChartMerge". + + + + + Offline Storage Flow Shape. + When the item is serialized out as xml, its value is "flowChartOfflineStorage". + + + + + Online Storage Flow Shape. + When the item is serialized out as xml, its value is "flowChartOnlineStorage". + + + + + Magnetic Tape Flow Shape. + When the item is serialized out as xml, its value is "flowChartMagneticTape". + + + + + Magnetic Disk Flow Shape. + When the item is serialized out as xml, its value is "flowChartMagneticDisk". + + + + + Magnetic Drum Flow Shape. + When the item is serialized out as xml, its value is "flowChartMagneticDrum". + + + + + Display Flow Shape. + When the item is serialized out as xml, its value is "flowChartDisplay". + + + + + Delay Flow Shape. + When the item is serialized out as xml, its value is "flowChartDelay". + + + + + Alternate Process Flow Shape. + When the item is serialized out as xml, its value is "flowChartAlternateProcess". + + + + + Off-Page Connector Flow Shape. + When the item is serialized out as xml, its value is "flowChartOffpageConnector". + + + + + Blank Button Shape. + When the item is serialized out as xml, its value is "actionButtonBlank". + + + + + Home Button Shape. + When the item is serialized out as xml, its value is "actionButtonHome". + + + + + Help Button Shape. + When the item is serialized out as xml, its value is "actionButtonHelp". + + + + + Information Button Shape. + When the item is serialized out as xml, its value is "actionButtonInformation". + + + + + Forward or Next Button Shape. + When the item is serialized out as xml, its value is "actionButtonForwardNext". + + + + + Back or Previous Button Shape. + When the item is serialized out as xml, its value is "actionButtonBackPrevious". + + + + + End Button Shape. + When the item is serialized out as xml, its value is "actionButtonEnd". + + + + + Beginning Button Shape. + When the item is serialized out as xml, its value is "actionButtonBeginning". + + + + + Return Button Shape. + When the item is serialized out as xml, its value is "actionButtonReturn". + + + + + Document Button Shape. + When the item is serialized out as xml, its value is "actionButtonDocument". + + + + + Sound Button Shape. + When the item is serialized out as xml, its value is "actionButtonSound". + + + + + Movie Button Shape. + When the item is serialized out as xml, its value is "actionButtonMovie". + + + + + Gear 6 Shape. + When the item is serialized out as xml, its value is "gear6". + + + + + Gear 9 Shape. + When the item is serialized out as xml, its value is "gear9". + + + + + Funnel Shape. + When the item is serialized out as xml, its value is "funnel". + + + + + Plus Math Shape. + When the item is serialized out as xml, its value is "mathPlus". + + + + + Minus Math Shape. + When the item is serialized out as xml, its value is "mathMinus". + + + + + Multiply Math Shape. + When the item is serialized out as xml, its value is "mathMultiply". + + + + + Divide Math Shape. + When the item is serialized out as xml, its value is "mathDivide". + + + + + Equal Math Shape. + When the item is serialized out as xml, its value is "mathEqual". + + + + + Not Equal Math Shape. + When the item is serialized out as xml, its value is "mathNotEqual". + + + + + Corner Tabs Shape. + When the item is serialized out as xml, its value is "cornerTabs". + + + + + Square Tabs Shape. + When the item is serialized out as xml, its value is "squareTabs". + + + + + Plaque Tabs Shape. + When the item is serialized out as xml, its value is "plaqueTabs". + + + + + Chart X Shape. + When the item is serialized out as xml, its value is "chartX". + + + + + Chart Star Shape. + When the item is serialized out as xml, its value is "chartStar". + + + + + Chart Plus Shape. + When the item is serialized out as xml, its value is "chartPlus". + + + + + Preset Text Shape Types + + + + + Creates a new TextShapeValues enum instance + + + + + No Text Shape. + When the item is serialized out as xml, its value is "textNoShape". + + + + + Plain Text Shape. + When the item is serialized out as xml, its value is "textPlain". + + + + + Stop Sign Text Shape. + When the item is serialized out as xml, its value is "textStop". + + + + + Triangle Text Shape. + When the item is serialized out as xml, its value is "textTriangle". + + + + + Inverted Triangle Text Shape. + When the item is serialized out as xml, its value is "textTriangleInverted". + + + + + Chevron Text Shape. + When the item is serialized out as xml, its value is "textChevron". + + + + + Inverted Chevron Text Shape. + When the item is serialized out as xml, its value is "textChevronInverted". + + + + + Inside Ring Text Shape. + When the item is serialized out as xml, its value is "textRingInside". + + + + + Outside Ring Text Shape. + When the item is serialized out as xml, its value is "textRingOutside". + + + + + Upward Arch Text Shape. + When the item is serialized out as xml, its value is "textArchUp". + + + + + Downward Arch Text Shape. + When the item is serialized out as xml, its value is "textArchDown". + + + + + Circle Text Shape. + When the item is serialized out as xml, its value is "textCircle". + + + + + Button Text Shape. + When the item is serialized out as xml, its value is "textButton". + + + + + Upward Pour Arch Text Shape. + When the item is serialized out as xml, its value is "textArchUpPour". + + + + + Downward Pour Arch Text Shape. + When the item is serialized out as xml, its value is "textArchDownPour". + + + + + Circle Pour Text Shape. + When the item is serialized out as xml, its value is "textCirclePour". + + + + + Button Pour Text Shape. + When the item is serialized out as xml, its value is "textButtonPour". + + + + + Upward Curve Text Shape. + When the item is serialized out as xml, its value is "textCurveUp". + + + + + Downward Curve Text Shape. + When the item is serialized out as xml, its value is "textCurveDown". + + + + + Upward Can Text Shape. + When the item is serialized out as xml, its value is "textCanUp". + + + + + Downward Can Text Shape. + When the item is serialized out as xml, its value is "textCanDown". + + + + + Wave 1 Text Shape. + When the item is serialized out as xml, its value is "textWave1". + + + + + Wave 2 Text Shape. + When the item is serialized out as xml, its value is "textWave2". + + + + + Double Wave 1 Text Shape. + When the item is serialized out as xml, its value is "textDoubleWave1". + + + + + Wave 4 Text Shape. + When the item is serialized out as xml, its value is "textWave4". + + + + + Inflate Text Shape. + When the item is serialized out as xml, its value is "textInflate". + + + + + Deflate Text Shape. + When the item is serialized out as xml, its value is "textDeflate". + + + + + Bottom Inflate Text Shape. + When the item is serialized out as xml, its value is "textInflateBottom". + + + + + Bottom Deflate Text Shape. + When the item is serialized out as xml, its value is "textDeflateBottom". + + + + + Top Inflate Text Shape. + When the item is serialized out as xml, its value is "textInflateTop". + + + + + Top Deflate Text Shape. + When the item is serialized out as xml, its value is "textDeflateTop". + + + + + Deflate-Inflate Text Shape. + When the item is serialized out as xml, its value is "textDeflateInflate". + + + + + Deflate-Inflate-Deflate Text Shape. + When the item is serialized out as xml, its value is "textDeflateInflateDeflate". + + + + + Right Fade Text Shape. + When the item is serialized out as xml, its value is "textFadeRight". + + + + + Left Fade Text Shape. + When the item is serialized out as xml, its value is "textFadeLeft". + + + + + Upward Fade Text Shape. + When the item is serialized out as xml, its value is "textFadeUp". + + + + + Downward Fade Text Shape. + When the item is serialized out as xml, its value is "textFadeDown". + + + + + Upward Slant Text Shape. + When the item is serialized out as xml, its value is "textSlantUp". + + + + + Downward Slant Text Shape. + When the item is serialized out as xml, its value is "textSlantDown". + + + + + Upward Cascade Text Shape. + When the item is serialized out as xml, its value is "textCascadeUp". + + + + + Downward Cascade Text Shape. + When the item is serialized out as xml, its value is "textCascadeDown". + + + + + Path Fill Mode + + + + + Creates a new PathFillModeValues enum instance + + + + + No Path Fill. + When the item is serialized out as xml, its value is "none". + + + + + Normal Path Fill. + When the item is serialized out as xml, its value is "norm". + + + + + Lighten Path Fill. + When the item is serialized out as xml, its value is "lighten". + + + + + Lighten Path Fill Less. + When the item is serialized out as xml, its value is "lightenLess". + + + + + Darken Path Fill. + When the item is serialized out as xml, its value is "darken". + + + + + Darken Path Fill Less. + When the item is serialized out as xml, its value is "darkenLess". + + + + + Line End Type + + + + + Creates a new LineEndValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Triangle Arrow Head. + When the item is serialized out as xml, its value is "triangle". + + + + + Stealth Arrow. + When the item is serialized out as xml, its value is "stealth". + + + + + Diamond. + When the item is serialized out as xml, its value is "diamond". + + + + + Oval. + When the item is serialized out as xml, its value is "oval". + + + + + Arrow Head. + When the item is serialized out as xml, its value is "arrow". + + + + + Line End Width + + + + + Creates a new LineEndWidthValues enum instance + + + + + Small. + When the item is serialized out as xml, its value is "sm". + + + + + Medium. + When the item is serialized out as xml, its value is "med". + + + + + Large. + When the item is serialized out as xml, its value is "lg". + + + + + Line End Length + + + + + Creates a new LineEndLengthValues enum instance + + + + + Small. + When the item is serialized out as xml, its value is "sm". + + + + + Medium. + When the item is serialized out as xml, its value is "med". + + + + + Large. + When the item is serialized out as xml, its value is "lg". + + + + + Preset Line Dash Value + + + + + Creates a new PresetLineDashValues enum instance + + + + + Solid. + When the item is serialized out as xml, its value is "solid". + + + + + Dot. + When the item is serialized out as xml, its value is "dot". + + + + + Dash. + When the item is serialized out as xml, its value is "dash". + + + + + Large Dash. + When the item is serialized out as xml, its value is "lgDash". + + + + + Dash Dot. + When the item is serialized out as xml, its value is "dashDot". + + + + + Large Dash Dot. + When the item is serialized out as xml, its value is "lgDashDot". + + + + + Large Dash Dot Dot. + When the item is serialized out as xml, its value is "lgDashDotDot". + + + + + System Dash. + When the item is serialized out as xml, its value is "sysDash". + + + + + System Dot. + When the item is serialized out as xml, its value is "sysDot". + + + + + System Dash Dot. + When the item is serialized out as xml, its value is "sysDashDot". + + + + + System Dash Dot Dot. + When the item is serialized out as xml, its value is "sysDashDotDot". + + + + + End Line Cap + + + + + Creates a new LineCapValues enum instance + + + + + Round Line Cap. + When the item is serialized out as xml, its value is "rnd". + + + + + Square Line Cap. + When the item is serialized out as xml, its value is "sq". + + + + + Flat Line Cap. + When the item is serialized out as xml, its value is "flat". + + + + + Alignment Type + + + + + Creates a new PenAlignmentValues enum instance + + + + + Center Alignment. + When the item is serialized out as xml, its value is "ctr". + + + + + Inset Alignment. + When the item is serialized out as xml, its value is "in". + + + + + Compound Line Type + + + + + Creates a new CompoundLineValues enum instance + + + + + Single Line. + When the item is serialized out as xml, its value is "sng". + + + + + Double Lines. + When the item is serialized out as xml, its value is "dbl". + + + + + Thick Thin Double Lines. + When the item is serialized out as xml, its value is "thickThin". + + + + + Thin Thick Double Lines. + When the item is serialized out as xml, its value is "thinThick". + + + + + Thin Thick Thin Triple Lines. + When the item is serialized out as xml, its value is "tri". + + + + + On/Off Style Type + + + + + Creates a new BooleanStyleValues enum instance + + + + + On. + When the item is serialized out as xml, its value is "on". + + + + + Off. + When the item is serialized out as xml, its value is "off". + + + + + Default. + When the item is serialized out as xml, its value is "def". + + + + + Text Vertical Overflow + + + + + Creates a new TextVerticalOverflowValues enum instance + + + + + Text Overflow Enum ( Overflow ). + When the item is serialized out as xml, its value is "overflow". + + + + + Text Overflow Enum ( Ellipsis ). + When the item is serialized out as xml, its value is "ellipsis". + + + + + Text Overflow Enum ( Clip ). + When the item is serialized out as xml, its value is "clip". + + + + + Text Horizontal Overflow Types + + + + + Creates a new TextHorizontalOverflowValues enum instance + + + + + Text Horizontal Overflow Enum ( Overflow ). + When the item is serialized out as xml, its value is "overflow". + + + + + Text Horizontal Overflow Enum ( Clip ). + When the item is serialized out as xml, its value is "clip". + + + + + Vertical Text Types + + + + + Creates a new TextVerticalValues enum instance + + + + + Vertical Text Type Enum ( Horizontal ). + When the item is serialized out as xml, its value is "horz". + + + + + Vertical Text Type Enum ( Vertical ). + When the item is serialized out as xml, its value is "vert". + + + + + Vertical Text Type Enum ( Vertical 270 ). + When the item is serialized out as xml, its value is "vert270". + + + + + Vertical Text Type Enum ( WordArt Vertical ). + When the item is serialized out as xml, its value is "wordArtVert". + + + + + Vertical Text Type Enum ( East Asian Vertical ). + When the item is serialized out as xml, its value is "eaVert". + + + + + Vertical Text Type Enum ( Mongolian Vertical ). + When the item is serialized out as xml, its value is "mongolianVert". + + + + + Vertical WordArt Right to Left. + When the item is serialized out as xml, its value is "wordArtVertRtl". + + + + + Text Wrapping Types + + + + + Creates a new TextWrappingValues enum instance + + + + + Text Wrapping Type Enum ( None ). + When the item is serialized out as xml, its value is "none". + + + + + Text Wrapping Type Enum ( Square ). + When the item is serialized out as xml, its value is "square". + + + + + Text Anchoring Types + + + + + Creates a new TextAnchoringTypeValues enum instance + + + + + Text Anchoring Type Enum ( Top ). + When the item is serialized out as xml, its value is "t". + + + + + Text Anchor Enum ( Center ). + When the item is serialized out as xml, its value is "ctr". + + + + + Text Anchor Enum ( Bottom ). + When the item is serialized out as xml, its value is "b". + + + + + Text Auto-number Schemes + + + + + Creates a new TextAutoNumberSchemeValues enum instance + + + + + Autonumber Enum ( alphaLcParenBoth ). + When the item is serialized out as xml, its value is "alphaLcParenBoth". + + + + + Autonumbering Enum ( alphaUcParenBoth ). + When the item is serialized out as xml, its value is "alphaUcParenBoth". + + + + + Autonumbering Enum ( alphaLcParenR ). + When the item is serialized out as xml, its value is "alphaLcParenR". + + + + + Autonumbering Enum ( alphaUcParenR ). + When the item is serialized out as xml, its value is "alphaUcParenR". + + + + + Autonumbering Enum ( alphaLcPeriod ). + When the item is serialized out as xml, its value is "alphaLcPeriod". + + + + + Autonumbering Enum ( alphaUcPeriod ). + When the item is serialized out as xml, its value is "alphaUcPeriod". + + + + + Autonumbering Enum ( arabicParenBoth ). + When the item is serialized out as xml, its value is "arabicParenBoth". + + + + + Autonumbering Enum ( arabicParenR ). + When the item is serialized out as xml, its value is "arabicParenR". + + + + + Autonumbering Enum ( arabicPeriod ). + When the item is serialized out as xml, its value is "arabicPeriod". + + + + + Autonumbering Enum ( arabicPlain ). + When the item is serialized out as xml, its value is "arabicPlain". + + + + + Autonumbering Enum ( romanLcParenBoth ). + When the item is serialized out as xml, its value is "romanLcParenBoth". + + + + + Autonumbering Enum ( romanUcParenBoth ). + When the item is serialized out as xml, its value is "romanUcParenBoth". + + + + + Autonumbering Enum ( romanLcParenR ). + When the item is serialized out as xml, its value is "romanLcParenR". + + + + + Autonumbering Enum ( romanUcParenR ). + When the item is serialized out as xml, its value is "romanUcParenR". + + + + + Autonumbering Enum ( romanLcPeriod ). + When the item is serialized out as xml, its value is "romanLcPeriod". + + + + + Autonumbering Enum ( romanUcPeriod ). + When the item is serialized out as xml, its value is "romanUcPeriod". + + + + + Autonumbering Enum ( circleNumDbPlain ). + When the item is serialized out as xml, its value is "circleNumDbPlain". + + + + + Autonumbering Enum ( circleNumWdBlackPlain ). + When the item is serialized out as xml, its value is "circleNumWdBlackPlain". + + + + + Autonumbering Enum ( circleNumWdWhitePlain ). + When the item is serialized out as xml, its value is "circleNumWdWhitePlain". + + + + + Autonumbering Enum ( arabicDbPeriod ). + When the item is serialized out as xml, its value is "arabicDbPeriod". + + + + + Autonumbering Enum ( arabicDbPlain ). + When the item is serialized out as xml, its value is "arabicDbPlain". + + + + + Autonumbering Enum ( ea1ChsPeriod ). + When the item is serialized out as xml, its value is "ea1ChsPeriod". + + + + + Autonumbering Enum ( ea1ChsPlain ). + When the item is serialized out as xml, its value is "ea1ChsPlain". + + + + + Autonumbering Enum ( ea1ChtPeriod ). + When the item is serialized out as xml, its value is "ea1ChtPeriod". + + + + + Autonumbering Enum ( ea1ChtPlain ). + When the item is serialized out as xml, its value is "ea1ChtPlain". + + + + + Autonumbering Enum ( ea1JpnChsDbPeriod ). + When the item is serialized out as xml, its value is "ea1JpnChsDbPeriod". + + + + + Autonumbering Enum ( ea1JpnKorPlain ). + When the item is serialized out as xml, its value is "ea1JpnKorPlain". + + + + + Autonumbering Enum ( ea1JpnKorPeriod ). + When the item is serialized out as xml, its value is "ea1JpnKorPeriod". + + + + + Autonumbering Enum ( arabic1Minus ). + When the item is serialized out as xml, its value is "arabic1Minus". + + + + + Autonumbering Enum ( arabic2Minus ). + When the item is serialized out as xml, its value is "arabic2Minus". + + + + + Autonumbering Enum ( hebrew2Minus ). + When the item is serialized out as xml, its value is "hebrew2Minus". + + + + + Autonumbering Enum ( thaiAlphaPeriod ). + When the item is serialized out as xml, its value is "thaiAlphaPeriod". + + + + + Autonumbering Enum ( thaiAlphaParenR ). + When the item is serialized out as xml, its value is "thaiAlphaParenR". + + + + + Autonumbering Enum ( thaiAlphaParenBoth ). + When the item is serialized out as xml, its value is "thaiAlphaParenBoth". + + + + + Autonumbering Enum ( thaiNumPeriod ). + When the item is serialized out as xml, its value is "thaiNumPeriod". + + + + + Autonumbering Enum ( thaiNumParenR ). + When the item is serialized out as xml, its value is "thaiNumParenR". + + + + + Autonumbering Enum ( thaiNumParenBoth ). + When the item is serialized out as xml, its value is "thaiNumParenBoth". + + + + + Autonumbering Enum ( hindiAlphaPeriod ). + When the item is serialized out as xml, its value is "hindiAlphaPeriod". + + + + + Autonumbering Enum ( hindiNumPeriod ). + When the item is serialized out as xml, its value is "hindiNumPeriod". + + + + + Autonumbering Enum ( hindiNumParenR ). + When the item is serialized out as xml, its value is "hindiNumParenR". + + + + + Autonumbering Enum ( hindiAlpha1Period ). + When the item is serialized out as xml, its value is "hindiAlpha1Period". + + + + + Text Underline Types + + + + + Creates a new TextUnderlineValues enum instance + + + + + Text Underline Enum ( None ). + When the item is serialized out as xml, its value is "none". + + + + + Text Underline Enum ( Words ). + When the item is serialized out as xml, its value is "words". + + + + + Text Underline Enum ( Single ). + When the item is serialized out as xml, its value is "sng". + + + + + Text Underline Enum ( Double ). + When the item is serialized out as xml, its value is "dbl". + + + + + Text Underline Enum ( Heavy ). + When the item is serialized out as xml, its value is "heavy". + + + + + Text Underline Enum ( Dotted ). + When the item is serialized out as xml, its value is "dotted". + + + + + Text Underline Enum ( Heavy Dotted ). + When the item is serialized out as xml, its value is "dottedHeavy". + + + + + Text Underline Enum ( Dashed ). + When the item is serialized out as xml, its value is "dash". + + + + + Text Underline Enum ( Heavy Dashed ). + When the item is serialized out as xml, its value is "dashHeavy". + + + + + Text Underline Enum ( Long Dashed ). + When the item is serialized out as xml, its value is "dashLong". + + + + + Text Underline Enum ( Heavy Long Dashed ). + When the item is serialized out as xml, its value is "dashLongHeavy". + + + + + Text Underline Enum ( Dot Dash ). + When the item is serialized out as xml, its value is "dotDash". + + + + + Text Underline Enum ( Heavy Dot Dash ). + When the item is serialized out as xml, its value is "dotDashHeavy". + + + + + Text Underline Enum ( Dot Dot Dash ). + When the item is serialized out as xml, its value is "dotDotDash". + + + + + Text Underline Enum ( Heavy Dot Dot Dash ). + When the item is serialized out as xml, its value is "dotDotDashHeavy". + + + + + Text Underline Enum ( Wavy ). + When the item is serialized out as xml, its value is "wavy". + + + + + Text Underline Enum ( Heavy Wavy ). + When the item is serialized out as xml, its value is "wavyHeavy". + + + + + Text Underline Enum ( Double Wavy ). + When the item is serialized out as xml, its value is "wavyDbl". + + + + + Text Strike Type + + + + + Creates a new TextStrikeValues enum instance + + + + + Text Strike Enum ( No Strike ). + When the item is serialized out as xml, its value is "noStrike". + + + + + Text Strike Enum ( Single Strike ). + When the item is serialized out as xml, its value is "sngStrike". + + + + + Text Strike Enum ( Double Strike ). + When the item is serialized out as xml, its value is "dblStrike". + + + + + Text Cap Types + + + + + Creates a new TextCapsValues enum instance + + + + + Text Caps Enum ( None ). + When the item is serialized out as xml, its value is "none". + + + + + Text Caps Enum ( Small ). + When the item is serialized out as xml, its value is "small". + + + + + Text Caps Enum ( All ). + When the item is serialized out as xml, its value is "all". + + + + + Text Tab Alignment Types + + + + + Creates a new TextTabAlignmentValues enum instance + + + + + Text Tab Alignment Enum ( Left). + When the item is serialized out as xml, its value is "l". + + + + + Text Tab Alignment Enum ( Center ). + When the item is serialized out as xml, its value is "ctr". + + + + + Text Tab Alignment Enum ( Right ). + When the item is serialized out as xml, its value is "r". + + + + + Text Tab Alignment Enum ( Decimal ). + When the item is serialized out as xml, its value is "dec". + + + + + Text Alignment Types + + + + + Creates a new TextAlignmentTypeValues enum instance + + + + + Text Alignment Enum ( Left ). + When the item is serialized out as xml, its value is "l". + + + + + Text Alignment Enum ( Center ). + When the item is serialized out as xml, its value is "ctr". + + + + + Text Alignment Enum ( Right ). + When the item is serialized out as xml, its value is "r". + + + + + Text Alignment Enum ( Justified ). + When the item is serialized out as xml, its value is "just". + + + + + Text Alignment Enum ( Justified Low ). + When the item is serialized out as xml, its value is "justLow". + + + + + Text Alignment Enum ( Distributed ). + When the item is serialized out as xml, its value is "dist". + + + + + Text Alignment Enum ( Thai Distributed ). + When the item is serialized out as xml, its value is "thaiDist". + + + + + Font Alignment Types + + + + + Creates a new TextFontAlignmentValues enum instance + + + + + Font Alignment Enum ( Automatic ). + When the item is serialized out as xml, its value is "auto". + + + + + Font Alignment Enum ( Top ). + When the item is serialized out as xml, its value is "t". + + + + + Font Alignment Enum ( Center ). + When the item is serialized out as xml, its value is "ctr". + + + + + Font Alignment Enum ( Baseline ). + When the item is serialized out as xml, its value is "base". + + + + + Font Alignment Enum ( Bottom ). + When the item is serialized out as xml, its value is "b". + + + + + Preset Color Value + + + + + Creates a new PresetColorValues enum instance + + + + + Alice Blue Preset Color. + When the item is serialized out as xml, its value is "aliceBlue". + + + + + Antique White Preset Color. + When the item is serialized out as xml, its value is "antiqueWhite". + + + + + Aqua Preset Color. + When the item is serialized out as xml, its value is "aqua". + + + + + Aquamarine Preset Color. + When the item is serialized out as xml, its value is "aquamarine". + + + + + Azure Preset Color. + When the item is serialized out as xml, its value is "azure". + + + + + Beige Preset Color. + When the item is serialized out as xml, its value is "beige". + + + + + Bisque Preset Color. + When the item is serialized out as xml, its value is "bisque". + + + + + Black Preset Color. + When the item is serialized out as xml, its value is "black". + + + + + Blanched Almond Preset Color. + When the item is serialized out as xml, its value is "blanchedAlmond". + + + + + Blue Preset Color. + When the item is serialized out as xml, its value is "blue". + + + + + Blue Violet Preset Color. + When the item is serialized out as xml, its value is "blueViolet". + + + + + Brown Preset Color. + When the item is serialized out as xml, its value is "brown". + + + + + Burly Wood Preset Color. + When the item is serialized out as xml, its value is "burlyWood". + + + + + Cadet Blue Preset Color. + When the item is serialized out as xml, its value is "cadetBlue". + + + + + Chartreuse Preset Color. + When the item is serialized out as xml, its value is "chartreuse". + + + + + Chocolate Preset Color. + When the item is serialized out as xml, its value is "chocolate". + + + + + Coral Preset Color. + When the item is serialized out as xml, its value is "coral". + + + + + Cornflower Blue Preset Color. + When the item is serialized out as xml, its value is "cornflowerBlue". + + + + + Cornsilk Preset Color. + When the item is serialized out as xml, its value is "cornsilk". + + + + + Crimson Preset Color. + When the item is serialized out as xml, its value is "crimson". + + + + + Cyan Preset Color. + When the item is serialized out as xml, its value is "cyan". + + + + + Dark Blue Preset Color. + When the item is serialized out as xml, its value is "dkBlue". + + + + + Dark Cyan Preset Color. + When the item is serialized out as xml, its value is "dkCyan". + + + + + Dark Goldenrod Preset Color. + When the item is serialized out as xml, its value is "dkGoldenrod". + + + + + Dark Gray Preset Color. + When the item is serialized out as xml, its value is "dkGray". + + + + + Dark Green Preset Color. + When the item is serialized out as xml, its value is "dkGreen". + + + + + Dark Khaki Preset Color. + When the item is serialized out as xml, its value is "dkKhaki". + + + + + Dark Magenta Preset Color. + When the item is serialized out as xml, its value is "dkMagenta". + + + + + Dark Olive Green Preset Color. + When the item is serialized out as xml, its value is "dkOliveGreen". + + + + + Dark Orange Preset Color. + When the item is serialized out as xml, its value is "dkOrange". + + + + + Dark Orchid Preset Color. + When the item is serialized out as xml, its value is "dkOrchid". + + + + + Dark Red Preset Color. + When the item is serialized out as xml, its value is "dkRed". + + + + + Dark Salmon Preset Color. + When the item is serialized out as xml, its value is "dkSalmon". + + + + + Dark Sea Green Preset Color. + When the item is serialized out as xml, its value is "dkSeaGreen". + + + + + Dark Slate Blue Preset Color. + When the item is serialized out as xml, its value is "dkSlateBlue". + + + + + Dark Slate Gray Preset Color. + When the item is serialized out as xml, its value is "dkSlateGray". + + + + + Dark Turquoise Preset Color. + When the item is serialized out as xml, its value is "dkTurquoise". + + + + + Dark Violet Preset Color. + When the item is serialized out as xml, its value is "dkViolet". + + + + + Deep Pink Preset Color. + When the item is serialized out as xml, its value is "deepPink". + + + + + Deep Sky Blue Preset Color. + When the item is serialized out as xml, its value is "deepSkyBlue". + + + + + Dim Gray Preset Color. + When the item is serialized out as xml, its value is "dimGray". + + + + + Dodger Blue Preset Color. + When the item is serialized out as xml, its value is "dodgerBlue". + + + + + Firebrick Preset Color. + When the item is serialized out as xml, its value is "firebrick". + + + + + Floral White Preset Color. + When the item is serialized out as xml, its value is "floralWhite". + + + + + Forest Green Preset Color. + When the item is serialized out as xml, its value is "forestGreen". + + + + + Fuchsia Preset Color. + When the item is serialized out as xml, its value is "fuchsia". + + + + + Gainsboro Preset Color. + When the item is serialized out as xml, its value is "gainsboro". + + + + + Ghost White Preset Color. + When the item is serialized out as xml, its value is "ghostWhite". + + + + + Gold Preset Color. + When the item is serialized out as xml, its value is "gold". + + + + + Goldenrod Preset Color. + When the item is serialized out as xml, its value is "goldenrod". + + + + + Gray Preset Color. + When the item is serialized out as xml, its value is "gray". + + + + + Green Preset Color. + When the item is serialized out as xml, its value is "green". + + + + + Green Yellow Preset Color. + When the item is serialized out as xml, its value is "greenYellow". + + + + + Honeydew Preset Color. + When the item is serialized out as xml, its value is "honeydew". + + + + + Hot Pink Preset Color. + When the item is serialized out as xml, its value is "hotPink". + + + + + Indian Red Preset Color. + When the item is serialized out as xml, its value is "indianRed". + + + + + Indigo Preset Color. + When the item is serialized out as xml, its value is "indigo". + + + + + Ivory Preset Color. + When the item is serialized out as xml, its value is "ivory". + + + + + Khaki Preset Color. + When the item is serialized out as xml, its value is "khaki". + + + + + Lavender Preset Color. + When the item is serialized out as xml, its value is "lavender". + + + + + Lavender Blush Preset Color. + When the item is serialized out as xml, its value is "lavenderBlush". + + + + + Lawn Green Preset Color. + When the item is serialized out as xml, its value is "lawnGreen". + + + + + Lemon Chiffon Preset Color. + When the item is serialized out as xml, its value is "lemonChiffon". + + + + + Light Blue Preset Color. + When the item is serialized out as xml, its value is "ltBlue". + + + + + Light Coral Preset Color. + When the item is serialized out as xml, its value is "ltCoral". + + + + + Light Cyan Preset Color. + When the item is serialized out as xml, its value is "ltCyan". + + + + + Light Goldenrod Yellow Preset Color. + When the item is serialized out as xml, its value is "ltGoldenrodYellow". + + + + + Light Gray Preset Color. + When the item is serialized out as xml, its value is "ltGray". + + + + + Light Green Preset Color. + When the item is serialized out as xml, its value is "ltGreen". + + + + + Light Pink Preset Color. + When the item is serialized out as xml, its value is "ltPink". + + + + + Light Salmon Preset Color. + When the item is serialized out as xml, its value is "ltSalmon". + + + + + Light Sea Green Preset Color. + When the item is serialized out as xml, its value is "ltSeaGreen". + + + + + Light Sky Blue Preset Color. + When the item is serialized out as xml, its value is "ltSkyBlue". + + + + + Light Slate Gray Preset Color. + When the item is serialized out as xml, its value is "ltSlateGray". + + + + + Light Steel Blue Preset Color. + When the item is serialized out as xml, its value is "ltSteelBlue". + + + + + Light Yellow Preset Color. + When the item is serialized out as xml, its value is "ltYellow". + + + + + Lime Preset Color. + When the item is serialized out as xml, its value is "lime". + + + + + Lime Green Preset Color. + When the item is serialized out as xml, its value is "limeGreen". + + + + + Linen Preset Color. + When the item is serialized out as xml, its value is "linen". + + + + + Magenta Preset Color. + When the item is serialized out as xml, its value is "magenta". + + + + + Maroon Preset Color. + When the item is serialized out as xml, its value is "maroon". + + + + + Medium Aquamarine Preset Color. + When the item is serialized out as xml, its value is "medAquamarine". + + + + + Medium Blue Preset Color. + When the item is serialized out as xml, its value is "medBlue". + + + + + Medium Orchid Preset Color. + When the item is serialized out as xml, its value is "medOrchid". + + + + + Medium Purple Preset Color. + When the item is serialized out as xml, its value is "medPurple". + + + + + Medium Sea Green Preset Color. + When the item is serialized out as xml, its value is "medSeaGreen". + + + + + Medium Slate Blue Preset Color. + When the item is serialized out as xml, its value is "medSlateBlue". + + + + + Medium Spring Green Preset Color. + When the item is serialized out as xml, its value is "medSpringGreen". + + + + + Medium Turquoise Preset Color. + When the item is serialized out as xml, its value is "medTurquoise". + + + + + Medium Violet Red Preset Color. + When the item is serialized out as xml, its value is "medVioletRed". + + + + + Midnight Blue Preset Color. + When the item is serialized out as xml, its value is "midnightBlue". + + + + + Mint Cream Preset Color. + When the item is serialized out as xml, its value is "mintCream". + + + + + Misty Rose Preset Color. + When the item is serialized out as xml, its value is "mistyRose". + + + + + Moccasin Preset Color. + When the item is serialized out as xml, its value is "moccasin". + + + + + Navajo White Preset Color. + When the item is serialized out as xml, its value is "navajoWhite". + + + + + Navy Preset Color. + When the item is serialized out as xml, its value is "navy". + + + + + Old Lace Preset Color. + When the item is serialized out as xml, its value is "oldLace". + + + + + Olive Preset Color. + When the item is serialized out as xml, its value is "olive". + + + + + Olive Drab Preset Color. + When the item is serialized out as xml, its value is "oliveDrab". + + + + + Orange Preset Color. + When the item is serialized out as xml, its value is "orange". + + + + + Orange Red Preset Color. + When the item is serialized out as xml, its value is "orangeRed". + + + + + Orchid Preset Color. + When the item is serialized out as xml, its value is "orchid". + + + + + Pale Goldenrod Preset Color. + When the item is serialized out as xml, its value is "paleGoldenrod". + + + + + Pale Green Preset Color. + When the item is serialized out as xml, its value is "paleGreen". + + + + + Pale Turquoise Preset Color. + When the item is serialized out as xml, its value is "paleTurquoise". + + + + + Pale Violet Red Preset Color. + When the item is serialized out as xml, its value is "paleVioletRed". + + + + + Papaya Whip Preset Color. + When the item is serialized out as xml, its value is "papayaWhip". + + + + + Peach Puff Preset Color. + When the item is serialized out as xml, its value is "peachPuff". + + + + + Peru Preset Color. + When the item is serialized out as xml, its value is "peru". + + + + + Pink Preset Color. + When the item is serialized out as xml, its value is "pink". + + + + + Plum Preset Color. + When the item is serialized out as xml, its value is "plum". + + + + + Powder Blue Preset Color. + When the item is serialized out as xml, its value is "powderBlue". + + + + + Purple Preset Color. + When the item is serialized out as xml, its value is "purple". + + + + + Red Preset Color. + When the item is serialized out as xml, its value is "red". + + + + + Rosy Brown Preset Color. + When the item is serialized out as xml, its value is "rosyBrown". + + + + + Royal Blue Preset Color. + When the item is serialized out as xml, its value is "royalBlue". + + + + + Saddle Brown Preset Color. + When the item is serialized out as xml, its value is "saddleBrown". + + + + + Salmon Preset Color. + When the item is serialized out as xml, its value is "salmon". + + + + + Sandy Brown Preset Color. + When the item is serialized out as xml, its value is "sandyBrown". + + + + + Sea Green Preset Color. + When the item is serialized out as xml, its value is "seaGreen". + + + + + Sea Shell Preset Color. + When the item is serialized out as xml, its value is "seaShell". + + + + + Sienna Preset Color. + When the item is serialized out as xml, its value is "sienna". + + + + + Silver Preset Color. + When the item is serialized out as xml, its value is "silver". + + + + + Sky Blue Preset Color. + When the item is serialized out as xml, its value is "skyBlue". + + + + + Slate Blue Preset Color. + When the item is serialized out as xml, its value is "slateBlue". + + + + + Slate Gray Preset Color. + When the item is serialized out as xml, its value is "slateGray". + + + + + Snow Preset Color. + When the item is serialized out as xml, its value is "snow". + + + + + Spring Green Preset Color. + When the item is serialized out as xml, its value is "springGreen". + + + + + Steel Blue Preset Color. + When the item is serialized out as xml, its value is "steelBlue". + + + + + Tan Preset Color. + When the item is serialized out as xml, its value is "tan". + + + + + Teal Preset Color. + When the item is serialized out as xml, its value is "teal". + + + + + Thistle Preset Color. + When the item is serialized out as xml, its value is "thistle". + + + + + Tomato Preset Color. + When the item is serialized out as xml, its value is "tomato". + + + + + Turquoise Preset Color. + When the item is serialized out as xml, its value is "turquoise". + + + + + Violet Preset Color. + When the item is serialized out as xml, its value is "violet". + + + + + Wheat Preset Color. + When the item is serialized out as xml, its value is "wheat". + + + + + White Preset Color. + When the item is serialized out as xml, its value is "white". + + + + + White Smoke Preset Color. + When the item is serialized out as xml, its value is "whiteSmoke". + + + + + Yellow Preset Color. + When the item is serialized out as xml, its value is "yellow". + + + + + Yellow Green Preset Color. + When the item is serialized out as xml, its value is "yellowGreen". + + + + + darkBlue. + When the item is serialized out as xml, its value is "darkBlue". + This item is only available in Office 2010 and later. + + + + + darkCyan. + When the item is serialized out as xml, its value is "darkCyan". + This item is only available in Office 2010 and later. + + + + + darkGoldenrod. + When the item is serialized out as xml, its value is "darkGoldenrod". + This item is only available in Office 2010 and later. + + + + + darkGray. + When the item is serialized out as xml, its value is "darkGray". + This item is only available in Office 2010 and later. + + + + + darkGrey. + When the item is serialized out as xml, its value is "darkGrey". + This item is only available in Office 2010 and later. + + + + + darkGreen. + When the item is serialized out as xml, its value is "darkGreen". + This item is only available in Office 2010 and later. + + + + + darkKhaki. + When the item is serialized out as xml, its value is "darkKhaki". + This item is only available in Office 2010 and later. + + + + + darkMagenta. + When the item is serialized out as xml, its value is "darkMagenta". + This item is only available in Office 2010 and later. + + + + + darkOliveGreen. + When the item is serialized out as xml, its value is "darkOliveGreen". + This item is only available in Office 2010 and later. + + + + + darkOrange. + When the item is serialized out as xml, its value is "darkOrange". + This item is only available in Office 2010 and later. + + + + + darkOrchid. + When the item is serialized out as xml, its value is "darkOrchid". + This item is only available in Office 2010 and later. + + + + + darkRed. + When the item is serialized out as xml, its value is "darkRed". + This item is only available in Office 2010 and later. + + + + + darkSalmon. + When the item is serialized out as xml, its value is "darkSalmon". + This item is only available in Office 2010 and later. + + + + + darkSeaGreen. + When the item is serialized out as xml, its value is "darkSeaGreen". + This item is only available in Office 2010 and later. + + + + + darkSlateBlue. + When the item is serialized out as xml, its value is "darkSlateBlue". + This item is only available in Office 2010 and later. + + + + + darkSlateGray. + When the item is serialized out as xml, its value is "darkSlateGray". + This item is only available in Office 2010 and later. + + + + + darkSlateGrey. + When the item is serialized out as xml, its value is "darkSlateGrey". + This item is only available in Office 2010 and later. + + + + + darkTurquoise. + When the item is serialized out as xml, its value is "darkTurquoise". + This item is only available in Office 2010 and later. + + + + + darkViolet. + When the item is serialized out as xml, its value is "darkViolet". + This item is only available in Office 2010 and later. + + + + + lightBlue. + When the item is serialized out as xml, its value is "lightBlue". + This item is only available in Office 2010 and later. + + + + + lightCoral. + When the item is serialized out as xml, its value is "lightCoral". + This item is only available in Office 2010 and later. + + + + + lightCyan. + When the item is serialized out as xml, its value is "lightCyan". + This item is only available in Office 2010 and later. + + + + + lightGoldenrodYellow. + When the item is serialized out as xml, its value is "lightGoldenrodYellow". + This item is only available in Office 2010 and later. + + + + + lightGray. + When the item is serialized out as xml, its value is "lightGray". + This item is only available in Office 2010 and later. + + + + + lightGrey. + When the item is serialized out as xml, its value is "lightGrey". + This item is only available in Office 2010 and later. + + + + + lightGreen. + When the item is serialized out as xml, its value is "lightGreen". + This item is only available in Office 2010 and later. + + + + + lightPink. + When the item is serialized out as xml, its value is "lightPink". + This item is only available in Office 2010 and later. + + + + + lightSalmon. + When the item is serialized out as xml, its value is "lightSalmon". + This item is only available in Office 2010 and later. + + + + + lightSeaGreen. + When the item is serialized out as xml, its value is "lightSeaGreen". + This item is only available in Office 2010 and later. + + + + + lightSkyBlue. + When the item is serialized out as xml, its value is "lightSkyBlue". + This item is only available in Office 2010 and later. + + + + + lightSlateGray. + When the item is serialized out as xml, its value is "lightSlateGray". + This item is only available in Office 2010 and later. + + + + + lightSlateGrey. + When the item is serialized out as xml, its value is "lightSlateGrey". + This item is only available in Office 2010 and later. + + + + + lightSteelBlue. + When the item is serialized out as xml, its value is "lightSteelBlue". + This item is only available in Office 2010 and later. + + + + + lightYellow. + When the item is serialized out as xml, its value is "lightYellow". + This item is only available in Office 2010 and later. + + + + + mediumAquamarine. + When the item is serialized out as xml, its value is "mediumAquamarine". + This item is only available in Office 2010 and later. + + + + + mediumBlue. + When the item is serialized out as xml, its value is "mediumBlue". + This item is only available in Office 2010 and later. + + + + + mediumOrchid. + When the item is serialized out as xml, its value is "mediumOrchid". + This item is only available in Office 2010 and later. + + + + + mediumPurple. + When the item is serialized out as xml, its value is "mediumPurple". + This item is only available in Office 2010 and later. + + + + + mediumSeaGreen. + When the item is serialized out as xml, its value is "mediumSeaGreen". + This item is only available in Office 2010 and later. + + + + + mediumSlateBlue. + When the item is serialized out as xml, its value is "mediumSlateBlue". + This item is only available in Office 2010 and later. + + + + + mediumSpringGreen. + When the item is serialized out as xml, its value is "mediumSpringGreen". + This item is only available in Office 2010 and later. + + + + + mediumTurquoise. + When the item is serialized out as xml, its value is "mediumTurquoise". + This item is only available in Office 2010 and later. + + + + + mediumVioletRed. + When the item is serialized out as xml, its value is "mediumVioletRed". + This item is only available in Office 2010 and later. + + + + + dkGrey. + When the item is serialized out as xml, its value is "dkGrey". + This item is only available in Office 2010 and later. + + + + + dimGrey. + When the item is serialized out as xml, its value is "dimGrey". + This item is only available in Office 2010 and later. + + + + + dkSlateGrey. + When the item is serialized out as xml, its value is "dkSlateGrey". + This item is only available in Office 2010 and later. + + + + + grey. + When the item is serialized out as xml, its value is "grey". + This item is only available in Office 2010 and later. + + + + + ltGrey. + When the item is serialized out as xml, its value is "ltGrey". + This item is only available in Office 2010 and later. + + + + + ltSlateGrey. + When the item is serialized out as xml, its value is "ltSlateGrey". + This item is only available in Office 2010 and later. + + + + + slateGrey. + When the item is serialized out as xml, its value is "slateGrey". + This item is only available in Office 2010 and later. + + + + + Picture. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is pic:pic. + + + The following table lists the possible child types: + + <pic:blipFill> + <pic14:extLst> + <pic:spPr> + <pic14:style> + <pic:nvPicPr> + + + + + + Initializes a new instance of the Picture class. + + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Picture Properties. + Represents the following element tag in the schema: pic:nvPicPr. + + + xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture + + + + + Picture Fill. + Represents the following element tag in the schema: pic:blipFill. + + + xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture + + + + + Shape Properties. + Represents the following element tag in the schema: pic:spPr. + + + xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture + + + + + ShapeStyle, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: pic14:style. + + + xmlns:pic14 = http://schemas.microsoft.com/office/drawing/2010/picture + + + + + OfficeArtExtensionList, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: pic14:extLst. + + + xmlns:pic14 = http://schemas.microsoft.com/office/drawing/2010/picture + + + + + + + + Non-Visual Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is pic:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Picture Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is pic:cNvPicPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:picLocks> + + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class. + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + preferRelativeResize + Represents the following attribute in the schema: preferRelativeResize + + + + + PictureLocks. + Represents the following element tag in the schema: a:picLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualPicturePropertiesExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Picture Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is pic:nvPicPr. + + + The following table lists the possible child types: + + <pic:cNvPr> + <pic:cNvPicPr> + + + + + + Initializes a new instance of the NonVisualPictureProperties class. + + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Drawing Properties. + Represents the following element tag in the schema: pic:cNvPr. + + + xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture + + + + + Non-Visual Picture Drawing Properties. + Represents the following element tag in the schema: pic:cNvPicPr. + + + xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture + + + + + + + + Picture Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is pic:blipFill. + + + The following table lists the possible child types: + + <a:blip> + <a:srcRect> + <a:stretch> + <a:tile> + + + + + + Initializes a new instance of the BlipFill class. + + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class from outer XML. + + Specifies the outer XML of the element. + + + + DPI Setting + Represents the following attribute in the schema: dpi + + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + Blip. + Represents the following element tag in the schema: a:blip. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Source Rectangle. + Represents the following element tag in the schema: a:srcRect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is pic:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Two Cell Anchor Shape Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:twoCellAnchor. + + + The following table lists the possible child types: + + <xdr:clientData> + <xdr:cxnSp> + <xdr:graphicFrame> + <xdr:grpSp> + <xdr:from> + <xdr:to> + <xdr:pic> + <xdr:sp> + <xdr:contentPart> + + + + + + Initializes a new instance of the TwoCellAnchor class. + + + + + Initializes a new instance of the TwoCellAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TwoCellAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TwoCellAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + Positioning and Resizing Behaviors + Represents the following attribute in the schema: editAs + + + + + Starting Anchor Point. + Represents the following element tag in the schema: xdr:from. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Ending Anchor Point. + Represents the following element tag in the schema: xdr:to. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + One Cell Anchor Shape Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:oneCellAnchor. + + + The following table lists the possible child types: + + <xdr:ext> + <xdr:clientData> + <xdr:cxnSp> + <xdr:graphicFrame> + <xdr:grpSp> + <xdr:from> + <xdr:pic> + <xdr:sp> + <xdr:contentPart> + + + + + + Initializes a new instance of the OneCellAnchor class. + + + + + Initializes a new instance of the OneCellAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OneCellAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OneCellAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + FromMarker. + Represents the following element tag in the schema: xdr:from. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Extent. + Represents the following element tag in the schema: xdr:ext. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Absolute Anchor Shape Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:absoluteAnchor. + + + The following table lists the possible child types: + + <xdr:pos> + <xdr:ext> + <xdr:clientData> + <xdr:cxnSp> + <xdr:graphicFrame> + <xdr:grpSp> + <xdr:pic> + <xdr:sp> + <xdr:contentPart> + + + + + + Initializes a new instance of the AbsoluteAnchor class. + + + + + Initializes a new instance of the AbsoluteAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AbsoluteAnchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AbsoluteAnchor class from outer XML. + + Specifies the outer XML of the element. + + + + Position. + Represents the following element tag in the schema: xdr:pos. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Shape Extent. + Represents the following element tag in the schema: xdr:ext. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:sp. + + + The following table lists the possible child types: + + <xdr:spPr> + <xdr:style> + <xdr:txBody> + <xdr:nvSpPr> + + + + + + Initializes a new instance of the Shape class. + + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class from outer XML. + + Specifies the outer XML of the element. + + + + Reference to Custom Function + Represents the following attribute in the schema: macro + + + + + Text Link + Represents the following attribute in the schema: textlink + + + + + Lock Text Flag + Represents the following attribute in the schema: fLocksText + + + + + Publish to Server Flag + Represents the following attribute in the schema: fPublished + + + + + Non-Visual Properties for a Shape. + Represents the following element tag in the schema: xdr:nvSpPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Shape Properties. + Represents the following element tag in the schema: xdr:spPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + ShapeStyle. + Represents the following element tag in the schema: xdr:style. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Shape Text Body. + Represents the following element tag in the schema: xdr:txBody. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Group Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:grpSp. + + + The following table lists the possible child types: + + <xdr:grpSpPr> + <xdr:cxnSp> + <xdr:graphicFrame> + <xdr:grpSp> + <xdr:nvGrpSpPr> + <xdr:pic> + <xdr:sp> + <xdr14:contentPart> + + + + + + Initializes a new instance of the GroupShape class. + + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Group Shape. + Represents the following element tag in the schema: xdr:nvGrpSpPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Group Shape Properties. + Represents the following element tag in the schema: xdr:grpSpPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Graphic Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:graphicFrame. + + + The following table lists the possible child types: + + <a:graphic> + <xdr:xfrm> + <xdr:nvGraphicFramePr> + + + + + + Initializes a new instance of the GraphicFrame class. + + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class from outer XML. + + Specifies the outer XML of the element. + + + + Reference To Custom Function + Represents the following attribute in the schema: macro + + + + + Publish to Server Flag + Represents the following attribute in the schema: fPublished + + + + + Non-Visual Properties for a Graphic Frame. + Represents the following element tag in the schema: xdr:nvGraphicFramePr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + 2D Transform for Graphic Frames. + Represents the following element tag in the schema: xdr:xfrm. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Graphic. + Represents the following element tag in the schema: a:graphic. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Connection Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:cxnSp. + + + The following table lists the possible child types: + + <xdr:spPr> + <xdr:style> + <xdr:nvCxnSpPr> + + + + + + Initializes a new instance of the ConnectionShape class. + + + + + Initializes a new instance of the ConnectionShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShape class from outer XML. + + Specifies the outer XML of the element. + + + + Reference to Custom Function + Represents the following attribute in the schema: macro + + + + + Publish to Server Flag + Represents the following attribute in the schema: fPublished + + + + + Non-Visual Properties for a Connection Shape. + Represents the following element tag in the schema: xdr:nvCxnSpPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Connector Shape Properties. + Represents the following element tag in the schema: xdr:spPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + ShapeStyle. + Represents the following element tag in the schema: xdr:style. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Defines the Picture Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:pic. + + + The following table lists the possible child types: + + <xdr:blipFill> + <xdr:spPr> + <xdr:style> + <xdr:nvPicPr> + + + + + + Initializes a new instance of the Picture class. + + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class from outer XML. + + Specifies the outer XML of the element. + + + + Reference To Custom Function + Represents the following attribute in the schema: macro + + + + + Publish to Server Flag + Represents the following attribute in the schema: fPublished + + + + + Non-Visual Properties for a Picture. + Represents the following element tag in the schema: xdr:nvPicPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Picture Fill. + Represents the following element tag in the schema: xdr:blipFill. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + ShapeProperties. + Represents the following element tag in the schema: xdr:spPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Shape Style. + Represents the following element tag in the schema: xdr:style. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Defines the ContentPart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is xdr:contentPart. + + + The following table lists the possible child types: + + <xdr14:extLst> + <xdr14:xfrm> + <xdr14:nvPr> + <xdr14:nvContentPartPr> + + + + + + Initializes a new instance of the ContentPart class. + + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class from outer XML. + + Specifies the outer XML of the element. + + + + id, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + bwMode, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: bwMode + + + + + ExcelNonVisualContentPartShapeProperties. + Represents the following element tag in the schema: xdr14:nvContentPartPr. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + ApplicationNonVisualDrawingProperties. + Represents the following element tag in the schema: xdr14:nvPr. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + Transform2D. + Represents the following element tag in the schema: xdr14:xfrm. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + OfficeArtExtensionList. + Represents the following element tag in the schema: xdr14:extLst. + + + xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing + + + + + + + + Worksheet Drawing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:wsDr. + + + The following table lists the possible child types: + + <xdr:absoluteAnchor> + <xdr:oneCellAnchor> + <xdr:twoCellAnchor> + + + + + + Initializes a new instance of the WorksheetDrawing class. + + + + + Initializes a new instance of the WorksheetDrawing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorksheetDrawing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WorksheetDrawing class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the DrawingsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the DrawingsPart. + + Specifies the part to save to. + + + + Gets the DrawingsPart associated with this element. + + + + + Non-Visual Properties for a Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:nvSpPr. + + + The following table lists the possible child types: + + <xdr:cNvSpPr> + <xdr:cNvPr> + + + + + + Initializes a new instance of the NonVisualShapeProperties class. + + + + + Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Drawing Properties. + Represents the following element tag in the schema: xdr:cNvPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Connection Non-Visual Shape Properties. + Represents the following element tag in the schema: xdr:cNvSpPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the ShapeStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:style. + + + The following table lists the possible child types: + + <a:fontRef> + <a:lnRef> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the ShapeStyle class. + + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class from outer XML. + + Specifies the outer XML of the element. + + + + LineReference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillReference. + Represents the following element tag in the schema: a:fillRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + EffectReference. + Represents the following element tag in the schema: a:effectRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Reference. + Represents the following element tag in the schema: a:fontRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape Text Body. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:txBody. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBody class. + + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Connection Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:nvCxnSpPr. + + + The following table lists the possible child types: + + <xdr:cNvCxnSpPr> + <xdr:cNvPr> + + + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class. + + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Non-Visual Properties. + Represents the following element tag in the schema: xdr:cNvPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Non-Visual Connector Shape Drawing Properties. + Represents the following element tag in the schema: xdr:cNvCxnSpPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Non-Visual Properties for a Picture. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:nvPicPr. + + + The following table lists the possible child types: + + <xdr:cNvPicPr> + <xdr:cNvPr> + + + + + + Initializes a new instance of the NonVisualPictureProperties class. + + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: xdr:cNvPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Non-Visual Picture Drawing Properties. + Represents the following element tag in the schema: xdr:cNvPicPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Picture Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:blipFill. + + + The following table lists the possible child types: + + <a:blip> + <a:srcRect> + <a:stretch> + <a:tile> + + + + + + Initializes a new instance of the BlipFill class. + + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class from outer XML. + + Specifies the outer XML of the element. + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + Blip. + Represents the following element tag in the schema: a:blip. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Source Rectangle. + Represents the following element tag in the schema: a:srcRect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Graphic Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:nvGraphicFramePr. + + + The following table lists the possible child types: + + <xdr:cNvGraphicFramePr> + <xdr:cNvPr> + + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Non-Visual Properties. + Represents the following element tag in the schema: xdr:cNvPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Non-Visual Graphic Frame Drawing Properties. + Represents the following element tag in the schema: xdr:cNvGraphicFramePr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + 2D Transform for Graphic Frames. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform class. + + + + + Initializes a new instance of the Transform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Column). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:col. + + + + + Initializes a new instance of the ColumnId class. + + + + + Initializes a new instance of the ColumnId class with the specified text content. + + Specifies the text content of the element. + + + + + + + Column Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:colOff. + + + + + Initializes a new instance of the ColumnOffset class. + + + + + Initializes a new instance of the ColumnOffset class with the specified text content. + + Specifies the text content of the element. + + + + + + + Row Offset. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:rowOff. + + + + + Initializes a new instance of the RowOffset class. + + + + + Initializes a new instance of the RowOffset class with the specified text content. + + Specifies the text content of the element. + + + + + + + Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:row. + + + + + Initializes a new instance of the RowId class. + + + + + Initializes a new instance of the RowId class with the specified text content. + + Specifies the text content of the element. + + + + + + + Starting Anchor Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:from. + + + The following table lists the possible child types: + + <xdr:colOff> + <xdr:rowOff> + <xdr:col> + <xdr:row> + + + + + + Initializes a new instance of the FromMarker class. + + + + + Initializes a new instance of the FromMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FromMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FromMarker class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Ending Anchor Point. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:to. + + + The following table lists the possible child types: + + <xdr:colOff> + <xdr:rowOff> + <xdr:col> + <xdr:row> + + + + + + Initializes a new instance of the ToMarker class. + + + + + Initializes a new instance of the ToMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToMarker class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToMarker class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the MarkerType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <xdr:colOff> + <xdr:rowOff> + <xdr:col> + <xdr:row> + + + + + + Initializes a new instance of the MarkerType class. + + + + + Initializes a new instance of the MarkerType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MarkerType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MarkerType class from outer XML. + + Specifies the outer XML of the element. + + + + Column). + Represents the following element tag in the schema: xdr:col. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Column Offset. + Represents the following element tag in the schema: xdr:colOff. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Row. + Represents the following element tag in the schema: xdr:row. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Row Offset. + Represents the following element tag in the schema: xdr:rowOff. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Client Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:clientData. + + + + + Initializes a new instance of the ClientData class. + + + + + Locks With Sheet Flag + Represents the following attribute in the schema: fLocksWithSheet + + + + + Prints With Sheet Flag + Represents the following attribute in the schema: fPrintsWithSheet + + + + + + + + Defines the Extent Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:ext. + + + + + Initializes a new instance of the Extent class. + + + + + Extent Length + Represents the following attribute in the schema: cx + + + + + Extent Width + Represents the following attribute in the schema: cy + + + + + + + + Position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:pos. + + + + + Initializes a new instance of the Position class. + + + + + X-Axis Coordinate + Represents the following attribute in the schema: x + + + + + Y-Axis Coordinate + Represents the following attribute in the schema: y + + + + + + + + Non-Visual Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + name + Represents the following attribute in the schema: name + + + + + descr + Represents the following attribute in the schema: descr + + + + + hidden + Represents the following attribute in the schema: hidden + + + + + title + Represents the following attribute in the schema: title + + + + + HyperlinkOnClick. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + HyperlinkOnHover. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualDrawingPropertiesExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Connection Non-Visual Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:cNvSpPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:spLocks> + + + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Text Box + Represents the following attribute in the schema: txBox + + + + + Shape Locks. + Represents the following element tag in the schema: a:spLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Connector Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:cNvCxnSpPr. + + + The following table lists the possible child types: + + <a:stCxn> + <a:endCxn> + <a:cxnSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Shape Locks. + Represents the following element tag in the schema: a:cxnSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection Start. + Represents the following element tag in the schema: a:stCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection End. + Represents the following element tag in the schema: a:endCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Picture Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:cNvPicPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:picLocks> + + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class. + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + preferRelativeResize + Represents the following attribute in the schema: preferRelativeResize + + + + + PictureLocks. + Represents the following element tag in the schema: a:picLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualPicturePropertiesExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Graphic Frame Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:cNvGraphicFramePr. + + + The following table lists the possible child types: + + <a:graphicFrameLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Graphic Frame Locks. + Represents the following element tag in the schema: a:graphicFrameLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Group Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:cNvGrpSpPr. + + + The following table lists the possible child types: + + <a:grpSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + GroupShapeLocks. + Represents the following element tag in the schema: a:grpSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualGroupDrawingShapePropsExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Group Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:nvGrpSpPr. + + + The following table lists the possible child types: + + <xdr:cNvGrpSpPr> + <xdr:cNvPr> + + + + + + Initializes a new instance of the NonVisualGroupShapeProperties class. + + + + + Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Non-Visual Properties. + Represents the following element tag in the schema: xdr:cNvPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + Non-Visual Group Shape Drawing Properties. + Represents the following element tag in the schema: xdr:cNvGrpSpPr. + + + xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing + + + + + + + + Group Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is xdr:grpSpPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:xfrm> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:scene3d> + <a:solidFill> + + + + + + Initializes a new instance of the GroupShapeProperties class. + + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Grouped Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Resizing Behaviors + + + + + Creates a new EditAsValues enum instance + + + + + Move and Resize With Anchor Cells. + When the item is serialized out as xml, its value is "twoCell". + + + + + Move With Cells but Do Not Resize. + When the item is serialized out as xml, its value is "oneCell". + + + + + Do Not Move or Resize With Underlying Rows/Columns. + When the item is serialized out as xml, its value is "absolute". + + + + + No Text Wrapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:wrapNone. + + + + + Initializes a new instance of the WrapNone class. + + + + + + + + Square Wrapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:wrapSquare. + + + The following table lists the possible child types: + + <wp:effectExtent> + + + + + + Initializes a new instance of the WrapSquare class. + + + + + Initializes a new instance of the WrapSquare class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapSquare class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapSquare class from outer XML. + + Specifies the outer XML of the element. + + + + Text Wrapping Location + Represents the following attribute in the schema: wrapText + + + + + Distance From Text (Top) + Represents the following attribute in the schema: distT + + + + + Distance From Text on Bottom Edge + Represents the following attribute in the schema: distB + + + + + Distance From Text on Left Edge + Represents the following attribute in the schema: distL + + + + + Distance From Text on Right Edge + Represents the following attribute in the schema: distR + + + + + Object Extents Including Effects. + Represents the following element tag in the schema: wp:effectExtent. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + + + + Tight Wrapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:wrapTight. + + + The following table lists the possible child types: + + <wp:wrapPolygon> + + + + + + Initializes a new instance of the WrapTight class. + + + + + Initializes a new instance of the WrapTight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapTight class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapTight class from outer XML. + + Specifies the outer XML of the element. + + + + Text Wrapping Location + Represents the following attribute in the schema: wrapText + + + + + Distance From Test on Left Edge + Represents the following attribute in the schema: distL + + + + + Distance From Text on Right Edge + Represents the following attribute in the schema: distR + + + + + Tight Wrapping Extents Polygon. + Represents the following element tag in the schema: wp:wrapPolygon. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + + + + Through Wrapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:wrapThrough. + + + The following table lists the possible child types: + + <wp:wrapPolygon> + + + + + + Initializes a new instance of the WrapThrough class. + + + + + Initializes a new instance of the WrapThrough class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapThrough class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapThrough class from outer XML. + + Specifies the outer XML of the element. + + + + Text Wrapping Location + Represents the following attribute in the schema: wrapText + + + + + Distance From Text on Left Edge + Represents the following attribute in the schema: distL + + + + + Distance From Text on Right Edge + Represents the following attribute in the schema: distR + + + + + Wrapping Polygon. + Represents the following element tag in the schema: wp:wrapPolygon. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + + + + Top and Bottom Wrapping. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:wrapTopAndBottom. + + + The following table lists the possible child types: + + <wp:effectExtent> + + + + + + Initializes a new instance of the WrapTopBottom class. + + + + + Initializes a new instance of the WrapTopBottom class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapTopBottom class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapTopBottom class from outer XML. + + Specifies the outer XML of the element. + + + + Distance From Text on Top Edge + Represents the following attribute in the schema: distT + + + + + Distance From Text on Bottom Edge + Represents the following attribute in the schema: distB + + + + + Wrapping Boundaries. + Represents the following element tag in the schema: wp:effectExtent. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + + + + Inline DrawingML Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:inline. + + + The following table lists the possible child types: + + <a:graphic> + <wp:docPr> + <wp:cNvGraphicFramePr> + <wp:extent> + <wp:effectExtent> + + + + + + Initializes a new instance of the Inline class. + + + + + Initializes a new instance of the Inline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Inline class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Inline class from outer XML. + + Specifies the outer XML of the element. + + + + Distance From Text on Top Edge + Represents the following attribute in the schema: distT + + + + + Distance From Text on Bottom Edge + Represents the following attribute in the schema: distB + + + + + Distance From Text on Left Edge + Represents the following attribute in the schema: distL + + + + + Distance From Text on Right Edge + Represents the following attribute in the schema: distR + + + + + anchorId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: wp14:anchorId + + + xmlns:wp14=http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing + + + + + editId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: wp14:editId + + + xmlns:wp14=http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing + + + + + Drawing Object Size. + Represents the following element tag in the schema: wp:extent. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Inline Wrapping Extent. + Represents the following element tag in the schema: wp:effectExtent. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Drawing Object Non-Visual Properties. + Represents the following element tag in the schema: wp:docPr. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Common DrawingML Non-Visual Properties. + Represents the following element tag in the schema: wp:cNvGraphicFramePr. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Graphic. + Represents the following element tag in the schema: a:graphic. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Anchor for Floating DrawingML Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:anchor. + + + The following table lists the possible child types: + + <a:graphic> + <wp:docPr> + <wp:cNvGraphicFramePr> + <wp:simplePos> + <wp:extent> + <wp:effectExtent> + <wp:positionH> + <wp:positionV> + <wp:wrapNone> + <wp:wrapSquare> + <wp:wrapThrough> + <wp:wrapTight> + <wp:wrapTopAndBottom> + <wp14:sizeRelH> + <wp14:sizeRelV> + + + + + + Initializes a new instance of the Anchor class. + + + + + Initializes a new instance of the Anchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Anchor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Anchor class from outer XML. + + Specifies the outer XML of the element. + + + + Distance From Text on Top Edge + Represents the following attribute in the schema: distT + + + + + Distance From Text on Bottom Edge + Represents the following attribute in the schema: distB + + + + + Distance From Text on Left Edge + Represents the following attribute in the schema: distL + + + + + Distance From Text on Right Edge + Represents the following attribute in the schema: distR + + + + + Page Positioning + Represents the following attribute in the schema: simplePos + + + + + Relative Z-Ordering Position + Represents the following attribute in the schema: relativeHeight + + + + + Display Behind Document Text + Represents the following attribute in the schema: behindDoc + + + + + Lock Anchor + Represents the following attribute in the schema: locked + + + + + Layout In Table Cell + Represents the following attribute in the schema: layoutInCell + + + + + Hidden + Represents the following attribute in the schema: hidden + + + + + Allow Objects to Overlap + Represents the following attribute in the schema: allowOverlap + + + + + editId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: wp14:editId + + + xmlns:wp14=http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing + + + + + anchorId, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: wp14:anchorId + + + xmlns:wp14=http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing + + + + + Simple Positioning Coordinates. + Represents the following element tag in the schema: wp:simplePos. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Horizontal Positioning. + Represents the following element tag in the schema: wp:positionH. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Vertical Positioning. + Represents the following element tag in the schema: wp:positionV. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Inline Drawing Object Extents. + Represents the following element tag in the schema: wp:extent. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + EffectExtent. + Represents the following element tag in the schema: wp:effectExtent. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + + + + Wrapping Polygon Start. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:start. + + + + + Initializes a new instance of the StartPoint class. + + + + + + + + Wrapping Polygon Line End Position. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:lineTo. + + + + + Initializes a new instance of the LineTo class. + + + + + + + + Simple Positioning Coordinates. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:simplePos. + + + + + Initializes a new instance of the SimplePosition class. + + + + + + + + Defines the Point2DType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the Point2DType class. + + + + + X-Axis Coordinate + Represents the following attribute in the schema: x + + + + + Y-Axis Coordinate + Represents the following attribute in the schema: y + + + + + Object Extents Including Effects. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:effectExtent. + + + + + Initializes a new instance of the EffectExtent class. + + + + + Additional Extent on Left Edge + Represents the following attribute in the schema: l + + + + + Additional Extent on Top Edge + Represents the following attribute in the schema: t + + + + + Additional Extent on Right Edge + Represents the following attribute in the schema: r + + + + + Additional Extent on Bottom Edge + Represents the following attribute in the schema: b + + + + + + + + Tight Wrapping Extents Polygon. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:wrapPolygon. + + + The following table lists the possible child types: + + <wp:start> + <wp:lineTo> + + + + + + Initializes a new instance of the WrapPolygon class. + + + + + Initializes a new instance of the WrapPolygon class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapPolygon class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WrapPolygon class from outer XML. + + Specifies the outer XML of the element. + + + + Wrapping Points Modified + Represents the following attribute in the schema: edited + + + + + Wrapping Polygon Start. + Represents the following element tag in the schema: wp:start. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + + + + Horizontal Positioning. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:positionH. + + + The following table lists the possible child types: + + <wp14:pctPosHOffset> + <wp:align> + <wp:posOffset> + + + + + + Initializes a new instance of the HorizontalPosition class. + + + + + Initializes a new instance of the HorizontalPosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HorizontalPosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HorizontalPosition class from outer XML. + + Specifies the outer XML of the element. + + + + Horizontal Position Relative Base + Represents the following attribute in the schema: relativeFrom + + + + + Relative Horizontal Alignment. + Represents the following element tag in the schema: wp:align. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + Absolute Position Offset. + Represents the following element tag in the schema: wp:posOffset. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + PercentagePositionHeightOffset, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: wp14:pctPosHOffset. + + + xmlns:wp14 = http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing + + + + + + + + Vertical Positioning. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:positionV. + + + The following table lists the possible child types: + + <wp14:pctPosVOffset> + <wp:align> + <wp:posOffset> + + + + + + Initializes a new instance of the VerticalPosition class. + + + + + Initializes a new instance of the VerticalPosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VerticalPosition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VerticalPosition class from outer XML. + + Specifies the outer XML of the element. + + + + Vertical Position Relative Base + Represents the following attribute in the schema: relativeFrom + + + + + Relative Vertical Alignment. + Represents the following element tag in the schema: wp:align. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + PositionOffset. + Represents the following element tag in the schema: wp:posOffset. + + + xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing + + + + + PercentagePositionVerticalOffset, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: wp14:pctPosVOffset. + + + xmlns:wp14 = http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing + + + + + + + + Inline Drawing Object Extents. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:extent. + + + + + Initializes a new instance of the Extent class. + + + + + Extent Length + Represents the following attribute in the schema: cx + + + + + Extent Width + Represents the following attribute in the schema: cy + + + + + + + + Drawing Object Non-Visual Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:docPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the DocProperties class. + + + + + Initializes a new instance of the DocProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DocProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the NonVisualGraphicFrameDrawingProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:cNvGraphicFramePr. + + + The following table lists the possible child types: + + <a:graphicFrameLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Graphic Frame Locks. + Represents the following element tag in the schema: a:graphicFrameLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Relative Vertical Alignment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:align. + + + + + Initializes a new instance of the VerticalAlignment class. + + + + + Initializes a new instance of the VerticalAlignment class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the PositionOffset Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:posOffset. + + + + + Initializes a new instance of the PositionOffset class. + + + + + Initializes a new instance of the PositionOffset class with the specified text content. + + Specifies the text content of the element. + + + + + + + Relative Horizontal Alignment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is wp:align. + + + + + Initializes a new instance of the HorizontalAlignment class. + + + + + Initializes a new instance of the HorizontalAlignment class with the specified text content. + + Specifies the text content of the element. + + + + + + + Text Wrapping Location + + + + + Creates a new WrapTextValues enum instance + + + + + Both Sides. + When the item is serialized out as xml, its value is "bothSides". + + + + + Left Side Only. + When the item is serialized out as xml, its value is "left". + + + + + Right Side Only. + When the item is serialized out as xml, its value is "right". + + + + + Largest Side Only. + When the item is serialized out as xml, its value is "largest". + + + + + Relative Horizontal Alignment Positions + + + + + Creates a new HorizontalAlignmentValues enum instance + + + + + Left Alignment. + When the item is serialized out as xml, its value is "left". + + + + + Right Alignment. + When the item is serialized out as xml, its value is "right". + + + + + Center Alignment. + When the item is serialized out as xml, its value is "center". + + + + + Inside. + When the item is serialized out as xml, its value is "inside". + + + + + Outside. + When the item is serialized out as xml, its value is "outside". + + + + + Horizontal Relative Positioning + + + + + Creates a new HorizontalRelativePositionValues enum instance + + + + + Page Margin. + When the item is serialized out as xml, its value is "margin". + + + + + Page Edge. + When the item is serialized out as xml, its value is "page". + + + + + Column. + When the item is serialized out as xml, its value is "column". + + + + + Character. + When the item is serialized out as xml, its value is "character". + + + + + Left Margin. + When the item is serialized out as xml, its value is "leftMargin". + + + + + Right Margin. + When the item is serialized out as xml, its value is "rightMargin". + + + + + Inside Margin. + When the item is serialized out as xml, its value is "insideMargin". + + + + + Outside Margin. + When the item is serialized out as xml, its value is "outsideMargin". + + + + + Vertical Alignment Definition + + + + + Creates a new VerticalAlignmentValues enum instance + + + + + Top. + When the item is serialized out as xml, its value is "top". + + + + + Bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + Center Alignment. + When the item is serialized out as xml, its value is "center". + + + + + Inside. + When the item is serialized out as xml, its value is "inside". + + + + + Outside. + When the item is serialized out as xml, its value is "outside". + + + + + Vertical Relative Positioning + + + + + Creates a new VerticalRelativePositionValues enum instance + + + + + Page Margin. + When the item is serialized out as xml, its value is "margin". + + + + + Page Edge. + When the item is serialized out as xml, its value is "page". + + + + + Paragraph. + When the item is serialized out as xml, its value is "paragraph". + + + + + Line. + When the item is serialized out as xml, its value is "line". + + + + + Top Margin. + When the item is serialized out as xml, its value is "topMargin". + + + + + Bottom Margin. + When the item is serialized out as xml, its value is "bottomMargin". + + + + + Inside Margin. + When the item is serialized out as xml, its value is "insideMargin". + + + + + Outside Margin. + When the item is serialized out as xml, its value is "outsideMargin". + + + + + Custom File Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is op:Properties. + + + The following table lists the possible child types: + + <op:property> + + + + + + Initializes a new instance of the Properties class. + + + + + Initializes a new instance of the Properties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Properties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Properties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the CustomFilePropertiesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the CustomFilePropertiesPart. + + Specifies the part to save to. + + + + Gets the CustomFilePropertiesPart associated with this element. + + + + + Custom File Property. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is op:property. + + + The following table lists the possible child types: + + <vt:array> + <vt:cf> + <vt:empty> + <vt:null> + <vt:vector> + <vt:vstream> + <vt:clsid> + <vt:cy> + <vt:error> + <vt:blob> + <vt:oblob> + <vt:stream> + <vt:ostream> + <vt:storage> + <vt:ostorage> + <vt:bool> + <vt:i1> + <vt:date> + <vt:filetime> + <vt:decimal> + <vt:r8> + <vt:r4> + <vt:i4> + <vt:int> + <vt:i8> + <vt:i2> + <vt:lpstr> + <vt:lpwstr> + <vt:bstr> + <vt:ui1> + <vt:ui4> + <vt:uint> + <vt:ui8> + <vt:ui2> + + + + + + Initializes a new instance of the CustomDocumentProperty class. + + + + + Initializes a new instance of the CustomDocumentProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomDocumentProperty class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomDocumentProperty class from outer XML. + + Specifies the outer XML of the element. + + + + Format ID + Represents the following attribute in the schema: fmtid + + + + + Property ID + Represents the following attribute in the schema: pid + + + + + Custom File Property Name + Represents the following attribute in the schema: name + + + + + Bookmark Link Target + Represents the following attribute in the schema: linkTarget + + + + + Vector. + Represents the following element tag in the schema: vt:vector. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Array. + Represents the following element tag in the schema: vt:array. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Blob. + Represents the following element tag in the schema: vt:blob. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Blob Object. + Represents the following element tag in the schema: vt:oblob. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Empty. + Represents the following element tag in the schema: vt:empty. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Null. + Represents the following element tag in the schema: vt:null. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 1-Byte Signed Integer. + Represents the following element tag in the schema: vt:i1. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 2-Byte Signed Integer. + Represents the following element tag in the schema: vt:i2. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 4-Byte Signed Integer. + Represents the following element tag in the schema: vt:i4. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 8-Byte Signed Integer. + Represents the following element tag in the schema: vt:i8. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Integer. + Represents the following element tag in the schema: vt:int. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 1-Byte Unsigned Integer. + Represents the following element tag in the schema: vt:ui1. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 2-Byte Unsigned Integer. + Represents the following element tag in the schema: vt:ui2. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 4-Byte Unsigned Integer. + Represents the following element tag in the schema: vt:ui4. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 8-Byte Unsigned Integer. + Represents the following element tag in the schema: vt:ui8. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Unsigned Integer. + Represents the following element tag in the schema: vt:uint. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 4-Byte Real Number. + Represents the following element tag in the schema: vt:r4. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 8-Byte Real Number. + Represents the following element tag in the schema: vt:r8. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Decimal. + Represents the following element tag in the schema: vt:decimal. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + LPSTR. + Represents the following element tag in the schema: vt:lpstr. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + LPWSTR. + Represents the following element tag in the schema: vt:lpwstr. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Basic String. + Represents the following element tag in the schema: vt:bstr. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Date and Time. + Represents the following element tag in the schema: vt:date. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + File Time. + Represents the following element tag in the schema: vt:filetime. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Boolean. + Represents the following element tag in the schema: vt:bool. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Currency. + Represents the following element tag in the schema: vt:cy. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Error Status Code. + Represents the following element tag in the schema: vt:error. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Stream. + Represents the following element tag in the schema: vt:stream. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Stream Object. + Represents the following element tag in the schema: vt:ostream. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Storage. + Represents the following element tag in the schema: vt:storage. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Storage Object. + Represents the following element tag in the schema: vt:ostorage. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Versioned Stream. + Represents the following element tag in the schema: vt:vstream. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Class ID. + Represents the following element tag in the schema: vt:clsid. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Clipboard Data. + Represents the following element tag in the schema: vt:cf. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + + + + Custom XML Data Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ds:datastoreItem. + + + The following table lists the possible child types: + + <ds:schemaRefs> + + + + + + Initializes a new instance of the DataStoreItem class. + + + + + Initializes a new instance of the DataStoreItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataStoreItem class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DataStoreItem class from outer XML. + + Specifies the outer XML of the element. + + + + Custom XML Data ID + Represents the following attribute in the schema: ds:itemID + + + xmlns:ds=http://schemas.openxmlformats.org/officeDocument/2006/customXml + + + + + Set of Associated XML Schemas. + Represents the following element tag in the schema: ds:schemaRefs. + + + xmlns:ds = http://schemas.openxmlformats.org/officeDocument/2006/customXml + + + + + + + + Loads the DOM from the CustomXmlPropertiesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the CustomXmlPropertiesPart. + + Specifies the part to save to. + + + + Gets the CustomXmlPropertiesPart associated with this element. + + + + + Associated XML Schema. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ds:schemaRef. + + + + + Initializes a new instance of the SchemaReference class. + + + + + Target Namespace of Associated XML Schema + Represents the following attribute in the schema: ds:uri + + + xmlns:ds=http://schemas.openxmlformats.org/officeDocument/2006/customXml + + + + + + + + Set of Associated XML Schemas. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ds:schemaRefs. + + + The following table lists the possible child types: + + <ds:schemaRef> + + + + + + Initializes a new instance of the SchemaReferences class. + + + + + Initializes a new instance of the SchemaReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SchemaReferences class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SchemaReferences class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Variant. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:variant. + + + The following table lists the possible child types: + + <vt:array> + <vt:cf> + <vt:empty> + <vt:null> + <vt:variant> + <vt:vector> + <vt:vstream> + <vt:clsid> + <vt:cy> + <vt:error> + <vt:blob> + <vt:oblob> + <vt:stream> + <vt:ostream> + <vt:storage> + <vt:ostorage> + <vt:bool> + <vt:i1> + <vt:date> + <vt:filetime> + <vt:decimal> + <vt:r8> + <vt:r4> + <vt:i4> + <vt:int> + <vt:i8> + <vt:i2> + <vt:lpstr> + <vt:lpwstr> + <vt:bstr> + <vt:ui1> + <vt:ui4> + <vt:uint> + <vt:ui8> + <vt:ui2> + + + + + + Initializes a new instance of the Variant class. + + + + + Initializes a new instance of the Variant class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Variant class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Variant class from outer XML. + + Specifies the outer XML of the element. + + + + Variant. + Represents the following element tag in the schema: vt:variant. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Vector. + Represents the following element tag in the schema: vt:vector. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Array. + Represents the following element tag in the schema: vt:array. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Blob. + Represents the following element tag in the schema: vt:blob. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Blob Object. + Represents the following element tag in the schema: vt:oblob. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Empty. + Represents the following element tag in the schema: vt:empty. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Null. + Represents the following element tag in the schema: vt:null. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 1-Byte Signed Integer. + Represents the following element tag in the schema: vt:i1. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 2-Byte Signed Integer. + Represents the following element tag in the schema: vt:i2. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 4-Byte Signed Integer. + Represents the following element tag in the schema: vt:i4. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 8-Byte Signed Integer. + Represents the following element tag in the schema: vt:i8. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Integer. + Represents the following element tag in the schema: vt:int. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 1-Byte Unsigned Integer. + Represents the following element tag in the schema: vt:ui1. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 2-Byte Unsigned Integer. + Represents the following element tag in the schema: vt:ui2. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 4-Byte Unsigned Integer. + Represents the following element tag in the schema: vt:ui4. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 8-Byte Unsigned Integer. + Represents the following element tag in the schema: vt:ui8. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Unsigned Integer. + Represents the following element tag in the schema: vt:uint. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 4-Byte Real Number. + Represents the following element tag in the schema: vt:r4. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + 8-Byte Real Number. + Represents the following element tag in the schema: vt:r8. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Decimal. + Represents the following element tag in the schema: vt:decimal. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + LPSTR. + Represents the following element tag in the schema: vt:lpstr. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + LPWSTR. + Represents the following element tag in the schema: vt:lpwstr. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Basic String. + Represents the following element tag in the schema: vt:bstr. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Date and Time. + Represents the following element tag in the schema: vt:date. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + File Time. + Represents the following element tag in the schema: vt:filetime. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Boolean. + Represents the following element tag in the schema: vt:bool. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Currency. + Represents the following element tag in the schema: vt:cy. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Error Status Code. + Represents the following element tag in the schema: vt:error. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Stream. + Represents the following element tag in the schema: vt:stream. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Stream Object. + Represents the following element tag in the schema: vt:ostream. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Storage. + Represents the following element tag in the schema: vt:storage. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Storage Object. + Represents the following element tag in the schema: vt:ostorage. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Binary Versioned Stream. + Represents the following element tag in the schema: vt:vstream. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Class ID. + Represents the following element tag in the schema: vt:clsid. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Clipboard Data. + Represents the following element tag in the schema: vt:cf. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + + + + Vector. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:vector. + + + The following table lists the possible child types: + + <vt:cf> + <vt:variant> + <vt:clsid> + <vt:cy> + <vt:error> + <vt:bool> + <vt:i1> + <vt:date> + <vt:filetime> + <vt:r8> + <vt:r4> + <vt:i4> + <vt:i8> + <vt:i2> + <vt:lpstr> + <vt:lpwstr> + <vt:bstr> + <vt:ui1> + <vt:ui4> + <vt:ui8> + <vt:ui2> + + + + + + Initializes a new instance of the VTVector class. + + + + + Initializes a new instance of the VTVector class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VTVector class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VTVector class from outer XML. + + Specifies the outer XML of the element. + + + + Vector Base Type + Represents the following attribute in the schema: baseType + + + + + Vector Size + Represents the following attribute in the schema: size + + + + + + + + Array. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:array. + + + The following table lists the possible child types: + + <vt:variant> + <vt:cy> + <vt:error> + <vt:bool> + <vt:i1> + <vt:date> + <vt:decimal> + <vt:r8> + <vt:r4> + <vt:i4> + <vt:int> + <vt:i2> + <vt:bstr> + <vt:ui1> + <vt:ui4> + <vt:uint> + <vt:ui2> + + + + + + Initializes a new instance of the VTArray class. + + + + + Initializes a new instance of the VTArray class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VTArray class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VTArray class from outer XML. + + Specifies the outer XML of the element. + + + + Array Lower Bounds Attribute + Represents the following attribute in the schema: lBound + + + + + Array Upper Bounds Attribute + Represents the following attribute in the schema: uBound + + + + + Array Base Type + Represents the following attribute in the schema: baseType + + + + + + + + Binary Blob. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:blob. + + + + + Initializes a new instance of the VTBlob class. + + + + + Initializes a new instance of the VTBlob class with the specified text content. + + Specifies the text content of the element. + + + + + + + Binary Blob Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:oblob. + + + + + Initializes a new instance of the VTOBlob class. + + + + + Initializes a new instance of the VTOBlob class with the specified text content. + + Specifies the text content of the element. + + + + + + + Binary Stream. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:stream. + + + + + Initializes a new instance of the VTStreamData class. + + + + + Initializes a new instance of the VTStreamData class with the specified text content. + + Specifies the text content of the element. + + + + + + + Binary Stream Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:ostream. + + + + + Initializes a new instance of the VTOStreamData class. + + + + + Initializes a new instance of the VTOStreamData class with the specified text content. + + Specifies the text content of the element. + + + + + + + Binary Storage. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:storage. + + + + + Initializes a new instance of the VTStorage class. + + + + + Initializes a new instance of the VTStorage class with the specified text content. + + Specifies the text content of the element. + + + + + + + Binary Storage Object. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:ostorage. + + + + + Initializes a new instance of the VTOStorage class. + + + + + Initializes a new instance of the VTOStorage class with the specified text content. + + Specifies the text content of the element. + + + + + + + Empty. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:empty. + + + + + Initializes a new instance of the VTEmpty class. + + + + + + + + Null. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:null. + + + + + Initializes a new instance of the VTNull class. + + + + + + + + 1-Byte Signed Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:i1. + + + + + Initializes a new instance of the VTByte class. + + + + + Initializes a new instance of the VTByte class with the specified text content. + + Specifies the text content of the element. + + + + + + + 2-Byte Signed Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:i2. + + + + + Initializes a new instance of the VTShort class. + + + + + Initializes a new instance of the VTShort class with the specified text content. + + Specifies the text content of the element. + + + + + + + 4-Byte Signed Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:i4. + + + + + Initializes a new instance of the VTInt32 class. + + + + + Initializes a new instance of the VTInt32 class with the specified text content. + + Specifies the text content of the element. + + + + + + + Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:int. + + + + + Initializes a new instance of the VTInteger class. + + + + + Initializes a new instance of the VTInteger class with the specified text content. + + Specifies the text content of the element. + + + + + + + 8-Byte Signed Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:i8. + + + + + Initializes a new instance of the VTInt64 class. + + + + + Initializes a new instance of the VTInt64 class with the specified text content. + + Specifies the text content of the element. + + + + + + + 1-Byte Unsigned Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:ui1. + + + + + Initializes a new instance of the VTUnsignedByte class. + + + + + Initializes a new instance of the VTUnsignedByte class with the specified text content. + + Specifies the text content of the element. + + + + + + + 2-Byte Unsigned Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:ui2. + + + + + Initializes a new instance of the VTUnsignedShort class. + + + + + Initializes a new instance of the VTUnsignedShort class with the specified text content. + + Specifies the text content of the element. + + + + + + + 4-Byte Unsigned Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:ui4. + + + + + Initializes a new instance of the VTUnsignedInt32 class. + + + + + Initializes a new instance of the VTUnsignedInt32 class with the specified text content. + + Specifies the text content of the element. + + + + + + + Unsigned Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:uint. + + + + + Initializes a new instance of the VTUnsignedInteger class. + + + + + Initializes a new instance of the VTUnsignedInteger class with the specified text content. + + Specifies the text content of the element. + + + + + + + 8-Byte Unsigned Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:ui8. + + + + + Initializes a new instance of the VTUnsignedInt64 class. + + + + + Initializes a new instance of the VTUnsignedInt64 class with the specified text content. + + Specifies the text content of the element. + + + + + + + 4-Byte Real Number. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:r4. + + + + + Initializes a new instance of the VTFloat class. + + + + + Initializes a new instance of the VTFloat class with the specified text content. + + Specifies the text content of the element. + + + + + + + 8-Byte Real Number. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:r8. + + + + + Initializes a new instance of the VTDouble class. + + + + + Initializes a new instance of the VTDouble class with the specified text content. + + Specifies the text content of the element. + + + + + + + Decimal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:decimal. + + + + + Initializes a new instance of the VTDecimal class. + + + + + Initializes a new instance of the VTDecimal class with the specified text content. + + Specifies the text content of the element. + + + + + + + LPSTR. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:lpstr. + + + + + Initializes a new instance of the VTLPSTR class. + + + + + Initializes a new instance of the VTLPSTR class with the specified text content. + + Specifies the text content of the element. + + + + + + + LPWSTR. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:lpwstr. + + + + + Initializes a new instance of the VTLPWSTR class. + + + + + Initializes a new instance of the VTLPWSTR class with the specified text content. + + Specifies the text content of the element. + + + + + + + Basic String. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:bstr. + + + + + Initializes a new instance of the VTBString class. + + + + + Initializes a new instance of the VTBString class with the specified text content. + + Specifies the text content of the element. + + + + + + + Date and Time. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:date. + + + + + Initializes a new instance of the VTDate class. + + + + + Initializes a new instance of the VTDate class with the specified text content. + + Specifies the text content of the element. + + + + + + + File Time. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:filetime. + + + + + Initializes a new instance of the VTFileTime class. + + + + + Initializes a new instance of the VTFileTime class with the specified text content. + + Specifies the text content of the element. + + + + + + + Boolean. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:bool. + + + + + Initializes a new instance of the VTBool class. + + + + + Initializes a new instance of the VTBool class with the specified text content. + + Specifies the text content of the element. + + + + + + + Currency. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:cy. + + + + + Initializes a new instance of the VTCurrency class. + + + + + Initializes a new instance of the VTCurrency class with the specified text content. + + Specifies the text content of the element. + + + + + + + Error Status Code. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:error. + + + + + Initializes a new instance of the VTError class. + + + + + Initializes a new instance of the VTError class with the specified text content. + + Specifies the text content of the element. + + + + + + + Binary Versioned Stream. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:vstream. + + + + + Initializes a new instance of the VTVStreamData class. + + + + + Initializes a new instance of the VTVStreamData class with the specified text content. + + Specifies the text content of the element. + + + + VSTREAM Version Attribute + Represents the following attribute in the schema: version + + + + + + + + Class ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:clsid. + + + + + Initializes a new instance of the VTClassId class. + + + + + Initializes a new instance of the VTClassId class with the specified text content. + + Specifies the text content of the element. + + + + + + + Clipboard Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is vt:cf. + + + + + Initializes a new instance of the VTClipboardData class. + + + + + Initializes a new instance of the VTClipboardData class with the specified text content. + + Specifies the text content of the element. + + + + Format Attribute + Represents the following attribute in the schema: format + + + + + size + Represents the following attribute in the schema: size + + + + + + + + Vector Base Type Simple Type + + + + + Creates a new VectorBaseValues enum instance + + + + + Variant Base Type. + When the item is serialized out as xml, its value is "variant". + + + + + Vector Base Type Enumeration Value. + When the item is serialized out as xml, its value is "i1". + + + + + 2-Byte Signed Integer Base Type. + When the item is serialized out as xml, its value is "i2". + + + + + 4-Byte Signed Integer Base Type. + When the item is serialized out as xml, its value is "i4". + + + + + 8-Byte Signed Integer Base Type. + When the item is serialized out as xml, its value is "i8". + + + + + 1-Byte Unsigned Integer Base Type. + When the item is serialized out as xml, its value is "ui1". + + + + + 2-Byte Unsigned Integer Base Type. + When the item is serialized out as xml, its value is "ui2". + + + + + 4-Byte Unsigned Integer Base Type. + When the item is serialized out as xml, its value is "ui4". + + + + + 8-Byte Unsigned Integer Base Type. + When the item is serialized out as xml, its value is "ui8". + + + + + 4-Byte Real Number Base Type. + When the item is serialized out as xml, its value is "r4". + + + + + 8-Byte Real Number Base Type. + When the item is serialized out as xml, its value is "r8". + + + + + LPSTR Base Type. + When the item is serialized out as xml, its value is "lpstr". + + + + + LPWSTR Base Type. + When the item is serialized out as xml, its value is "lpwstr". + + + + + Basic String Base Type. + When the item is serialized out as xml, its value is "bstr". + + + + + Date and Time Base Type. + When the item is serialized out as xml, its value is "date". + + + + + File Time Base Type. + When the item is serialized out as xml, its value is "filetime". + + + + + Boolean Base Type. + When the item is serialized out as xml, its value is "bool". + + + + + Currency Base Type. + When the item is serialized out as xml, its value is "cy". + + + + + Error Status Code Base Type. + When the item is serialized out as xml, its value is "error". + + + + + Class ID Base Type. + When the item is serialized out as xml, its value is "clsid". + + + + + Clipboard Data Base Type. + When the item is serialized out as xml, its value is "cf". + + + + + Array Base Type Simple Type + + + + + Creates a new ArrayBaseValues enum instance + + + + + Variant Base Type. + When the item is serialized out as xml, its value is "variant". + + + + + 1-Byte Signed Integer Base Type. + When the item is serialized out as xml, its value is "i1". + + + + + 2-Byte Signed Integer Base Type. + When the item is serialized out as xml, its value is "i2". + + + + + 4-Byte Signed Integer Base Type. + When the item is serialized out as xml, its value is "i4". + + + + + Integer Base Type. + When the item is serialized out as xml, its value is "int". + + + + + 1-Byte Unsigned Integer Base Type. + When the item is serialized out as xml, its value is "ui1". + + + + + 2-Byte Unsigned Integer Base Type. + When the item is serialized out as xml, its value is "ui2". + + + + + 4-Byte Unsigned Integer Base Type. + When the item is serialized out as xml, its value is "ui4". + + + + + Unsigned Integer Base Type. + When the item is serialized out as xml, its value is "uint". + + + + + 4-Byte Real Number Base Type. + When the item is serialized out as xml, its value is "r4". + + + + + 8-Byte Real Number Base Type. + When the item is serialized out as xml, its value is "r8". + + + + + Decimal Base Type. + When the item is serialized out as xml, its value is "decimal". + + + + + Basic String Base Type. + When the item is serialized out as xml, its value is "bstr". + + + + + Date and Time Base Type. + When the item is serialized out as xml, its value is "date". + + + + + Boolean Base Type. + When the item is serialized out as xml, its value is "bool". + + + + + Currency Base Type. + When the item is serialized out as xml, its value is "cy". + + + + + Error Status Code Base Type. + When the item is serialized out as xml, its value is "error". + + + + + Application Specific File Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Properties. + + + The following table lists the possible child types: + + <ap:DigSig> + <ap:TitlesOfParts> + <ap:HeadingPairs> + <ap:HLinks> + <ap:ScaleCrop> + <ap:LinksUpToDate> + <ap:SharedDoc> + <ap:HyperlinksChanged> + <ap:Pages> + <ap:Words> + <ap:Characters> + <ap:Lines> + <ap:Paragraphs> + <ap:Slides> + <ap:Notes> + <ap:TotalTime> + <ap:HiddenSlides> + <ap:MMClips> + <ap:CharactersWithSpaces> + <ap:DocSecurity> + <ap:Template> + <ap:Manager> + <ap:Company> + <ap:PresentationFormat> + <ap:HyperlinkBase> + <ap:Application> + <ap:AppVersion> + + + + + + Initializes a new instance of the Properties class. + + + + + Initializes a new instance of the Properties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Properties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Properties class from outer XML. + + Specifies the outer XML of the element. + + + + Name of Document Template. + Represents the following element tag in the schema: ap:Template. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Name of Manager. + Represents the following element tag in the schema: ap:Manager. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Name of Company. + Represents the following element tag in the schema: ap:Company. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Total Number of Pages. + Represents the following element tag in the schema: ap:Pages. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Word Count. + Represents the following element tag in the schema: ap:Words. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Total Number of Characters. + Represents the following element tag in the schema: ap:Characters. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Intended Format of Presentation. + Represents the following element tag in the schema: ap:PresentationFormat. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Number of Lines. + Represents the following element tag in the schema: ap:Lines. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Total Number of Paragraphs. + Represents the following element tag in the schema: ap:Paragraphs. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Slides Metadata Element. + Represents the following element tag in the schema: ap:Slides. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Number of Slides Containing Notes. + Represents the following element tag in the schema: ap:Notes. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Total Edit Time Metadata Element. + Represents the following element tag in the schema: ap:TotalTime. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Number of Hidden Slides. + Represents the following element tag in the schema: ap:HiddenSlides. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Total Number of Multimedia Clips. + Represents the following element tag in the schema: ap:MMClips. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Thumbnail Display Mode. + Represents the following element tag in the schema: ap:ScaleCrop. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Heading Pairs. + Represents the following element tag in the schema: ap:HeadingPairs. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Part Titles. + Represents the following element tag in the schema: ap:TitlesOfParts. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Links Up-to-Date. + Represents the following element tag in the schema: ap:LinksUpToDate. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Number of Characters (With Spaces). + Represents the following element tag in the schema: ap:CharactersWithSpaces. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Shared Document. + Represents the following element tag in the schema: ap:SharedDoc. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Relative Hyperlink Base. + Represents the following element tag in the schema: ap:HyperlinkBase. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Hyperlink List. + Represents the following element tag in the schema: ap:HLinks. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Hyperlinks Changed. + Represents the following element tag in the schema: ap:HyperlinksChanged. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Digital Signature. + Represents the following element tag in the schema: ap:DigSig. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Application Name. + Represents the following element tag in the schema: ap:Application. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Application Version. + Represents the following element tag in the schema: ap:AppVersion. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + Document Security. + Represents the following element tag in the schema: ap:DocSecurity. + + + xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties + + + + + + + + Loads the DOM from the ExtendedFilePropertiesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ExtendedFilePropertiesPart. + + Specifies the part to save to. + + + + Gets the ExtendedFilePropertiesPart associated with this element. + + + + + Name of Document Template. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Template. + + + + + Initializes a new instance of the Template class. + + + + + Initializes a new instance of the Template class with the specified text content. + + Specifies the text content of the element. + + + + + + + Name of Manager. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Manager. + + + + + Initializes a new instance of the Manager class. + + + + + Initializes a new instance of the Manager class with the specified text content. + + Specifies the text content of the element. + + + + + + + Name of Company. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Company. + + + + + Initializes a new instance of the Company class. + + + + + Initializes a new instance of the Company class with the specified text content. + + Specifies the text content of the element. + + + + + + + Intended Format of Presentation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:PresentationFormat. + + + + + Initializes a new instance of the PresentationFormat class. + + + + + Initializes a new instance of the PresentationFormat class with the specified text content. + + Specifies the text content of the element. + + + + + + + Relative Hyperlink Base. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:HyperlinkBase. + + + + + Initializes a new instance of the HyperlinkBase class. + + + + + Initializes a new instance of the HyperlinkBase class with the specified text content. + + Specifies the text content of the element. + + + + + + + Application Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Application. + + + + + Initializes a new instance of the Application class. + + + + + Initializes a new instance of the Application class with the specified text content. + + Specifies the text content of the element. + + + + + + + Application Version. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:AppVersion. + + + + + Initializes a new instance of the ApplicationVersion class. + + + + + Initializes a new instance of the ApplicationVersion class with the specified text content. + + Specifies the text content of the element. + + + + + + + Total Number of Pages. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Pages. + + + + + Initializes a new instance of the Pages class. + + + + + Initializes a new instance of the Pages class with the specified text content. + + Specifies the text content of the element. + + + + + + + Word Count. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Words. + + + + + Initializes a new instance of the Words class. + + + + + Initializes a new instance of the Words class with the specified text content. + + Specifies the text content of the element. + + + + + + + Total Number of Characters. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Characters. + + + + + Initializes a new instance of the Characters class. + + + + + Initializes a new instance of the Characters class with the specified text content. + + Specifies the text content of the element. + + + + + + + Number of Lines. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Lines. + + + + + Initializes a new instance of the Lines class. + + + + + Initializes a new instance of the Lines class with the specified text content. + + Specifies the text content of the element. + + + + + + + Total Number of Paragraphs. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Paragraphs. + + + + + Initializes a new instance of the Paragraphs class. + + + + + Initializes a new instance of the Paragraphs class with the specified text content. + + Specifies the text content of the element. + + + + + + + Slides Metadata Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Slides. + + + + + Initializes a new instance of the Slides class. + + + + + Initializes a new instance of the Slides class with the specified text content. + + Specifies the text content of the element. + + + + + + + Number of Slides Containing Notes. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:Notes. + + + + + Initializes a new instance of the Notes class. + + + + + Initializes a new instance of the Notes class with the specified text content. + + Specifies the text content of the element. + + + + + + + Total Edit Time Metadata Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:TotalTime. + + + + + Initializes a new instance of the TotalTime class. + + + + + Initializes a new instance of the TotalTime class with the specified text content. + + Specifies the text content of the element. + + + + + + + Number of Hidden Slides. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:HiddenSlides. + + + + + Initializes a new instance of the HiddenSlides class. + + + + + Initializes a new instance of the HiddenSlides class with the specified text content. + + Specifies the text content of the element. + + + + + + + Total Number of Multimedia Clips. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:MMClips. + + + + + Initializes a new instance of the MultimediaClips class. + + + + + Initializes a new instance of the MultimediaClips class with the specified text content. + + Specifies the text content of the element. + + + + + + + Number of Characters (With Spaces). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:CharactersWithSpaces. + + + + + Initializes a new instance of the CharactersWithSpaces class. + + + + + Initializes a new instance of the CharactersWithSpaces class with the specified text content. + + Specifies the text content of the element. + + + + + + + Document Security. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:DocSecurity. + + + + + Initializes a new instance of the DocumentSecurity class. + + + + + Initializes a new instance of the DocumentSecurity class with the specified text content. + + Specifies the text content of the element. + + + + + + + Thumbnail Display Mode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:ScaleCrop. + + + + + Initializes a new instance of the ScaleCrop class. + + + + + Initializes a new instance of the ScaleCrop class with the specified text content. + + Specifies the text content of the element. + + + + + + + Links Up-to-Date. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:LinksUpToDate. + + + + + Initializes a new instance of the LinksUpToDate class. + + + + + Initializes a new instance of the LinksUpToDate class with the specified text content. + + Specifies the text content of the element. + + + + + + + Shared Document. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:SharedDoc. + + + + + Initializes a new instance of the SharedDocument class. + + + + + Initializes a new instance of the SharedDocument class with the specified text content. + + Specifies the text content of the element. + + + + + + + Hyperlinks Changed. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:HyperlinksChanged. + + + + + Initializes a new instance of the HyperlinksChanged class. + + + + + Initializes a new instance of the HyperlinksChanged class with the specified text content. + + Specifies the text content of the element. + + + + + + + Heading Pairs. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:HeadingPairs. + + + The following table lists the possible child types: + + <vt:vector> + + + + + + Initializes a new instance of the HeadingPairs class. + + + + + Initializes a new instance of the HeadingPairs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeadingPairs class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeadingPairs class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Hyperlink List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:HLinks. + + + The following table lists the possible child types: + + <vt:vector> + + + + + + Initializes a new instance of the HyperlinkList class. + + + + + Initializes a new instance of the HyperlinkList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HyperlinkList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the VectorVariantType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <vt:vector> + + + + + + Initializes a new instance of the VectorVariantType class. + + + + + Initializes a new instance of the VectorVariantType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VectorVariantType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VectorVariantType class from outer XML. + + Specifies the outer XML of the element. + + + + Vector. + Represents the following element tag in the schema: vt:vector. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + Part Titles. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:TitlesOfParts. + + + The following table lists the possible child types: + + <vt:vector> + + + + + + Initializes a new instance of the TitlesOfParts class. + + + + + Initializes a new instance of the TitlesOfParts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TitlesOfParts class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TitlesOfParts class from outer XML. + + Specifies the outer XML of the element. + + + + Vector. + Represents the following element tag in the schema: vt:vector. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + + + + Digital Signature. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is ap:DigSig. + + + The following table lists the possible child types: + + <vt:blob> + + + + + + Initializes a new instance of the DigitalSignature class. + + + + + Initializes a new instance of the DigitalSignature class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DigitalSignature class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DigitalSignature class from outer XML. + + Specifies the outer XML of the element. + + + + Binary Blob. + Represents the following element tag in the schema: vt:blob. + + + xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes + + + + + + + + Script. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:scr. + + + + + Initializes a new instance of the Script class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sty. + + + + + Initializes a new instance of the Style class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Defines the Run Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:r. + + + The following table lists the possible child types: + + <m:rPr> + <m:t> + <w:br> + <w:drawing> + <w:noBreakHyphen> + <w:softHyphen> + <w:dayShort> + <w:monthShort> + <w:yearShort> + <w:dayLong> + <w:monthLong> + <w:yearLong> + <w:annotationRef> + <w:footnoteRef> + <w:endnoteRef> + <w:separator> + <w:continuationSeparator> + <w:pgNum> + <w:cr> + <w:tab> + <w:lastRenderedPageBreak> + <w:fldChar> + <w:footnoteReference> + <w:endnoteReference> + <w:commentReference> + <w:object> + <w:pict> + <w:ptab> + <w:rPr> + <w:ruby> + <w:sym> + <w:t> + <w:delText> + <w:instrText> + <w:delInstrText> + + + + + + Initializes a new instance of the Run class. + + + + + Initializes a new instance of the Run class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Run class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Run class from outer XML. + + Specifies the outer XML of the element. + + + + Run Properties. + Represents the following element tag in the schema: m:rPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Run Properties. + Represents the following element tag in the schema: w:rPr. + + + xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main + + + + + + + + Accent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:acc. + + + The following table lists the possible child types: + + <m:accPr> + <m:e> + + + + + + Initializes a new instance of the Accent class. + + + + + Initializes a new instance of the Accent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Accent class from outer XML. + + Specifies the outer XML of the element. + + + + Accent Properties. + Represents the following element tag in the schema: m:accPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Bar. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:bar. + + + The following table lists the possible child types: + + <m:barPr> + <m:e> + + + + + + Initializes a new instance of the Bar class. + + + + + Initializes a new instance of the Bar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Bar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Bar class from outer XML. + + Specifies the outer XML of the element. + + + + Bar Properties. + Represents the following element tag in the schema: m:barPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Box Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:box. + + + The following table lists the possible child types: + + <m:boxPr> + <m:e> + + + + + + Initializes a new instance of the Box class. + + + + + Initializes a new instance of the Box class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Box class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Box class from outer XML. + + Specifies the outer XML of the element. + + + + Box Properties. + Represents the following element tag in the schema: m:boxPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Border-Box Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:borderBox. + + + The following table lists the possible child types: + + <m:borderBoxPr> + <m:e> + + + + + + Initializes a new instance of the BorderBox class. + + + + + Initializes a new instance of the BorderBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BorderBox class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BorderBox class from outer XML. + + Specifies the outer XML of the element. + + + + Border Box Properties. + Represents the following element tag in the schema: m:borderBoxPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Delimiter Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:d. + + + The following table lists the possible child types: + + <m:dPr> + <m:e> + + + + + + Initializes a new instance of the Delimiter class. + + + + + Initializes a new instance of the Delimiter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Delimiter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Delimiter class from outer XML. + + Specifies the outer XML of the element. + + + + Delimiter Properties. + Represents the following element tag in the schema: m:dPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Equation-Array Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:eqArr. + + + The following table lists the possible child types: + + <m:eqArrPr> + <m:e> + + + + + + Initializes a new instance of the EquationArray class. + + + + + Initializes a new instance of the EquationArray class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EquationArray class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EquationArray class from outer XML. + + Specifies the outer XML of the element. + + + + Equation Array Properties. + Represents the following element tag in the schema: m:eqArrPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Fraction Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:f. + + + The following table lists the possible child types: + + <m:fPr> + <m:num> + <m:den> + + + + + + Initializes a new instance of the Fraction class. + + + + + Initializes a new instance of the Fraction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fraction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Fraction class from outer XML. + + Specifies the outer XML of the element. + + + + Fraction Properties. + Represents the following element tag in the schema: m:fPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Numerator. + Represents the following element tag in the schema: m:num. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Denominator. + Represents the following element tag in the schema: m:den. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Function Apply Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:func. + + + The following table lists the possible child types: + + <m:funcPr> + <m:fName> + <m:e> + + + + + + Initializes a new instance of the MathFunction class. + + + + + Initializes a new instance of the MathFunction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MathFunction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MathFunction class from outer XML. + + Specifies the outer XML of the element. + + + + Function Properties. + Represents the following element tag in the schema: m:funcPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Function Name. + Represents the following element tag in the schema: m:fName. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base (Argument). + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Group-Character Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:groupChr. + + + The following table lists the possible child types: + + <m:groupChrPr> + <m:e> + + + + + + Initializes a new instance of the GroupChar class. + + + + + Initializes a new instance of the GroupChar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupChar class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupChar class from outer XML. + + Specifies the outer XML of the element. + + + + Group-Character Properties. + Represents the following element tag in the schema: m:groupChrPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Lower-Limit Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:limLow. + + + The following table lists the possible child types: + + <m:limLowPr> + <m:e> + <m:lim> + + + + + + Initializes a new instance of the LimitLower class. + + + + + Initializes a new instance of the LimitLower class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LimitLower class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LimitLower class from outer XML. + + Specifies the outer XML of the element. + + + + Lower Limit Properties. + Represents the following element tag in the schema: m:limLowPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Limit (Lower). + Represents the following element tag in the schema: m:lim. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Upper-Limit Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:limUpp. + + + The following table lists the possible child types: + + <m:limUppPr> + <m:e> + <m:lim> + + + + + + Initializes a new instance of the LimitUpper class. + + + + + Initializes a new instance of the LimitUpper class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LimitUpper class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LimitUpper class from outer XML. + + Specifies the outer XML of the element. + + + + Upper Limit Properties. + Represents the following element tag in the schema: m:limUppPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Limit (Upper). + Represents the following element tag in the schema: m:lim. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Matrix Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:m. + + + The following table lists the possible child types: + + <m:mPr> + <m:mr> + + + + + + Initializes a new instance of the Matrix class. + + + + + Initializes a new instance of the Matrix class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Matrix class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Matrix class from outer XML. + + Specifies the outer XML of the element. + + + + Matrix Properties. + Represents the following element tag in the schema: m:mPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + n-ary Operator Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:nary. + + + The following table lists the possible child types: + + <m:naryPr> + <m:sub> + <m:sup> + <m:e> + + + + + + Initializes a new instance of the Nary class. + + + + + Initializes a new instance of the Nary class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Nary class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Nary class from outer XML. + + Specifies the outer XML of the element. + + + + n-ary Properties. + Represents the following element tag in the schema: m:naryPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Lower limit (n-ary) . + Represents the following element tag in the schema: m:sub. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Upper limit (n-ary). + Represents the following element tag in the schema: m:sup. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base (Argument). + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Phantom Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:phant. + + + The following table lists the possible child types: + + <m:e> + <m:phantPr> + + + + + + Initializes a new instance of the Phantom class. + + + + + Initializes a new instance of the Phantom class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Phantom class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Phantom class from outer XML. + + Specifies the outer XML of the element. + + + + Phantom Properties. + Represents the following element tag in the schema: m:phantPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Radical Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:rad. + + + The following table lists the possible child types: + + <m:deg> + <m:e> + <m:radPr> + + + + + + Initializes a new instance of the Radical class. + + + + + Initializes a new instance of the Radical class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Radical class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Radical class from outer XML. + + Specifies the outer XML of the element. + + + + Radical Properties. + Represents the following element tag in the schema: m:radPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Degree. + Represents the following element tag in the schema: m:deg. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Pre-Sub-Superscript Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sPre. + + + The following table lists the possible child types: + + <m:sub> + <m:sup> + <m:e> + <m:sPrePr> + + + + + + Initializes a new instance of the PreSubSuper class. + + + + + Initializes a new instance of the PreSubSuper class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreSubSuper class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreSubSuper class from outer XML. + + Specifies the outer XML of the element. + + + + Pre-Sub-Superscript Properties. + Represents the following element tag in the schema: m:sPrePr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Subscript (Pre-Sub-Superscript). + Represents the following element tag in the schema: m:sub. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Superscript(Pre-Sub-Superscript function). + Represents the following element tag in the schema: m:sup. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Subscript Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sSub. + + + The following table lists the possible child types: + + <m:e> + <m:sub> + <m:sSubPr> + + + + + + Initializes a new instance of the Subscript class. + + + + + Initializes a new instance of the Subscript class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Subscript class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Subscript class from outer XML. + + Specifies the outer XML of the element. + + + + Subscript Properties. + Represents the following element tag in the schema: m:sSubPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Subscript (Subscript function). + Represents the following element tag in the schema: m:sub. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Sub-Superscript Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sSubSup. + + + The following table lists the possible child types: + + <m:e> + <m:sub> + <m:sup> + <m:sSubSupPr> + + + + + + Initializes a new instance of the SubSuperscript class. + + + + + Initializes a new instance of the SubSuperscript class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubSuperscript class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubSuperscript class from outer XML. + + Specifies the outer XML of the element. + + + + Sub-Superscript Properties. + Represents the following element tag in the schema: m:sSubSupPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Subscript (Sub-Superscript). + Represents the following element tag in the schema: m:sub. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Superscript (Sub-Superscript function). + Represents the following element tag in the schema: m:sup. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Superscript Function. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sSup. + + + The following table lists the possible child types: + + <m:e> + <m:sup> + <m:sSupPr> + + + + + + Initializes a new instance of the Superscript class. + + + + + Initializes a new instance of the Superscript class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Superscript class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Superscript class from outer XML. + + Specifies the outer XML of the element. + + + + Superscript Properties. + Represents the following element tag in the schema: m:sSupPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Base. + Represents the following element tag in the schema: m:e. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Superscript (Superscript function). + Represents the following element tag in the schema: m:sup. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Defines the Paragraph Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:oMathPara. + + + The following table lists the possible child types: + + <m:oMath> + <m:oMathParaPr> + <m:r> + <w:bookmarkStart> + <w:contentPart> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:r> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Paragraph class. + + + + + Initializes a new instance of the Paragraph class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Paragraph class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Paragraph class from outer XML. + + Specifies the outer XML of the element. + + + + Office Math Paragraph Properties. + Represents the following element tag in the schema: m:oMathParaPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Defines the OfficeMath Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:oMath. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the OfficeMath class. + + + + + Initializes a new instance of the OfficeMath class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeMath class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeMath class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Math Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:mathPr. + + + The following table lists the possible child types: + + <m:brkBin> + <m:brkBinSub> + <m:mathFont> + <m:intLim> + <m:naryLim> + <m:defJc> + <m:smallFrac> + <m:dispDef> + <m:wrapRight> + <m:lMargin> + <m:rMargin> + <m:preSp> + <m:postSp> + <m:interSp> + <m:intraSp> + <m:wrapIndent> + + + + + + Initializes a new instance of the MathProperties class. + + + + + Initializes a new instance of the MathProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MathProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MathProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Math Font. + Represents the following element tag in the schema: m:mathFont. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Break on Binary Operators. + Represents the following element tag in the schema: m:brkBin. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Break on Binary Subtraction. + Represents the following element tag in the schema: m:brkBinSub. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Small Fraction. + Represents the following element tag in the schema: m:smallFrac. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Use Display Math Defaults. + Represents the following element tag in the schema: m:dispDef. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Left Margin. + Represents the following element tag in the schema: m:lMargin. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Right Margin. + Represents the following element tag in the schema: m:rMargin. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Default Justification. + Represents the following element tag in the schema: m:defJc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Pre-Equation Spacing. + Represents the following element tag in the schema: m:preSp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Post-Equation Spacing. + Represents the following element tag in the schema: m:postSp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Inter-Equation Spacing. + Represents the following element tag in the schema: m:interSp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Intra-Equation Spacing. + Represents the following element tag in the schema: m:intraSp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Literal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:lit. + + + + + Initializes a new instance of the Literal class. + + + + + + + + Normal Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:nor. + + + + + Initializes a new instance of the NormalText class. + + + + + + + + Align. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:aln. + + + + + Initializes a new instance of the Alignment class. + + + + + + + + Operator Emulator. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:opEmu. + + + + + Initializes a new instance of the OperatorEmulator class. + + + + + + + + No Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:noBreak. + + + + + Initializes a new instance of the NoBreak class. + + + + + + + + Differential. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:diff. + + + + + Initializes a new instance of the Differential class. + + + + + + + + Hide Top Edge. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:hideTop. + + + + + Initializes a new instance of the HideTop class. + + + + + + + + Hide Bottom Edge. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:hideBot. + + + + + Initializes a new instance of the HideBottom class. + + + + + + + + Hide Left Edge. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:hideLeft. + + + + + Initializes a new instance of the HideLeft class. + + + + + + + + Hide Right Edge. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:hideRight. + + + + + Initializes a new instance of the HideRight class. + + + + + + + + Border Box Strikethrough Horizontal. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:strikeH. + + + + + Initializes a new instance of the StrikeHorizontal class. + + + + + + + + Border Box Strikethrough Vertical. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:strikeV. + + + + + Initializes a new instance of the StrikeVertical class. + + + + + + + + Border Box Strikethrough Bottom-Left to Top-Right. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:strikeBLTR. + + + + + Initializes a new instance of the StrikeBottomLeftToTopRight class. + + + + + + + + Border Box Strikethrough Top-Left to Bottom-Right. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:strikeTLBR. + + + + + Initializes a new instance of the StrikeTopLeftToBottomRight class. + + + + + + + + Delimiter Grow. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:grow. + + + + + Initializes a new instance of the GrowOperators class. + + + + + + + + Maximum Distribution. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:maxDist. + + + + + Initializes a new instance of the MaxDistribution class. + + + + + + + + Object Distribution. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:objDist. + + + + + Initializes a new instance of the ObjectDistribution class. + + + + + + + + Hide Placeholders (Matrix). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:plcHide. + + + + + Initializes a new instance of the HidePlaceholder class. + + + + + + + + Hide Subscript (n-ary). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:subHide. + + + + + Initializes a new instance of the HideSubArgument class. + + + + + + + + Hide Superscript (n-ary). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:supHide. + + + + + Initializes a new instance of the HideSuperArgument class. + + + + + + + + Phantom Show. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:show. + + + + + Initializes a new instance of the ShowPhantom class. + + + + + + + + Phantom Zero Width. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:zeroWid. + + + + + Initializes a new instance of the ZeroWidth class. + + + + + + + + Phantom Zero Ascent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:zeroAsc. + + + + + Initializes a new instance of the ZeroAscent class. + + + + + + + + Phantom Zero Descent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:zeroDesc. + + + + + Initializes a new instance of the ZeroDescent class. + + + + + + + + Transparent (Phantom). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:transp. + + + + + Initializes a new instance of the Transparent class. + + + + + + + + Hide Degree. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:degHide. + + + + + Initializes a new instance of the HideDegree class. + + + + + + + + Align Scripts. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:alnScr. + + + + + Initializes a new instance of the AlignScripts class. + + + + + + + + Small Fraction. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:smallFrac. + + + + + Initializes a new instance of the SmallFraction class. + + + + + + + + Use Display Math Defaults. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:dispDef. + + + + + Initializes a new instance of the DisplayDefaults class. + + + + + + + + Wrap Right. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:wrapRight. + + + + + Initializes a new instance of the WrapRight class. + + + + + + + + Defines the OnOffType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OnOffType class. + + + + + value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Break. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:brk. + + + + + Initializes a new instance of the Break class. + + + + + Index of Operator to Align To + Represents the following attribute in the schema: m:alnAt + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Index of Operator to Align To + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Run Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:rPr. + + + The following table lists the possible child types: + + <m:brk> + <m:lit> + <m:nor> + <m:aln> + <m:scr> + <m:sty> + + + + + + Initializes a new instance of the RunProperties class. + + + + + Initializes a new instance of the RunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RunProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Literal. + Represents the following element tag in the schema: m:lit. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Text. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:t. + + + + + Initializes a new instance of the Text class. + + + + + Initializes a new instance of the Text class with the specified text content. + + Specifies the text content of the element. + + + + space + Represents the following attribute in the schema: xml:space + + + xmlns:xml=http://www.w3.org/XML/1998/namespace + + + + + + + + Accent Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:chr. + + + + + Initializes a new instance of the AccentChar class. + + + + + + + + Delimiter Beginning Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:begChr. + + + + + Initializes a new instance of the BeginChar class. + + + + + + + + Delimiter Separator Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sepChr. + + + + + Initializes a new instance of the SeparatorChar class. + + + + + + + + Delimiter Ending Character. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:endChr. + + + + + Initializes a new instance of the EndChar class. + + + + + + + + Defines the CharType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the CharType class. + + + + + value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Control Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:ctrlPr. + + + The following table lists the possible child types: + + <w:del> + <w:ins> + <w:moveFrom> + <w:moveTo> + <w:rPr> + + + + + + Initializes a new instance of the ControlProperties class. + + + + + Initializes a new instance of the ControlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ControlProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ControlProperties class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Accent Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:accPr. + + + The following table lists the possible child types: + + <m:chr> + <m:ctrlPr> + + + + + + Initializes a new instance of the AccentProperties class. + + + + + Initializes a new instance of the AccentProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AccentProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AccentProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Accent Character. + Represents the following element tag in the schema: m:chr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Control Properties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Base. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:e. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Base class. + + + + + Initializes a new instance of the Base class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Base class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Base class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Numerator. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:num. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Numerator class. + + + + + Initializes a new instance of the Numerator class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Numerator class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Numerator class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Denominator. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:den. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Denominator class. + + + + + Initializes a new instance of the Denominator class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Denominator class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Denominator class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Function Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:fName. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the FunctionName class. + + + + + Initializes a new instance of the FunctionName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FunctionName class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FunctionName class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Limit (Lower). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:lim. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Limit class. + + + + + Initializes a new instance of the Limit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Limit class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Limit class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Lower limit (n-ary) . + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sub. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SubArgument class. + + + + + Initializes a new instance of the SubArgument class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubArgument class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubArgument class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Upper limit (n-ary). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sup. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the SuperArgument class. + + + + + Initializes a new instance of the SuperArgument class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SuperArgument class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SuperArgument class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Degree. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:deg. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the Degree class. + + + + + Initializes a new instance of the Degree class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Degree class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Degree class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the OfficeMathArgumentType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <m:acc> + <m:bar> + <m:borderBox> + <m:box> + <m:ctrlPr> + <m:d> + <m:eqArr> + <m:f> + <m:func> + <m:groupChr> + <m:limLow> + <m:limUpp> + <m:m> + <m:nary> + <m:oMath> + <m:argPr> + <m:oMathPara> + <m:phant> + <m:r> + <m:rad> + <m:sPre> + <m:sSub> + <m:sSubSup> + <m:sSup> + <w:bookmarkStart> + <w:contentPart> + <w:customXml> + <w:hyperlink> + <w:customXmlInsRangeEnd> + <w:customXmlDelRangeEnd> + <w:customXmlMoveFromRangeEnd> + <w:customXmlMoveToRangeEnd> + <w14:customXmlConflictInsRangeEnd> + <w14:customXmlConflictDelRangeEnd> + <w:bookmarkEnd> + <w:commentRangeStart> + <w:commentRangeEnd> + <w:moveFromRangeEnd> + <w:moveToRangeEnd> + <w:moveFromRangeStart> + <w:moveToRangeStart> + <w:permEnd> + <w:permStart> + <w:proofErr> + <w:ins> + <w:del> + <w:moveFrom> + <w:moveTo> + <w14:conflictIns> + <w14:conflictDel> + <w:sdt> + <w:fldSimple> + <w:customXmlInsRangeStart> + <w:customXmlDelRangeStart> + <w:customXmlMoveFromRangeStart> + <w:customXmlMoveToRangeStart> + <w14:customXmlConflictInsRangeStart> + <w14:customXmlConflictDelRangeStart> + + + + + + Initializes a new instance of the OfficeMathArgumentType class. + + + + + Initializes a new instance of the OfficeMathArgumentType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeMathArgumentType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OfficeMathArgumentType class from outer XML. + + Specifies the outer XML of the element. + + + + Argument Properties. + Represents the following element tag in the schema: m:argPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Position (Bar). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:pos. + + + + + Initializes a new instance of the Position class. + + + + + + + + Vertical Justification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:vertJc. + + + + + Initializes a new instance of the VerticalJustification class. + + + + + + + + Defines the TopBottomType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TopBottomType class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Bar Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:barPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:pos> + + + + + + Initializes a new instance of the BarProperties class. + + + + + Initializes a new instance of the BarProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BarProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Position (Bar). + Represents the following element tag in the schema: m:pos. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Box Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:boxPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:brk> + <m:opEmu> + <m:noBreak> + <m:diff> + <m:aln> + + + + + + Initializes a new instance of the BoxProperties class. + + + + + Initializes a new instance of the BoxProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BoxProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BoxProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Operator Emulator. + Represents the following element tag in the schema: m:opEmu. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + No Break. + Represents the following element tag in the schema: m:noBreak. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Differential. + Represents the following element tag in the schema: m:diff. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Break. + Represents the following element tag in the schema: m:brk. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Alignment. + Represents the following element tag in the schema: m:aln. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Border Box Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:borderBoxPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:hideTop> + <m:hideBot> + <m:hideLeft> + <m:hideRight> + <m:strikeH> + <m:strikeV> + <m:strikeBLTR> + <m:strikeTLBR> + + + + + + Initializes a new instance of the BorderBoxProperties class. + + + + + Initializes a new instance of the BorderBoxProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BorderBoxProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BorderBoxProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Hide Top Edge. + Represents the following element tag in the schema: m:hideTop. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Hide Bottom Edge. + Represents the following element tag in the schema: m:hideBot. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Hide Left Edge. + Represents the following element tag in the schema: m:hideLeft. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Hide Right Edge. + Represents the following element tag in the schema: m:hideRight. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Border Box Strikethrough Horizontal. + Represents the following element tag in the schema: m:strikeH. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Border Box Strikethrough Vertical. + Represents the following element tag in the schema: m:strikeV. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Border Box Strikethrough Bottom-Left to Top-Right. + Represents the following element tag in the schema: m:strikeBLTR. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Border Box Strikethrough Top-Left to Bottom-Right. + Represents the following element tag in the schema: m:strikeTLBR. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Shape (Delimiters). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:shp. + + + + + Initializes a new instance of the Shape class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Delimiter Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:dPr. + + + The following table lists the possible child types: + + <m:begChr> + <m:sepChr> + <m:endChr> + <m:ctrlPr> + <m:grow> + <m:shp> + + + + + + Initializes a new instance of the DelimiterProperties class. + + + + + Initializes a new instance of the DelimiterProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DelimiterProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DelimiterProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Delimiter Beginning Character. + Represents the following element tag in the schema: m:begChr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Delimiter Separator Character. + Represents the following element tag in the schema: m:sepChr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Delimiter Ending Character. + Represents the following element tag in the schema: m:endChr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Delimiter Grow. + Represents the following element tag in the schema: m:grow. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Shape (Delimiters). + Represents the following element tag in the schema: m:shp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Equation Array Base Justification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:baseJc. + + + + + Initializes a new instance of the BaseJustification class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Row Spacing Rule. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:rSpRule. + + + + + Initializes a new instance of the RowSpacingRule class. + + + + + + + + Matrix Column Gap Rule. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:cGpRule. + + + + + Initializes a new instance of the ColumnGapRule class. + + + + + + + + Defines the SpacingRuleType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the SpacingRuleType class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Row Spacing (Equation Array). + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:rSp. + + + + + Initializes a new instance of the RowSpacing class. + + + + + + + + Matrix Column Gap. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:cGp. + + + + + Initializes a new instance of the ColumnGap class. + + + + + + + + Defines the UnsignedShortType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the UnsignedShortType class. + + + + + val + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Equation Array Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:eqArrPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:maxDist> + <m:objDist> + <m:rSpRule> + <m:rSp> + <m:baseJc> + + + + + + Initializes a new instance of the EquationArrayProperties class. + + + + + Initializes a new instance of the EquationArrayProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EquationArrayProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EquationArrayProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Equation Array Base Justification. + Represents the following element tag in the schema: m:baseJc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Maximum Distribution. + Represents the following element tag in the schema: m:maxDist. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Object Distribution. + Represents the following element tag in the schema: m:objDist. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Row Spacing Rule. + Represents the following element tag in the schema: m:rSpRule. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Row Spacing (Equation Array). + Represents the following element tag in the schema: m:rSp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Fraction type. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:type. + + + + + Initializes a new instance of the FractionType class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Fraction Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:fPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:type> + + + + + + Initializes a new instance of the FractionProperties class. + + + + + Initializes a new instance of the FractionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FractionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FractionProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Fraction type. + Represents the following element tag in the schema: m:type. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Function Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:funcPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + + + + + + Initializes a new instance of the FunctionProperties class. + + + + + Initializes a new instance of the FunctionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FunctionProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FunctionProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Group-Character Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:groupChrPr. + + + The following table lists the possible child types: + + <m:chr> + <m:ctrlPr> + <m:pos> + <m:vertJc> + + + + + + Initializes a new instance of the GroupCharProperties class. + + + + + Initializes a new instance of the GroupCharProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupCharProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupCharProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Group Character (Grouping Character). + Represents the following element tag in the schema: m:chr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Position (Group Character). + Represents the following element tag in the schema: m:pos. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Vertical Justification. + Represents the following element tag in the schema: m:vertJc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Lower Limit Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:limLowPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + + + + + + Initializes a new instance of the LimitLowerProperties class. + + + + + Initializes a new instance of the LimitLowerProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LimitLowerProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LimitLowerProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Upper Limit Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:limUppPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + + + + + + Initializes a new instance of the LimitUpperProperties class. + + + + + Initializes a new instance of the LimitUpperProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LimitUpperProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the LimitUpperProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Matrix Column Count. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:count. + + + + + Initializes a new instance of the MatrixColumnCount class. + + + + + val + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Matrix Column Justification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:mcJc. + + + + + Initializes a new instance of the MatrixColumnJustification class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Matrix Column Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:mcPr. + + + The following table lists the possible child types: + + <m:count> + <m:mcJc> + + + + + + Initializes a new instance of the MatrixColumnProperties class. + + + + + Initializes a new instance of the MatrixColumnProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixColumnProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixColumnProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Matrix Column Count. + Represents the following element tag in the schema: m:count. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Matrix Column Justification. + Represents the following element tag in the schema: m:mcJc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Matrix Column. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:mc. + + + The following table lists the possible child types: + + <m:mcPr> + + + + + + Initializes a new instance of the MatrixColumn class. + + + + + Initializes a new instance of the MatrixColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixColumn class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixColumn class from outer XML. + + Specifies the outer XML of the element. + + + + Matrix Column Properties. + Represents the following element tag in the schema: m:mcPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Matrix Column Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:cSp. + + + + + Initializes a new instance of the ColumnSpacing class. + + + + + + + + Left Margin. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:lMargin. + + + + + Initializes a new instance of the LeftMargin class. + + + + + + + + Right Margin. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:rMargin. + + + + + Initializes a new instance of the RightMargin class. + + + + + + + + Pre-Equation Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:preSp. + + + + + Initializes a new instance of the PreSpacing class. + + + + + + + + Post-Equation Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:postSp. + + + + + Initializes a new instance of the PostSpacing class. + + + + + + + + Inter-Equation Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:interSp. + + + + + Initializes a new instance of the InterSpacing class. + + + + + + + + Intra-Equation Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:intraSp. + + + + + Initializes a new instance of the IntraSpacing class. + + + + + + + + Wrap Indent. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:wrapIndent. + + + + + Initializes a new instance of the WrapIndent class. + + + + + + + + Defines the TwipsMeasureType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TwipsMeasureType class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Matrix Columns. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:mcs. + + + The following table lists the possible child types: + + <m:mc> + + + + + + Initializes a new instance of the MatrixColumns class. + + + + + Initializes a new instance of the MatrixColumns class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixColumns class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixColumns class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Matrix Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:mPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:mcs> + <m:plcHide> + <m:rSpRule> + <m:cGpRule> + <m:cSp> + <m:rSp> + <m:cGp> + <m:baseJc> + + + + + + Initializes a new instance of the MatrixProperties class. + + + + + Initializes a new instance of the MatrixProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Matrix Base Justification. + Represents the following element tag in the schema: m:baseJc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Hide Placeholders (Matrix). + Represents the following element tag in the schema: m:plcHide. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Row Spacing Rule. + Represents the following element tag in the schema: m:rSpRule. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Matrix Column Gap Rule. + Represents the following element tag in the schema: m:cGpRule. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Row Spacing (Matrix). + Represents the following element tag in the schema: m:rSp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Matrix Column Spacing. + Represents the following element tag in the schema: m:cSp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Matrix Column Gap. + Represents the following element tag in the schema: m:cGp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Matrix Columns. + Represents the following element tag in the schema: m:mcs. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Matrix Row. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:mr. + + + The following table lists the possible child types: + + <m:e> + + + + + + Initializes a new instance of the MatrixRow class. + + + + + Initializes a new instance of the MatrixRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixRow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the MatrixRow class from outer XML. + + Specifies the outer XML of the element. + + + + + + + n-ary Limit Location. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:limLoc. + + + + + Initializes a new instance of the LimitLocation class. + + + + + + + + Integral Limit Locations. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:intLim. + + + + + Initializes a new instance of the IntegralLimitLocation class. + + + + + + + + n-ary Limit Location. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:naryLim. + + + + + Initializes a new instance of the NaryLimitLocation class. + + + + + + + + Defines the LimitLocationType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the LimitLocationType class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + n-ary Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:naryPr. + + + The following table lists the possible child types: + + <m:chr> + <m:ctrlPr> + <m:limLoc> + <m:grow> + <m:subHide> + <m:supHide> + + + + + + Initializes a new instance of the NaryProperties class. + + + + + Initializes a new instance of the NaryProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NaryProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NaryProperties class from outer XML. + + Specifies the outer XML of the element. + + + + n-ary Operator Character. + Represents the following element tag in the schema: m:chr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + n-ary Limit Location. + Represents the following element tag in the schema: m:limLoc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + n-ary Grow. + Represents the following element tag in the schema: m:grow. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Hide Subscript (n-ary). + Represents the following element tag in the schema: m:subHide. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Hide Superscript (n-ary). + Represents the following element tag in the schema: m:supHide. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Phantom Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:phantPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:show> + <m:zeroWid> + <m:zeroAsc> + <m:zeroDesc> + <m:transp> + + + + + + Initializes a new instance of the PhantomProperties class. + + + + + Initializes a new instance of the PhantomProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PhantomProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PhantomProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Phantom Show. + Represents the following element tag in the schema: m:show. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Phantom Zero Width. + Represents the following element tag in the schema: m:zeroWid. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Phantom Zero Ascent. + Represents the following element tag in the schema: m:zeroAsc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Phantom Zero Descent. + Represents the following element tag in the schema: m:zeroDesc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Transparent (Phantom). + Represents the following element tag in the schema: m:transp. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Radical Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:radPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:degHide> + + + + + + Initializes a new instance of the RadicalProperties class. + + + + + Initializes a new instance of the RadicalProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadicalProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the RadicalProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Hide Degree. + Represents the following element tag in the schema: m:degHide. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Pre-Sub-Superscript Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sPrePr. + + + The following table lists the possible child types: + + <m:ctrlPr> + + + + + + Initializes a new instance of the PreSubSuperProperties class. + + + + + Initializes a new instance of the PreSubSuperProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreSubSuperProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreSubSuperProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Subscript Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sSubPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + + + + + + Initializes a new instance of the SubscriptProperties class. + + + + + Initializes a new instance of the SubscriptProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubscriptProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubscriptProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Sub-Superscript Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sSubSupPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + <m:alnScr> + + + + + + Initializes a new instance of the SubSuperscriptProperties class. + + + + + Initializes a new instance of the SubSuperscriptProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubSuperscriptProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubSuperscriptProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Align Scripts. + Represents the following element tag in the schema: m:alnScr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Superscript Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:sSupPr. + + + The following table lists the possible child types: + + <m:ctrlPr> + + + + + + Initializes a new instance of the SuperscriptProperties class. + + + + + Initializes a new instance of the SuperscriptProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SuperscriptProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SuperscriptProperties class from outer XML. + + Specifies the outer XML of the element. + + + + ControlProperties. + Represents the following element tag in the schema: m:ctrlPr. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Argument Size. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:argSz. + + + + + Initializes a new instance of the ArgumentSize class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Argument Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:argPr. + + + The following table lists the possible child types: + + <m:argSz> + + + + + + Initializes a new instance of the ArgumentProperties class. + + + + + Initializes a new instance of the ArgumentProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ArgumentProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ArgumentProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Argument Size. + Represents the following element tag in the schema: m:argSz. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Justification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:jc. + + + + + Initializes a new instance of the Justification class. + + + + + + + + Default Justification. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:defJc. + + + + + Initializes a new instance of the DefaultJustification class. + + + + + + + + Defines the OfficeMathJustificationType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OfficeMathJustificationType class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + Math Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:mathFont. + + + + + Initializes a new instance of the MathFont class. + + + + + val + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Break on Binary Operators. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:brkBin. + + + + + Initializes a new instance of the BreakBinary class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Break on Binary Subtraction. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:brkBinSub. + + + + + Initializes a new instance of the BreakBinarySubtraction class. + + + + + Value + Represents the following attribute in the schema: m:val + + + xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Office Math Paragraph Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is m:oMathParaPr. + + + The following table lists the possible child types: + + <m:jc> + + + + + + Initializes a new instance of the ParagraphProperties class. + + + + + Initializes a new instance of the ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParagraphProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Justification. + Represents the following element tag in the schema: m:jc. + + + xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math + + + + + + + + Defines the HorizontalAlignmentValues enumeration. + + + + + Creates a new HorizontalAlignmentValues enum instance + + + + + Left Justification. + When the item is serialized out as xml, its value is "left". + + + + + Center. + When the item is serialized out as xml, its value is "center". + + + + + Right. + When the item is serialized out as xml, its value is "right". + + + + + Defines the ShapeDelimiterValues enumeration. + + + + + Creates a new ShapeDelimiterValues enum instance + + + + + Centered (Delimiters). + When the item is serialized out as xml, its value is "centered". + + + + + Match. + When the item is serialized out as xml, its value is "match". + + + + + Defines the FractionTypeValues enumeration. + + + + + Creates a new FractionTypeValues enum instance + + + + + Bar Fraction. + When the item is serialized out as xml, its value is "bar". + + + + + Skewed. + When the item is serialized out as xml, its value is "skw". + + + + + Linear Fraction. + When the item is serialized out as xml, its value is "lin". + + + + + No-Bar Fraction (Stack). + When the item is serialized out as xml, its value is "noBar". + + + + + Defines the LimitLocationValues enumeration. + + + + + Creates a new LimitLocationValues enum instance + + + + + Under-Over location. + When the item is serialized out as xml, its value is "undOvr". + + + + + Subscript-Superscript location. + When the item is serialized out as xml, its value is "subSup". + + + + + Defines the VerticalJustificationValues enumeration. + + + + + Creates a new VerticalJustificationValues enum instance + + + + + Top. + When the item is serialized out as xml, its value is "top". + + + + + Bottom Alignment. + When the item is serialized out as xml, its value is "bot". + + + + + Defines the ScriptValues enumeration. + + + + + Creates a new ScriptValues enum instance + + + + + Roman. + When the item is serialized out as xml, its value is "roman". + + + + + Script. + When the item is serialized out as xml, its value is "script". + + + + + Fraktur. + When the item is serialized out as xml, its value is "fraktur". + + + + + double-struck. + When the item is serialized out as xml, its value is "double-struck". + + + + + Sans-Serif. + When the item is serialized out as xml, its value is "sans-serif". + + + + + Monospace. + When the item is serialized out as xml, its value is "monospace". + + + + + Defines the StyleValues enumeration. + + + + + Creates a new StyleValues enum instance + + + + + Plain. + When the item is serialized out as xml, its value is "p". + + + + + Bold. + When the item is serialized out as xml, its value is "b". + + + + + Italic. + When the item is serialized out as xml, its value is "i". + + + + + Bold-Italic. + When the item is serialized out as xml, its value is "bi". + + + + + Defines the JustificationValues enumeration. + + + + + Creates a new JustificationValues enum instance + + + + + Left Justification. + When the item is serialized out as xml, its value is "left". + + + + + Right. + When the item is serialized out as xml, its value is "right". + + + + + Center (Equation). + When the item is serialized out as xml, its value is "center". + + + + + Centered as Group (Equations). + When the item is serialized out as xml, its value is "centerGroup". + + + + + Defines the BreakBinaryOperatorValues enumeration. + + + + + Creates a new BreakBinaryOperatorValues enum instance + + + + + Before. + When the item is serialized out as xml, its value is "before". + + + + + After. + When the item is serialized out as xml, its value is "after". + + + + + Repeat. + When the item is serialized out as xml, its value is "repeat". + + + + + Defines the BreakBinarySubtractionValues enumeration. + + + + + Creates a new BreakBinarySubtractionValues enum instance + + + + + Minus Minus. + When the item is serialized out as xml, its value is "--". + + + + + Minus Plus. + When the item is serialized out as xml, its value is "-+". + + + + + Plus Minus. + When the item is serialized out as xml, its value is "+-". + + + + + Defines the VerticalAlignmentValues enumeration. + + + + + Creates a new VerticalAlignmentValues enum instance + + + + + Top. + When the item is serialized out as xml, its value is "top". + + + + + Center (Function). + When the item is serialized out as xml, its value is "center". + + + + + bottom. + When the item is serialized out as xml, its value is "bottom". + + + + + Bottom Alignment. + When the item is serialized out as xml, its value is "bot". + + + + + Defines the BooleanValues enumeration. + + + + + Creates a new BooleanValues enum instance + + + + + true. + When the item is serialized out as xml, its value is "true". + + + + + false. + When the item is serialized out as xml, its value is "false". + + + + + On. + When the item is serialized out as xml, its value is "on". + + + + + Off. + When the item is serialized out as xml, its value is "off". + + + + + 0. + When the item is serialized out as xml, its value is "0". + + + + + 1. + When the item is serialized out as xml, its value is "1". + + + + + All Slides. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldAll. + + + + + Initializes a new instance of the SlideAll class. + + + + + + + + Presenter Slide Show Mode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:present. + + + + + Initializes a new instance of the PresenterSlideMode class. + + + + + + + + Stop Sound Action. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:endSnd. + + + + + Initializes a new instance of the EndSoundAction class. + + + + + + + + Build As One. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bldAsOne. + + + + + Initializes a new instance of the BuildAsOne class. + + + + + + + + Slide Target. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldTgt. + + + + + Initializes a new instance of the SlideTarget class. + + + + + + + + Background. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bg. + + + + + Initializes a new instance of the BackgroundAnimation class. + + + + + + + + Defines the CircleTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:circle. + + + + + Initializes a new instance of the CircleTransition class. + + + + + + + + Defines the DissolveTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:dissolve. + + + + + Initializes a new instance of the DissolveTransition class. + + + + + + + + Defines the DiamondTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:diamond. + + + + + Initializes a new instance of the DiamondTransition class. + + + + + + + + Defines the NewsflashTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:newsflash. + + + + + Initializes a new instance of the NewsflashTransition class. + + + + + + + + Defines the PlusTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:plus. + + + + + Initializes a new instance of the PlusTransition class. + + + + + + + + Defines the RandomTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:random. + + + + + Initializes a new instance of the RandomTransition class. + + + + + + + + Defines the WedgeTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:wedge. + + + + + Initializes a new instance of the WedgeTransition class. + + + + + + + + Defines the EmptyType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmptyType class. + + + + + Slide Range. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldRg. + + + + + Initializes a new instance of the SlideRange class. + + + + + + + + Character Range. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:charRg. + + + + + Initializes a new instance of the CharRange class. + + + + + + + + Paragraph Text Range. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:pRg. + + + + + Initializes a new instance of the ParagraphIndexRange class. + + + + + + + + Defines the IndexRangeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the IndexRangeType class. + + + + + Start + Represents the following attribute in the schema: st + + + + + End + Represents the following attribute in the schema: end + + + + + Custom Show. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:custShow. + + + + + Initializes a new instance of the CustomShowReference class. + + + + + Custom Show Identifier + Represents the following attribute in the schema: id + + + + + + + + Extension. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + + + Initializes a new instance of the Extension class. + + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Extension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Browse Slide Show Mode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:browse. + + + + + Initializes a new instance of the BrowseSlideMode class. + + + + + Show Scroll Bar in Window + Represents the following attribute in the schema: showScrollbar + + + + + + + + Kiosk Slide Show Mode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:kiosk. + + + + + Initializes a new instance of the KioskSlideMode class. + + + + + Restart Show + Represents the following attribute in the schema: restart + + + + + + + + Color Scheme Map. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:clrMap. + + + The following table lists the possible child types: + + <a:extLst> + + + + + + Initializes a new instance of the ColorMap class. + + + + + Initializes a new instance of the ColorMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMap class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMap class from outer XML. + + Specifies the outer XML of the element. + + + + Background 1 + Represents the following attribute in the schema: bg1 + + + + + Text 1 + Represents the following attribute in the schema: tx1 + + + + + Background 2 + Represents the following attribute in the schema: bg2 + + + + + Text 2 + Represents the following attribute in the schema: tx2 + + + + + Accent 1 + Represents the following attribute in the schema: accent1 + + + + + Accent 2 + Represents the following attribute in the schema: accent2 + + + + + Accent 3 + Represents the following attribute in the schema: accent3 + + + + + Accent 4 + Represents the following attribute in the schema: accent4 + + + + + Accent 5 + Represents the following attribute in the schema: accent5 + + + + + Accent 6 + Represents the following attribute in the schema: accent6 + + + + + Hyperlink + Represents the following attribute in the schema: hlink + + + + + Followed Hyperlink + Represents the following attribute in the schema: folHlink + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Color Scheme Map Override. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:clrMapOvr. + + + The following table lists the possible child types: + + <a:overrideClrMapping> + <a:masterClrMapping> + + + + + + Initializes a new instance of the ColorMapOverride class. + + + + + Initializes a new instance of the ColorMapOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMapOverride class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMapOverride class from outer XML. + + Specifies the outer XML of the element. + + + + Master Color Mapping. + Represents the following element tag in the schema: a:masterClrMapping. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Override Color Mapping. + Represents the following element tag in the schema: a:overrideClrMapping. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Background Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bgPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:noFill> + <a:pattFill> + <a:solidFill> + <p:extLst> + + + + + + Initializes a new instance of the BackgroundProperties class. + + + + + Initializes a new instance of the BackgroundProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Shade to Title + Represents the following attribute in the schema: shadeToTitle + + + + + + + + Background Style Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bgRef. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the BackgroundStyleReference class. + + + + + Initializes a new instance of the BackgroundStyleReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundStyleReference class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BackgroundStyleReference class from outer XML. + + Specifies the outer XML of the element. + + + + Style Matrix Index + Represents the following attribute in the schema: idx + + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Data for the Windows platform.. + This class is available in Office 2021 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p223:reactions> + <p228:taskDetails> + + + + + + Initializes a new instance of the CommentPropertiesExtension class. + + + + + Initializes a new instance of the CommentPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentPropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + TaskDetails, this property is only available in Microsoft365 and later.. + Represents the following element tag in the schema: p228:taskDetails. + + + xmlns:p228 = http://schemas.microsoft.com/office/powerpoint/2022/08/main + + + + + Reactions, this property is only available in Microsoft365 and later.. + Represents the following element tag in the schema: p223:reactions. + + + xmlns:p223 = http://schemas.microsoft.com/office/powerpoint/2022/03/main + + + + + + + + List of Comment Authors. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cmAuthorLst. + + + The following table lists the possible child types: + + <p:cmAuthor> + + + + + + Initializes a new instance of the CommentAuthorList class. + + + + + Initializes a new instance of the CommentAuthorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthorList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthorList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the CommentAuthorsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the CommentAuthorsPart. + + Specifies the part to save to. + + + + Gets the CommentAuthorsPart associated with this element. + + + + + Comment List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cmLst. + + + The following table lists the possible child types: + + <p:cm> + + + + + + Initializes a new instance of the CommentList class. + + + + + Initializes a new instance of the CommentList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the SlideCommentsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the SlideCommentsPart. + + Specifies the part to save to. + + + + Gets the SlideCommentsPart associated with this element. + + + + + Global Element for OLE Objects and Controls. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:oleObj. + + + The following table lists the possible child types: + + <p:embed> + <p:link> + <p:pic> + + + + + + Initializes a new instance of the OleObject class. + + + + + Initializes a new instance of the OleObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObject class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObject class from outer XML. + + Specifies the outer XML of the element. + + + + spid + Represents the following attribute in the schema: spid + + + + + name + Represents the following attribute in the schema: name + + + + + showAsIcon + Represents the following attribute in the schema: showAsIcon + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + imgW + Represents the following attribute in the schema: imgW + + + + + imgH + Represents the following attribute in the schema: imgH + + + + + progId + Represents the following attribute in the schema: progId + + + + + + + + Presentation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:presentation. + + + The following table lists the possible child types: + + <p:notesSz> + <p:defaultTextStyle> + <p:custDataLst> + <p:custShowLst> + <p:embeddedFontLst> + <p:handoutMasterIdLst> + <p:kinsoku> + <p:modifyVerifier> + <p:notesMasterIdLst> + <p:photoAlbum> + <p:extLst> + <p:sldIdLst> + <p:sldMasterIdLst> + <p:sldSz> + + + + + + Initializes a new instance of the Presentation class. + + + + + Initializes a new instance of the Presentation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Presentation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Presentation class from outer XML. + + Specifies the outer XML of the element. + + + + serverZoom + Represents the following attribute in the schema: serverZoom + + + + + firstSlideNum + Represents the following attribute in the schema: firstSlideNum + + + + + showSpecialPlsOnTitleSld + Represents the following attribute in the schema: showSpecialPlsOnTitleSld + + + + + rtl + Represents the following attribute in the schema: rtl + + + + + removePersonalInfoOnSave + Represents the following attribute in the schema: removePersonalInfoOnSave + + + + + compatMode + Represents the following attribute in the schema: compatMode + + + + + strictFirstAndLastChars + Represents the following attribute in the schema: strictFirstAndLastChars + + + + + embedTrueTypeFonts + Represents the following attribute in the schema: embedTrueTypeFonts + + + + + saveSubsetFonts + Represents the following attribute in the schema: saveSubsetFonts + + + + + autoCompressPictures + Represents the following attribute in the schema: autoCompressPictures + + + + + bookmarkIdSeed + Represents the following attribute in the schema: bookmarkIdSeed + + + + + conformance + Represents the following attribute in the schema: conformance + + + + + SlideMasterIdList. + Represents the following element tag in the schema: p:sldMasterIdLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + NotesMasterIdList. + Represents the following element tag in the schema: p:notesMasterIdLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + HandoutMasterIdList. + Represents the following element tag in the schema: p:handoutMasterIdLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + SlideIdList. + Represents the following element tag in the schema: p:sldIdLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + SlideSize. + Represents the following element tag in the schema: p:sldSz. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + NotesSize. + Represents the following element tag in the schema: p:notesSz. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + EmbeddedFontList. + Represents the following element tag in the schema: p:embeddedFontLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + CustomShowList. + Represents the following element tag in the schema: p:custShowLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + PhotoAlbum. + Represents the following element tag in the schema: p:photoAlbum. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + CustomerDataList. + Represents the following element tag in the schema: p:custDataLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Kinsoku. + Represents the following element tag in the schema: p:kinsoku. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + DefaultTextStyle. + Represents the following element tag in the schema: p:defaultTextStyle. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ModificationVerifier. + Represents the following element tag in the schema: p:modifyVerifier. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + PresentationExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the PresentationPart + + Specifies the part to be loaded. + + + + Saves the DOM into the PresentationPart. + + Specifies the part to save to. + + + + Gets the PresentationPart associated with this element. + + + + + Presentation-wide Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:presentationPr. + + + The following table lists the possible child types: + + <p:clrMru> + <p:htmlPubPr> + <p:extLst> + <p:prnPr> + <p:showPr> + <p:webPr> + + + + + + Initializes a new instance of the PresentationProperties class. + + + + + Initializes a new instance of the PresentationProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationProperties class from outer XML. + + Specifies the outer XML of the element. + + + + HTML Publishing Properties. + Represents the following element tag in the schema: p:htmlPubPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Web Properties. + Represents the following element tag in the schema: p:webPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + PrintingProperties. + Represents the following element tag in the schema: p:prnPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ShowProperties. + Represents the following element tag in the schema: p:showPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ColorMostRecentlyUsed. + Represents the following element tag in the schema: p:clrMru. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + PresentationPropertiesExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the PresentationPropertiesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the PresentationPropertiesPart. + + Specifies the part to save to. + + + + Gets the PresentationPropertiesPart associated with this element. + + + + + Presentation Slide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sld. + + + The following table lists the possible child types: + + <p:clrMapOvr> + <p:cSld> + <p:extLst> + <p:timing> + <p:transition> + + + + + + Initializes a new instance of the Slide class. + + + + + Initializes a new instance of the Slide class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Slide class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Slide class from outer XML. + + Specifies the outer XML of the element. + + + + Show Master Shapes + Represents the following attribute in the schema: showMasterSp + + + + + Show Master Placeholder Animations + Represents the following attribute in the schema: showMasterPhAnim + + + + + Show Slide in Slide Show + Represents the following attribute in the schema: show + + + + + Common slide data for slides. + Represents the following element tag in the schema: p:cSld. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Color Scheme Map Override. + Represents the following element tag in the schema: p:clrMapOvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Slide Transition. + Represents the following element tag in the schema: p:transition. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Slide Timing Information for a Slide. + Represents the following element tag in the schema: p:timing. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + SlideExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the SlidePart + + Specifies the part to be loaded. + + + + Saves the DOM into the SlidePart. + + Specifies the part to save to. + + + + Gets the SlidePart associated with this element. + + + + + Slide Layout. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldLayout. + + + The following table lists the possible child types: + + <p:clrMapOvr> + <p:cSld> + <p:hf> + <p:extLst> + <p:timing> + <p:transition> + + + + + + Initializes a new instance of the SlideLayout class. + + + + + Initializes a new instance of the SlideLayout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayout class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayout class from outer XML. + + Specifies the outer XML of the element. + + + + Show Master Shapes + Represents the following attribute in the schema: showMasterSp + + + + + Show Master Placeholder Animations + Represents the following attribute in the schema: showMasterPhAnim + + + + + matchingName + Represents the following attribute in the schema: matchingName + + + + + type + Represents the following attribute in the schema: type + + + + + preserve + Represents the following attribute in the schema: preserve + + + + + userDrawn + Represents the following attribute in the schema: userDrawn + + + + + CommonSlideData. + Represents the following element tag in the schema: p:cSld. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Color Scheme Map Override. + Represents the following element tag in the schema: p:clrMapOvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Transition. + Represents the following element tag in the schema: p:transition. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Timing. + Represents the following element tag in the schema: p:timing. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + HeaderFooter. + Represents the following element tag in the schema: p:hf. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + SlideLayoutExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the SlideLayoutPart + + Specifies the part to be loaded. + + + + Saves the DOM into the SlideLayoutPart. + + Specifies the part to save to. + + + + Gets the SlideLayoutPart associated with this element. + + + + + Slide Master. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldMaster. + + + The following table lists the possible child types: + + <p:clrMap> + <p:cSld> + <p:hf> + <p:sldLayoutIdLst> + <p:extLst> + <p:txStyles> + <p:timing> + <p:transition> + + + + + + Initializes a new instance of the SlideMaster class. + + + + + Initializes a new instance of the SlideMaster class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMaster class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMaster class from outer XML. + + Specifies the outer XML of the element. + + + + preserve + Represents the following attribute in the schema: preserve + + + + + CommonSlideData. + Represents the following element tag in the schema: p:cSld. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Color Scheme Map. + Represents the following element tag in the schema: p:clrMap. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + SlideLayoutIdList. + Represents the following element tag in the schema: p:sldLayoutIdLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Transition. + Represents the following element tag in the schema: p:transition. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Timing. + Represents the following element tag in the schema: p:timing. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + HeaderFooter. + Represents the following element tag in the schema: p:hf. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + TextStyles. + Represents the following element tag in the schema: p:txStyles. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + SlideMasterExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the SlideMasterPart + + Specifies the part to be loaded. + + + + Saves the DOM into the SlideMasterPart. + + Specifies the part to save to. + + + + Gets the SlideMasterPart associated with this element. + + + + + Handout Master. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:handoutMaster. + + + The following table lists the possible child types: + + <p:clrMap> + <p:cSld> + <p:extLst> + <p:hf> + + + + + + Initializes a new instance of the HandoutMaster class. + + + + + Initializes a new instance of the HandoutMaster class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMaster class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMaster class from outer XML. + + Specifies the outer XML of the element. + + + + CommonSlideData. + Represents the following element tag in the schema: p:cSld. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Color Scheme Map. + Represents the following element tag in the schema: p:clrMap. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + HeaderFooter. + Represents the following element tag in the schema: p:hf. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + HandoutMasterExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the HandoutMasterPart + + Specifies the part to be loaded. + + + + Saves the DOM into the HandoutMasterPart. + + Specifies the part to save to. + + + + Gets the HandoutMasterPart associated with this element. + + + + + Notes Master. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:notesMaster. + + + The following table lists the possible child types: + + <p:clrMap> + <p:notesStyle> + <p:cSld> + <p:hf> + <p:extLst> + + + + + + Initializes a new instance of the NotesMaster class. + + + + + Initializes a new instance of the NotesMaster class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMaster class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMaster class from outer XML. + + Specifies the outer XML of the element. + + + + CommonSlideData. + Represents the following element tag in the schema: p:cSld. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Color Scheme Map. + Represents the following element tag in the schema: p:clrMap. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + HeaderFooter. + Represents the following element tag in the schema: p:hf. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + NotesStyle. + Represents the following element tag in the schema: p:notesStyle. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + NotesMasterExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the NotesMasterPart + + Specifies the part to be loaded. + + + + Saves the DOM into the NotesMasterPart. + + Specifies the part to save to. + + + + Gets the NotesMasterPart associated with this element. + + + + + Notes Slide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:notes. + + + The following table lists the possible child types: + + <p:clrMapOvr> + <p:cSld> + <p:extLst> + + + + + + Initializes a new instance of the NotesSlide class. + + + + + Initializes a new instance of the NotesSlide class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesSlide class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesSlide class from outer XML. + + Specifies the outer XML of the element. + + + + Show Master Shapes + Represents the following attribute in the schema: showMasterSp + + + + + Show Master Placeholder Animations + Represents the following attribute in the schema: showMasterPhAnim + + + + + Common slide data for notes slides. + Represents the following element tag in the schema: p:cSld. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Color Scheme Map Override. + Represents the following element tag in the schema: p:clrMapOvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionListWithModification. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the NotesSlidePart + + Specifies the part to be loaded. + + + + Saves the DOM into the NotesSlidePart. + + Specifies the part to save to. + + + + Gets the NotesSlidePart associated with this element. + + + + + Slide Synchronization Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldSyncPr. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the SlideSyncProperties class. + + + + + Initializes a new instance of the SlideSyncProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideSyncProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideSyncProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Server's Slide File ID + Represents the following attribute in the schema: serverSldId + + + + + Server's Slide File's modification date/time + Represents the following attribute in the schema: serverSldModifiedTime + + + + + Client Slide Insertion date/time + Represents the following attribute in the schema: clientInsertedTime + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the SlideSyncDataPart + + Specifies the part to be loaded. + + + + Saves the DOM into the SlideSyncDataPart. + + Specifies the part to save to. + + + + Gets the SlideSyncDataPart associated with this element. + + + + + Programmable Tab List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tagLst. + + + The following table lists the possible child types: + + <p:tag> + + + + + + Initializes a new instance of the TagList class. + + + + + Initializes a new instance of the TagList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TagList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TagList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Loads the DOM from the UserDefinedTagsPart + + Specifies the part to be loaded. + + + + Saves the DOM into the UserDefinedTagsPart. + + Specifies the part to save to. + + + + Gets the UserDefinedTagsPart associated with this element. + + + + + Presentation-wide View Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:viewPr. + + + The following table lists the possible child types: + + <p:gridSpacing> + <p:extLst> + <p:normalViewPr> + <p:notesTextViewPr> + <p:notesViewPr> + <p:outlineViewPr> + <p:sorterViewPr> + <p:slideViewPr> + + + + + + Initializes a new instance of the ViewProperties class. + + + + + Initializes a new instance of the ViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Last View + Represents the following attribute in the schema: lastView + + + + + Show Comments + Represents the following attribute in the schema: showComments + + + + + Normal View Properties. + Represents the following element tag in the schema: p:normalViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Slide View Properties. + Represents the following element tag in the schema: p:slideViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Outline View Properties. + Represents the following element tag in the schema: p:outlineViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Notes Text View Properties. + Represents the following element tag in the schema: p:notesTextViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Slide Sorter View Properties. + Represents the following element tag in the schema: p:sorterViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Notes View Properties. + Represents the following element tag in the schema: p:notesViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Grid Spacing. + Represents the following element tag in the schema: p:gridSpacing. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Loads the DOM from the ViewPropertiesPart + + Specifies the part to be loaded. + + + + Saves the DOM into the ViewPropertiesPart. + + Specifies the part to save to. + + + + Gets the ViewPropertiesPart associated with this element. + + + + + Defines the ContentPart Class. + This class is available in Office 2010 and above. + When the object is serialized out as xml, it's qualified name is p:contentPart. + + + The following table lists the possible child types: + + <p14:xfrm> + <p14:extLst> + <p14:nvContentPartPr> + + + + + + Initializes a new instance of the ContentPart class. + + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ContentPart class from outer XML. + + Specifies the outer XML of the element. + + + + bwMode, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: p14:bwMode + + + xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + NonVisualContentPartProperties. + Represents the following element tag in the schema: p14:nvContentPartPr. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + Transform2D. + Represents the following element tag in the schema: p14:xfrm. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + ExtensionListModify. + Represents the following element tag in the schema: p14:extLst. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + + + + Sound. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:snd. + + + + + Initializes a new instance of the Sound class. + + + + + + + + Sound Target. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sndTgt. + + + + + Initializes a new instance of the SoundTarget class. + + + + + + + + Defines the EmbeddedWavAudioFileType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmbeddedWavAudioFileType class. + + + + + Embedded Audio File Relationship ID + Represents the following attribute in the schema: r:embed + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Sound Name + Represents the following attribute in the schema: name + + + + + Recognized Built-In Sound + Represents the following attribute in the schema: builtIn + + + + + Start Sound Action. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:stSnd. + + + The following table lists the possible child types: + + <p:snd> + + + + + + Initializes a new instance of the StartSoundAction class. + + + + + Initializes a new instance of the StartSoundAction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StartSoundAction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StartSoundAction class from outer XML. + + Specifies the outer XML of the element. + + + + Loop Sound + Represents the following attribute in the schema: loop + + + + + Sound. + Represents the following element tag in the schema: p:snd. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Time Absolute. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tmAbs. + + + + + Initializes a new instance of the TimeAbsolute class. + + + + + Time + Represents the following attribute in the schema: val + + + + + + + + Time Percentage. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tmPct. + + + + + Initializes a new instance of the TimePercentage class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Target Element Trigger Choice. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tgtEl. + + + The following table lists the possible child types: + + <p:sndTgt> + <p:sldTgt> + <p:spTgt> + <p:inkTgt> + <p14:bmkTgt> + + + + + + Initializes a new instance of the TargetElement class. + + + + + Initializes a new instance of the TargetElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TargetElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TargetElement class from outer XML. + + Specifies the outer XML of the element. + + + + Slide Target. + Represents the following element tag in the schema: p:sldTgt. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Sound Target. + Represents the following element tag in the schema: p:sndTgt. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Shape Target. + Represents the following element tag in the schema: p:spTgt. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Ink Target. + Represents the following element tag in the schema: p:inkTgt. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + BookmarkTarget, this property is only available in Office 2010 and later.. + Represents the following element tag in the schema: p14:bmkTgt. + + + xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + + + + Time Node. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tn. + + + + + Initializes a new instance of the TimeNode class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Runtime Node Trigger Choice. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:rtn. + + + + + Initializes a new instance of the RuntimeNodeTrigger class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Condition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cond. + + + The following table lists the possible child types: + + <p:tgtEl> + <p:rtn> + <p:tn> + + + + + + Initializes a new instance of the Condition class. + + + + + Initializes a new instance of the Condition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Condition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Condition class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the EndSync Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:endSync. + + + The following table lists the possible child types: + + <p:tgtEl> + <p:rtn> + <p:tn> + + + + + + Initializes a new instance of the EndSync class. + + + + + Initializes a new instance of the EndSync class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndSync class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndSync class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TimeListConditionalType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <p:tgtEl> + <p:rtn> + <p:tn> + + + + + + Initializes a new instance of the TimeListConditionalType class. + + + + + Initializes a new instance of the TimeListConditionalType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeListConditionalType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeListConditionalType class from outer XML. + + Specifies the outer XML of the element. + + + + Trigger Event + Represents the following attribute in the schema: evt + + + + + Trigger Delay + Represents the following attribute in the schema: delay + + + + + Target Element Trigger Choice. + Represents the following element tag in the schema: p:tgtEl. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Time Node. + Represents the following element tag in the schema: p:tn. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Runtime Node Trigger Choice. + Represents the following element tag in the schema: p:rtn. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Parallel Time Node. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:par. + + + The following table lists the possible child types: + + <p:cTn> + + + + + + Initializes a new instance of the ParallelTimeNode class. + + + + + Initializes a new instance of the ParallelTimeNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParallelTimeNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ParallelTimeNode class from outer XML. + + Specifies the outer XML of the element. + + + + Parallel TimeNode. + Represents the following element tag in the schema: p:cTn. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Sequence Time Node. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:seq. + + + The following table lists the possible child types: + + <p:cTn> + <p:prevCondLst> + <p:nextCondLst> + + + + + + Initializes a new instance of the SequenceTimeNode class. + + + + + Initializes a new instance of the SequenceTimeNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SequenceTimeNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SequenceTimeNode class from outer XML. + + Specifies the outer XML of the element. + + + + Concurrent + Represents the following attribute in the schema: concurrent + + + + + Previous Action + Represents the following attribute in the schema: prevAc + + + + + Next Action + Represents the following attribute in the schema: nextAc + + + + + Common TimeNode Properties. + Represents the following element tag in the schema: p:cTn. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Previous Conditions List. + Represents the following element tag in the schema: p:prevCondLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Next Conditions List. + Represents the following element tag in the schema: p:nextCondLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Exclusive. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:excl. + + + The following table lists the possible child types: + + <p:cTn> + + + + + + Initializes a new instance of the ExclusiveTimeNode class. + + + + + Initializes a new instance of the ExclusiveTimeNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExclusiveTimeNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExclusiveTimeNode class from outer XML. + + Specifies the outer XML of the element. + + + + Common TimeNode Properties. + Represents the following element tag in the schema: p:cTn. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Animate. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:anim. + + + The following table lists the possible child types: + + <p:cBhvr> + <p:tavLst> + + + + + + Initializes a new instance of the Animate class. + + + + + Initializes a new instance of the Animate class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Animate class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Animate class from outer XML. + + Specifies the outer XML of the element. + + + + by + Represents the following attribute in the schema: by + + + + + from + Represents the following attribute in the schema: from + + + + + to + Represents the following attribute in the schema: to + + + + + calcmode + Represents the following attribute in the schema: calcmode + + + + + valueType + Represents the following attribute in the schema: valueType + + + + + bounceEnd, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: p14:bounceEnd + + + xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + CommonBehavior. + Represents the following element tag in the schema: p:cBhvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + TimeAnimateValueList. + Represents the following element tag in the schema: p:tavLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Animate Color Behavior. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:animClr. + + + The following table lists the possible child types: + + <p:from> + <p:to> + <p:by> + <p:cBhvr> + + + + + + Initializes a new instance of the AnimateColor class. + + + + + Initializes a new instance of the AnimateColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateColor class from outer XML. + + Specifies the outer XML of the element. + + + + Color Space + Represents the following attribute in the schema: clrSpc + + + + + Direction + Represents the following attribute in the schema: dir + + + + + CommonBehavior. + Represents the following element tag in the schema: p:cBhvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + By. + Represents the following element tag in the schema: p:by. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + From. + Represents the following element tag in the schema: p:from. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + To. + Represents the following element tag in the schema: p:to. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Animate Effect. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:animEffect. + + + The following table lists the possible child types: + + <p:progress> + <p:cBhvr> + + + + + + Initializes a new instance of the AnimateEffect class. + + + + + Initializes a new instance of the AnimateEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateEffect class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateEffect class from outer XML. + + Specifies the outer XML of the element. + + + + Transition + Represents the following attribute in the schema: transition + + + + + Filter + Represents the following attribute in the schema: filter + + + + + Property List + Represents the following attribute in the schema: prLst + + + + + CommonBehavior. + Represents the following element tag in the schema: p:cBhvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Progress. + Represents the following element tag in the schema: p:progress. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Animate Motion. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:animMotion. + + + The following table lists the possible child types: + + <p:cBhvr> + <p:by> + <p:from> + <p:to> + <p:rCtr> + + + + + + Initializes a new instance of the AnimateMotion class. + + + + + Initializes a new instance of the AnimateMotion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateMotion class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateMotion class from outer XML. + + Specifies the outer XML of the element. + + + + origin + Represents the following attribute in the schema: origin + + + + + path + Represents the following attribute in the schema: path + + + + + pathEditMode + Represents the following attribute in the schema: pathEditMode + + + + + rAng + Represents the following attribute in the schema: rAng + + + + + ptsTypes + Represents the following attribute in the schema: ptsTypes + + + + + bounceEnd, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: p14:bounceEnd + + + xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + CommonBehavior. + Represents the following element tag in the schema: p:cBhvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ByPosition. + Represents the following element tag in the schema: p:by. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + FromPosition. + Represents the following element tag in the schema: p:from. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ToPosition. + Represents the following element tag in the schema: p:to. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + RotationCenter. + Represents the following element tag in the schema: p:rCtr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Animate Rotation. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:animRot. + + + The following table lists the possible child types: + + <p:cBhvr> + + + + + + Initializes a new instance of the AnimateRotation class. + + + + + Initializes a new instance of the AnimateRotation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateRotation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateRotation class from outer XML. + + Specifies the outer XML of the element. + + + + by + Represents the following attribute in the schema: by + + + + + from + Represents the following attribute in the schema: from + + + + + to + Represents the following attribute in the schema: to + + + + + bounceEnd, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: p14:bounceEnd + + + xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + CommonBehavior. + Represents the following element tag in the schema: p:cBhvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Animate Scale. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:animScale. + + + The following table lists the possible child types: + + <p:cBhvr> + <p:by> + <p:from> + <p:to> + + + + + + Initializes a new instance of the AnimateScale class. + + + + + Initializes a new instance of the AnimateScale class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateScale class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AnimateScale class from outer XML. + + Specifies the outer XML of the element. + + + + zoomContents + Represents the following attribute in the schema: zoomContents + + + + + bounceEnd, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: p14:bounceEnd + + + xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + CommonBehavior. + Represents the following element tag in the schema: p:cBhvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ByPosition. + Represents the following element tag in the schema: p:by. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + FromPosition. + Represents the following element tag in the schema: p:from. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ToPosition. + Represents the following element tag in the schema: p:to. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Command. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cmd. + + + The following table lists the possible child types: + + <p:cBhvr> + + + + + + Initializes a new instance of the Command class. + + + + + Initializes a new instance of the Command class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Command class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Command class from outer XML. + + Specifies the outer XML of the element. + + + + Command Type + Represents the following attribute in the schema: type + + + + + Command + Represents the following attribute in the schema: cmd + + + + + CommonBehavior. + Represents the following element tag in the schema: p:cBhvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Set Time Node Behavior. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:set. + + + The following table lists the possible child types: + + <p:to> + <p:cBhvr> + + + + + + Initializes a new instance of the SetBehavior class. + + + + + Initializes a new instance of the SetBehavior class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SetBehavior class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SetBehavior class from outer XML. + + Specifies the outer XML of the element. + + + + Common Behavior. + Represents the following element tag in the schema: p:cBhvr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + To. + Represents the following element tag in the schema: p:to. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Audio. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:audio. + + + The following table lists the possible child types: + + <p:cMediaNode> + + + + + + Initializes a new instance of the Audio class. + + + + + Initializes a new instance of the Audio class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Audio class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Audio class from outer XML. + + Specifies the outer XML of the element. + + + + Is Narration + Represents the following attribute in the schema: isNarration + + + + + Common Media Node Properties. + Represents the following element tag in the schema: p:cMediaNode. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Video. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:video. + + + The following table lists the possible child types: + + <p:cMediaNode> + + + + + + Initializes a new instance of the Video class. + + + + + Initializes a new instance of the Video class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Video class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Video class from outer XML. + + Specifies the outer XML of the element. + + + + Full Screen + Represents the following attribute in the schema: fullScrn + + + + + Common Media Node Properties. + Represents the following element tag in the schema: p:cMediaNode. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Parallel TimeNode. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cTn. + + + The following table lists the possible child types: + + <p:childTnLst> + <p:subTnLst> + <p:iterate> + <p:endSync> + <p:stCondLst> + <p:endCondLst> + + + + + + Initializes a new instance of the CommonTimeNode class. + + + + + Initializes a new instance of the CommonTimeNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonTimeNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonTimeNode class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + presetID + Represents the following attribute in the schema: presetID + + + + + presetClass + Represents the following attribute in the schema: presetClass + + + + + presetSubtype + Represents the following attribute in the schema: presetSubtype + + + + + dur + Represents the following attribute in the schema: dur + + + + + repeatCount + Represents the following attribute in the schema: repeatCount + + + + + repeatDur + Represents the following attribute in the schema: repeatDur + + + + + spd + Represents the following attribute in the schema: spd + + + + + accel + Represents the following attribute in the schema: accel + + + + + decel + Represents the following attribute in the schema: decel + + + + + autoRev + Represents the following attribute in the schema: autoRev + + + + + restart + Represents the following attribute in the schema: restart + + + + + fill + Represents the following attribute in the schema: fill + + + + + syncBehavior + Represents the following attribute in the schema: syncBehavior + + + + + tmFilter + Represents the following attribute in the schema: tmFilter + + + + + evtFilter + Represents the following attribute in the schema: evtFilter + + + + + display + Represents the following attribute in the schema: display + + + + + masterRel + Represents the following attribute in the schema: masterRel + + + + + bldLvl + Represents the following attribute in the schema: bldLvl + + + + + grpId + Represents the following attribute in the schema: grpId + + + + + afterEffect + Represents the following attribute in the schema: afterEffect + + + + + nodeType + Represents the following attribute in the schema: nodeType + + + + + nodePh + Represents the following attribute in the schema: nodePh + + + + + presetBounceEnd, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: p14:presetBounceEnd + + + xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + StartConditionList. + Represents the following element tag in the schema: p:stCondLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + EndConditionList. + Represents the following element tag in the schema: p:endCondLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + EndSync. + Represents the following element tag in the schema: p:endSync. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Iterate. + Represents the following element tag in the schema: p:iterate. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ChildTimeNodeList. + Represents the following element tag in the schema: p:childTnLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + SubTimeNodeList. + Represents the following element tag in the schema: p:subTnLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Previous Conditions List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:prevCondLst. + + + The following table lists the possible child types: + + <p:cond> + + + + + + Initializes a new instance of the PreviousConditionList class. + + + + + Initializes a new instance of the PreviousConditionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousConditionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PreviousConditionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Next Conditions List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:nextCondLst. + + + The following table lists the possible child types: + + <p:cond> + + + + + + Initializes a new instance of the NextConditionList class. + + + + + Initializes a new instance of the NextConditionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NextConditionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NextConditionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the StartConditionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:stCondLst. + + + The following table lists the possible child types: + + <p:cond> + + + + + + Initializes a new instance of the StartConditionList class. + + + + + Initializes a new instance of the StartConditionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StartConditionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the StartConditionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the EndConditionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:endCondLst. + + + The following table lists the possible child types: + + <p:cond> + + + + + + Initializes a new instance of the EndConditionList class. + + + + + Initializes a new instance of the EndConditionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndConditionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndConditionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TimeListTimeConditionalListType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <p:cond> + + + + + + Initializes a new instance of the TimeListTimeConditionalListType class. + + + + + Initializes a new instance of the TimeListTimeConditionalListType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeListTimeConditionalListType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeListTimeConditionalListType class from outer XML. + + Specifies the outer XML of the element. + + + + Attribute Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:attrName. + + + + + Initializes a new instance of the AttributeName class. + + + + + Initializes a new instance of the AttributeName class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Text Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:text. + + + + + Initializes a new instance of the Text class. + + + + + Initializes a new instance of the Text class with the specified text content. + + Specifies the text content of the element. + + + + + + + Attribute Name List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:attrNameLst. + + + The following table lists the possible child types: + + <p:attrName> + + + + + + Initializes a new instance of the AttributeNameList class. + + + + + Initializes a new instance of the AttributeNameList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AttributeNameList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the AttributeNameList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Boolean Variant. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:boolVal. + + + + + Initializes a new instance of the BooleanVariantValue class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Integer. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:intVal. + + + + + Initializes a new instance of the IntegerVariantValue class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Float Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:fltVal. + + + + + Initializes a new instance of the FloatVariantValue class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + String Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:strVal. + + + + + Initializes a new instance of the StringVariantValue class. + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Color Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:clrVal. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorValue class. + + + + + Initializes a new instance of the ColorValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorValue class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Pen Color for Slide Show. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:penClr. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the PenColor class. + + + + + Initializes a new instance of the PenColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PenColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PenColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ColorType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorType class. + + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorType class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Time Animate Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tav. + + + The following table lists the possible child types: + + <p:val> + + + + + + Initializes a new instance of the TimeAnimateValue class. + + + + + Initializes a new instance of the TimeAnimateValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeAnimateValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeAnimateValue class from outer XML. + + Specifies the outer XML of the element. + + + + Time + Represents the following attribute in the schema: tm + + + + + Formula + Represents the following attribute in the schema: fmla + + + + + Value. + Represents the following element tag in the schema: p:val. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + RGB. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:rgb. + + + + + Initializes a new instance of the RgbColor class. + + + + + Red + Represents the following attribute in the schema: r + + + + + Green + Represents the following attribute in the schema: g + + + + + Blue + Represents the following attribute in the schema: b + + + + + + + + HSL. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:hsl. + + + + + Initializes a new instance of the HslColor class. + + + + + Hue + Represents the following attribute in the schema: h + + + + + Saturation + Represents the following attribute in the schema: s + + + + + Lightness + Represents the following attribute in the schema: l + + + + + + + + Defines the CommonBehavior Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cBhvr. + + + The following table lists the possible child types: + + <p:attrNameLst> + <p:cTn> + <p:tgtEl> + + + + + + Initializes a new instance of the CommonBehavior class. + + + + + Initializes a new instance of the CommonBehavior class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonBehavior class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonBehavior class from outer XML. + + Specifies the outer XML of the element. + + + + Additive + Represents the following attribute in the schema: additive + + + + + Accumulate + Represents the following attribute in the schema: accumulate + + + + + Transform Type + Represents the following attribute in the schema: xfrmType + + + + + From + Represents the following attribute in the schema: from + + + + + To + Represents the following attribute in the schema: to + + + + + By + Represents the following attribute in the schema: by + + + + + Runtime Context + Represents the following attribute in the schema: rctx + + + + + Override + Represents the following attribute in the schema: override + + + + + CommonTimeNode. + Represents the following element tag in the schema: p:cTn. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Target Element. + Represents the following element tag in the schema: p:tgtEl. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Attribute Name List. + Represents the following element tag in the schema: p:attrNameLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Progress. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:progress. + + + The following table lists the possible child types: + + <p:fltVal> + + + + + + Initializes a new instance of the Progress class. + + + + + Initializes a new instance of the Progress class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Progress class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Progress class from outer XML. + + Specifies the outer XML of the element. + + + + Float Value. + Represents the following element tag in the schema: p:fltVal. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + To. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:to. + + + The following table lists the possible child types: + + <p:clrVal> + <p:boolVal> + <p:fltVal> + <p:intVal> + <p:strVal> + + + + + + Initializes a new instance of the ToVariantValue class. + + + + + Initializes a new instance of the ToVariantValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToVariantValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToVariantValue class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Value. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:val. + + + The following table lists the possible child types: + + <p:clrVal> + <p:boolVal> + <p:fltVal> + <p:intVal> + <p:strVal> + + + + + + Initializes a new instance of the VariantValue class. + + + + + Initializes a new instance of the VariantValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VariantValue class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the VariantValue class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TimeListAnimationVariantType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <p:clrVal> + <p:boolVal> + <p:fltVal> + <p:intVal> + <p:strVal> + + + + + + Initializes a new instance of the TimeListAnimationVariantType class. + + + + + Initializes a new instance of the TimeListAnimationVariantType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeListAnimationVariantType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeListAnimationVariantType class from outer XML. + + Specifies the outer XML of the element. + + + + Boolean Variant. + Represents the following element tag in the schema: p:boolVal. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Integer. + Represents the following element tag in the schema: p:intVal. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Float Value. + Represents the following element tag in the schema: p:fltVal. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + String Value. + Represents the following element tag in the schema: p:strVal. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Color Value. + Represents the following element tag in the schema: p:clrVal. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Common Media Node Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cMediaNode. + + + The following table lists the possible child types: + + <p:cTn> + <p:tgtEl> + + + + + + Initializes a new instance of the CommonMediaNode class. + + + + + Initializes a new instance of the CommonMediaNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonMediaNode class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonMediaNode class from outer XML. + + Specifies the outer XML of the element. + + + + Volume + Represents the following attribute in the schema: vol + + + + + Mute + Represents the following attribute in the schema: mute + + + + + Number of Slides + Represents the following attribute in the schema: numSld + + + + + Show When Stopped + Represents the following attribute in the schema: showWhenStopped + + + + + Common Time Node Properties. + Represents the following element tag in the schema: p:cTn. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + TargetElement. + Represents the following element tag in the schema: p:tgtEl. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Time Node List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tnLst. + + + The following table lists the possible child types: + + <p:par> + + + + + + Initializes a new instance of the TimeNodeList class. + + + + + Initializes a new instance of the TimeNodeList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeNodeList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeNodeList class from outer XML. + + Specifies the outer XML of the element. + + + + ParallelTimeNode. + Represents the following element tag in the schema: p:par. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Template Effects. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tmpl. + + + The following table lists the possible child types: + + <p:tnLst> + + + + + + Initializes a new instance of the Template class. + + + + + Initializes a new instance of the Template class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Template class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Template class from outer XML. + + Specifies the outer XML of the element. + + + + Level + Represents the following attribute in the schema: lvl + + + + + Time Node List. + Represents the following element tag in the schema: p:tnLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Template effects. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tmplLst. + + + The following table lists the possible child types: + + <p:tmpl> + + + + + + Initializes a new instance of the TemplateList class. + + + + + Initializes a new instance of the TemplateList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TemplateList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TemplateList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Build Sub Elements. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bldSub. + + + The following table lists the possible child types: + + <a:bldChart> + <a:bldDgm> + + + + + + Initializes a new instance of the BuildSubElement class. + + + + + Initializes a new instance of the BuildSubElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BuildSubElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BuildSubElement class from outer XML. + + Specifies the outer XML of the element. + + + + Build Diagram. + Represents the following element tag in the schema: a:bldDgm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Build Chart. + Represents the following element tag in the schema: a:bldChart. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Build Paragraph. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bldP. + + + The following table lists the possible child types: + + <p:tmplLst> + + + + + + Initializes a new instance of the BuildParagraph class. + + + + + Initializes a new instance of the BuildParagraph class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BuildParagraph class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BuildParagraph class from outer XML. + + Specifies the outer XML of the element. + + + + Shape ID + Represents the following attribute in the schema: spid + + + + + Group ID + Represents the following attribute in the schema: grpId + + + + + Expand UI + Represents the following attribute in the schema: uiExpand + + + + + Build Types + Represents the following attribute in the schema: build + + + + + Build Level + Represents the following attribute in the schema: bldLvl + + + + + Animate Background + Represents the following attribute in the schema: animBg + + + + + Auto Update Animation Background + Represents the following attribute in the schema: autoUpdateAnimBg + + + + + Reverse + Represents the following attribute in the schema: rev + + + + + Auto Advance Time + Represents the following attribute in the schema: advAuto + + + + + Template effects. + Represents the following element tag in the schema: p:tmplLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Build Diagram. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bldDgm. + + + + + Initializes a new instance of the BuildDiagram class. + + + + + Shape ID + Represents the following attribute in the schema: spid + + + + + Group ID + Represents the following attribute in the schema: grpId + + + + + Expand UI + Represents the following attribute in the schema: uiExpand + + + + + Diagram Build Types + Represents the following attribute in the schema: bld + + + + + + + + Build OLE Chart. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bldOleChart. + + + + + Initializes a new instance of the BuildOleChart class. + + + + + Shape ID + Represents the following attribute in the schema: spid + + + + + Group ID + Represents the following attribute in the schema: grpId + + + + + Expand UI + Represents the following attribute in the schema: uiExpand + + + + + Build + Represents the following attribute in the schema: bld + + + + + Animate Background + Represents the following attribute in the schema: animBg + + + + + + + + Build Graphics. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bldGraphic. + + + The following table lists the possible child types: + + <p:bldSub> + <p:bldAsOne> + + + + + + Initializes a new instance of the BuildGraphics class. + + + + + Initializes a new instance of the BuildGraphics class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BuildGraphics class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BuildGraphics class from outer XML. + + Specifies the outer XML of the element. + + + + Shape ID + Represents the following attribute in the schema: spid + + + + + Group ID + Represents the following attribute in the schema: grpId + + + + + Expand UI + Represents the following attribute in the schema: uiExpand + + + + + Build As One. + Represents the following element tag in the schema: p:bldAsOne. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Build Sub Elements. + Represents the following element tag in the schema: p:bldSub. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Build List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bldLst. + + + The following table lists the possible child types: + + <p:bldDgm> + <p:bldP> + <p:bldGraphic> + <p:bldOleChart> + + + + + + Initializes a new instance of the BuildList class. + + + + + Initializes a new instance of the BuildList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BuildList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BuildList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ExtensionListWithModification Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionListWithModification class. + + + + + Initializes a new instance of the ExtensionListWithModification class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionListWithModification class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionListWithModification class from outer XML. + + Specifies the outer XML of the element. + + + + Modify + Represents the following attribute in the schema: mod + + + + + + + + By. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:by. + + + The following table lists the possible child types: + + <p:hsl> + <p:rgb> + + + + + + Initializes a new instance of the ByColor class. + + + + + Initializes a new instance of the ByColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ByColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ByColor class from outer XML. + + Specifies the outer XML of the element. + + + + RGB. + Represents the following element tag in the schema: p:rgb. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + HSL. + Represents the following element tag in the schema: p:hsl. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + From. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:from. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the FromColor class. + + + + + Initializes a new instance of the FromColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FromColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the FromColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + To. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:to. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ToColor class. + + + + + Initializes a new instance of the ToColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToColor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ToColor class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Color3Type Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the Color3Type class. + + + + + Initializes a new instance of the Color3Type class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Color3Type class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Color3Type class from outer XML. + + Specifies the outer XML of the element. + + + + RGB Color Model - Percentage Variant. + Represents the following element tag in the schema: a:scrgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + RGB Color Model - Hex Variant. + Represents the following element tag in the schema: a:srgbClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hue, Saturation, Luminance Color Model. + Represents the following element tag in the schema: a:hslClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + System Color. + Represents the following element tag in the schema: a:sysClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Scheme Color. + Represents the following element tag in the schema: a:schemeClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Preset Color. + Represents the following element tag in the schema: a:prstClr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Presentation Slide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sld. + + + + + Initializes a new instance of the SlideListEntry class. + + + + + Relationship ID + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Customer Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:custData. + + + + + Initializes a new instance of the CustomerData class. + + + + + Relationship ID + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Customer Data Tags. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tags. + + + + + Initializes a new instance of the CustomerDataTags class. + + + + + Relationship ID + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Comment Author. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cmAuthor. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the CommentAuthor class. + + + + + Initializes a new instance of the CommentAuthor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthor class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + name + Represents the following attribute in the schema: name + + + + + initials + Represents the following attribute in the schema: initials + + + + + lastIdx + Represents the following attribute in the schema: lastIdx + + + + + clrIdx + Represents the following attribute in the schema: clrIdx + + + + + CommentAuthorExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Comment. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cm. + + + The following table lists the possible child types: + + <p:pos> + <p:extLst> + <p:text> + + + + + + Initializes a new instance of the Comment class. + + + + + Initializes a new instance of the Comment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comment class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Comment class from outer XML. + + Specifies the outer XML of the element. + + + + authorId + Represents the following attribute in the schema: authorId + + + + + dt + Represents the following attribute in the schema: dt + + + + + idx + Represents the following attribute in the schema: idx + + + + + Position. + Represents the following element tag in the schema: p:pos. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Text. + Represents the following element tag in the schema: p:text. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + CommentExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the ExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ExtensionList class. + + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Embedded Control. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:control. + + + The following table lists the possible child types: + + <p:extLst> + <p:pic> + + + + + + Initializes a new instance of the Control class. + + + + + Initializes a new instance of the Control class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Control class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Control class from outer XML. + + Specifies the outer XML of the element. + + + + spid + Represents the following attribute in the schema: spid + + + + + name + Represents the following attribute in the schema: name + + + + + showAsIcon + Represents the following attribute in the schema: showAsIcon + + + + + id + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + imgW + Represents the following attribute in the schema: imgW + + + + + imgH + Represents the following attribute in the schema: imgH + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Picture. + Represents the following element tag in the schema: p:pic. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Slide ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldId. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the SlideId class. + + + + + Initializes a new instance of the SlideId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideId class from outer XML. + + Specifies the outer XML of the element. + + + + Slide Identifier + Represents the following attribute in the schema: id + + + + + Relationship Identifier + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Slide Master ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldMasterId. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the SlideMasterId class. + + + + + Initializes a new instance of the SlideMasterId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMasterId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMasterId class from outer XML. + + Specifies the outer XML of the element. + + + + Slide Master Identifier + Represents the following attribute in the schema: id + + + + + Relationship Identifier + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Notes Master ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:notesMasterId. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the NotesMasterId class. + + + + + Initializes a new instance of the NotesMasterId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterId class from outer XML. + + Specifies the outer XML of the element. + + + + Relationship Identifier + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Handout Master ID. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:handoutMasterId. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the HandoutMasterId class. + + + + + Initializes a new instance of the HandoutMasterId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMasterId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMasterId class from outer XML. + + Specifies the outer XML of the element. + + + + Relationship Identifier + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Embedded Font Name. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:font. + + + + + Initializes a new instance of the Font class. + + + + + Text Typeface + Represents the following attribute in the schema: typeface + + + + + Panose Setting + Represents the following attribute in the schema: panose + + + + + Similar Font Family + Represents the following attribute in the schema: pitchFamily + + + + + Similar Character Set + Represents the following attribute in the schema: charset + + + + + + + + Regular Embedded Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:regular. + + + + + Initializes a new instance of the RegularFont class. + + + + + + + + Bold Embedded Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bold. + + + + + Initializes a new instance of the BoldFont class. + + + + + + + + Italic Embedded Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:italic. + + + + + Initializes a new instance of the ItalicFont class. + + + + + + + + Bold Italic Embedded Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:boldItalic. + + + + + Initializes a new instance of the BoldItalicFont class. + + + + + + + + Defines the EmbeddedFontDataIdType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EmbeddedFontDataIdType class. + + + + + Relationship Identifier + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Embedded Font. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:embeddedFont. + + + The following table lists the possible child types: + + <p:font> + <p:regular> + <p:bold> + <p:italic> + <p:boldItalic> + + + + + + Initializes a new instance of the EmbeddedFont class. + + + + + Initializes a new instance of the EmbeddedFont class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedFont class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedFont class from outer XML. + + Specifies the outer XML of the element. + + + + Embedded Font Name. + Represents the following element tag in the schema: p:font. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Regular Embedded Font. + Represents the following element tag in the schema: p:regular. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Bold Embedded Font. + Represents the following element tag in the schema: p:bold. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Italic Embedded Font. + Represents the following element tag in the schema: p:italic. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Bold Italic Embedded Font. + Represents the following element tag in the schema: p:boldItalic. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + List of Presentation Slides. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldLst. + + + The following table lists the possible child types: + + <p:sld> + + + + + + Initializes a new instance of the SlideList class. + + + + + Initializes a new instance of the SlideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Custom Show. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:custShow. + + + The following table lists the possible child types: + + <p:extLst> + <p:sldLst> + + + + + + Initializes a new instance of the CustomShow class. + + + + + Initializes a new instance of the CustomShow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomShow class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomShow class from outer XML. + + Specifies the outer XML of the element. + + + + Custom Show Name + Represents the following attribute in the schema: name + + + + + Custom Show ID + Represents the following attribute in the schema: id + + + + + List of Presentation Slides. + Represents the following element tag in the schema: p:sldLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Non-Visual Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cNvPr. + + + The following table lists the possible child types: + + <a:hlinkClick> + <a:hlinkHover> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualDrawingProperties class. + + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Application defined unique identifier. + Represents the following attribute in the schema: id + + + + + Name compatible with Object Model (non-unique). + Represents the following attribute in the schema: name + + + + + Description of the drawing element. + Represents the following attribute in the schema: descr + + + + + Flag determining to show or hide this element. + Represents the following attribute in the schema: hidden + + + + + Title + Represents the following attribute in the schema: title + + + + + Hyperlink associated with clicking or selecting the element.. + Represents the following element tag in the schema: a:hlinkClick. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Hyperlink associated with hovering over the element.. + Represents the following element tag in the schema: a:hlinkHover. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Future extension. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Drawing Properties for a Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cNvSpPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:spLocks> + + + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Text Box + Represents the following attribute in the schema: txBox + + + + + Shape Locks. + Represents the following element tag in the schema: a:spLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Application Non-Visual Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:nvPr. + + + The following table lists the possible child types: + + <a:audioCd> + <a:audioFile> + <a:wavAudioFile> + <a:quickTimeFile> + <a:videoFile> + <p:extLst> + <p:custDataLst> + <p:ph> + + + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class. + + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ApplicationNonVisualDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Is a Photo Album + Represents the following attribute in the schema: isPhoto + + + + + Is User Drawn + Represents the following attribute in the schema: userDrawn + + + + + Placeholder Shape. + Represents the following element tag in the schema: p:ph. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Non-Visual Properties for a Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:nvSpPr. + + + The following table lists the possible child types: + + <p:cNvPr> + <p:cNvSpPr> + <p:nvPr> + + + + + + Initializes a new instance of the NonVisualShapeProperties class. + + + + + Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Drawing Properties. + Represents the following element tag in the schema: p:cNvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Non-Visual Drawing Properties for a Shape. + Represents the following element tag in the schema: p:cNvSpPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Application Non-Visual Drawing Properties. + Represents the following element tag in the schema: p:nvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the ShapeProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:spPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:custGeom> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:ln> + <a:noFill> + <a:pattFill> + <a:prstGeom> + <a:scene3d> + <a:sp3d> + <a:extLst> + <a:solidFill> + <a:xfrm> + + + + + + Initializes a new instance of the ShapeProperties class. + + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Individual Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:style. + + + The following table lists the possible child types: + + <a:fontRef> + <a:lnRef> + <a:fillRef> + <a:effectRef> + + + + + + Initializes a new instance of the ShapeStyle class. + + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeStyle class from outer XML. + + Specifies the outer XML of the element. + + + + LineReference. + Represents the following element tag in the schema: a:lnRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + FillReference. + Represents the following element tag in the schema: a:fillRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + EffectReference. + Represents the following element tag in the schema: a:effectRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Font Reference. + Represents the following element tag in the schema: a:fontRef. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape Text Body. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:txBody. + + + The following table lists the possible child types: + + <a:bodyPr> + <a:lstStyle> + <a:p> + + + + + + Initializes a new instance of the TextBody class. + + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextBody class from outer XML. + + Specifies the outer XML of the element. + + + + Body Properties. + Represents the following element tag in the schema: a:bodyPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Text List Styles. + Represents the following element tag in the schema: a:lstStyle. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Connector Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cNvCxnSpPr. + + + The following table lists the possible child types: + + <a:stCxn> + <a:endCxn> + <a:cxnSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Connection Shape Locks. + Represents the following element tag in the schema: a:cxnSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection Start. + Represents the following element tag in the schema: a:stCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Connection End. + Represents the following element tag in the schema: a:endCxn. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Connection Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:nvCxnSpPr. + + + The following table lists the possible child types: + + <p:cNvCxnSpPr> + <p:cNvPr> + <p:nvPr> + + + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class. + + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualConnectionShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Drawing Properties. + Represents the following element tag in the schema: p:cNvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Non-Visual Connector Shape Drawing Properties. + Represents the following element tag in the schema: p:cNvCxnSpPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Application Non-Visual Drawing Properties. + Represents the following element tag in the schema: p:nvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Non-Visual Picture Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cNvPicPr. + + + The following table lists the possible child types: + + <a:extLst> + <a:picLocks> + + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class. + + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + preferRelativeResize + Represents the following attribute in the schema: preferRelativeResize + + + + + PictureLocks. + Represents the following element tag in the schema: a:picLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualPicturePropertiesExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Picture. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:nvPicPr. + + + The following table lists the possible child types: + + <p:cNvPr> + <p:cNvPicPr> + <p:nvPr> + + + + + + Initializes a new instance of the NonVisualPictureProperties class. + + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualPictureProperties class from outer XML. + + Specifies the outer XML of the element. + + + + NonVisualDrawingProperties. + Represents the following element tag in the schema: p:cNvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Non-Visual Picture Drawing Properties. + Represents the following element tag in the schema: p:cNvPicPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ApplicationNonVisualDrawingProperties. + Represents the following element tag in the schema: p:nvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Picture Fill. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:blipFill. + + + The following table lists the possible child types: + + <a:blip> + <a:srcRect> + <a:stretch> + <a:tile> + + + + + + Initializes a new instance of the BlipFill class. + + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BlipFill class from outer XML. + + Specifies the outer XML of the element. + + + + DPI Setting + Represents the following attribute in the schema: dpi + + + + + Rotate With Shape + Represents the following attribute in the schema: rotWithShape + + + + + Blip. + Represents the following element tag in the schema: a:blip. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Source Rectangle. + Represents the following element tag in the schema: a:srcRect. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Graphic Frame Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cNvGraphicFramePr. + + + The following table lists the possible child types: + + <a:graphicFrameLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Graphic Frame Locks. + Represents the following element tag in the schema: a:graphicFrameLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Properties for a Graphic Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:nvGraphicFramePr. + + + The following table lists the possible child types: + + <p:cNvPr> + <p:cNvGraphicFramePr> + <p:nvPr> + + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class. + + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Drawing Properties. + Represents the following element tag in the schema: p:cNvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Non-Visual Graphic Frame Drawing Properties. + Represents the following element tag in the schema: p:cNvGraphicFramePr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Application Non-Visual Drawing Properties. + Represents the following element tag in the schema: p:nvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + 2D Transform for Graphic Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:xfrm. + + + The following table lists the possible child types: + + <a:off> + <a:ext> + + + + + + Initializes a new instance of the Transform class. + + + + + Initializes a new instance of the Transform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transform class from outer XML. + + Specifies the outer XML of the element. + + + + Rotation + Represents the following attribute in the schema: rot + + + + + Horizontal Flip + Represents the following attribute in the schema: flipH + + + + + Vertical Flip + Represents the following attribute in the schema: flipV + + + + + Offset. + Represents the following element tag in the schema: a:off. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extents. + Represents the following element tag in the schema: a:ext. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Non-Visual Group Shape Drawing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cNvGrpSpPr. + + + The following table lists the possible child types: + + <a:grpSpLocks> + <a:extLst> + + + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class. + + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeDrawingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + GroupShapeLocks. + Represents the following element tag in the schema: a:grpSpLocks. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + NonVisualGroupDrawingShapePropsExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Slide Master Title Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:titleStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:defPPr> + <a:lvl1pPr> + <a:lvl2pPr> + <a:lvl3pPr> + <a:lvl4pPr> + <a:lvl5pPr> + <a:lvl6pPr> + <a:lvl7pPr> + <a:lvl8pPr> + <a:lvl9pPr> + + + + + + Initializes a new instance of the TitleStyle class. + + + + + Initializes a new instance of the TitleStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TitleStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TitleStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Slide Master Body Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bodyStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:defPPr> + <a:lvl1pPr> + <a:lvl2pPr> + <a:lvl3pPr> + <a:lvl4pPr> + <a:lvl5pPr> + <a:lvl6pPr> + <a:lvl7pPr> + <a:lvl8pPr> + <a:lvl9pPr> + + + + + + Initializes a new instance of the BodyStyle class. + + + + + Initializes a new instance of the BodyStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BodyStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the BodyStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Slide Master Other Text Style. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:otherStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:defPPr> + <a:lvl1pPr> + <a:lvl2pPr> + <a:lvl3pPr> + <a:lvl4pPr> + <a:lvl5pPr> + <a:lvl6pPr> + <a:lvl7pPr> + <a:lvl8pPr> + <a:lvl9pPr> + + + + + + Initializes a new instance of the OtherStyle class. + + + + + Initializes a new instance of the OtherStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OtherStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OtherStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the DefaultTextStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:defaultTextStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:defPPr> + <a:lvl1pPr> + <a:lvl2pPr> + <a:lvl3pPr> + <a:lvl4pPr> + <a:lvl5pPr> + <a:lvl6pPr> + <a:lvl7pPr> + <a:lvl8pPr> + <a:lvl9pPr> + + + + + + Initializes a new instance of the DefaultTextStyle class. + + + + + Initializes a new instance of the DefaultTextStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefaultTextStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the DefaultTextStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NotesStyle Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:notesStyle. + + + The following table lists the possible child types: + + <a:extLst> + <a:defPPr> + <a:lvl1pPr> + <a:lvl2pPr> + <a:lvl3pPr> + <a:lvl4pPr> + <a:lvl5pPr> + <a:lvl6pPr> + <a:lvl7pPr> + <a:lvl8pPr> + <a:lvl9pPr> + + + + + + Initializes a new instance of the NotesStyle class. + + + + + Initializes a new instance of the NotesStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesStyle class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesStyle class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextListStyleType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <a:extLst> + <a:defPPr> + <a:lvl1pPr> + <a:lvl2pPr> + <a:lvl3pPr> + <a:lvl4pPr> + <a:lvl5pPr> + <a:lvl6pPr> + <a:lvl7pPr> + <a:lvl8pPr> + <a:lvl9pPr> + + + + + + Initializes a new instance of the TextListStyleType class. + + + + + Initializes a new instance of the TextListStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextListStyleType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextListStyleType class from outer XML. + + Specifies the outer XML of the element. + + + + Default Paragraph Style. + Represents the following element tag in the schema: a:defPPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 1 Text Style. + Represents the following element tag in the schema: a:lvl1pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 2 Text Style. + Represents the following element tag in the schema: a:lvl2pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 3 Text Style. + Represents the following element tag in the schema: a:lvl3pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 4 Text Style. + Represents the following element tag in the schema: a:lvl4pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 5 Text Style. + Represents the following element tag in the schema: a:lvl5pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 6 Text Style. + Represents the following element tag in the schema: a:lvl6pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 7 Text Style. + Represents the following element tag in the schema: a:lvl7pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 8 Text Style. + Represents the following element tag in the schema: a:lvl8pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + List Level 9 Text Style. + Represents the following element tag in the schema: a:lvl9pPr. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: a:extLst. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Slide Layout Id. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldLayoutId. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the SlideLayoutId class. + + + + + Initializes a new instance of the SlideLayoutId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutId class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutId class from outer XML. + + Specifies the outer XML of the element. + + + + ID Tag + Represents the following attribute in the schema: id + + + + + ID Tag + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Common slide data for notes slides. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cSld. + + + The following table lists the possible child types: + + <p:bg> + <p:extLst> + <p:controls> + <p:custDataLst> + <p:spTree> + + + + + + Initializes a new instance of the CommonSlideData class. + + + + + Initializes a new instance of the CommonSlideData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonSlideData class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonSlideData class from outer XML. + + Specifies the outer XML of the element. + + + + Name + Represents the following attribute in the schema: name + + + + + Slide Background. + Represents the following element tag in the schema: p:bg. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Shape Tree. + Represents the following element tag in the schema: p:spTree. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Customer Data List. + Represents the following element tag in the schema: p:custDataLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + List of controls. + Represents the following element tag in the schema: p:controls. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + CommonSlideDataExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Programmable Extensibility Tag. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tag. + + + + + Initializes a new instance of the Tag class. + + + + + Name + Represents the following attribute in the schema: name + + + + + Value + Represents the following attribute in the schema: val + + + + + + + + Normal View Restored Left Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:restoredLeft. + + + + + Initializes a new instance of the RestoredLeft class. + + + + + + + + Normal View Restored Top Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:restoredTop. + + + + + Initializes a new instance of the RestoredTop class. + + + + + + + + Defines the NormalViewPortionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the NormalViewPortionType class. + + + + + Normal View Dimension Size + Represents the following attribute in the schema: sz + + + + + Auto Adjust Normal View + Represents the following attribute in the schema: autoAdjust + + + + + View Scale. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:scale. + + + The following table lists the possible child types: + + <a:sx> + <a:sy> + + + + + + Initializes a new instance of the ScaleFactor class. + + + + + Initializes a new instance of the ScaleFactor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScaleFactor class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ScaleFactor class from outer XML. + + Specifies the outer XML of the element. + + + + Horizontal Ratio. + Represents the following element tag in the schema: a:sx. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Vertical Ratio. + Represents the following element tag in the schema: a:sy. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + View Origin. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:origin. + + + + + Initializes a new instance of the Origin class. + + + + + + + + Defines the Position Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:pos. + + + + + Initializes a new instance of the Position class. + + + + + + + + Defines the Point2DType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the Point2DType class. + + + + + X-Axis Coordinate + Represents the following attribute in the schema: x + + + + + Y-Axis Coordinate + Represents the following attribute in the schema: y + + + + + Base properties for Notes View. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cViewPr. + + + The following table lists the possible child types: + + <p:origin> + <p:scale> + + + + + + Initializes a new instance of the CommonViewProperties class. + + + + + Initializes a new instance of the CommonViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Variable Scale + Represents the following attribute in the schema: varScale + + + + + View Scale. + Represents the following element tag in the schema: p:scale. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + View Origin. + Represents the following element tag in the schema: p:origin. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Presentation Slide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sld. + + + + + Initializes a new instance of the OutlineViewSlideListEntry class. + + + + + Relationship Identifier + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + Collapsed + Represents the following attribute in the schema: collapse + + + + + + + + List of Presentation Slides. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldLst. + + + The following table lists the possible child types: + + <p:sld> + + + + + + Initializes a new instance of the OutlineViewSlideList class. + + + + + Initializes a new instance of the OutlineViewSlideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OutlineViewSlideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OutlineViewSlideList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + A Guide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:guide. + + + + + Initializes a new instance of the Guide class. + + + + + Guide Orientation + Represents the following attribute in the schema: orient + + + + + Guide Position + Represents the following attribute in the schema: pos + + + + + + + + List of Guides. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:guideLst. + + + The following table lists the possible child types: + + <p:guide> + + + + + + Initializes a new instance of the GuideList class. + + + + + Initializes a new instance of the GuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GuideList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GuideList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CommonSlideViewProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cSldViewPr. + + + The following table lists the possible child types: + + <p:cViewPr> + <p:guideLst> + + + + + + Initializes a new instance of the CommonSlideViewProperties class. + + + + + Initializes a new instance of the CommonSlideViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonSlideViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonSlideViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Snap Objects to Grid + Represents the following attribute in the schema: snapToGrid + + + + + Snap Objects to Objects + Represents the following attribute in the schema: snapToObjects + + + + + Show Guides in View + Represents the following attribute in the schema: showGuides + + + + + Base properties for Slide View. + Represents the following element tag in the schema: p:cViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + List of Guides. + Represents the following element tag in the schema: p:guideLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Normal View Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:normalViewPr. + + + The following table lists the possible child types: + + <p:extLst> + <p:restoredLeft> + <p:restoredTop> + + + + + + Initializes a new instance of the NormalViewProperties class. + + + + + Initializes a new instance of the NormalViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NormalViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NormalViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Show Outline Icons in Normal View + Represents the following attribute in the schema: showOutlineIcons + + + + + Snap Vertical Splitter + Represents the following attribute in the schema: snapVertSplitter + + + + + State of the Vertical Splitter Bar + Represents the following attribute in the schema: vertBarState + + + + + State of the Horizontal Splitter Bar + Represents the following attribute in the schema: horzBarState + + + + + Prefer Single View + Represents the following attribute in the schema: preferSingleView + + + + + Normal View Restored Left Properties. + Represents the following element tag in the schema: p:restoredLeft. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Normal View Restored Top Properties. + Represents the following element tag in the schema: p:restoredTop. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Slide View Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:slideViewPr. + + + The following table lists the possible child types: + + <p:cSldViewPr> + <p:extLst> + + + + + + Initializes a new instance of the SlideViewProperties class. + + + + + Initializes a new instance of the SlideViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + CommonSlideViewProperties. + Represents the following element tag in the schema: p:cSldViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Outline View Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:outlineViewPr. + + + The following table lists the possible child types: + + <p:cViewPr> + <p:extLst> + <p:sldLst> + + + + + + Initializes a new instance of the OutlineViewProperties class. + + + + + Initializes a new instance of the OutlineViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OutlineViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OutlineViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Common View Properties. + Represents the following element tag in the schema: p:cViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + List of Presentation Slides. + Represents the following element tag in the schema: p:sldLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Notes Text View Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:notesTextViewPr. + + + The following table lists the possible child types: + + <p:cViewPr> + <p:extLst> + + + + + + Initializes a new instance of the NotesTextViewProperties class. + + + + + Initializes a new instance of the NotesTextViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesTextViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesTextViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Base properties for Notes View. + Represents the following element tag in the schema: p:cViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Slide Sorter View Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sorterViewPr. + + + The following table lists the possible child types: + + <p:cViewPr> + <p:extLst> + + + + + + Initializes a new instance of the SorterViewProperties class. + + + + + Initializes a new instance of the SorterViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SorterViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SorterViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Show Formatting + Represents the following attribute in the schema: showFormatting + + + + + Base properties for Slide Sorter View. + Represents the following element tag in the schema: p:cViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Notes View Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:notesViewPr. + + + The following table lists the possible child types: + + <p:cSldViewPr> + <p:extLst> + + + + + + Initializes a new instance of the NotesViewProperties class. + + + + + Initializes a new instance of the NotesViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesViewProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesViewProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Common Slide View Properties. + Represents the following element tag in the schema: p:cSldViewPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Grid Spacing. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:gridSpacing. + + + + + Initializes a new instance of the GridSpacing class. + + + + + + + + Defines the NotesSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:notesSz. + + + + + Initializes a new instance of the NotesSize class. + + + + + + + + Defines the PositiveSize2DType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the PositiveSize2DType class. + + + + + Extent Length + Represents the following attribute in the schema: cx + + + + + Extent Width + Represents the following attribute in the schema: cy + + + + + Defines the SlideExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p14:laserTraceLst> + <p14:showEvtLst> + <p188:commentRel> + + + + + + Initializes a new instance of the SlideExtension class. + + + + + Initializes a new instance of the SlideExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the CommonSlideDataExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p14:creationId> + + + + + + Initializes a new instance of the CommonSlideDataExtension class. + + + + + Initializes a new instance of the CommonSlideDataExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonSlideDataExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonSlideDataExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the ShowPropertiesExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p14:laserClr> + <p14:browseMode> + <p14:showMediaCtrls> + + + + + + Initializes a new instance of the ShowPropertiesExtension class. + + + + + Initializes a new instance of the ShowPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShowPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShowPropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the Picture Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:pic. + + + The following table lists the possible child types: + + <p:blipFill> + <p:spPr> + <p:style> + <p:extLst> + <p:nvPicPr> + + + + + + Initializes a new instance of the Picture class. + + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Picture class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Picture. + Represents the following element tag in the schema: p:nvPicPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Picture Fill. + Represents the following element tag in the schema: p:blipFill. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ShapeProperties. + Represents the following element tag in the schema: p:spPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ShapeStyle. + Represents the following element tag in the schema: p:style. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionListWithModification. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the OleObjectEmbed Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:embed. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the OleObjectEmbed class. + + + + + Initializes a new instance of the OleObjectEmbed class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObjectEmbed class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObjectEmbed class from outer XML. + + Specifies the outer XML of the element. + + + + Color Scheme Properties for OLE Object + Represents the following attribute in the schema: followColorScheme + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the OleObjectLink Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:link. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the OleObjectLink class. + + + + + Initializes a new instance of the OleObjectLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObjectLink class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OleObjectLink class from outer XML. + + Specifies the outer XML of the element. + + + + Update Linked OLE Objects Automatically + Represents the following attribute in the schema: updateAutomatic + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Slide Transition. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:transition. + + + The following table lists the possible child types: + + <p:strips> + <p:cover> + <p:pull> + <p:circle> + <p:dissolve> + <p:diamond> + <p:newsflash> + <p:plus> + <p:random> + <p:wedge> + <p14:flash> + <p14:honeycomb> + <p:extLst> + <p:zoom> + <p14:warp> + <p:cut> + <p:fade> + <p:blinds> + <p:checker> + <p:comb> + <p:randomBar> + <p14:doors> + <p14:window> + <p:push> + <p:wipe> + <p14:vortex> + <p14:pan> + <p:split> + <p:sndAc> + <p:wheel> + <p14:wheelReverse> + <p14:flythrough> + <p14:glitter> + <p14:switch> + <p14:flip> + <p14:ferris> + <p14:gallery> + <p14:conveyor> + <p14:prism> + <p14:reveal> + <p14:ripple> + <p14:shred> + <p15:prstTrans> + + + + + + Initializes a new instance of the Transition class. + + + + + Initializes a new instance of the Transition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transition class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Transition class from outer XML. + + Specifies the outer XML of the element. + + + + spd + Represents the following attribute in the schema: spd + + + + + dur, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: p14:dur + + + xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main + + + + + Specifies whether a mouse click will advance the slide. + Represents the following attribute in the schema: advClick + + + + + advTm + Represents the following attribute in the schema: advTm + + + + + + + + Slide Timing Information for a Slide. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:timing. + + + The following table lists the possible child types: + + <p:bldLst> + <p:extLst> + <p:tnLst> + + + + + + Initializes a new instance of the Timing class. + + + + + Initializes a new instance of the Timing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Timing class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Timing class from outer XML. + + Specifies the outer XML of the element. + + + + TimeNodeList. + Represents the following element tag in the schema: p:tnLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Build List. + Represents the following element tag in the schema: p:bldLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionListWithModification. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the SlideExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the SlideExtensionList class. + + + + + Initializes a new instance of the SlideExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Slide Background. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:bg. + + + The following table lists the possible child types: + + <p:bgRef> + <p:bgPr> + + + + + + Initializes a new instance of the Background class. + + + + + Initializes a new instance of the Background class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Background class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Background class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + Background Properties. + Represents the following element tag in the schema: p:bgPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Background Style Reference. + Represents the following element tag in the schema: p:bgRef. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Shape Tree. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:spTree. + + + The following table lists the possible child types: + + <p:grpSpPr> + <p:cxnSp> + <p:contentPart> + <p:extLst> + <p:graphicFrame> + <p:grpSp> + <p:nvGrpSpPr> + <p:pic> + <p:sp> + + + + + + Initializes a new instance of the ShapeTree class. + + + + + Initializes a new instance of the ShapeTree class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeTree class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeTree class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Group Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:grpSp. + + + The following table lists the possible child types: + + <p:grpSpPr> + <p:cxnSp> + <p:contentPart> + <p:extLst> + <p:graphicFrame> + <p:grpSp> + <p:nvGrpSpPr> + <p:pic> + <p:sp> + + + + + + Initializes a new instance of the GroupShape class. + + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShape class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the GroupShapeType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <p:grpSpPr> + <p:cxnSp> + <p:contentPart> + <p:extLst> + <p:graphicFrame> + <p:grpSp> + <p:nvGrpSpPr> + <p:pic> + <p:sp> + + + + + + Initializes a new instance of the GroupShapeType class. + + + + + Initializes a new instance of the GroupShapeType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeType class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Group Shape. + Represents the following element tag in the schema: p:nvGrpSpPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Group Shape Properties. + Represents the following element tag in the schema: p:grpSpPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Customer Data List. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:custDataLst. + + + The following table lists the possible child types: + + <p:custData> + <p:tags> + + + + + + Initializes a new instance of the CustomerDataList class. + + + + + Initializes a new instance of the CustomerDataList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomerDataList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomerDataList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + List of controls. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:controls. + + + The following table lists the possible child types: + + <p:control> + + + + + + Initializes a new instance of the ControlList class. + + + + + Initializes a new instance of the ControlList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ControlList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ControlList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CommonSlideDataExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the CommonSlideDataExtensionList class. + + + + + Initializes a new instance of the CommonSlideDataExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonSlideDataExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommonSlideDataExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Non-Visual Properties for a Group Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:nvGrpSpPr. + + + The following table lists the possible child types: + + <p:cNvPr> + <p:cNvGrpSpPr> + <p:nvPr> + + + + + + Initializes a new instance of the NonVisualGroupShapeProperties class. + + + + + Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NonVisualGroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Non-visual Drawing Properties. + Represents the following element tag in the schema: p:cNvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Non-Visual Group Shape Drawing Properties. + Represents the following element tag in the schema: p:cNvGrpSpPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Non-Visual Properties. + Represents the following element tag in the schema: p:nvPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Group Shape Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:grpSpPr. + + + The following table lists the possible child types: + + <a:blipFill> + <a:effectDag> + <a:effectLst> + <a:gradFill> + <a:grpFill> + <a:xfrm> + <a:noFill> + <a:extLst> + <a:pattFill> + <a:scene3d> + <a:solidFill> + + + + + + Initializes a new instance of the GroupShapeProperties class. + + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupShapeProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White Mode + Represents the following attribute in the schema: bwMode + + + + + 2D Transform for Grouped Objects. + Represents the following element tag in the schema: a:xfrm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sp. + + + The following table lists the possible child types: + + <p:spPr> + <p:style> + <p:txBody> + <p:extLst> + <p:nvSpPr> + + + + + + Initializes a new instance of the Shape class. + + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Shape class from outer XML. + + Specifies the outer XML of the element. + + + + Use Background Fill + Represents the following attribute in the schema: useBgFill + + + + + Non-Visual Properties for a Shape. + Represents the following element tag in the schema: p:nvSpPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ShapeProperties. + Represents the following element tag in the schema: p:spPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Shape Style. + Represents the following element tag in the schema: p:style. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Shape Text Body. + Represents the following element tag in the schema: p:txBody. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionListWithModification. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Graphic Frame. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:graphicFrame. + + + The following table lists the possible child types: + + <a:graphic> + <p:xfrm> + <p:extLst> + <p:nvGraphicFramePr> + + + + + + Initializes a new instance of the GraphicFrame class. + + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicFrame class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Graphic Frame. + Represents the following element tag in the schema: p:nvGraphicFramePr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + 2D Transform for Graphic Frame. + Represents the following element tag in the schema: p:xfrm. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Graphic. + Represents the following element tag in the schema: a:graphic. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Extension List with Modification Flag. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Connection Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cxnSp. + + + The following table lists the possible child types: + + <p:spPr> + <p:style> + <p:nvCxnSpPr> + <p:extLst> + + + + + + Initializes a new instance of the ConnectionShape class. + + + + + Initializes a new instance of the ConnectionShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ConnectionShape class from outer XML. + + Specifies the outer XML of the element. + + + + Non-Visual Properties for a Connection Shape. + Represents the following element tag in the schema: p:nvCxnSpPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Shape Properties. + Represents the following element tag in the schema: p:spPr. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Connector Shape Style. + Represents the following element tag in the schema: p:style. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionListWithModification. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the ShowPropertiesExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ShowPropertiesExtensionList class. + + + + + Initializes a new instance of the ShowPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShowPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShowPropertiesExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Shape Target. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:spTgt. + + + The following table lists the possible child types: + + <p:graphicEl> + <p:bg> + <p:oleChartEl> + <p:subSp> + <p:txEl> + + + + + + Initializes a new instance of the ShapeTarget class. + + + + + Initializes a new instance of the ShapeTarget class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeTarget class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShapeTarget class from outer XML. + + Specifies the outer XML of the element. + + + + Shape ID + Represents the following attribute in the schema: spid + + + + + Background. + Represents the following element tag in the schema: p:bg. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Subshape. + Represents the following element tag in the schema: p:subSp. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + OLE Chart Element. + Represents the following element tag in the schema: p:oleChartEl. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Text Element. + Represents the following element tag in the schema: p:txEl. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Graphic Element. + Represents the following element tag in the schema: p:graphicEl. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Ink Target. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:inkTgt. + + + + + Initializes a new instance of the InkTarget class. + + + + + + + + Subshape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:subSp. + + + + + Initializes a new instance of the SubShape class. + + + + + + + + Defines the TimeListSubShapeIdType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TimeListSubShapeIdType class. + + + + + Shape ID + Represents the following attribute in the schema: spid + + + + + Defines the CommentAuthorExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p15:presenceInfo> + + + + + + Initializes a new instance of the CommentAuthorExtension class. + + + + + Initializes a new instance of the CommentAuthorExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthorExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthorExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the CommentExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p15:threadingInfo> + + + + + + Initializes a new instance of the CommentExtension class. + + + + + Initializes a new instance of the CommentExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the SlideLayoutExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p15:sldGuideLst> + + + + + + Initializes a new instance of the SlideLayoutExtension class. + + + + + Initializes a new instance of the SlideLayoutExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the SlideMasterExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p15:sldGuideLst> + + + + + + Initializes a new instance of the SlideMasterExtension class. + + + + + Initializes a new instance of the SlideMasterExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMasterExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMasterExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the HandoutMasterExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p15:sldGuideLst> + + + + + + Initializes a new instance of the HandoutMasterExtension class. + + + + + Initializes a new instance of the HandoutMasterExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMasterExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMasterExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the NotesMasterExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p15:sldGuideLst> + + + + + + Initializes a new instance of the NotesMasterExtension class. + + + + + Initializes a new instance of the NotesMasterExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Placeholder Shape. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ph. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the PlaceholderShape class. + + + + + Initializes a new instance of the PlaceholderShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlaceholderShape class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlaceholderShape class from outer XML. + + Specifies the outer XML of the element. + + + + type + Represents the following attribute in the schema: type + + + + + orient + Represents the following attribute in the schema: orient + + + + + sz + Represents the following attribute in the schema: sz + + + + + idx + Represents the following attribute in the schema: idx + + + + + hasCustomPrompt + Represents the following attribute in the schema: hasCustomPrompt + + + + + ExtensionListWithModification. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the ApplicationNonVisualDrawingPropertiesExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtensionList class. + + + + + Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ApplicationNonVisualDrawingPropertiesExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p14:media> + <p14:modId> + + + + + + Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtension class. + + + + + Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the Iterate Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:iterate. + + + The following table lists the possible child types: + + <p:tmPct> + <p:tmAbs> + + + + + + Initializes a new instance of the Iterate class. + + + + + Initializes a new instance of the Iterate class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Iterate class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Iterate class from outer XML. + + Specifies the outer XML of the element. + + + + Iterate Type + Represents the following attribute in the schema: type + + + + + Backwards + Represents the following attribute in the schema: backwards + + + + + Time Absolute. + Represents the following element tag in the schema: p:tmAbs. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Time Percentage. + Represents the following element tag in the schema: p:tmPct. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the ChildTimeNodeList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:childTnLst. + + + The following table lists the possible child types: + + <p:anim> + <p:animClr> + <p:animEffect> + <p:animMotion> + <p:animRot> + <p:animScale> + <p:cmd> + <p:audio> + <p:video> + <p:set> + <p:excl> + <p:par> + <p:seq> + + + + + + Initializes a new instance of the ChildTimeNodeList class. + + + + + Initializes a new instance of the ChildTimeNodeList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChildTimeNodeList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ChildTimeNodeList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SubTimeNodeList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:subTnLst. + + + The following table lists the possible child types: + + <p:anim> + <p:animClr> + <p:animEffect> + <p:animMotion> + <p:animRot> + <p:animScale> + <p:cmd> + <p:audio> + <p:video> + <p:set> + <p:excl> + <p:par> + <p:seq> + + + + + + Initializes a new instance of the SubTimeNodeList class. + + + + + Initializes a new instance of the SubTimeNodeList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubTimeNodeList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SubTimeNodeList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TimeTypeListType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + The following table lists the possible child types: + + <p:anim> + <p:animClr> + <p:animEffect> + <p:animMotion> + <p:animRot> + <p:animScale> + <p:cmd> + <p:audio> + <p:video> + <p:set> + <p:excl> + <p:par> + <p:seq> + + + + + + Initializes a new instance of the TimeTypeListType class. + + + + + Initializes a new instance of the TimeTypeListType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeTypeListType class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeTypeListType class from outer XML. + + Specifies the outer XML of the element. + + + + Defines the TimeAnimateValueList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:tavLst. + + + The following table lists the possible child types: + + <p:tav> + + + + + + Initializes a new instance of the TimeAnimateValueList class. + + + + + Initializes a new instance of the TimeAnimateValueList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeAnimateValueList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TimeAnimateValueList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the ByPosition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:by. + + + + + Initializes a new instance of the ByPosition class. + + + + + + + + Defines the FromPosition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:from. + + + + + Initializes a new instance of the FromPosition class. + + + + + + + + Defines the ToPosition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:to. + + + + + Initializes a new instance of the ToPosition class. + + + + + + + + Defines the RotationCenter Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:rCtr. + + + + + Initializes a new instance of the RotationCenter class. + + + + + + + + Defines the TimeListType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the TimeListType class. + + + + + X coordinate + Represents the following attribute in the schema: x + + + + + Y coordinate + Represents the following attribute in the schema: y + + + + + Defines the CommentAuthorExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the CommentAuthorExtensionList class. + + + + + Initializes a new instance of the CommentAuthorExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthorExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentAuthorExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CommentExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the CommentExtensionList class. + + + + + Initializes a new instance of the CommentExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CommentExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlideMasterIdList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldMasterIdLst. + + + The following table lists the possible child types: + + <p:sldMasterId> + + + + + + Initializes a new instance of the SlideMasterIdList class. + + + + + Initializes a new instance of the SlideMasterIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMasterIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMasterIdList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NotesMasterIdList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:notesMasterIdLst. + + + The following table lists the possible child types: + + <p:notesMasterId> + + + + + + Initializes a new instance of the NotesMasterIdList class. + + + + + Initializes a new instance of the NotesMasterIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterIdList class from outer XML. + + Specifies the outer XML of the element. + + + + Notes Master ID. + Represents the following element tag in the schema: p:notesMasterId. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the HandoutMasterIdList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:handoutMasterIdLst. + + + The following table lists the possible child types: + + <p:handoutMasterId> + + + + + + Initializes a new instance of the HandoutMasterIdList class. + + + + + Initializes a new instance of the HandoutMasterIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMasterIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMasterIdList class from outer XML. + + Specifies the outer XML of the element. + + + + Handout Master ID. + Represents the following element tag in the schema: p:handoutMasterId. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the SlideIdList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldIdLst. + + + The following table lists the possible child types: + + <p:sldId> + + + + + + Initializes a new instance of the SlideIdList class. + + + + + Initializes a new instance of the SlideIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideIdList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlideSize Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldSz. + + + + + Initializes a new instance of the SlideSize class. + + + + + Extent Length + Represents the following attribute in the schema: cx + + + + + Extent Width + Represents the following attribute in the schema: cy + + + + + Type of Size + Represents the following attribute in the schema: type + + + + + + + + Defines the EmbeddedFontList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:embeddedFontLst. + + + The following table lists the possible child types: + + <p:embeddedFont> + + + + + + Initializes a new instance of the EmbeddedFontList class. + + + + + Initializes a new instance of the EmbeddedFontList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedFontList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EmbeddedFontList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the CustomShowList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:custShowLst. + + + The following table lists the possible child types: + + <p:custShow> + + + + + + Initializes a new instance of the CustomShowList class. + + + + + Initializes a new instance of the CustomShowList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomShowList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the CustomShowList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PhotoAlbum Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:photoAlbum. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the PhotoAlbum class. + + + + + Initializes a new instance of the PhotoAlbum class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PhotoAlbum class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PhotoAlbum class from outer XML. + + Specifies the outer XML of the element. + + + + Black and White + Represents the following attribute in the schema: bw + + + + + Show/Hide Captions + Represents the following attribute in the schema: showCaptions + + + + + Photo Album Layout + Represents the following attribute in the schema: layout + + + + + Frame Type + Represents the following attribute in the schema: frame + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the Kinsoku Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:kinsoku. + + + + + Initializes a new instance of the Kinsoku class. + + + + + Language + Represents the following attribute in the schema: lang + + + + + Invalid Kinsoku Start Characters + Represents the following attribute in the schema: invalStChars + + + + + Invalid Kinsoku End Characters + Represents the following attribute in the schema: invalEndChars + + + + + + + + Defines the ModificationVerifier Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:modifyVerifier. + + + + + Initializes a new instance of the ModificationVerifier class. + + + + + Cryptographic Provider Type + Represents the following attribute in the schema: cryptProviderType + + + + + Cryptographic Algorithm Class + Represents the following attribute in the schema: cryptAlgorithmClass + + + + + Cryptographic Algorithm Type + Represents the following attribute in the schema: cryptAlgorithmType + + + + + Cryptographic Hashing Algorithm + Represents the following attribute in the schema: cryptAlgorithmSid + + + + + Iterations to Run Hashing Algorithm + Represents the following attribute in the schema: spinCount + + + + + Salt for Password Verifier + Represents the following attribute in the schema: saltData + + + + + Password Hash + Represents the following attribute in the schema: hashData + + + + + Cryptographic Provider + Represents the following attribute in the schema: cryptProvider + + + + + Cryptographic Algorithm Extensibility + Represents the following attribute in the schema: algIdExt + + + + + Algorithm Extensibility Source + Represents the following attribute in the schema: algIdExtSource + + + + + Cryptographic Provider Type Extensibility + Represents the following attribute in the schema: cryptProviderTypeExt + + + + + Provider Type Extensibility Source + Represents the following attribute in the schema: cryptProviderTypeExtSource + + + + + algorithmName, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: algorithmName + + + + + hashValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: hashValue + + + + + saltValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: saltValue + + + + + spinValue, this property is only available in Office 2010 and later. + Represents the following attribute in the schema: spinValue + + + + + + + + Defines the PresentationExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the PresentationExtensionList class. + + + + + Initializes a new instance of the PresentationExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PresentationExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p14:sectionLst> + <p14:sectionPr> + <p15:sldGuideLst> + <p15:notesGuideLst> + + + + + + Initializes a new instance of the PresentationExtension class. + + + + + Initializes a new instance of the PresentationExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + HTML Publishing Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:htmlPubPr. + + + The following table lists the possible child types: + + <p:custShow> + <p:sldAll> + <p:extLst> + <p:sldRg> + + + + + + Initializes a new instance of the HtmlPublishProperties class. + + + + + Initializes a new instance of the HtmlPublishProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HtmlPublishProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HtmlPublishProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Show Speaker Notes + Represents the following attribute in the schema: showSpeakerNotes + + + + + Browser Support Target + Represents the following attribute in the schema: pubBrowser + + + + + Publish Path + Represents the following attribute in the schema: r:id + + + xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships + + + + + + + + Web Properties. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:webPr. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the WebProperties class. + + + + + Initializes a new instance of the WebProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the WebProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Show animation in HTML output + Represents the following attribute in the schema: showAnimation + + + + + Resize graphics in HTML output + Represents the following attribute in the schema: resizeGraphics + + + + + Allow PNG in HTML output + Represents the following attribute in the schema: allowPng + + + + + Rely on VML for HTML output + Represents the following attribute in the schema: relyOnVml + + + + + Organize HTML output in folders + Represents the following attribute in the schema: organizeInFolders + + + + + Use long file names in HTML output + Represents the following attribute in the schema: useLongFilenames + + + + + Image size for HTML output + Represents the following attribute in the schema: imgSz + + + + + Encoding for HTML output + Represents the following attribute in the schema: encoding + + + + + Slide Navigation Colors for HTML output + Represents the following attribute in the schema: clr + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the PrintingProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:prnPr. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the PrintingProperties class. + + + + + Initializes a new instance of the PrintingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PrintingProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PrintingProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Print Output + Represents the following attribute in the schema: prnWhat + + + + + Print Color Mode + Represents the following attribute in the schema: clrMode + + + + + Print Hidden Slides + Represents the following attribute in the schema: hiddenSlides + + + + + Scale to Fit Paper when printing + Represents the following attribute in the schema: scaleToFitPaper + + + + + Frame slides when printing + Represents the following attribute in the schema: frameSlides + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the ShowProperties Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:showPr. + + + The following table lists the possible child types: + + <p:penClr> + <p:custShow> + <p:present> + <p:sldAll> + <p:sldRg> + <p:browse> + <p:kiosk> + <p:extLst> + + + + + + Initializes a new instance of the ShowProperties class. + + + + + Initializes a new instance of the ShowProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShowProperties class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ShowProperties class from outer XML. + + Specifies the outer XML of the element. + + + + Loop Slide Show + Represents the following attribute in the schema: loop + + + + + Show Narration in Slide Show + Represents the following attribute in the schema: showNarration + + + + + Show Animation in Slide Show + Represents the following attribute in the schema: showAnimation + + + + + Use Timings in Slide Show + Represents the following attribute in the schema: useTimings + + + + + + + + Defines the ColorMostRecentlyUsed Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:clrMru. + + + The following table lists the possible child types: + + <a:hslClr> + <a:prstClr> + <a:schemeClr> + <a:scrgbClr> + <a:srgbClr> + <a:sysClr> + + + + + + Initializes a new instance of the ColorMostRecentlyUsed class. + + + + + Initializes a new instance of the ColorMostRecentlyUsed class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMostRecentlyUsed class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the ColorMostRecentlyUsed class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PresentationPropertiesExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the PresentationPropertiesExtensionList class. + + + + + Initializes a new instance of the PresentationPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationPropertiesExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationPropertiesExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the PresentationPropertiesExtension Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <a14:m> + <p14:defaultImageDpi> + <p14:discardImageEditData> + <p15:chartTrackingRefBased> + + + + + + Initializes a new instance of the PresentationPropertiesExtension class. + + + + + Initializes a new instance of the PresentationPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationPropertiesExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PresentationPropertiesExtension class from outer XML. + + Specifies the outer XML of the element. + + + + URI + Represents the following attribute in the schema: uri + + + + + + + + Defines the HeaderFooter Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:hf. + + + The following table lists the possible child types: + + <p:extLst> + + + + + + Initializes a new instance of the HeaderFooter class. + + + + + Initializes a new instance of the HeaderFooter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooter class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HeaderFooter class from outer XML. + + Specifies the outer XML of the element. + + + + Slide Number Placeholder + Represents the following attribute in the schema: sldNum + + + + + Header Placeholder + Represents the following attribute in the schema: hdr + + + + + Footer Placeholder + Represents the following attribute in the schema: ftr + + + + + Date/Time Placeholder + Represents the following attribute in the schema: dt + + + + + ExtensionListWithModification. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the SlideLayoutExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the SlideLayoutExtensionList class. + + + + + Initializes a new instance of the SlideLayoutExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the SlideLayoutIdList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sldLayoutIdLst. + + + The following table lists the possible child types: + + <p:sldLayoutId> + + + + + + Initializes a new instance of the SlideLayoutIdList class. + + + + + Initializes a new instance of the SlideLayoutIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutIdList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideLayoutIdList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the TextStyles Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:txStyles. + + + The following table lists the possible child types: + + <p:titleStyle> + <p:bodyStyle> + <p:otherStyle> + <p:extLst> + + + + + + Initializes a new instance of the TextStyles class. + + + + + Initializes a new instance of the TextStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextStyles class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextStyles class from outer XML. + + Specifies the outer XML of the element. + + + + Slide Master Title Text Style. + Represents the following element tag in the schema: p:titleStyle. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Slide Master Body Text Style. + Represents the following element tag in the schema: p:bodyStyle. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Slide Master Other Text Style. + Represents the following element tag in the schema: p:otherStyle. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + ExtensionList. + Represents the following element tag in the schema: p:extLst. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the SlideMasterExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the SlideMasterExtensionList class. + + + + + Initializes a new instance of the SlideMasterExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMasterExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SlideMasterExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the HandoutMasterExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the HandoutMasterExtensionList class. + + + + + Initializes a new instance of the HandoutMasterExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMasterExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the HandoutMasterExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the NotesMasterExtensionList Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:extLst. + + + The following table lists the possible child types: + + <p:ext> + + + + + + Initializes a new instance of the NotesMasterExtensionList class. + + + + + Initializes a new instance of the NotesMasterExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterExtensionList class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the NotesMasterExtensionList class from outer XML. + + Specifies the outer XML of the element. + + + + + + + OLE Chart Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:oleChartEl. + + + + + Initializes a new instance of the OleChartElement class. + + + + + Type + Represents the following attribute in the schema: type + + + + + Level + Represents the following attribute in the schema: lvl + + + + + + + + Text Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:txEl. + + + The following table lists the possible child types: + + <p:charRg> + <p:pRg> + + + + + + Initializes a new instance of the TextElement class. + + + + + Initializes a new instance of the TextElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the TextElement class from outer XML. + + Specifies the outer XML of the element. + + + + Character Range. + Represents the following element tag in the schema: p:charRg. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Paragraph Text Range. + Represents the following element tag in the schema: p:pRg. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Graphic Element. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:graphicEl. + + + The following table lists the possible child types: + + <a:chart> + <a:dgm> + + + + + + Initializes a new instance of the GraphicElement class. + + + + + Initializes a new instance of the GraphicElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicElement class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GraphicElement class from outer XML. + + Specifies the outer XML of the element. + + + + Diagram to Animate. + Represents the following element tag in the schema: a:dgm. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + Chart to Animate. + Represents the following element tag in the schema: a:chart. + + + xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main + + + + + + + + Defines the BlindsTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:blinds. + + + + + Initializes a new instance of the BlindsTransition class. + + + + + + + + Defines the CheckerTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:checker. + + + + + Initializes a new instance of the CheckerTransition class. + + + + + + + + Defines the CombTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:comb. + + + + + Initializes a new instance of the CombTransition class. + + + + + + + + Defines the RandomBarTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:randomBar. + + + + + Initializes a new instance of the RandomBarTransition class. + + + + + + + + Defines the OrientationTransitionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OrientationTransitionType class. + + + + + Transition Direction + Represents the following attribute in the schema: dir + + + + + Defines the CoverTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cover. + + + + + Initializes a new instance of the CoverTransition class. + + + + + + + + Defines the PullTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:pull. + + + + + Initializes a new instance of the PullTransition class. + + + + + + + + Defines the EightDirectionTransitionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the EightDirectionTransitionType class. + + + + + Direction + Represents the following attribute in the schema: dir + + + + + Defines the CutTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:cut. + + + + + Initializes a new instance of the CutTransition class. + + + + + + + + Defines the FadeTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:fade. + + + + + Initializes a new instance of the FadeTransition class. + + + + + + + + Defines the OptionalBlackTransitionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the OptionalBlackTransitionType class. + + + + + Transition Through Black + Represents the following attribute in the schema: thruBlk + + + + + Defines the PushTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:push. + + + + + Initializes a new instance of the PushTransition class. + + + + + + + + Defines the WipeTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:wipe. + + + + + Initializes a new instance of the WipeTransition class. + + + + + + + + Defines the SideDirectionTransitionType Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is :. + + + + + Initializes a new instance of the SideDirectionTransitionType class. + + + + + Direction + Represents the following attribute in the schema: dir + + + + + Defines the SplitTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:split. + + + + + Initializes a new instance of the SplitTransition class. + + + + + Orientation + Represents the following attribute in the schema: orient + + + + + Direction + Represents the following attribute in the schema: dir + + + + + + + + Defines the StripsTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:strips. + + + + + Initializes a new instance of the StripsTransition class. + + + + + Direction + Represents the following attribute in the schema: dir + + + + + + + + Defines the WheelTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:wheel. + + + + + Initializes a new instance of the WheelTransition class. + + + + + Spokes + Represents the following attribute in the schema: spokes + + + + + + + + Defines the ZoomTransition Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:zoom. + + + + + Initializes a new instance of the ZoomTransition class. + + + + + Direction + Represents the following attribute in the schema: dir + + + + + + + + Defines the SoundAction Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is p:sndAc. + + + The following table lists the possible child types: + + <p:endSnd> + <p:stSnd> + + + + + + Initializes a new instance of the SoundAction class. + + + + + Initializes a new instance of the SoundAction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SoundAction class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SoundAction class from outer XML. + + Specifies the outer XML of the element. + + + + Start Sound Action. + Represents the following element tag in the schema: p:stSnd. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + Stop Sound Action. + Represents the following element tag in the schema: p:endSnd. + + + xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main + + + + + + + + Defines the PlaceholderExtension Class. + This class is available in Microsoft365 and above. + When the object is serialized out as xml, it's qualified name is p:ext. + + + The following table lists the possible child types: + + <p232:phTypeExt> + + + + + + Initializes a new instance of the PlaceholderExtension class. + + + + + Initializes a new instance of the PlaceholderExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlaceholderExtension class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the PlaceholderExtension class from outer XML. + + Specifies the outer XML of the element. + + + + PlaceholderTypeExtension. + Represents the following element tag in the schema: p232:phTypeExt. + + + xmlns:p232 = http://schemas.microsoft.com/office/powerpoint/2023/02/main + + + + + + + + Transition Slide Direction Type + + + + + Creates a new TransitionSlideDirectionValues enum instance + + + + + Transition Slide Direction Enum ( Left ). + When the item is serialized out as xml, its value is "l". + + + + + Transition Slide Direction Enum ( Up ). + When the item is serialized out as xml, its value is "u". + + + + + Transition Slide Direction ( Right ). + When the item is serialized out as xml, its value is "r". + + + + + Transition Slide Direction Enum ( Down ). + When the item is serialized out as xml, its value is "d". + + + + + Transition Corner Direction Type + + + + + Creates a new TransitionCornerDirectionValues enum instance + + + + + Transition Corner Direction Enum ( Left-Up ). + When the item is serialized out as xml, its value is "lu". + + + + + Transition Corner Direction Enum ( Right-Up ). + When the item is serialized out as xml, its value is "ru". + + + + + Transition Corner Direction Enum ( Left-Down ). + When the item is serialized out as xml, its value is "ld". + + + + + Transition Corner Direction Enum ( Right-Down ). + When the item is serialized out as xml, its value is "rd". + + + + + Transition In/Out Direction Type + + + + + Creates a new TransitionInOutDirectionValues enum instance + + + + + Transition In/Out Direction Enum ( Out ). + When the item is serialized out as xml, its value is "out". + + + + + Transition In/Out Direction Enum ( In ). + When the item is serialized out as xml, its value is "in". + + + + + Transition Speed + + + + + Creates a new TransitionSpeedValues enum instance + + + + + low. + When the item is serialized out as xml, its value is "slow". + + + + + Medium. + When the item is serialized out as xml, its value is "med". + + + + + Fast. + When the item is serialized out as xml, its value is "fast". + + + + + Indefinite Time Declaration + + + + + Creates a new IndefiniteTimeDeclarationValues enum instance + + + + + Indefinite Type Enum. + When the item is serialized out as xml, its value is "indefinite". + + + + + Iterate Type + + + + + Creates a new IterateValues enum instance + + + + + Element. + When the item is serialized out as xml, its value is "el". + + + + + Word. + When the item is serialized out as xml, its value is "wd". + + + + + Letter. + When the item is serialized out as xml, its value is "lt". + + + + + Chart Subelement Type + + + + + Creates a new ChartSubElementValues enum instance + + + + + Chart Build Element Type Enum ( Grid Legend ). + When the item is serialized out as xml, its value is "gridLegend". + + + + + Chart Build Element Type Enum ( Series ). + When the item is serialized out as xml, its value is "series". + + + + + Chart Build Element Type Enum ( Category ). + When the item is serialized out as xml, its value is "category". + + + + + Chart Build Element Type Enum ( Point in Series ). + When the item is serialized out as xml, its value is "ptInSeries". + + + + + Chart Build Element Type Enum ( Point in Cat ). + When the item is serialized out as xml, its value is "ptInCategory". + + + + + Trigger RunTime Node + + + + + Creates a new TriggerRuntimeNodeValues enum instance + + + + + Trigger RunTime Node ( First ). + When the item is serialized out as xml, its value is "first". + + + + + Trigger RunTime Node ( Last ). + When the item is serialized out as xml, its value is "last". + + + + + Trigger RunTime Node Enum ( All ). + When the item is serialized out as xml, its value is "all". + + + + + Time Node Preset Class Type + + + + + Creates a new TimeNodePresetClassValues enum instance + + + + + Preset Type Enum ( Entrance ). + When the item is serialized out as xml, its value is "entr". + + + + + Exit. + When the item is serialized out as xml, its value is "exit". + + + + + Preset Type Enum ( Emphasis ). + When the item is serialized out as xml, its value is "emph". + + + + + Preset Type Enum ( Path ). + When the item is serialized out as xml, its value is "path". + + + + + Preset Type Enum ( Verb ). + When the item is serialized out as xml, its value is "verb". + + + + + Preset Type Enum ( Media Call ). + When the item is serialized out as xml, its value is "mediacall". + + + + + Time Node Restart Type + + + + + Creates a new TimeNodeRestartValues enum instance + + + + + Restart Enum ( Always ). + When the item is serialized out as xml, its value is "always". + + + + + Restart Enum ( When Not Active ). + When the item is serialized out as xml, its value is "whenNotActive". + + + + + Restart Enum ( Never ). + When the item is serialized out as xml, its value is "never". + + + + + Time Node Fill Type + + + + + Creates a new TimeNodeFillValues enum instance + + + + + Remove. + When the item is serialized out as xml, its value is "remove". + + + + + Freeze. + When the item is serialized out as xml, its value is "freeze". + + + + + TimeNode Fill Type Enum ( Hold ). + When the item is serialized out as xml, its value is "hold". + + + + + Transition. + When the item is serialized out as xml, its value is "transition". + + + + + Time Node Type + + + + + Creates a new TimeNodeValues enum instance + + + + + Node Type Enum ( Click Effect ). + When the item is serialized out as xml, its value is "clickEffect". + + + + + Node Type Enum ( With Effect ). + When the item is serialized out as xml, its value is "withEffect". + + + + + Node Type Enum ( After Effect ). + When the item is serialized out as xml, its value is "afterEffect". + + + + + Node Type Enum ( Main Sequence ). + When the item is serialized out as xml, its value is "mainSeq". + + + + + Node Type Enum ( Interactive Sequence ). + When the item is serialized out as xml, its value is "interactiveSeq". + + + + + Node Type Enum ( Click Paragraph ). + When the item is serialized out as xml, its value is "clickPar". + + + + + Node Type Enum ( With Group ). + When the item is serialized out as xml, its value is "withGroup". + + + + + Node Type Enum ( After Group ). + When the item is serialized out as xml, its value is "afterGroup". + + + + + Node Type Enum ( Timing Root ). + When the item is serialized out as xml, its value is "tmRoot". + + + + + Next Action Type + + + + + Creates a new NextActionValues enum instance + + + + + Next Action Type Enum ( None ). + When the item is serialized out as xml, its value is "none". + + + + + Next Action Type Enum ( Seek ). + When the item is serialized out as xml, its value is "seek". + + + + + Previous Action Type + + + + + Creates a new PreviousActionValues enum instance + + + + + Previous Action Type Enum ( None ). + When the item is serialized out as xml, its value is "none". + + + + + Previous Action Type Enum ( Skip Timed ). + When the item is serialized out as xml, its value is "skipTimed". + + + + + Behavior Additive Type + + + + + Creates a new BehaviorAdditiveValues enum instance + + + + + Additive Enum ( Base ). + When the item is serialized out as xml, its value is "base". + + + + + Additive Enum ( Sum ). + When the item is serialized out as xml, its value is "sum". + + + + + Additive Enum ( Replace ). + When the item is serialized out as xml, its value is "repl". + + + + + Additive Enum ( Multiply ). + When the item is serialized out as xml, its value is "mult". + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Behavior Accumulate Type + + + + + Creates a new BehaviorAccumulateValues enum instance + + + + + Accumulate Enum ( None ). + When the item is serialized out as xml, its value is "none". + + + + + Accumulate Enum ( Always ). + When the item is serialized out as xml, its value is "always". + + + + + Behavior Transform Type + + + + + Creates a new BehaviorTransformValues enum instance + + + + + Point. + When the item is serialized out as xml, its value is "pt". + + + + + Image. + When the item is serialized out as xml, its value is "img". + + + + + Behavior Override Type + + + + + Creates a new BehaviorOverrideValues enum instance + + + + + Override Enum ( Normal ). + When the item is serialized out as xml, its value is "normal". + + + + + Override Enum ( Child Style ). + When the item is serialized out as xml, its value is "childStyle". + + + + + Time List Animate Behavior Calculate Mode + + + + + Creates a new AnimateBehaviorCalculateModeValues enum instance + + + + + Calc Mode Enum ( Discrete ). + When the item is serialized out as xml, its value is "discrete". + + + + + Calc Mode Enum ( Linear ). + When the item is serialized out as xml, its value is "lin". + + + + + Calc Mode Enum ( Formula ). + When the item is serialized out as xml, its value is "fmla". + + + + + Time List Animate Behavior Value Types + + + + + Creates a new AnimateBehaviorValues enum instance + + + + + Value Type Enum ( String ). + When the item is serialized out as xml, its value is "str". + + + + + Value Type Enum ( Number ). + When the item is serialized out as xml, its value is "num". + + + + + Value Type Enum ( Color ). + When the item is serialized out as xml, its value is "clr". + + + + + Time List Animate Color Space + + + + + Creates a new AnimateColorSpaceValues enum instance + + + + + Color Space Enum ( RGB ). + When the item is serialized out as xml, its value is "rgb". + + + + + Color Space Enum ( HSL ). + When the item is serialized out as xml, its value is "hsl". + + + + + Time List Animate Color Direction + + + + + Creates a new AnimateColorDirectionValues enum instance + + + + + Direction Enum ( Clockwise ). + When the item is serialized out as xml, its value is "cw". + + + + + Counter-Clockwise. + When the item is serialized out as xml, its value is "ccw". + + + + + Time List Animate Effect Transition + + + + + Creates a new AnimateEffectTransitionValues enum instance + + + + + Transition Enum ( In ). + When the item is serialized out as xml, its value is "in". + + + + + Transition Enum ( Out ). + When the item is serialized out as xml, its value is "out". + + + + + Transition Enum ( None ). + When the item is serialized out as xml, its value is "none". + + + + + Time List Animate Motion Behavior Origin + + + + + Creates a new AnimateMotionBehaviorOriginValues enum instance + + + + + Origin Enum ( Parent ). + When the item is serialized out as xml, its value is "parent". + + + + + Origin Enum ( Layout ). + When the item is serialized out as xml, its value is "layout". + + + + + Time List Animate Motion Path Edit Mode + + + + + Creates a new AnimateMotionPathEditModeValues enum instance + + + + + Path Edit Mode Enum ( Relative ). + When the item is serialized out as xml, its value is "relative". + + + + + Path Edit Mode Enum ( Fixed ). + When the item is serialized out as xml, its value is "fixed". + + + + + Command Type + + + + + Creates a new CommandValues enum instance + + + + + Command Type Enum ( Event ). + When the item is serialized out as xml, its value is "evt". + + + + + Command Type Enum ( Call ). + When the item is serialized out as xml, its value is "call". + + + + + Command Type Enum ( Verb ). + When the item is serialized out as xml, its value is "verb". + + + + + Paragraph Build Type + + + + + Creates a new ParagraphBuildValues enum instance + + + + + All At Once. + When the item is serialized out as xml, its value is "allAtOnce". + + + + + Paragraph. + When the item is serialized out as xml, its value is "p". + + + + + Custom. + When the item is serialized out as xml, its value is "cust". + + + + + Whole. + When the item is serialized out as xml, its value is "whole". + + + + + Diagram Build Types + + + + + Creates a new DiagramBuildValues enum instance + + + + + Diagram Build Type Enum ( Whole ). + When the item is serialized out as xml, its value is "whole". + + + + + Diagram Build Type Enum ( Depth By Node ). + When the item is serialized out as xml, its value is "depthByNode". + + + + + Diagram Build Type Enum ( Depth By Branch ). + When the item is serialized out as xml, its value is "depthByBranch". + + + + + Diagram Build Type Enum ( Breadth By Node ). + When the item is serialized out as xml, its value is "breadthByNode". + + + + + Diagram Build Type Enum ( Breadth By Level ). + When the item is serialized out as xml, its value is "breadthByLvl". + + + + + Diagram Build Type Enum ( Clockwise ). + When the item is serialized out as xml, its value is "cw". + + + + + Diagram Build Type Enum ( Clockwise-In ). + When the item is serialized out as xml, its value is "cwIn". + + + + + Diagram Build Type Enum ( Clockwise-Out ). + When the item is serialized out as xml, its value is "cwOut". + + + + + Diagram Build Type Enum ( Counter-Clockwise ). + When the item is serialized out as xml, its value is "ccw". + + + + + Diagram Build Type Enum ( Counter-Clockwise-In ). + When the item is serialized out as xml, its value is "ccwIn". + + + + + Diagram Build Type Enum ( Counter-Clockwise-Out ). + When the item is serialized out as xml, its value is "ccwOut". + + + + + Diagram Build Type Enum ( In-By-Ring ). + When the item is serialized out as xml, its value is "inByRing". + + + + + Diagram Build Type Enum ( Out-By-Ring ). + When the item is serialized out as xml, its value is "outByRing". + + + + + Diagram Build Type Enum ( Up ). + When the item is serialized out as xml, its value is "up". + + + + + Diagram Build Type Enum ( Down ). + When the item is serialized out as xml, its value is "down". + + + + + Diagram Build Type Enum ( All At Once ). + When the item is serialized out as xml, its value is "allAtOnce". + + + + + Diagram Build Type Enum ( Custom ). + When the item is serialized out as xml, its value is "cust". + + + + + OLE Chart Build Type + + + + + Creates a new OleChartBuildValues enum instance + + + + + Chart Build Type Enum ( All At Once ). + When the item is serialized out as xml, its value is "allAtOnce". + + + + + Chart Build Type Enum ( Series ). + When the item is serialized out as xml, its value is "series". + + + + + Chart Build Type Enum ( Category ). + When the item is serialized out as xml, its value is "category". + + + + + Chart Build Type Enum ( Series Element ). + When the item is serialized out as xml, its value is "seriesEl". + + + + + Chart Build Type Enum ( Category Element ). + When the item is serialized out as xml, its value is "categoryEl". + + + + + Time Node Master Relation + + + + + Creates a new TimeNodeMasterRelationValues enum instance + + + + + TimeNode Master Relation Enum ( Same Click ). + When the item is serialized out as xml, its value is "sameClick". + + + + + TimeNode Master Relation Enum ( Next Click ). + When the item is serialized out as xml, its value is "nextClick". + + + + + Time Node Sync Type + + + + + Creates a new TimeNodeSyncValues enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + TimeNode Sync Enum ( Can Slip ). + When the item is serialized out as xml, its value is "canSlip". + + + + + TimeNode Sync Enum ( Locked ). + When the item is serialized out as xml, its value is "locked". + + + + + Direction + + + + + Creates a new DirectionValues enum instance + + + + + Horizontal. + When the item is serialized out as xml, its value is "horz". + + + + + Vertical. + When the item is serialized out as xml, its value is "vert". + + + + + OLE Object to Follow Color Scheme + + + + + Creates a new OleObjectFollowColorSchemeValues enum instance + + + + + None. + When the item is serialized out as xml, its value is "none". + + + + + Full. + When the item is serialized out as xml, its value is "full". + + + + + Text and Background. + When the item is serialized out as xml, its value is "textAndBackground". + + + + + Photo Album Layout Definition + + + + + Creates a new PhotoAlbumLayoutValues enum instance + + + + + Fit Photos to Slide. + When the item is serialized out as xml, its value is "fitToSlide". + + + + + 1 Photo per Slide. + When the item is serialized out as xml, its value is "1pic". + + + + + 2 Photos per Slide. + When the item is serialized out as xml, its value is "2pic". + + + + + 4 Photos per Slide. + When the item is serialized out as xml, its value is "4pic". + + + + + 1 Photo per Slide with Titles. + When the item is serialized out as xml, its value is "1picTitle". + + + + + 2 Photos per Slide with Titles. + When the item is serialized out as xml, its value is "2picTitle". + + + + + 4 Photos per Slide with Titles. + When the item is serialized out as xml, its value is "4picTitle". + + + + + Photo Album Shape for Photo Mask + + + + + Creates a new PhotoAlbumFrameShapeValues enum instance + + + + + Rectangle Photo Frame. + When the item is serialized out as xml, its value is "frameStyle1". + + + + + Rounded Rectangle Photo Frame. + When the item is serialized out as xml, its value is "frameStyle2". + + + + + Simple White Photo Frame. + When the item is serialized out as xml, its value is "frameStyle3". + + + + + Simple Black Photo Frame. + When the item is serialized out as xml, its value is "frameStyle4". + + + + + Compound Black Photo Frame. + When the item is serialized out as xml, its value is "frameStyle5". + + + + + Center Shadow Photo Frame. + When the item is serialized out as xml, its value is "frameStyle6". + + + + + Soft Edge Photo Frame. + When the item is serialized out as xml, its value is "frameStyle7". + + + + + Slide Size Type + + + + + Creates a new SlideSizeValues enum instance + + + + + Screen 4x3. + When the item is serialized out as xml, its value is "screen4x3". + + + + + Letter. + When the item is serialized out as xml, its value is "letter". + + + + + A4. + When the item is serialized out as xml, its value is "A4". + + + + + 35mm Film. + When the item is serialized out as xml, its value is "35mm". + + + + + Overhead. + When the item is serialized out as xml, its value is "overhead". + + + + + Banner. + When the item is serialized out as xml, its value is "banner". + + + + + Custom. + When the item is serialized out as xml, its value is "custom". + + + + + Ledger. + When the item is serialized out as xml, its value is "ledger". + + + + + A3. + When the item is serialized out as xml, its value is "A3". + + + + + B4ISO. + When the item is serialized out as xml, its value is "B4ISO". + + + + + B5ISO. + When the item is serialized out as xml, its value is "B5ISO". + + + + + B4JIS. + When the item is serialized out as xml, its value is "B4JIS". + + + + + B5JIS. + When the item is serialized out as xml, its value is "B5JIS". + + + + + Hagaki Card. + When the item is serialized out as xml, its value is "hagakiCard". + + + + + Screen 16x9. + When the item is serialized out as xml, its value is "screen16x9". + + + + + Screen 16x10. + When the item is serialized out as xml, its value is "screen16x10". + + + + + Cryptographic Provider Type + + + + + Creates a new CryptProviderValues enum instance + + + + + RSA AES Encryption Scheme. + When the item is serialized out as xml, its value is "rsaAES". + + + + + RSA Full Encryption Scheme. + When the item is serialized out as xml, its value is "rsaFull". + + + + + Invalid Encryption Scheme. + When the item is serialized out as xml, its value is "invalid". + + + + + Cryptographic Algorithm Classes + + + + + Creates a new CryptAlgorithmClassValues enum instance + + + + + Hash Algorithm Class. + When the item is serialized out as xml, its value is "hash". + + + + + Invalid Algorithm Class. + When the item is serialized out as xml, its value is "invalid". + + + + + Cryptographic Algorithm Type + + + + + Creates a new CryptAlgorithmValues enum instance + + + + + Any Algorithm Type. + When the item is serialized out as xml, its value is "typeAny". + + + + + Invalid Algorithm Type. + When the item is serialized out as xml, its value is "invalid". + + + + + Web browsers supported for HTML output + + + + + Creates a new HtmlPublishWebBrowserSupportValues enum instance + + + + + Browser v4. + When the item is serialized out as xml, its value is "v4". + + + + + Browser v3. + When the item is serialized out as xml, its value is "v3". + + + + + Browser v3v4. + When the item is serialized out as xml, its value is "v3v4". + + + + + HTML Slide Navigation Control Colors + + + + + Creates a new WebColorValues enum instance + + + + + Non-specific Colors. + When the item is serialized out as xml, its value is "none". + + + + + Browser Colors. + When the item is serialized out as xml, its value is "browser". + + + + + Presentation Text Colors. + When the item is serialized out as xml, its value is "presentationText". + + + + + Presentation Accent Colors. + When the item is serialized out as xml, its value is "presentationAccent". + + + + + White Text on Black Colors. + When the item is serialized out as xml, its value is "whiteTextOnBlack". + + + + + Black Text on White Colors. + When the item is serialized out as xml, its value is "blackTextOnWhite". + + + + + HTML/Web Screen Size Target + + + + + Creates a new WebScreenSizeValues enum instance + + + + + HTML/Web Size Enumeration 544x376. + When the item is serialized out as xml, its value is "544x376". + + + + + HTML/Web Size Enumeration 640x480. + When the item is serialized out as xml, its value is "640x480". + + + + + HTML/Web Size Enumeration 720x515. + When the item is serialized out as xml, its value is "720x512". + + + + + HTML/Web Size Enumeration 800x600. + When the item is serialized out as xml, its value is "800x600". + + + + + HTML/Web Size Enumeration 1024x768. + When the item is serialized out as xml, its value is "1024x768". + + + + + HTML/Web Size Enumeration 1152x882. + When the item is serialized out as xml, its value is "1152x882". + + + + + HTML/Web Size Enumeration 1152x900. + When the item is serialized out as xml, its value is "1152x900". + + + + + HTML/Web Size Enumeration 1280x1024. + When the item is serialized out as xml, its value is "1280x1024". + + + + + HTML/Web Size Enumeration 1600x1200. + When the item is serialized out as xml, its value is "1600x1200". + + + + + HTML/Web Size Enumeration 1800x1400. + When the item is serialized out as xml, its value is "1800x1400". + + + + + HTML/Web Size Enumeration 1920x1200. + When the item is serialized out as xml, its value is "1920x1200". + + + + + Default print output + + + + + Creates a new PrintOutputValues enum instance + + + + + Slides. + When the item is serialized out as xml, its value is "slides". + + + + + 1 Slide / Handout Page. + When the item is serialized out as xml, its value is "handouts1". + + + + + 2 Slides / Handout Page. + When the item is serialized out as xml, its value is "handouts2". + + + + + 3 Slides / Handout Page. + When the item is serialized out as xml, its value is "handouts3". + + + + + 4 Slides / Handout Page. + When the item is serialized out as xml, its value is "handouts4". + + + + + 6 Slides / Handout Page. + When the item is serialized out as xml, its value is "handouts6". + + + + + 9 Slides / Handout Page. + When the item is serialized out as xml, its value is "handouts9". + + + + + Notes. + When the item is serialized out as xml, its value is "notes". + + + + + Outline. + When the item is serialized out as xml, its value is "outline". + + + + + Print Color Mode + + + + + Creates a new PrintColorModeValues enum instance + + + + + Black and White Mode. + When the item is serialized out as xml, its value is "bw". + + + + + Grayscale Mode. + When the item is serialized out as xml, its value is "gray". + + + + + Color Mode. + When the item is serialized out as xml, its value is "clr". + + + + + Placeholder IDs + + + + + Creates a new PlaceholderValues enum instance + + + + + Title. + When the item is serialized out as xml, its value is "title". + + + + + Body. + When the item is serialized out as xml, its value is "body". + + + + + Centered Title. + When the item is serialized out as xml, its value is "ctrTitle". + + + + + Subtitle. + When the item is serialized out as xml, its value is "subTitle". + + + + + Date and Time. + When the item is serialized out as xml, its value is "dt". + + + + + Slide Number. + When the item is serialized out as xml, its value is "sldNum". + + + + + Footer. + When the item is serialized out as xml, its value is "ftr". + + + + + Header. + When the item is serialized out as xml, its value is "hdr". + + + + + Object. + When the item is serialized out as xml, its value is "obj". + + + + + Chart. + When the item is serialized out as xml, its value is "chart". + + + + + Table. + When the item is serialized out as xml, its value is "tbl". + + + + + Clip Art. + When the item is serialized out as xml, its value is "clipArt". + + + + + Diagram. + When the item is serialized out as xml, its value is "dgm". + + + + + Media. + When the item is serialized out as xml, its value is "media". + + + + + Slide Image. + When the item is serialized out as xml, its value is "sldImg". + + + + + Picture. + When the item is serialized out as xml, its value is "pic". + + + + + Placeholder Size + + + + + Creates a new PlaceholderSizeValues enum instance + + + + + Full. + When the item is serialized out as xml, its value is "full". + + + + + Half. + When the item is serialized out as xml, its value is "half". + + + + + Quarter. + When the item is serialized out as xml, its value is "quarter". + + + + + Slide Layout Type + + + + + Creates a new SlideLayoutValues enum instance + + + + + Slide Layout Type Enumeration ( Title ). + When the item is serialized out as xml, its value is "title". + + + + + Slide Layout Type Enumeration ( Text ). + When the item is serialized out as xml, its value is "tx". + + + + + Slide Layout Type Enumeration ( Two Column Text ). + When the item is serialized out as xml, its value is "twoColTx". + + + + + Slide Layout Type Enumeration ( Table ). + When the item is serialized out as xml, its value is "tbl". + + + + + Slide Layout Type Enumeration ( Text and Chart ). + When the item is serialized out as xml, its value is "txAndChart". + + + + + Slide Layout Type Enumeration ( Chart and Text ). + When the item is serialized out as xml, its value is "chartAndTx". + + + + + Slide Layout Type Enumeration ( Diagram ). + When the item is serialized out as xml, its value is "dgm". + + + + + Chart. + When the item is serialized out as xml, its value is "chart". + + + + + Text and Clip Art. + When the item is serialized out as xml, its value is "txAndClipArt". + + + + + Clip Art and Text. + When the item is serialized out as xml, its value is "clipArtAndTx". + + + + + Slide Layout Type Enumeration ( Title Only ). + When the item is serialized out as xml, its value is "titleOnly". + + + + + Slide Layout Type Enumeration ( Blank ). + When the item is serialized out as xml, its value is "blank". + + + + + Slide Layout Type Enumeration ( Text and Object ). + When the item is serialized out as xml, its value is "txAndObj". + + + + + Slide Layout Type Enumeration ( Object and Text ). + When the item is serialized out as xml, its value is "objAndTx". + + + + + Object. + When the item is serialized out as xml, its value is "objOnly". + + + + + Title and Object. + When the item is serialized out as xml, its value is "obj". + + + + + Slide Layout Type Enumeration ( Text and Media ). + When the item is serialized out as xml, its value is "txAndMedia". + + + + + Slide Layout Type Enumeration ( Media and Text ). + When the item is serialized out as xml, its value is "mediaAndTx". + + + + + Slide Layout Type Enumeration ( Object over Text). + When the item is serialized out as xml, its value is "objOverTx". + + + + + Slide Layout Type Enumeration ( Text over Object). + When the item is serialized out as xml, its value is "txOverObj". + + + + + Text and Two Objects. + When the item is serialized out as xml, its value is "txAndTwoObj". + + + + + Two Objects and Text. + When the item is serialized out as xml, its value is "twoObjAndTx". + + + + + Two Objects over Text. + When the item is serialized out as xml, its value is "twoObjOverTx". + + + + + Four Objects. + When the item is serialized out as xml, its value is "fourObj". + + + + + Vertical Text. + When the item is serialized out as xml, its value is "vertTx". + + + + + Clip Art and Vertical Text. + When the item is serialized out as xml, its value is "clipArtAndVertTx". + + + + + Vertical Title and Text. + When the item is serialized out as xml, its value is "vertTitleAndTx". + + + + + Vertical Title and Text Over Chart. + When the item is serialized out as xml, its value is "vertTitleAndTxOverChart". + + + + + Two Objects. + When the item is serialized out as xml, its value is "twoObj". + + + + + Object and Two Object. + When the item is serialized out as xml, its value is "objAndTwoObj". + + + + + Two Objects and Object. + When the item is serialized out as xml, its value is "twoObjAndObj". + + + + + Slide Layout Type Enumeration ( Custom ). + When the item is serialized out as xml, its value is "cust". + + + + + Section Header. + When the item is serialized out as xml, its value is "secHead". + + + + + Two Text and Two Objects. + When the item is serialized out as xml, its value is "twoTxTwoObj". + + + + + Title, Object, and Caption. + When the item is serialized out as xml, its value is "objTx". + + + + + Picture and Caption. + When the item is serialized out as xml, its value is "picTx". + + + + + Splitter Bar State + + + + + Creates a new SplitterBarStateValues enum instance + + + + + Min. + When the item is serialized out as xml, its value is "minimized". + + + + + Restored. + When the item is serialized out as xml, its value is "restored". + + + + + Max. + When the item is serialized out as xml, its value is "maximized". + + + + + List of View Types + + + + + Creates a new ViewValues enum instance + + + + + Normal Slide View. + When the item is serialized out as xml, its value is "sldView". + + + + + Slide Master View. + When the item is serialized out as xml, its value is "sldMasterView". + + + + + Notes View. + When the item is serialized out as xml, its value is "notesView". + + + + + Handout View. + When the item is serialized out as xml, its value is "handoutView". + + + + + Notes Master View. + When the item is serialized out as xml, its value is "notesMasterView". + + + + + Outline View. + When the item is serialized out as xml, its value is "outlineView". + + + + + Slide Sorter View. + When the item is serialized out as xml, its value is "sldSorterView". + + + + + Slide Thumbnail View. + When the item is serialized out as xml, its value is "sldThumbnailView". + + + + + Trigger Event + + + + + Creates a new TriggerEventValues enum instance + + + + + none. + When the item is serialized out as xml, its value is "none". + + + + + Trigger Event Enum ( On Begin ). + When the item is serialized out as xml, its value is "onBegin". + + + + + Trigger Event Enum ( On End ). + When the item is serialized out as xml, its value is "onEnd". + + + + + Trigger Event Enum ( Begin ). + When the item is serialized out as xml, its value is "begin". + + + + + Trigger Event Enum ( End ). + When the item is serialized out as xml, its value is "end". + + + + + Trigger Event Enum ( On Click ). + When the item is serialized out as xml, its value is "onClick". + + + + + Trigger Event Enum ( On Double Click ). + When the item is serialized out as xml, its value is "onDblClick". + + + + + Trigger Event Enum ( On Mouse Over ). + When the item is serialized out as xml, its value is "onMouseOver". + + + + + Trigger Event Enum ( On Mouse Out ). + When the item is serialized out as xml, its value is "onMouseOut". + + + + + Trigger Event Enum ( On Next ). + When the item is serialized out as xml, its value is "onNext". + + + + + Trigger Event Enum ( On Previous ). + When the item is serialized out as xml, its value is "onPrev". + + + + + Trigger Event Enum ( On Stop Audio ). + When the item is serialized out as xml, its value is "onStopAudio". + + + + + onMediaBookmark. + When the item is serialized out as xml, its value is "onMediaBookmark". + This item is only available in Office 2010 and later. + + + + + Defines the ConformanceClassValues enumeration. + + + + + Creates a new ConformanceClassValues enum instance + + + + + strict. + When the item is serialized out as xml, its value is "strict". + + + + + transitional. + When the item is serialized out as xml, its value is "transitional". + + + + + Embedded Custom XML Schema Supplementary Data. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is sl:schemaLibrary. + + + The following table lists the possible child types: + + <sl:schema> + + + + + + Initializes a new instance of the SchemaLibrary class. + + + + + Initializes a new instance of the SchemaLibrary class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SchemaLibrary class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the SchemaLibrary class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Custom XML Schema Reference. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is sl:schema. + + + + + Initializes a new instance of the Schema class. + + + + + Custom XML Schema Namespace + Represents the following attribute in the schema: sl:uri + + + xmlns:sl=http://schemas.openxmlformats.org/schemaLibrary/2006/main + + + + + Resource File Location + Represents the following attribute in the schema: sl:manifestLocation + + + xmlns:sl=http://schemas.openxmlformats.org/schemaLibrary/2006/main + + + + + Custom XML Schema Location + Represents the following attribute in the schema: sl:schemaLocation + + + xmlns:sl=http://schemas.openxmlformats.org/schemaLibrary/2006/main + + + + + + + + Defines the DerivedFrom Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:derived-from. + + + + + Initializes a new instance of the DerivedFrom class. + + + + + resource + Represents the following attribute in the schema: resource + + + + + composite + Represents the following attribute in the schema: composite + + + + + + + + Defines the Info Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:info. + + + + + Initializes a new instance of the Info class. + + + + + Initializes a new instance of the Info class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Info class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Info class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + + + + Defines the Lattice Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:lattice. + + + The following table lists the possible child types: + + <emma:arc> + <emma:node> + + + + + + Initializes a new instance of the Lattice class. + + + + + Initializes a new instance of the Lattice class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Lattice class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Lattice class from outer XML. + + Specifies the outer XML of the element. + + + + initial + Represents the following attribute in the schema: initial + + + + + final + Represents the following attribute in the schema: final + + + + + time-ref-uri + Represents the following attribute in the schema: emma:time-ref-uri + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-anchor-point + Represents the following attribute in the schema: emma:time-ref-anchor-point + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + + + + Defines the Literal Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:literal. + + + + + Initializes a new instance of the Literal class. + + + + + Initializes a new instance of the Literal class with the specified text content. + + Specifies the text content of the element. + + + + + + + Defines the Interpretation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:interpretation. + + + The following table lists the possible child types: + + <emma:derived-from> + <emma:info> + <emma:lattice> + <emma:literal> + <msink:context> + + + + + + Initializes a new instance of the Interpretation class. + + + + + Initializes a new instance of the Interpretation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Interpretation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Interpretation class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + tokens + Represents the following attribute in the schema: emma:tokens + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + process + Represents the following attribute in the schema: emma:process + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + lang + Represents the following attribute in the schema: emma:lang + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + signal + Represents the following attribute in the schema: emma:signal + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + signal-size + Represents the following attribute in the schema: emma:signal-size + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + media-type + Represents the following attribute in the schema: emma:media-type + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + confidence + Represents the following attribute in the schema: emma:confidence + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + source + Represents the following attribute in the schema: emma:source + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + start + Represents the following attribute in the schema: emma:start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + end + Represents the following attribute in the schema: emma:end + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-uri + Represents the following attribute in the schema: emma:time-ref-uri + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-anchor-point + Represents the following attribute in the schema: emma:time-ref-anchor-point + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + offset-to-start + Represents the following attribute in the schema: emma:offset-to-start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + duration + Represents the following attribute in the schema: emma:duration + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + medium + Represents the following attribute in the schema: emma:medium + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + mode + Represents the following attribute in the schema: emma:mode + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + function + Represents the following attribute in the schema: emma:function + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + verbal + Represents the following attribute in the schema: emma:verbal + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + cost + Represents the following attribute in the schema: emma:cost + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + grammar-ref + Represents the following attribute in the schema: emma:grammar-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + endpoint-info-ref + Represents the following attribute in the schema: emma:endpoint-info-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + model-ref + Represents the following attribute in the schema: emma:model-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + dialog-turn + Represents the following attribute in the schema: emma:dialog-turn + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + no-input + Represents the following attribute in the schema: emma:no-input + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + uninterpreted + Represents the following attribute in the schema: emma:uninterpreted + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + + + + Defines the OneOf Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:one-of. + + + The following table lists the possible child types: + + <emma:derived-from> + <emma:group> + <emma:info> + <emma:interpretation> + <emma:one-of> + <emma:sequence> + + + + + + Initializes a new instance of the OneOf class. + + + + + Initializes a new instance of the OneOf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OneOf class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the OneOf class from outer XML. + + Specifies the outer XML of the element. + + + + disjunction-type + Represents the following attribute in the schema: disjunction-type + + + + + id + Represents the following attribute in the schema: id + + + + + tokens + Represents the following attribute in the schema: emma:tokens + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + process + Represents the following attribute in the schema: emma:process + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + lang + Represents the following attribute in the schema: emma:lang + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + signal + Represents the following attribute in the schema: emma:signal + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + signal-size + Represents the following attribute in the schema: emma:signal-size + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + media-type + Represents the following attribute in the schema: emma:media-type + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + confidence + Represents the following attribute in the schema: emma:confidence + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + source + Represents the following attribute in the schema: emma:source + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + start + Represents the following attribute in the schema: emma:start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + end + Represents the following attribute in the schema: emma:end + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-uri + Represents the following attribute in the schema: emma:time-ref-uri + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-anchor-point + Represents the following attribute in the schema: emma:time-ref-anchor-point + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + offset-to-start + Represents the following attribute in the schema: emma:offset-to-start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + duration + Represents the following attribute in the schema: emma:duration + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + medium + Represents the following attribute in the schema: emma:medium + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + mode + Represents the following attribute in the schema: emma:mode + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + function + Represents the following attribute in the schema: emma:function + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + verbal + Represents the following attribute in the schema: emma:verbal + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + cost + Represents the following attribute in the schema: emma:cost + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + grammar-ref + Represents the following attribute in the schema: emma:grammar-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + endpoint-info-ref + Represents the following attribute in the schema: emma:endpoint-info-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + model-ref + Represents the following attribute in the schema: emma:model-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + dialog-turn + Represents the following attribute in the schema: emma:dialog-turn + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + + + + Defines the Group Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:group. + + + The following table lists the possible child types: + + <emma:derived-from> + <emma:group> + <emma:group-info> + <emma:info> + <emma:interpretation> + <emma:one-of> + <emma:sequence> + + + + + + Initializes a new instance of the Group class. + + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Group class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + tokens + Represents the following attribute in the schema: emma:tokens + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + process + Represents the following attribute in the schema: emma:process + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + lang + Represents the following attribute in the schema: emma:lang + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + signal + Represents the following attribute in the schema: emma:signal + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + signal-size + Represents the following attribute in the schema: emma:signal-size + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + media-type + Represents the following attribute in the schema: emma:media-type + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + confidence + Represents the following attribute in the schema: emma:confidence + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + source + Represents the following attribute in the schema: emma:source + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + start + Represents the following attribute in the schema: emma:start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + end + Represents the following attribute in the schema: emma:end + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-uri + Represents the following attribute in the schema: emma:time-ref-uri + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-anchor-point + Represents the following attribute in the schema: emma:time-ref-anchor-point + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + offset-to-start + Represents the following attribute in the schema: emma:offset-to-start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + duration + Represents the following attribute in the schema: emma:duration + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + medium + Represents the following attribute in the schema: emma:medium + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + mode + Represents the following attribute in the schema: emma:mode + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + function + Represents the following attribute in the schema: emma:function + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + verbal + Represents the following attribute in the schema: emma:verbal + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + cost + Represents the following attribute in the schema: emma:cost + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + grammar-ref + Represents the following attribute in the schema: emma:grammar-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + endpoint-info-ref + Represents the following attribute in the schema: emma:endpoint-info-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + model-ref + Represents the following attribute in the schema: emma:model-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + dialog-turn + Represents the following attribute in the schema: emma:dialog-turn + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + + + + Defines the Sequence Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:sequence. + + + The following table lists the possible child types: + + <emma:derived-from> + <emma:group> + <emma:info> + <emma:interpretation> + <emma:one-of> + <emma:sequence> + + + + + + Initializes a new instance of the Sequence class. + + + + + Initializes a new instance of the Sequence class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sequence class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Sequence class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + tokens + Represents the following attribute in the schema: emma:tokens + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + process + Represents the following attribute in the schema: emma:process + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + lang + Represents the following attribute in the schema: emma:lang + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + signal + Represents the following attribute in the schema: emma:signal + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + signal-size + Represents the following attribute in the schema: emma:signal-size + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + media-type + Represents the following attribute in the schema: emma:media-type + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + confidence + Represents the following attribute in the schema: emma:confidence + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + source + Represents the following attribute in the schema: emma:source + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + start + Represents the following attribute in the schema: emma:start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + end + Represents the following attribute in the schema: emma:end + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-uri + Represents the following attribute in the schema: emma:time-ref-uri + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + time-ref-anchor-point + Represents the following attribute in the schema: emma:time-ref-anchor-point + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + offset-to-start + Represents the following attribute in the schema: emma:offset-to-start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + duration + Represents the following attribute in the schema: emma:duration + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + medium + Represents the following attribute in the schema: emma:medium + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + mode + Represents the following attribute in the schema: emma:mode + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + function + Represents the following attribute in the schema: emma:function + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + verbal + Represents the following attribute in the schema: emma:verbal + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + cost + Represents the following attribute in the schema: emma:cost + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + grammar-ref + Represents the following attribute in the schema: emma:grammar-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + endpoint-info-ref + Represents the following attribute in the schema: emma:endpoint-info-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + model-ref + Represents the following attribute in the schema: emma:model-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + dialog-turn + Represents the following attribute in the schema: emma:dialog-turn + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + + + + Defines the GroupInfo Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:group-info. + + + + + Initializes a new instance of the GroupInfo class. + + + + + Initializes a new instance of the GroupInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the GroupInfo class from outer XML. + + Specifies the outer XML of the element. + + + + ref + Represents the following attribute in the schema: ref + + + + + + + + Defines the Derivation Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:derivation. + + + The following table lists the possible child types: + + <emma:group> + <emma:interpretation> + <emma:one-of> + <emma:sequence> + + + + + + Initializes a new instance of the Derivation class. + + + + + Initializes a new instance of the Derivation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Derivation class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Derivation class from outer XML. + + Specifies the outer XML of the element. + + + + + + + Defines the Grammar Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:grammar. + + + + + Initializes a new instance of the Grammar class. + + + + + id + Represents the following attribute in the schema: id + + + + + ref + Represents the following attribute in the schema: ref + + + + + + + + Defines the Model Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:model. + + + + + Initializes a new instance of the Model class. + + + + + Initializes a new instance of the Model class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Model class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + ref + Represents the following attribute in the schema: ref + + + + + + + + Defines the EndPointInfo Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:endpoint-info. + + + The following table lists the possible child types: + + <emma:endpoint> + + + + + + Initializes a new instance of the EndPointInfo class. + + + + + Initializes a new instance of the EndPointInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndPointInfo class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndPointInfo class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + + + + Defines the EndPoint Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:endpoint. + + + + + Initializes a new instance of the EndPoint class. + + + + + Initializes a new instance of the EndPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndPoint class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the EndPoint class from outer XML. + + Specifies the outer XML of the element. + + + + id + Represents the following attribute in the schema: id + + + + + endpoint-role + Represents the following attribute in the schema: emma:endpoint-role + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + endpoint-address + Represents the following attribute in the schema: emma:endpoint-address + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + message-id + Represents the following attribute in the schema: emma:message-id + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + port-num + Represents the following attribute in the schema: emma:port-num + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + port-type + Represents the following attribute in the schema: emma:port-type + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + endpoint-pair-ref + Represents the following attribute in the schema: emma:endpoint-pair-ref + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + service-name + Represents the following attribute in the schema: emma:service-name + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + media-type + Represents the following attribute in the schema: emma:media-type + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + medium + Represents the following attribute in the schema: emma:medium + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + mode + Represents the following attribute in the schema: emma:mode + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + + + + Defines the Node Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:node. + + + The following table lists the possible child types: + + <emma:info> + + + + + + Initializes a new instance of the Node class. + + + + + Initializes a new instance of the Node class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Node class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Node class from outer XML. + + Specifies the outer XML of the element. + + + + node-number + Represents the following attribute in the schema: node-number + + + + + confidence + Represents the following attribute in the schema: emma:confidence + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + cost + Represents the following attribute in the schema: emma:cost + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + + + + Defines the Arc Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:arc. + + + The following table lists the possible child types: + + <emma:info> + + + + + + Initializes a new instance of the Arc class. + + + + + Initializes a new instance of the Arc class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Arc class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Arc class from outer XML. + + Specifies the outer XML of the element. + + + + from + Represents the following attribute in the schema: from + + + + + to + Represents the following attribute in the schema: to + + + + + start + Represents the following attribute in the schema: emma:start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + end + Represents the following attribute in the schema: emma:end + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + offset-to-start + Represents the following attribute in the schema: emma:offset-to-start + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + duration + Represents the following attribute in the schema: emma:duration + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + confidence + Represents the following attribute in the schema: emma:confidence + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + cost + Represents the following attribute in the schema: emma:cost + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + lang + Represents the following attribute in the schema: emma:lang + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + medium + Represents the following attribute in the schema: emma:medium + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + mode + Represents the following attribute in the schema: emma:mode + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + source + Represents the following attribute in the schema: emma:source + + + xmlns:emma=http://www.w3.org/2003/04/emma + + + + + + + + Defines the Emma Class. + This class is available in Office 2007 and above. + When the object is serialized out as xml, it's qualified name is emma:emma. + + + The following table lists the possible child types: + + <emma:derivation> + <emma:endpoint-info> + <emma:grammar> + <emma:group> + <emma:info> + <emma:interpretation> + <emma:model> + <emma:one-of> + <emma:sequence> + + + + + + Initializes a new instance of the Emma class. + + + + + Initializes a new instance of the Emma class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Emma class with the specified child elements. + + Specifies the child elements. + + + + Initializes a new instance of the Emma class from outer XML. + + Specifies the outer XML of the element. + + + + version + Represents the following attribute in the schema: version + + + + + + + + Defines the EndPointRoleValues enumeration. + + + + + Creates a new EndPointRoleValues enum instance + + + + + source. + When the item is serialized out as xml, its value is "source". + + + + + sink. + When the item is serialized out as xml, its value is "sink". + + + + + reply-to. + When the item is serialized out as xml, its value is "reply-to". + + + + + router. + When the item is serialized out as xml, its value is "router". + + + + + Defines the MediumValues enumeration. + + + + + Creates a new MediumValues enum instance + + + + + acoustic. + When the item is serialized out as xml, its value is "acoustic". + + + + + tactile. + When the item is serialized out as xml, its value is "tactile". + + + + + visual. + When the item is serialized out as xml, its value is "visual". + + + + + Defines the AnchorPointValues enumeration. + + + + + Creates a new AnchorPointValues enum instance + + + + + start. + When the item is serialized out as xml, its value is "start". + + + + + end. + When the item is serialized out as xml, its value is "end". + + + + + Defines the DisjunctionTypeValues enumeration. + + + + + Creates a new DisjunctionTypeValues enum instance + + + + + recognition. + When the item is serialized out as xml, its value is "recognition". + + + + + understanding. + When the item is serialized out as xml, its value is "understanding". + + + + + multi-device. + When the item is serialized out as xml, its value is "multi-device". + + + + + multi-process. + When the item is serialized out as xml, its value is "multi-process". + + + + + Defines the SpaceProcessingModeValues enumeration. + + + + + Creates a new SpaceProcessingModeValues enum instance + + + + + default. + When the item is serialized out as xml, its value is "default". + + + + + preserve. + When the item is serialized out as xml, its value is "preserve". + + + + diff --git a/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.xml.meta b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.xml.meta new file mode 100644 index 0000000..26713dd --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b439791ebaa8863488902523448a48cf +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1.meta b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1.meta new file mode 100644 index 0000000..bae6240 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab0a22ded8e5db8409aee28037ed6522 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/.signature.p7s b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/.signature.p7s new file mode 100644 index 0000000..ea9e2f5 Binary files /dev/null and b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/.signature.p7s differ diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/DocumentFormat.OpenXml.Framework.nuspec b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/DocumentFormat.OpenXml.Framework.nuspec new file mode 100644 index 0000000..1c63136 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/DocumentFormat.OpenXml.Framework.nuspec @@ -0,0 +1,553 @@ + + + + DocumentFormat.OpenXml.Framework + 3.1.1 + Microsoft + MIT + https://licenses.nuget.org/MIT + icon.png + README.md + https://github.com/dotnet/Open-XML-SDK + https://raw.githubusercontent.com/dotnet/Open-XML-SDK/master/icon.png + The Open XML SDK provides tools for working with Office Word, Excel, and PowerPoint documents. It supports scenarios such as: + +- High-performance generation of word-processing documents, spreadsheets, and presentations. +- Populating content in Word files from an XML data source. +- Splitting up (shredding) a Word or PowerPoint file into multiple files, and combining multiple Word/PowerPoint files into a single file. +- Extraction of data from Excel documents. +- Searching and replacing content in Word/PowerPoint using regular expressions. +- Updating cached data and embedded spreadsheets for charts in Word/PowerPoint. +- Document modification, such as removing tracked revisions or removing unacceptable content from documents. + # Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [3.1.1] - 2024-10-15 + +### Fixed + +- Updated System.IO.Packaging and other dependencies (#1794, #1795, #1796, #1782, #1808) +- Fixed add c16:uniqueId to several chart complex types (#1762) +- Fixed <remarks> rather than <remark> in the documentation comments (#1775) + +## [3.1.0] - 2024-07-30 + +### Added +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2024.PivotAutoRefresh` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2024.PivotDynamicArrays` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2023.DataSourceVersioning` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2023.ExternalCodeService` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2023.MsForms` namespace +- Added `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2023.Pivot2023Calculation` namespace + +### Fixed + +- Fixed issue where `OpenXmlUnknownElement` is returned instead of `CommentPropertiesExtension` (#1751) +- Fixed issue where `OpenXmlWriter` is unable to write `SharedStringTablePart` (#1755) + +## [3.0.2] - 2024-03-14 + +### Fixed + +- Fixed issue where temp files were shareable and not deleted on close (#1658) + +## [3.0.1] - 2024-01-09 + +### Fixed + +- Fixed issue where document type would not be correct unless content type was checked first (#1625) +- Added check to only seek on packages where it is supported (#1644) +- If a malformed URI is encountered, the exception is now the same as v2.x (`OpenXmlPackageException` with an inner `UriFormatException`) (#1644) + +## [3.0.0] - 2023-11-15 + +### Added + +- Packages can now be saved on .NET Core and .NET 5+ if constructed with a path or stream (#1307). +- Packages can now support malformed URIs (such as relationships with a URI such as `mailto:person@`) +- Introduce equality comparers for `OpenXmlElement` (#1476) +- `IFeatureCollection` can now be enumerated and has a helpful debug view to see what features are registered (#1452) +- Add mime types to part creation (#1488) +- `DocumentFormat.OpenXml.Office.PowerPoint.Y2023.M02.Main` namespace +- `DocumentFormat.OpenXml.Office.PowerPoint.Y2022.M03.Main` namespace +- `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2021.ExtLinks2021` namespace + +### Changed + +- When validation finds incorrect part, it will now include the relationship type rather than a class name +- `IDisposableFeature` is now a part of the framework package and is available by default on a package or part. + +### Breaking Changes + +- .NET Standard 1.3 is no longer a supported platform. .NET Standard 2.0 is the lowest .NET Standard supported. +- Core infrastructure is now contained in a new package DocumentFormat.OpenXml.Framework. Typed classes are still in DocumentFormat.OpenXml. This means that you may reference DocumentFormat.OpenXml and still compile the same types, but if you want a smaller package, you may rely on just the framework package. +- Changed type of `OpenXmlPackage.Package` to `DocumentFormat.OpenXml.Packaging.IPackage` instead of `System.IO.Packaging.Package` with a similar API surface +- `EnumValue<T>` now is used to box a struct rather than a `System.Enum`. This allows us to enable behavior on it without resorting to reflection +- Methods on parts to add child parts (i.e. `AddImagePart`) are now implemented as extension methods off of a new marker interface `ISupportedRelationship<T>` +- Part type info enums (i.e. `ImagePartType`) is no longer an enum, but a static class to expose well-known part types as structs. Now any method to define a new content-type/extension pair can be called with the new `PartTypeInfo` struct that will contain the necessary information. +- `OpenXmlPackage.CanSave` is now an instance property (#1307) +- Removed `OpenXmlSettings.RelationshipErrorHandlerFactory` and associated types and replaced with a built-in mechanism to enable this +- `IdPartPair` is now a readonly struct rather than a class +- Renamed `PartExtensionProvider` to `IPartExtensionFeature` and reduced its surface area to only two methods (instead of a full `Dictionary<,>`). The property to access this off of `OpenXmlPackage` has been removed, but may be accessed via `Features.Get<IPartExtensionFeature>()` if needed. +- `OpenXmlPart`/`OpenXmlContainer`/`OpenXmlPackage` and derived types now have internal constructors (these had internal abstract methods so most likely weren't subclassed externally) +- `OpenXmlElementList` is now a struct that implements `IEnumerable<OpenXmlElement>` and `IReadOnlyList<OpenXmlElement>` where available (#1429) +- Individual implementations of `OpenXmlPartReader` are available now for each package type (i.e. `WordprocessingDocumentPartReader`, `SpreadsheetDocumentPartReader`, `PresentationDocumentPartReader`), and the previous `TypedOpenXmlPartReader` has been removed. (#1403) +- Reduced unnecessary target frameworks for packages besides DocumentFormat.OpenXml.Framework (#1471) +- Changed some spelling issues for property names (#1463, #1444) +- `Model3D` now represents the modified xml element tag name `am3d.model3d` (Previously `am3d.model3D`) +- Removed `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.PivotCacheHasRichValuePivotCacheRichInfo` +- Removed `DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData.RichDataPivotCacheGuid` +- Removed unused `SchemaAttrAttribute` (#1316) +- Removed unused `ChildElementInfoAttribute` (#1316) +- Removed `OpenXmlSimpleType.TextValue`. This property was never meant to be used externally (#1316) +- Removed obsolete validation logic from v1 of the SDK (#1316) +- Removed obsoleted methods from 2.x (#1316) +- Removed mutable properties on OpenXmlAttribute and marked as `readonly` (#1282) +- Removed `OpenXmlPackage.Close` in favor of `Dispose` (#1373) +- Removed `OpenXmlPackage.SaveAs` in favor of `Clone` (#1376) + +## [2.20.0] + +### Added + +- Added DocumentFormat.OpenXml.Office.Drawing.Y2022.ImageFormula namespace +- Added DocumentFormat.OpenXml.Office.Word.Y2023.WordML.Word16DU namespace + +### Changed + +- Marked `OpenXmlSimpleType.TextValue` as obsolete. This property was never meant to be used externally (#1284) +- Marked `OpenXmlPackage.Package` as obsolete. This will be an implementation detail in future versions and won't be accessible (#1306) +- Marked `OpenXmlPackage.Close` as obsolete. This will be removed in a later release, use Dispose instead (#1371) +- Marked `OpenXmlPackage.SaveAs` as obsolete as it will be removed in a future version (#1378) + +### Fixed + +- Fixed incorrect file extensions for vbaProject files (#1292) +- Fixed incorrect file extensions for ImagePart (#1305) +- Fixed incorrect casing for customXml (#1351) +- Fixed AddEmbeddedPackagePart to allow correct extensions for various content types (#1388) + +## [2.19.0] - 2022-12-14 + +### Added + +- .NET 6 target with support for trimming (#1243, #1240) +- Added DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotRichData namespace +- Added DocumentFormat.OpenXml.Office.PowerPoint.Y2019.Main.Command namespace +- Added DocumentFormat.OpenXml.Office.PowerPoint.Y2022.Main.Command namespace +- Added Child RichDataPivotCacheGuid to DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition + +### Fixed + +- Removed reflection usage where possible (#1240) +- Fixed issue where some URIs might be changed when cloning or creating copy (#1234) +- Fixed issue in FlatOpc generation that would not read the full stream on .NET 6+ (#1232) +- Fixed issue where restored relationships wouldn't load correctly (#1207) + +## [2.18.0] 2022-09-06 + +### Added + +- Added DocumentFormat.OpenXml.Office.SpreadSheetML.Y2021.ExtLinks2021 namespace (#1196) +- Added durableId attribute to DocumentFormat.OpenXml.Wordprocessing.NumberingPictureBullet (#1196) +- Added few base classes for typed elements, parts, and packages (#1185) + +### Changed + +- Adjusted LICENSE.md to conform to .NET Foundation requirements (#1194) +- Miscellaneous changes for better perf for internal services + +## [2.17.1] - 2022-06-28 + +### Removed + +- Removed the preview namespace DocumentFormat.OpenXml.Office.Comments.Y2020.Reactions because this namespace will currently create invalid documents. + +### Fixed + +- Restored the PowerPointCommentPart relationship to PresentationPart. + +### Deprecated + +- The relationship between the PowerPointCommentPart and the PresentationPart is deprecated and will be removed in a future version. + +## [2.17.0] - Unreleased + +### Added + +- Added DocumentFormat.OpenXml.Office.Comments.Y2020.Reactions namespace (#1151) +- Added DocumentFormat.OpenXml.Office.SpreadSheetML.Y2022.PivotVersionInfo namespace (#1151) + +### Fixed + +- Moved PowerPointCommentPart relationship to SlidePart (#1137) + +### Updated + +- Removed public API analyzers in favor of EnablePackageValidation (#1154) + +## [2.16.0] - 2022-03-14 + +### Added + +- Added method `OpenXmlPart.UnloadRootElement` that will unload the root element if it is loaded (#1126) + +### Updated + +- Schema code generation was moved to the SDK project using C# code generators + +Thanks to the following for their contribution: + +@f1nzer + +## [2.15.0] - 2021-12-16 + +### Added + +- Added samples for strongly typed classes and Linq-to-XML in the `./samples` directory (#1101, #1087) +- Shipping additional libraries for some additional functionality in `DocumentFormat.OpenXml.Features` and `DocumentFormat.OpenXml.Linq`. See documentation in repo for additional details. +- Added extension method to support getting image part type (#1082) +- Added generated classes and `FileFormatVersions.Microsoft365` for new subscription model types and constraints (#1097). + +### Fixed + +- Fixed issue for changed mime type `model/gltf.binary` (#1069) +- DocumentFormat.OpenXml.Office.Drawing.ShapeTree is now available only in Office 2010 and above, not 2007. +- Correctly serialize `new CellValue(bool)` values (#1070) +- Updated known namespaces to be generated via an in-repo source generator (#1092) +- Some documentation issues around `FileFormatVersions` enum + +Thanks to the following for their contributions: + +@ThomasBarnekow +@stevenhansen +@JaimeStill +@jnyrup + +## [2.14.0] - 2021-10-28 + +### Added + +- Added generated classes for Office 2021 types and constraints (#1030) +- Added `Features` property to `OpenXmlPartContainer` and `OpenXmlElement` to enable a per-part or per-document state storage +- Added public constructors for `XmlPath` (#1013) +- Added parts for Rich Data types (#1002) +- Added methods to generate unique paragraph ids (#1000) + +Thanks to the following for their contributions: + +@rmboggs +@ThomasBarnekow + +## [2.13.1] - 2021-08-17 + +### Fixed + +- Fixed some nullability annotations that were incorrectly defined (#953, #955) +- Fixed issue that would dispose a `TextReader` when creating an `XmlReader` under certain circumstances (#940) +- Fixed a documentation type (#937) +- Fixed an issue with adding additional children to data parts (#934) +- Replaced some documentation entries that were generic values with helpful comments (#992) +- Fixed a regression in AddDataPartRelationship (#954) + +Thanks to the following for their contributions: + +@ThomasBarnekow +@sorensenmatias +@lklein53 +@lindexi + +## [2.13.0] - 2021-05-13 + +### Added + +- Additional O19 types to match Open Specifications (#916) +- Added generated classes for Office 2019 types and constraints (#882) +- Added nullability attributes (#840, #849) +- Added overload for `OpenXmlPartReader` and `OpenXmlReader.Create(...)` to ignore whitespace (#857) +- Added `HexBinaryValue.TryGetBytes(...)` and `HexBinaryValue.Create(byte[])` to manage the encoding and decoding of bytes (#867) +- Implemented `IEquatable<IdPartPair>` on `IdPartPair` to fix equality implementation there and obsoleted setters (#871) + +### Fixed + +- Fixed serialization of `CellValue` constructors to use invariant cultures (#903) +- Fixed parsing to allow exponents for numeric cell values (#901) +- Fixed massive performance bottleneck when `UniqueAttributeValueConstraint` is involved (#924) + +### Deprecated + +- Deprecated Office2013.Word.Person.Contact property. It no longer persists and will be removed in a future version (#912) + +Thanks to the following for their contributions: + +@lklein53 +@igitur + +## [2.12.3] - 2021-02-24 + +### Fixed + +- Fixed issue where `CellValue` may validate incorrectly for boolean values (#890) + +## [2.12.2] - 2021-02-16 + +### Fixed + +- Fixed issue where `OpenSettings.RelationshipErrorHandlerFactory` creates invalid XML if the resulting URI is smaller than the input (#883) + +## [2.12.1] - 2021-01-11 + +### Fixed + +- Fixed bug where properties on `OpenXmlCompositeElement` instances could not be set to null to remove element (#850) +- Fixed `OpenXmlElement.RawOuterXml` to properly set null values without throwing (#818) +- Allow rewriting of all malformed URIs regardless of target value (#835) + +## [2.12.0] - 2020-12-09 + +### Added + +- Added `OpenSettings.RelationshipErrorHandlerFactory` to provide a way to handle URIs that break parsing documents with malformed links (#793) +- Added `OpenXmlCompositeElement.AddChild(OpenXmlElement)` to add children in the correct order per schema (#774) +- Added `SmartTagClean` and `SmartTagId` in place of `SmtClean` and `SmtId` (#747) +- Added `OpenXmlValidator.Validate(..., CancellationToken)` overrides to allow easier cancellation of long running validation on .NET 4.0+ (#773) +- Added overloads for `CellValue` to take `decimal`, `double`, and `int`, as well as convenience methods to parse them (#782) +- Added validation for `CellType` for numbers and date formats (#782) +- Added `OpenXmlReader.GetLineInfo()` to retrieve `IXmlLineInfo` of the underlying reader if available (#804) + +### Fixed + +- Fixed exception that would be thrown if attempting to save a document as FlatOPC if it contains SVG files (#822) +- Added `SchemaAttrAttribute` attributes back for backwards compatibility (#825) + +### Removed + +- Removed explicit reference to `System.IO.Packaging` on .NET 4.6 builds (#774) + +## [2.11.3] - 2020-07-17 + +### Fixed + +- Fixed massive performance bottleneck when `IndexReferenceConstraint` and `ReferenceExistConstraint` are involved (#763) +- Fixed `CellValue` to only include three most signficant digits on second fractions to correct issue loading dates (#741) +- Fixed a couple of validation indexing errors that might cause erroneous validation errors (#767) +- Updated internal validation system to not use recursion, allowing for better short-circuiting (#766) + +## [2.11.2] - 2020-07-10 + +### Fixed + +- Fixed broken source link (#749) +- Ensured compilation is deterministic (#749) +- Removed extra file in NuGet package (#749) + +## [2.11.1] - 2020-07-10 + +### Fixed + +- Ensure .NET Framework builds pass PEVerify (#744) +- `OpenXmlPartContainer.DeletePart` no longer throws an exception if there isn't a match for the identifier given (#740) +- Mark obsolete members to not show up with Intellisense (#745) +- Fixed issue with `AttributeRequiredConditionToValue` semantic constraint where validation could fail on correct input (#746) + +## [2.11.0] - 2020-05-21 + +### Added + +- Added `FileFormatVersions.2019` enum (#695) +- Added `ChartSpace` and chart elements for the new 2016 namespaces. This allows the connecting pieces for building a chart part with chart styles like "Sunburst" (#687). +- Added `OpenXmlElementFunctionalExtensions.With(...)` extension methods, which offer flexible means for constructing `OpenXmlElement` instances in the context of pure functional transformations (#679) +- Added minimum Office versions for enum types and values (#707) +- Added additional `CompatSettingNameValues` values: `UseWord2013TrackBottomHyphenation`, `AllowHyphenationAtTrackBottom`, and `AllowTextAfterFloatingTableBreak` (#706) +- Added gfxdata attribue to Arc, Curve, Line, PolyLine, Group, Image, Oval, Rect, and RoundRect shape complex types per MS-OI29500 2.1.1783-1799 (#709) +- Added `OpenXmlPartContainer.TryGetPartById` to enable child part retrieval without exception if it does not exist (#714) +- Added `OpenXmlPackage.StrictRelationshipFound` property that indicates whether this package contains Transitional relationships converted from Strict (#716) + +### Fixed + +- Custom derived parts did not inherit known parts from its parent, causing failure when adding parts (#722) + +### Changed + +- Marked the property setters in `OpenXmlAttribute` as obsolete as structs should not have mutable state (#698) + +## [2.10.1] - 2020-02-28 + +### Fixed + +- Ensured attributes are available when `OpenXmlElement` is initialized with outer XML (#684, #692) +- Some documentation errors (#681) +- Removed state that made it non-thread safe to validate elements under certain conditions (#686) +- Correctly inserts strongly-typed elements before known elements that are not strongly-typed (#690) + +## [2.10.0] - 2020-01-10 + +### Added + +- Added initial Office 2016 support, including `FileFormatVersion.Office2016`, `ExtendedChartPart` and other new schema elements (#586) +- Added .NET Standard 2.0 target (#587) +- Included symbols support for debugging (#650) +- Exposed `IXmlNamespaceResolver` from `XmlPath` instead of formatted list of strings to expose namespace/prefix mapping (#536) +- Implemented `IComparable<T>` and `IEquatable<T>` on `OpenXmlComparableSimpleValue` to allow comparisons without boxing (#550) +- Added `OpenXmlPackage.RootPart` to easily access the root part on any package (#661) + +### Changed + +- Updated to v4.7.0 of System.IO.Packaging which brings in a number of perf fixes (#660) +- Consolidated data for element children/properties to reduce duplication (#540, #547, #548) +- Replaced opaque binary data for element children constraints with declarative model (#603) +- A number of performance fixes to minimize allocations where possible +- 20% size reduction from 5.5mb to 4.3mb +- The validation subsystem went through a drastic redesign. This may cause changes in what errors are reported. + +### Fixed + +- Fixed some documentation inconsistencies (#582) +- Fixed `ToFlatOpcDocument`, `ToFlatOpcString`, `FromFlatOpcDocument`, and `FromFlatOpcString` to correctly process Alternative Format Import Parts, or "altChunk parts" (#659) + +## [2.9.1] - 2019-03-13 + +### Changed + +- Added a workaround for a .NET Native compiler issue that doesn't support calling `Marshal.SizeOf<T>` with a struct that contains auto-implemented properties (#569) +- Fixed a documentation error (#528) + +## [2.9.0] - 2018-06-08 + +### Added + +- `ListValue` now implements `IEnumerable<T>` (#385) +- Added a `WebExtension.Frozen` and obsoleted misspelled `Fronzen` property (#460) +- Added an `OpenXmlPackage.CanSave` property that indicates whether a platform supports saving without closing the package (#468) +- Simple types (except `EnumValue` and `ListValue`) now implement `IComparable<T>` and `IEquatable<T>` (#487) + +### Changed + +- Removed state that was carried in validators that would hold onto packages when not in use (#390) +- `EnumSimpleType` parsing was improved and uses less allocations and caches for future use (#408) +- Fixed a number of spelling mistakes in documentation (#462) +- When calling `OpenXmlPackage.Save` on .NET Framework, the package is now flushed to the stream (#468) +- Fixed race condition while performing strict translation of attributes (#480) +- Schema data for validation uses a more compact format leading to a reduction in dll size and performance improvements for loading (#482, #483) +- A number of APIs are marked as obsolete as they have simple workarounds and will be removed in the next major change +- Fixed some constraint values for validation that contained Office 2007, even when it was only supported in later versions +- Updated `System.IO.Packaging` to 4.5.0 which fixes some issues on Xamarin platforms as well as minimizes dependencies on .NET Framework + +## [2.8.1] - 2018-01-03 + +### Changed + +- Corrected package license file reference to show updated MIT License + +## [2.8.0] - 2017-12-28 + +### Added + +- Default runtime directive for better .NET Native support. + +### Changed + +- Fixed part saving to be encoded with UTF8 but no byte order mark. This caused some renderers to not be able to open the generated document. +- Fixed exceptions thrown when errors are encountered while opening packages to be consistent across platforms. +- Fixed issue on Mono platforms using System.IO.Packaging NuGet package (Xamarin, etc) when creating a document. +- Fixed manual saving of a package when autosave is false. +- Fixed schema constraint data and standardized serialization across platforms. +- Upgraded to `System.IO.Packaging` version 4.4.0 which fixes some consistency with .NET Framework in opening packages. + +## [2.7.2] - 2017-06-06 + +### Added + +- Package now supports .NET 3.5 and .NET 4.0 in addition to .NET Standard 1.3 and .NET Framework 4.6 + +### Changed + +- Fixed issue where assembly version wasn't set in assembly. + +## [2.7.1] - 2017-01-31 + +### Changed + +- Fixed crash when validation is invoked on .NET Framework with strong-naming enforced. + +## [2.7.0] - 2017-01-24 + +### Added + +- SDK now supports .NET Standard 1.3 + +### Changed + +- Moved to using System.IO.Packaging from dotnet/corefx for .NET Standard 1.3 and WindowsBase for .NET 4.5. +- Cleaned up project build system to use .NET CLI. + +## [2.6.1] - 2016-01-15 + +### Added + +- Added hundreds of XUnit tests. There are now a total of 1333 tests. They take about 20 minutes to run, so be patient. + +## [2.6.0] - 2015-06-29 + +### Added + +- Incorporated a replacement `System.IO.Packaging` that fixes some serious (but exceptional) bugs found in the WindowsBase implementation + +[3.0.1]: https://github.com/dotnet/Open-XML-SDK/compare/v3.0.0...v3.0.1 +[3.0.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.20.0...v3.0.0 +[2.20.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.19.0...v2.20.0 +[2.19.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.18.0...v2.19.0 +[2.18.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.17.1...v2.18.0 +[2.17.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.17.0...v2.17.1 +[2.17.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.16.0...v2.17.0 +[2.16.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.15.0...v2.16.0 +[2.15.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.14.0...v2.15.0 +[2.14.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.14.0-beta1...v2.14.0 +[2.13.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.13.0...v2.13.1 +[2.13.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.13.0...v2.13.0 +[2.12.3]: https://github.com/dotnet/Open-XML-SDK/compare/v2.12.3...v2.12.1 +[2.12.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.12.1...v2.12.0 +[2.12.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.12.0...v2.11.3 +[2.11.3]: https://github.com/dotnet/Open-XML-SDK/compare/v2.11.3...v2.11.2 +[2.11.2]: https://github.com/dotnet/Open-XML-SDK/compare/v2.11.2...v2.11.1 +[2.11.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.11.1...v2.11.0 +[2.11.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.11.0...v2.10.1 +[2.10.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.10.1...v2.10.0 +[2.10.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.10.0...v2.9.1 +[2.9.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.9.1...v2.9.0 +[2.9.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.9.0...v2.8.1 +[2.8.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.8.1...v2.8.0 +[2.8.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.8.0...v2.7.2 +[2.7.2]: https://github.com/dotnet/Open-XML-SDK/compare/v2.7.1...v2.7.2 +[2.7.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.7.0...v2.7.1 +[2.7.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.6.1...v2.7.0 +[2.6.1]: https://github.com/dotnet/Open-XML-SDK/compare/v2.6.0...v2.6.1 +[2.6.0]: https://github.com/dotnet/Open-XML-SDK/compare/v2.5.0...v2.6.0 + © Microsoft Corporation. All rights reserved. + openxml office + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/DocumentFormat.OpenXml.Framework.nuspec.meta b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/DocumentFormat.OpenXml.Framework.nuspec.meta new file mode 100644 index 0000000..dd64afb --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/DocumentFormat.OpenXml.Framework.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 26788ae187e0ecd4db028cb43a5bedb4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/README.md b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/README.md new file mode 100644 index 0000000..3f02268 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/README.md @@ -0,0 +1,122 @@ + +Open XML SDK +============ + +> [!NOTE] +> +> [v3.0.0](https://www.nuget.org/packages/DocumentFormat.OpenXml/3.0.0) refactors and addresses some technical debt while retaining source compatibility as much as possible. You should be able to update your package and recompile with limited changes. However, binary compatibility was not a goal and will break that for some changes which are documented. PRs that introduced such changes are marked with a `breaking-change` label and were added to a list to help migrating to v3.0.0. +> +> Please see the [v3.0.0 milestone](https://github.com/OfficeDev/Open-XML-SDK/milestone/1) for issues and PRs that are included. For discussions, please join us at [this issue](https://github.com/OfficeDev/Open-XML-SDK/issues/1270). + + +> [!IMPORTANT] +> The CI feed URL has changed as of 2 April, 2024. Please update to the new URL if using CI builds. + +[![Downloads](https://img.shields.io/nuget/dt/DocumentFormat.OpenXml.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml) +[![Build Status](https://office.visualstudio.com/OC/_apis/build/status/OpenXmlSdk/OfficeDev.Open-XML-SDK?branchName=main)](https://office.visualstudio.com/OC/_build/latest?definitionId=7420&branchName=main) +[![Backend Status](https://ointprotocol.visualstudio.com/OInteropTools/_apis/build/status/OpenXML-Schemas?branchName=main)](https://ointprotocol.visualstudio.com/OInteropTools/_build/latest?definitionId=21&branchName=main) + +The Open XML SDK provides tools for working with Office Word, Excel, and PowerPoint documents. It supports scenarios such as: + +- High-performance generation of word-processing documents, spreadsheets, and presentations. +- Document modification, such as adding, updating, and removing content and metadata. +- Search and replace content using regular expressions. +- Splitting up (shredding) a file into multiple files, and combining multiple files into a single file. +- Updating cached data and embedded spreadsheets for charts in Word/PowerPoint. + + +# Table of Contents + +- [Packages](#packages) + - [Daily Builds](#daily-builds) + - [Framework Support](#framework-support) +- [Known Issues](#known-issues) +- [Documentation](#documentation) +- [If You Have How-To Questions](#if-you-have-how-to-questions) +- [Related tools](#related-tools) + +# Packages + +The official release NuGet packages for Open XML SDK are on NuGet.org: + +| Package | Download | Prerelease | +|---------|----------|------------| +| DocumentFormat.OpenXml.Framework | [![NuGet](https://img.shields.io/nuget/v/DocumentFormat.OpenXml.Framework.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Framework) | [![NuGet](https://img.shields.io/nuget/vpre/DocumentFormat.OpenXml.Framework.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Framework) | +| DocumentFormat.OpenXml | [![NuGet](https://img.shields.io/nuget/v/DocumentFormat.OpenXml.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml) | [![NuGet](https://img.shields.io/nuget/vpre/DocumentFormat.OpenXml.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml) | +| DocumentFormat.OpenXml.Linq | [![NuGet](https://img.shields.io/nuget/v/DocumentFormat.OpenXml.Linq.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Linq) | [![NuGet](https://img.shields.io/nuget/vpre/DocumentFormat.OpenXml.Linq.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Linq) | +| DocumentFormat.OpenXml.Features | [![NuGet](https://img.shields.io/nuget/v/DocumentFormat.OpenXml.Features.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Features) | [![NuGet](https://img.shields.io/nuget/vpre/DocumentFormat.OpenXml.Features.svg)](https://www.nuget.org/packages/DocumentFormat.OpenXml.Features) | + +## Daily Builds + +The NuGet package for the latest builds of the Open XML SDK is available as a custom feed on an Azure blob. Stable releases here will be mirrored onto NuGet and will be identical. You must set up a [NuGet.config](https://docs.microsoft.com/en-us/nuget/reference/nuget-config-file) file that looks similar to this: + +```xml + + + + + + +``` + +For latests changes, please see the [changelog](CHANGELOG.md) + +## Framework Support + +The package currently supports the following targets: + +- .NET Framework 3.5, 4.0, 4.6 +- .NET Standard 2.0 +- .NET 6.0 + +For details on platform support, including other runtimes such as Mono and Unity, please see the docs at https://docs.microsoft.com/en-us/dotnet/standard/net-standard. + +# Known Issues + +- On .NET Core and .NET 5 and following, ZIP packages do not have a way to stream data. Thus, the working set can explode in certain situations. This is a [known issue](https://github.com/dotnet/runtime/issues/1544). +- On .NET Framework, an `IsolatedStorageException` may be thrown under certain circumstances. This generally occurs when manipulating a large document in an environment with an AppDomain that does not have enough evidence. A sample with a workaround is available [here](/samples/IsolatedStorageExceptionWorkaround). + +# Documentation + +Please see [Open XML SDK](https://learn.microsoft.com/en-us/office/open-xml/open-xml-sdk) for the official documentation. + +# If you have how-to questions + +- [Stack Overflow](http://stackoverflow.com) (tags: **openxml** or **openxml-sdk**) +- How-to samples: + - [Spreadsheet Samples](https://learn.microsoft.com/en-us/office/open-xml/spreadsheet/overview) + - [Presentation Samples](https://learn.microsoft.com/en-us/office/open-xml/presentation/overview) + - [Wordprocessing Samples](https://learn.microsoft.com/en-us/office/open-xml/word/overview) + +# Related tools + +- **[Open XML SDK 2.5 Productivity Tool](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)**: The Productivity Tool provides viewing and code generation compatible with the Open XML SDK 2.5. +- **[Open XML Powertools](https://github.com/EricWhiteDev/Open-Xml-PowerTools)**: This provides example code and guidance for implementing a wide range of Open XML scenarios. +- **[ClosedXml](https://github.com/closedxml/closedxml)**: This library provides a simplified object model on top of the OpenXml SDK for manipulating and creating Excel documents. +- **[OfficeIMO](https://github.com/EvotecIT/OfficeIMO)**: This library provides a simplified object model on top of the OpenXml SDK manipulating and creating Word documents. +- **[OpenXML-Office](https://github.com/DraviaVemal/OpenXML-Office)**: This nuget library provides a simplified object model on top of the OpenXml SDK manipulating and creating PPT and Excel documents. +- **[Serialize.OpenXml.CodeGen](https://github.com/rmboggs/Serialize.OpenXml.CodeGen)**: This is a tool that converts an OpenXml document into the .NET code required to create it. +- **[Html2OpenXml](https://github.com/onizet/html2openxml)**: This is a tool that takes HTML and converts it to an OpenXml document. +- **[DocxToSource](https://github.com/rmboggs/DocxToSource)**: This is a tool designed to be a replacement for the old OpenXML SDK Productivity Tool. +- **[OOXML Viewer](https://github.com/yuenm18/ooxml-viewer-vscode)**: This is an extension for Visual Studio Code to View and Edit the xml parts of an Office Open XML file and to view a diff with the previous version of an OOXML part when saved from an outside program. Search "OOXML" in the VS Code extensions tab or download it from the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=yuenm18.ooxml-viewer) +- **[ShapeCrawler](https://github.com/ShapeCrawler/ShapeCrawler)**: This library provides a simplified object model on top of the OpenXml SDK to manipulate PowerPoint documents. +- **[OOXML Validator](https://github.com/mikeebowen/ooxml-validator-vscode)**: VS Code extension to validate Office Open XML files. Search "OOXML" in the VS Code extensions tab or download it from the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=mikeebowen.ooxml-validator-vscode) + +# How can I contribute? + +We welcome contributions! Many people all over the world have helped make this project better. + +- [Contributing](./CONTRIBUTING.md) explains what kinds of contributions we welcome + +# Reporting security issues and security bugs + +Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the [Security TechCenter](https://www.microsoft.com/en-us/msrc/faqs-report-an-issue?rtc=1). + +# .NET Foundation +The Open XML SDK is a [.NET Foundation](https://dotnetfoundation.org/projects) project. + +This project has adopted the code of conduct defined by the [Contributor Covenant](https://www.contributor-covenant.org/) to clarify expected behavior in our community. For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/about/code-of-conduct). + +# License + +The Open XML SDK is licensed under the [MIT](./LICENSE) license. diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/README.md.meta b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/README.md.meta new file mode 100644 index 0000000..8c70025 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e13e86285dd3b284286fa900247fbba7 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/icon.png b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/icon.png new file mode 100644 index 0000000..33c4b56 Binary files /dev/null and b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/icon.png differ diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/icon.png.meta b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/icon.png.meta new file mode 100644 index 0000000..93b19ae --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/icon.png.meta @@ -0,0 +1,136 @@ +fileFormatVersion: 2 +guid: a4531285b05ca44479cec8551be8d60e +TextureImporter: + internalIDToNameTable: + - first: + 213: 6934086728263231946 + second: icon_0 + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: icon_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac961e71423da3060800000000000000 + internalID: 6934086728263231946 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib.meta b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib.meta new file mode 100644 index 0000000..9a4d25e --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 739fff5df34d1714683aa63379f74997 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0.meta b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0.meta new file mode 100644 index 0000000..a022564 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c63198c399464243987b4586fc98461 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..2b4014c Binary files /dev/null and b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll differ diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll.meta b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll.meta new file mode 100644 index 0000000..12e10b1 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: a0cbd15f97881bd46ba09a5e4a93acbe +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml new file mode 100644 index 0000000..67fff89 --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml @@ -0,0 +1,9358 @@ + + + + DocumentFormat.OpenXml.Framework + + + + + Represents the mc:AlternateContent element of markup + compatibility. + + + + + Initializes a new instance of the AlternateContent + class. + + + + + Initializes a new instance of the AlternateContent + class by using the supplied IEnumerable elements. + + + Represents all child elements. + + + + + Initializes a new instance of the AlternateContent + class by using the supplied OpenXmlElement elements. + + + Represents all child elements. + + + + The outer XML of the element. + + + Initializes a new instance of the AlternateContent + class by using the supplied string. + + + + + Gets a value that represents the markup compatibility + namespace. + + + + + Gets a value that represents the tag name of the + AlternateContent element. + + + + + + + + Appends a new child of type T:DocumentFormat.OpenXml.AlternateContentChoice + to the current element. + + + + + + + Appends a new child of type T:DocumentFormat.OpenXml.AlternateContentFallback + to the current element. + + + + + + + + + + Defines an mc:Choice element in mc:AlternateContent. + + + + + Initializes a new instance of the + AlternateContentChoice class. + + + + + Initializes a new instance of the + AlternateContentChoice class by using the supplied + IEnumerable elements. + + + Represents all child elements. + + + + + Initializes a new instance of the + AlternateContentChoice class by using the supplied + OpenXmlElement elements. + + + Represents all child elements. + + + + + The outer XML of the element. + + + Initializes a new instance of the + AlternateContentChoice class by using the supplied + string. + + + + + Gets a value that represents the tag name of the + Choice element. + + + + + Gets the local name of the Choice element. + + + + + Gets or sets a whitespace-delimited list of namespace prefixes that identify the + namespaces a markup consumer needs in order to understand and select that + Choice and process the content. + + + + The cloned node. + + When a node is overridden in a derived class, CloneNode creates a duplicate + of the node. + + + True to recursively clone the subtree under the specified node; False + to clone only the node itself. + + + + + Defines a mc:Fallback element in mc:AlternateContent. + + + + + Initializes a new instance of the AlternateContentFallback class. + + + + + Initializes a new instance of the AlternateContentFallback class + by using the supplied IEnumerable elements. + + + Represents all child elements. + + + + + Initializes a new instance of the AlternateContentFallback class + by using the supplied OpenXmlElement elements. + + + Represents all child elements. + + + + The outer XML of the element. + + Initializes a new instance of the AlternateContentFallback class + by using the supplied string. + + + + + Gets a value that represents the tag name of the AlternateContentFallback element. + + + + The cloned node. + + When a node is overridden in a derived class, CloneNode creates a + duplicate of the node. + + + True to recursively clone the subtree under the specified node; False + to clone only the node itself. + + + + + A delegate for initializing a package. + + + + + Defines a builder to create an initialization pipeline for a . + + Type of the . + + + + Gets a key/value collection that can be used to share data between middleware. + + + + + Add middleware to the package builder. + + The middleware to add. + The . + + + + Create a copy of the builder that will be independent of the original, but retains the existing middleware and properties. + + A new . + + + + Builds the pipeline to initialize the package. Additional calls to this will return the cached pipeline unless + more middleware has been added. + + The a with the registered middleware. + + + + Defines a factory to create a . + + Type of the . + + + + Create an instance of . + + Initializer for the package. + The created package. + + + + A collection of extension methods for opening packages + + + + + Opens the with the given . + + + + + Opens the with the given . + + + + + Opens the . + + + + + Adds the to the builder for initializing a package. + + + + + An enum that describes how a package is going to be opened + + + + + Indicates that a new package will be created. + + + + + Indicates that a package will be opened in read mode. + + + + + Indicates that a package will be opened in read/write mode. + + + + + A collection of extension methods to track schema usage + + + + + This method enables tracking ability to see what parts and roots are created. In order to better support AOT scenarios, + an empty package with no knowledge of any parts would be constructed and required parts would be added via additional builders. + The debug information gathered with this may be helpful in identifying which parts are required to open packages. + + + + + Gets the shared for the builder, or creates a new one if it is not available. + + + + + A collection of extensions to add a template as part of the . + + + + + Adds a template to the current . + + + + + Represents arguments for element events. + + + + + Initializes a new instance of the ElementEventArgs class using the + supplied elements. + + + The element that caused the event. + + + The parent element of the element that caused the event. + + + + + Gets the element that caused the event. + + + + + Gets the parent element of the element that caused the event. + + + + + Equality comparer for determining value equality for . + + + + + Gets the default equality comparer. + + + + + Creates a based on the given options./> + + The options defining equality. + + + + + Gets the options regulating how equality is defined. + + + + + Determines equality for two given . + + First object. + Second object. + + + + + Handles checking of all options that changes the behavior of equality based on options in . + + + + + Calculates a hashcode based on the given object. + + The object to get a hashcode for. + + + + + Options defining the behavior of equality for . + + + + + Gets or sets a value indicating whether extended attributes should be considered when determining equality. + + + + + Gets or sets a value indicating whether mC attributes should be considered when determining equality. + + + + + Gets or sets a value indicating whether namespace should alone be used when comparing identity of elements, skipping prefix lookup to improve performance. + + + + + Gets or sets a value indicating whether elements must be parsed which ensures order of schema is used instead of input ordering. + + + + + Adds an object to the annotation list of this collection. + + The annotation to add to this collection. + + + + Get the first annotation object of the specified type from the current OpenXmlElement element. + + The type of the annotation to retrieve. + The first annotation object with the specified type. + + + + Extensions for using + + + + + Register a disposable for dispose. + + + + + Type of event used for change notification. + + + + + The default type when there is no event. + + + + + When the item is closed. + + + + + When the item is closing. + + + + + When the item is deleting. + + + + + When the item is deleted. + + + + + When the item is being created. + + + + + When the item is created. + + + + + When the item is being removed. + + + + + When the item is removed. + + + + + When the item is reloading. + + + + + When the item is reloaded. + + + + + When the item is being saved. + + + + + When the item is saved. + + + + + When the item is being added. + + + + + When the item is added. + + + + + Represents a collection of features. + + + + + Initializes a new instance of . + + + + + Initializes a new instance of with the specified initial capacity. + + The initial number of elements that the collection can contain. + is less than 0 + + + + Initializes a new instance of with the specified defaults. + + The feature defaults. + Marks the collection as readonly or not. + + + + + + + + + + + + + + + + + + + + + + Holder for feature event args. + + The type of the argument. + + + + Initializes a new instance of the struct. + + Type of change. + Argument of change. + + + + Gets the event type. + + + + + Gets the argument. + + + + + + + + + + + + + + Methods to help with using . + + + + + Gets a required feature from the supplied collection. + + Feature type. + Features collection to search. + The available feature. + + + + Feature to track items to dispose when the containing package or part is closed. + + + + + Register an action to be called on package or part close. + + Disposable to be called when a package or part is closed. + + + + Feature interface that defines the type of a document and allows for changing it. + + Type that represents the document type. + + + + Gets or sets the type of the document. + + + + + Gets the content type for a given document type. + + Document type. + The content type if known, otherwise null + + + + Gets the document type for a given content type. + + The content type. + The document type if known, otherwise null + + + + Provides logic to change one type to another. Will likely affect . + + Type to change the document to. + + + + Represents a collection of features. + + + + + Gets a value indicating whether the collection can be modified. + + + + + Gets a value that is incremented for each modification and can be used to verify cached results. + + + + + Gets or sets a given feature. Setting a null value removes the feature. + + + The requested feature, or null if it is not present. + + + + Retrieves the requested feature from the collection. + + The feature key. + The requested feature, or null if it is not present. + + + + Sets the given feature in the collection. + + The feature key. + The feature value. + + + + Interface for general feature eventing. + + Type of the argument. + + + + Event to register to listen to any changes. + + + + + Attempts to get the Transitional equivalent namespace. + + Namespace to compare. + An equivalent namespace in Transitional. + Returns true when a Transitional equivalent namespace is found, returns false when it is not found. + + + + Attempts to get the Transitional equivalent relationship. + + Namespace to compare. + An equivalent relationship in Transitional. + Returns true when a Transitional equivalent relationship is found, returns false when it is not. + + + + Try to get the expected namespace if the passed namespace is an obsolete. + + Namespace to compare. + The expected namespace when the passed namespace is an obsolete. + True when the passed namespace is an obsolete and the expected namespace found + + + + A feature to track events around the package. + + + + + A feature to access the backing data. + + + + + Gets the . + + + + + Gets the capabilities of the package. + + + + + Reloads the package. + + File mode to use with reloaded package. If absent, will use original mode. + File access to use with the reloaded package. If absent, will use original access. + + + + An initializer for a package. + + + + + Initializes a package. + + Package to initialize. + + + + A feature to access the current package part. + + + + + Gets the current package part. + + + + + A feature to track events around parts. + + + + + A feature that defines what extensions are used for a given part content type + + + + + Registers a extension to be used for a content type. + + Conent type to register extension for. + Extension to register. + + + + Attempts to retrieve a registered extension for the content type. + + Content type to find extension for. + Registered extension. + Whether an extension was found. + + + + Adds a part to the relationship collection. If an is provided, it will be used, otherwise a random id will be generated. + + Part to add to relationship collection. + Id of part if supplied. + + + + A feature to track events around parts. + + + + + Interface to raise events for . + + Type of argument. + + + + Raise event on underlying event. + + Type of event. + Argument of event. + + + + Feature to describe the schema elements that have been used. + + + + + Gets a collection of root elements that have been requested. + + + + + Gets a collection of relationships that have been requested. + + + + + + + + + + + + + + + + + Values to query the capabilities of a package. + + + + + No capabilities + + + + + Capability that indicates that the package can be saved. + + + + + Capability that indicates that the package can be reloaded. + + + + + Capability that indicates that the package will return the same part and relationship for each call. + + + + + Capability that indicates that the package can handle writing large part streams without memory overhead. + + + + + Capability that indicates that the package can handle malformed uri + + + + + Extensions to add events around lifecycle. + + + + + Adds a feature to track eventing for a package lifecycle events. + + Package to add the feature to. + + + + Extensions to add events around parts. + + + + + Adds a feature to track eventing for a package creating or removing parts. + + Package to add the feature to. + + + + Extensions to add events around part roots. + + + + + Adds a feature to track eventing for package life cycle events. + + Container to add the feature to. + + + + Called from constructors of derived parts to initialize the IFixedContentTypePart interface. All derived parts must be parts that have fixed content type. + + + + + Represents an internal audio reference relationship to a MediaDataPart element. + + + + + Represents the fixed value of the RelationshipType. + + + + + Gets the source relationship type for an audio reference. + + + + + Initializes a new instance of the AudioReferenceRelationship using the supplied + MediaDataPart and relationship ID. + + The target DataPart of the reference relationship. + The relationship ID. + + + + Gets the relationship type for an audio reference. + + + + + A mutable instance of a package relationship used while building the final relationship + + + + + Gets or sets the id of the relationship. + + + + + Gets or sets the relationship type. + + + + + Gets or sets the source URI. + + + + + Gets or sets the target mode. + + + + + Gets or sets the target uri. + + + + + Extensions to enable package cloning. + + + + + Creates an editable clone of this OpenXml package, opened on a + with expandable capacity and using + default OpenSettings. + + The cloned OpenXml package. + + + + Creates a clone of this OpenXml package, opened on the given stream. + The cloned OpenXml package is opened with the same settings, i.e., + FileOpenAccess and OpenSettings, as this OpenXml package. + + + The IO stream on which to open the OpenXml package. + The cloned OpenXml package. + + + + Creates a clone of this OpenXml package, opened on the given stream. + The cloned OpenXml package is opened with the same OpenSettings as + this OpenXml package. + + + The IO stream on which to open the OpenXml package. + In ReadWrite mode. False for Read only mode. + The cloned OpenXml package. + + + + Creates a clone of this OpenXml package, opened on the given stream. + + + The IO stream on which to open the OpenXml package. + In ReadWrite mode. False for Read only mode. + The advanced settings for opening a document. + The cloned OpenXml package. + + + + Creates a clone of this OpenXml package opened from the given file + (which will be created by cloning this OpenXml package). + The cloned OpenXml package is opened with the same settings, i.e., + FileOpenAccess and OpenSettings, as this OpenXml package. + + + The path and file name of the target document. + The cloned document. + + + + Creates a clone of this OpenXml package opened from the given file + (which will be created by cloning this OpenXml package). + The cloned OpenXml package is opened with the same OpenSettings as + this OpenXml package. + + + The path and file name of the target document. + In ReadWrite mode. False for Read only mode. + The cloned document. + + + + Creates a clone of this OpenXml package opened from the given file (which + will be created by cloning this OpenXml package). + + + The path and file name of the target document. + In ReadWrite mode. False for Read only mode. + The advanced settings for opening a document. + The cloned document. + + + + Creates a clone of this OpenXml package, opened on the specified instance + of Package. The clone will be opened with the same OpenSettings as this + OpenXml package. + + + The specified instance of Package. + The cloned OpenXml package. + + + + Creates a clone of this OpenXml package, opened on the specified instance + of Package. + + + The specified instance of Package. + The advanced settings for opening a document. + The cloned OpenXml package. + + + + An enum that describes the version to keep compatibility with. + + + + + Use all the latest version behavior. + + + + + Maintain compatibility with v2.20 if possible + + + + + Maintain compatibility with v3.0 if possible + + + + + Represents the type of part referenced by a . + + + + + Gets the OpenXmlPackage which contains the current part. + + + + + Gets the internal part path in the package. + + + + + Enumerates all s that reference the current data part. + + + + + Returns the content data stream of the current part. + + The content data stream of the current part. + + + + Returns the content stream that was opened using a specified I/O FileMode. + + The I/O mode to be used to open the content stream. + The content stream of the part. + + + + Returns the content stream of the part that was opened by using a specified FileMode and FileAccess. + + The I/O mode to be used to open the content stream. + The access permissions to be used to open the content stream. + The content stream of the part. + + + + Feeds data into the part stream. + The stream of the part will be truncated at first. + + The source stream to be read from. + Thrown when is a null reference. + + + + Gets the content type (MIME type) of the data in the part. + + + + + Gets the internal metro PackagePart. + + + + + Gets the internal path to be used for the part name. + + + + + Gets the file base name to be used for the part name in the package. + + + + + Gets the file extension to be used for the part in the package. + + + + + Indicates whether the object is destroyed (deleted from the package). + + + + + Represents an internal reference relationship to a DataPart element. + + + + + Initializes a new instance of the DataPartReferenceRelationship class using the supplied + DataPart, relationship type, and relationship ID. + + The target DataPart of the reference relationship. + The relationship type of the reference relationship. + The relationship ID. + + + + Gets the referenced target DataPart. + + + + + Initializes the current instance of the DataPartRelationship class. + + The owner that holds the . + The target DataPart of the reference relationship. + The relationship type of the reference relationship. + The relationship ID. + + + + Creates a new instance of the DataPartRelationship class based on the relationship type. + + The owner that holds the . + The target DataPart of the reference relationship. + The relationship type of the reference relationship. + The relationship ID. + + + + Defines a class for all extended parts (Application specific part). + + + + + Initialize a new instance of ExtendedPart. + + + + + + + + + Whether this part is available in a specific version of Office Application. + + The Office file format version. + Always returns false. + + + + Adds a new part. + + The part to be added. + A unique relationship identifier. null to create new id. + The added part. May diff with the passed in part. + Thrown when "subPart" is null reference. + Thrown when the part is no allowed to be added. + Thrown when one instance of same type part already exists and multiple instance of that type is not allowed. + + + + Initialize a new created part + + The part to be initialized. + The content type of the part. + The relationship id. + + + + + + + Represents an external relationship. + + + + + Initializes a new instance of the ExternalRelationship. + + The target uri of the relationship. + The relationship type. + The relationship ID. + + + + Extensions to convert to and from FlatOpc + + + + + Converts an OpenXml package in OPC format to string in Flat OPC format. + + The OpenXml package in Flat OPC format. + + + + Converts an OpenXml package in OPC format to an + in Flat OPC format. + + + + + Gets the 's XML or binary contents as an . + + The package part. + The collection of AlternativeFormatInputPart URIs. + The corresponding . + + + + Represents a hyperlink relationship. + + + + + The source relationship type for hyperlink. Defined as "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink". + + + + + Initializes a new instance of the HyperlinkRelationship. + + The target uri of the hyperlink relationship. + The relationship ID. + Is the URI external. + + + + Gets the relationship type. + + + + + Represents a (RelationshipId, OpenXmlPart) pair. + + + + + Initializes a new instance of the IdPartPair with the specified id and part. + + The relationship ID. + The OpenXmlPart. + + + + Gets the relationship ID in the pair. + + + + + Gets the OpenXmlPart in the pair. + + + + + + + + + + + + + + An abstraction similar to that allows for pass through implementations + + + + + Gets the file access of the package + + + + + Gets the core properties of the package + + + + + Returns a collection of parts for the package + + A collection of parts. + + + + Gets a part for the given . + + Uri of target + Part for given uri. + + + + Indicates whether a part with a given URI is in the package + + The uri of the part. + true if a part with the specified exists in the package; otherwise, false. + + + + Saves the package + + + + + Creates a new part with a given URI, content type, and compression option. + + The URI of the new part. + The content type of the data stream. + The compression option for the data stream. + The new created part. + + + + Deletes a part with a given URI from the package. + + The URI of the part to delete. + + + + Gets the relationships of the package. + + + + + An abstraction for that is easier to override. + + + + + Gets a reference to the containing package. + + + + + Gets the URI for the current part. + + + + + Gets the MIME type of the content stream. + + + + + Gets a collection of relationships. + + + + + Gets the data stream for the part. + + Mode in which to open the stream. + Access mode in which to open the stream. + A stream for the data of the part. + + + + An abstraction of package properties, similar to . + + + + + Gets or sets the title. + + + + + Gets or sets the topic of the contents. + + + + + Gets or sets the primary creator. The identification is environment-specific and + can consist of a name, email address, employee ID, etc. It is + recommended that this value be only as verbose as necessary to + identify the individual. + + + + + Gets or sets a delimited set of keywords to support searching and indexing. This + is typically a list of terms that are not available elsewhere in the + properties. + + + + + Gets or sets the description or abstract of the contents. + + + + + Gets or sets the user who performed the last modification. The identification is + environment-specific and can consist of a name, email address, + employee ID, etc. It is recommended that this value be only as + verbose as necessary to identify the individual. + + + + + Gets or sets the revision number. This value indicates the number of saves or + revisions. The application is responsible for updating this value + after each revision. + + + + + Gets or sets the date and time of the last printing. + + + + + Gets or sets the creation date and time. + + + + + Gets or sets the date and time of the last modification. + + + + + Gets or sets the category. + + + + + Gets or sets a unique identifier. + + + + + Gets or sets the type of content represented, generally defined by a specific + use and intended audience. Example values include "Whitepaper", + "Security Bulletin", and "Exam". (This property is distinct from + MIME content types as defined in RFC 2045.) + + + + + Gets or sets the primary language of the package content. The language tag is + composed of one or more parts: A primary language subtag and a + (possibly empty) series of subsequent subtags, for example, "EN-US". + These values MUST follow the convention specified in RFC 3066. + + + + + Gets or sets the version number. This value is set by the user or by the application. + + + + + Gets or sets the status of the content. Example values include "Draft", "Reviewed", and "Final". + + + + + An interface that defines the relationship between a source and a target part. Similar to but allows full overriding. + + + + + Gets a unique identifier across relationships for the given source. + + + + + Gets the type of the relationship used to uniquely define the role of the relationship. + + + + + Gets a reference to the parent PackagePart to which this relationship belongs. + + + + + Gets a value indicating the interpretations of the "base" of the target uri. + + + + + Gets the uri of the part that this relationship points to. + + + + + A collection of relationships for a of . + + + + + Creates a relationship to a part with a given URI, target mode, relationship type, and (optional) identifier. + + The URI of the target part + Indicates if the target part is internal or external to the package. + A URI that uniquely defines the role of the relationship + A unique XML identifier + The relationship to the specified part. + + + + Deletes the specified relationship. + + The id of the relationship. + + + + Gets a relationship by id. + + Id of relationship + A package relationship + + + + Gets a count of the registered relationships. + + + + + Indicates whether a relationship with a given ID is defined. + + The id of the relationship + true if a relationship exists; otherwise, no. + + + + Defines the interface for tagging a part that can add extensible parts. + + Extensible part type that is supported by the implementing class. + + + + Specifies the mode in which to process the markup compatibility tags in the document. + + + + + Do not process MarkupCompatibility tags. + + + + + Process the loaded parts. + + + + + Process all the parts in the package. + + + + + Represents markup compatibility processing settings. + + + + + Gets the markup compatibility process mode. + + + + + Gets the target file format versions. + + + + + Creates a MarkupCompatibilityProcessSettings object using the supplied process mode and file format versions. + + The process mode. + The file format versions. This parameter is ignored if the value is NoProcess. + + + + Represents a media (Audio, Video) data part in the document. + + + + + + + + + + + + + + Defines part media types. + + + + + Audio Interchange File Format (.aiff) + + + + + MIDI Audio (.mid) + + + + + MP3 (.mp3) + + + + + MP3 Playlist File (.m3u) + + + + + WAV audio (.wav) + + + + + Windows Media Audio File (.wma) + + + + + Mpeg audio (.mpeg) + + + + + Ogg Vorbis (.ogg) + + + + + Advanced Stream Redirector File (.asx) + + + + + Audio Video Interleave File (.avi) + + + + + MPEG 1 System Stream (.mpg) + + + + + MPEG 1 System Stream (.mpeg) + + + + + Windows Media File (.wmv) + + + + + Windows Media Player A/V Shortcut (.wmx) + + + + + Windows Media Redirector (.wvx) + + + + + QuickTime video (.mov) + + + + + Ogg Stream (.ogg) + + + + + VC-1 Stream (.wmv) + + + + + Represents an internal media reference relationship to a MediaDataPart element. + + + + + Represents the fixed value of the RelationshipType. + + + + + Gets the source relationship type for a media reference. + + + + + Initializes a new instance of the MediaReferenceRelationship class using + the supplied MediaDataPart and relationship ID. + + The target DataPart of the reference relationship. + The relationship ID. + + + + Gets the relationship type for a media reference. + + + + + Represents the settings when opening a document. + + + + + Initializes a new instance of the class. + + + + + Gets or sets a value indicating whether to auto save document modifications. + The default value is true. + + + + + Gets or sets a version to keep compat to + + + + + Gets or sets the value of the markup compatibility processing mode. + + + + + Gets or sets a value that indicates the maximum number of allowable characters in an Open XML part. A zero (0) value indicates that there are no limits on the size of the part. A non-zero value specifies the maximum size, in characters. + + + This property allows you to mitigate denial of service attacks where the attacker submits a package with an extremely large Open XML part. By limiting the size of the part, you can detect the attack and recover reliably. + + + + + Represents a base class for strong typed Open XML document classes. + + + + + Initializes a new instance of the OpenXmlPackage class. + + + + + Gets the root part for the package. + + + + + Gets a value indicating whether this package contains Transitional relationships converted from Strict. + + + + + Gets the package properties. + + + + + Gets the FileAccess setting for the document. + The current I/O access settings are: Read, Write, or ReadWrite. + + + + + Gets or sets the compression level for the content of the new part + + + + + Gets a part which provides a mapping from content type to part extension. + + + + + Gets a value that indicates the maximum allowable number of characters in an Open XML part. A zero (0) value indicates that there are no limits on the size + of the part. A non-zero value specifies the maximum size, in characters. + + + This property allows you to mitigate denial of service attacks where the attacker submits a package with an extremely large Open XML part. By limiting the size of a + part, you can detect the attack and recover reliably. + + + + + Gets a value indicating whether saving the package is supported by calling . Some platforms (such as .NET Core), have limited support for saving. + If false, in order to save, the document and/or package needs to be fully closed and disposed and then reopened. + + + + + Gets all the parts in the document package. + + + + + Adds the specified part to the document. + Use the returned part to operate on the part added to the document. + + A class that is derived from the OpenXmlPart class. + The part to add to the document. + The added part in the document. Differs from the part that was passed as an argument. + Thrown when the part is not allowed to be added. + Thrown when the part type already exists and multiple instances of the part type is not allowed. + + + + Deletes all the parts with the specified part type from the package recursively. + + + + + Creates a new part in the document package. + + The content type of the new part. + The added part. + Thrown when is a null reference. + + + + Creates a new part in the document package. + + The content type of the new part. + The part name extension (.dat, etc.) of the new part. + The added part. + Thrown when is a null reference. + Thrown when is a null reference. + + + + Creates a new part in the document package. + + The content type of the new part. + The added part. + + + + Deletes the specified from the document package. + + The to be deleted. + Returns true if the part is successfully removed; otherwise returns false. This method also returns false if the part was not found or the parameter is null. + Thrown when is referenced by another part in the document package. + + + + Thrown if an object is disposed. + + + + + Flushes and saves the content, closes the document, and releases all resources. + + Specify true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Flushes and saves the content, closes the document, and releases all resources. + + + + + Gets the markup compatibility settings applied at loading time. + + + + + Gets a value indicating whether the parts should be saved when disposed. + + + + + Changes the type of the document. + + The type of the document's main part. + The MainDocumentPart will be changed. + + + + Deletes all DataParts that are not referenced by any media, audio, or video reference relationships. + + + + + Saves the contents of all parts and relationships that are contained in the OpenXml package, if is . + Some platforms do not support saving due to limitations in , so please query at runtime to know if + full saving will be supported without closing and disposing of the . + + + + + + + + Represents an Open XML package exception class for errors. + + + + + Initializes a new instance of the OpenXmlPackageException class. + + + + + Initializes a new instance of the OpenXmlPackageException class using the supplied error message. + + The message that describes the error. + + + + Initializes a new instance of the OpenXmlPackageException class using the supplied serialized data. + + The serialized object data about the exception being thrown. + The contextual information about the source or destination. + + + + Initializes a new instance of the OpenXmlPackageException class using the supplied error message and a reference to the inner exception that caused the current exception. + + The error message that indicates the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Extensions for type. + + + + + Traverse parts in the by breadth-first. + + + + + Gets or sets the message string of the event. + + + + + Gets or sets the class name of the part. + + + + + Gets or sets the part that caused the event. + + + + + Gets or sets the part in which to process the validation. + + + + + Gets or sets the DataPartReferenceRelationship that caused the event. + + + + + Represents an abstract base class for all OpenXml parts. + + + + + Create an instance of + + + + + Gets the OpenXmlPackage which contains the current part. + + + + + Gets the internal part path in the package. + + + + + Enumerates all parents that reference this part anywhere in the document. + + + + + Returns the part content data stream. + + The content data stream for the part. + + + + Returns the content stream that was opened using a specified I/O FileMode. + + The I/O mode to be used to open the content stream. + The content stream of the part. + + + + Returns the part content stream that was opened using a specified FileMode and FileAccess. + + The I/O mode to be used to open the content stream. + The access permissions to be used to open the content stream. + The content stream of the part. + + + + Feeds data into the part stream. + The stream of the part will be truncated at first. + + The source stream to be read from. + Thrown when "sourceStream" is a null reference. + + + + Unloads the RootElement. + + The unloaded RootElement + + Releases the DOM so the memory can be GC'ed. + + + + + Gets the content type (MIME type) of the content data in the part. + + + + + Gets the relationship type of the part. + + + + + Gets the root element of the current part. + Returns null when the current part is empty or is not an XML content type. + + + + + Gets the internal metro PackagePart element. + + + + + Gets a value that indicates the maximum allowable number of characters in an Open XML part. A zero (0) value specifies that the part can have an unlimited number of characters. A non-zero value specifies the maximum allowable number of characters in the part. + + + This property allows you to mitigate denial of service attacks where the attacker submits package with extremely large Open XML part. By limiting the size of a part, you can detect the attack and recover reliably. + + + + + Gets a value indicating whether the ContentType for the current part is fixed. + + + + + Determines if the content type agrees with this part's constraints. + + + True if the content type is valid for this part. False otherwise. + + + + Gets or sets the root element field. + + If the part does not have root element defined. + + + + Gets the root element of the current part. + + Returns null if the part is not a defined XML part. + + + + Indicates whether the current part is available in a specific version of an Office Application. + + The Office file format version. + Returns true if the part is defined in the specified version. + + + + Gets a value indicating whether the root element is loaded from the part or it has been set. + + + + + Load the DOM tree. And associate the DOM tree with this part. + Only used for generated part classes which derive from this OpenXmlBasePart. + + The type of the part's root element. + + The ._rootElement will be assigned if the DOM is loaded. + + + + + Set the RootElement to be the given partRootElement. + Only used for generated part classes which derive from this OpenXmlBasePart. + + The given partRootElement. Can be null. + Thrown when the part's root element has already be associated with another OpenXmlPart. + + + + Indicates whether the object is already disposed. + + + + + + + + A used by to unload the root if updated. + + + + + Defines the base class for OpenXmlPackage and OpenXmlPart. + + + + + Initializes OpenXmlPartContainer. + + + + + Gets the children parts IDictionary. + + + + + Deletes the specified reference relationship. + + The reference relationship to be deleted. + Thrown when "referenceRelationship" is null reference. + Thrown when the reference relationship is not referenced by this part. + + + + Deletes the specified reference relationship. + + The relationship ID of the ReferenceRelationship. + Thrown when the "id" parameter is null. + Thrown when there is no ReferenceRelationship with the specified relationship ID. + + + + Gets the specified ReferenceRelationship. + + The relationship ID of the ReferenceRelationship. + Returns the ReferenceRelationship which has the relationship ID. + Thrown when the "id" parameter is null. + Thrown when there is no ReferenceRelationship with the specified relationship ID. + + + + Gets all external relationships. + Hyperlink relationships are not included, use HyperlinkRelationship property to enumerate hyperlink relationships. + + + + + Adds an external relationship. + Do not add hyperlink relationships through this method. Use AddHyperlinkRelationship() instead. + + The relationship type. + The external URI. + An ExternalRelationship with the relationship ID. + Thrown when "relationshipType" or the "externalUri" is null reference. + + + + Adds an external relationship. + Do not add hyperlink relationships through this method. Use AddHyperlinkRelationship() instead. + + The relationship type. + The external URI. + The desired relationship ID. + An ExternalRelationship with the relationship ID. + Thrown when "relationshipType" or the "externalUri" is null reference. + Thrown when the relationship type is hyperlink relationship type (http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink). + + + + Deletes the specified external relationship. + + The external relationship to be deleted. + Thrown when "externalRelationship" is null reference. + Thrown when the external relationship is not referenced by this part. + + + + Deletes the specified ExternalRelationship. + + The relationship ID of the ExternalRelationship. + Thrown when the "id" parameter is null. + Thrown when there is no ExternalRelationship with the specified relationship ID. + + + + Gets the specified ExternalRelationship. + + The relationship ID of the ExternalRelationship. + Returns the ExternalRelationship which has the relationship ID. + Thrown when the "id" parameter is null. + Thrown when there is no ExternalRelationship with the specified relationship ID. + + + + Gets all hyperlink relationships. + + + + + Adds a new hyperlink relationship. + + The URI of the hyperlink. + Is the hyperlink external to the . + An HyperlinkRelationship with the relationship ID. + Thrown when "hyperlinkUri" is null reference. + + + + Adds a new hyperlink relationship. + + The URI of the hyperlink. + Is the hyperlink external to the . + The desired relationship ID. + An HyperlinkRelationship with the relationship ID. + Thrown when "hyperlinkUri" or "id" is null reference. + + + + Gets all relationships. + + + + + Adds a new relationship to the specified . + + The target of the reference relationship. + An new . + Thrown when is null reference. + Thrown when the specified is not in this document. + + + + Adds a new relationship to the specified . + + The target of the reference relationship. + The desired relationship ID. + An new with the relationship ID. + Thrown when is null reference. + Thrown when is null reference. + Thrown when the specified is not in this document. + + + + Adds a new relationship. + + The . + The same . + Thrown when is null reference. + + + + Gets all parts which are relationship targets of this part. + + + + + Gets the child part through the relationship ID. + + The relationship ID of the part. + The part. + Thrown when the part with the specified id does not exist. + + + + Try to get the child part by the relationship ID. + + The relationship ID of the part. + The part. + Return true when the part with the specified id exist, otherwise false + + + + Gets the relationship ID of the part. + + The part. + The relationship ID of the part. + Thrown when "part" is null reference. + Thrown when the part does not exist. + + + + Changes the relationship ID of the part. + + The target part. + The new relationship ID of the part. + The old relationship ID of the part. + Throw when "part" is null reference or the newRelationshipId is null reference. + Thrown when the part does not exist under this part. + Thrown when the specified relationship id is already used by another part. + + + + Adds the part to the document. + Must use the returned part to operate on the part added to the document. + + Derived class from OpenXmlPart. + The part to be added to the document. + The part added to the document. This is different from the passed in part. + Thrown when "part" is null reference. + Thrown when the part is not allowed to be added. + Thrown when one instance of the same type part already exists and multiple instances of that type are not allowed. + + + + Adds the part to the document with a given relationship identifier (ID). + Must use the returned part to operate on the part added to the document + + Derived class from OpenXmlPart. + The part to be added to the document. + A unique relationship identifier. + The part added to the document. This is different from the passed in part. + Thrown when "part" or the "id" is null reference. + Thrown when the part is not allowed to be added. + Thrown when one instance of same type part already exists and multiple instances of that type are not allowed. + + + + Adds a relationship for the specified part to this part. + + The part to add relationship for. + A unique relationship identifier. + Thrown when "part" or the "id" is null reference. + Thrown when the part is no allowed to be added. + Thrown when one instance of same type part already exists and multiple instance of that type is not allowed. + Thrown when the and this part are not in the same OpenXmlPackage. + + + + Adds a relationship for the specified part to this part. + + The part to add a relationship for. + A unique relationship identifier. + A unique relationship identifier. + Thrown when "part" or the "id" is null reference. + Thrown when the part is no allowed to be added. + Thrown when one instance of same type part already exists and multiple instance of that type is not allowed. + Thrown when the and this part are not in the same OpenXmlPackage. + + + + Adds a new part of type T. + + The class of the part. + The added part. + When the part is not allowed to be referenced by this part. + + + + Adds a new part of type T. + + The class of the part. + The relationship id. + The added part. + When the part is not allowed to be referenced by this part. + + + + Adds a new part of type T. + + The class of the part. + The content type of the part. Must match the defined content type if the part is fixed content type. + The relationship id. The id will be automatically generated if this param is null. + The added part. + When the part is not allowed to be referenced by this part. + When the part is fixed content type and the passed in contentType does not match the defined content type. + Thrown when "contentType" is null reference. + Mainly used for adding not-fixed content type part - ImagePart, etc + + + + Adds an extended part ( Application specific part ). + + The relationship type of the part. + The content type of the part. + The desired part name extension in the package. + The new ExtendedPart. + + + + Adds an extended part ( Application specific part ). + + The relationship type of the part. + The content type of the part. + The desired part name extension in the package. + The desired relationship ID. + The new ExtendedPart. + + + + Deletes the specified child part from this part. + + The relationship ID of the part to be deleted. + True if the part is successfully removed; otherwise, false. This method also returns false if the part was not found. + Thrown when "id" is null reference. + + + + Deletes a specified part in the package root layer. + + The part to be deleted. + True if the part is successfully removed; otherwise, false. This method also returns false if the part was not found or the parameter is null. + Thrown when the part is not referenced by this part. + + + + Deletes all the parts which are in the passed in collection from the document. + + The parts to be deleted. + Thrown when "partsToBeDeleted" is null reference. + + + + Adds an object to the annotation list of this PartContainer. + + The annotation to add to this PartContainer. + + + + Get the first annotation object of the specified type from this PartContainer. + + The type of the annotation to retrieve. + The first annotation object of the specified type. + + + + Get the first annotation object of the specified type from this PartContainer. + + The type of the annotation to retrieve. + The first annotation object of the specified type. + + + + Gets a collection of annotations of the specified type for this PartContainer. + + The type of the annotations to retrieve. + An IEnumerable(T) of object that contains the annotations for this PartContainer. + + + + Gets a collection of annotations of the specified type for this PartContainer. + + The Type of the annotations to retrieve. + An IEnumerable(T) of object that contains the annotations for this PartContainer. + + + + Removes the annotations of the specified type from this PartContainer. + + The Type of the annotations to remove. + + + + Removes the annotations of the specified type from this PartContainer. + + The Type of the annotations to remove. + + + + Enumerates all the children parts of the specified type of this part. + + Derived class from OpenXmlPart. + + + + + Adds a new part of type T. + + The class of the part. + The added part. + + + + Adds a new part of type T + + The class of the part. + The content type of the part. + The part relationship id. + The added part. + + + + Initializes a new created part + + The part to be initialized. + The content type of the part. + + + + Initializes a new created part + + The part to be initialized. + The content type of the part. + The relationship id. + + + + Adds a new part. + + The part to be added. + A unique relationship identifier. null to create new id. + The added part. May diff with the passed in part. + Thrown when "subPart" is null reference. + Thrown when the part is no allowed to be added. + Thrown when one instance of same type part already exists and multiple instance of that type is not allowed. + + + + Sets part which is only one in the parent + + + A unique relationship identifier. + The part added to the parent. Different with the passed in part. + + + + Adds the part to the parent. + + + A unique relationship identifier. + The part added to the parent. Different with the passed in part. + + + + Deletes the specified part in the package root layer. + + The relationship ID of the part to be deleted. + true if the part is successfully removed; otherwise, false. This method also returns false if the part was not found. + + + + Deletes all the parts of the specified type. + + + + + Deletes all the parts which is the specified part type from package recursively. + + + + + Removes all child parts of this part. + + + + + Gets the sub part which is the specified relationship type. + + The relationship type of the part. + return null if no one. + Only used for maxOccurence=1 part. + + + + Creates an strong typed OpenXmlPart instance based on the relationship type. For and only for loading. + + The relationship type of the new part. + The created new part. + + + + Gets the internal OpenXmlPackage instance + + + + + Test whether the object is already disposed. + + + + + Gets the features associated with this part. + + + + + Defines a provider which maintains a dictionary where the key is the content type and the value is a part extension. + + + + + Initializes a new instance of the class that is empty. + + + + + Check to make sure the content type and part extension is in the provider. If not, they will be added. + + The content type + Part Extension (".xml") to be used for the part with the specified content type. + Thrown when either parameter is null. + + + + Defines information used in creating a new part. + + + + + Ctor - assign content type and extention. + + + + + Gets content type for the part. + + + + + Gets the file extension for the part. + + + + + List of contentTypes that need to have a '1' appended to the name for the first item in the package. + Section numbers in comments refer to the ISO/IEC 29500 standard. + + + + + Defines a reference relationship. A reference relationship can be internal or external. + + + + + Initializes a new instance of the ReferenceRelationship. + + The source PackageRelationship. + + + + Initializes a new instance of the ReferenceRelationship. + + The relationship type of the relationship. + The target uri of the relationship. + The relationship ID. + A value that indicates whether the target of the relationship is Internal or External to the Package. + + + + Gets the owner that holds the . + + + + + Gets the relationship type. + + + + + Gets a value indicating whether the target of the relationship is Internal or External to the . + + + + + Gets the relationship ID. + + + + + Gets the target URI of the relationship. + + + + + Represents an internal video reference relationship to a MediaDataPart element. + + + + + Represents the fixed value of the RelationshipType. + + + + + Gets the source relationship type for an audio reference. + + + + + Initializes a new instance of the VideoReferenceRelationship class using the supplied + MediaDataPart and relationship ID. + + The target DataPart of the reference relationship. + The relationship ID. + + + + Gets the relationship type for a video reference. + + + + + Attempts to replace the underlying stream so that we can modify it even in readonly situations via a copy + + + + + Determines whether the supplied version is within the known set of versions + + The version to check + True if a known version, otherwise false + + + + Determines if the supplied version is valid for all versions + + The version to check + True if the version is all of the known versions, otherwise false + + + + Combines values for the given version and all versions that come after it + + Version to which all other versions are added + A version instance with and all later versions + + + + Throws if the is not supported in the given version + + Version to check + Part to validate + + + + Throws if the is not supported in the given version + + Version to check + Element to validate + + + + Check if a given version is at least a specified version + + Version to check + Minimum version expected + True if supplied version is at least of the specified version, otherwise false + + + + Determines whether the source FileFormatVersions includes the target FileFormatVersions. + + The source FileFormatVersions to be tested. + The target FileFormatVersions be tested against. + Returns true when (source & target) == target. + + + + Throws an ArgumentOutOfRangeException if the specified FileFormatVersions is not supported. + + The specified FileFormatVersions. + The name of the parameter for ArgumentOutOfRangeException. + + + + Defines the Office Open XML file format version. + + + + + Represents an invalid value which will cause an exception. + + + + + Represents Microsoft Office 2007. + + + + + Represents Microsoft Office 2010. + + + + + Represents Microsoft Office 2013. + + + + + Represents Microsoft Office 2016. + + + + + Represents Microsoft Office 2019. + + + + + Represents Microsoft Office 2021. + + + + + Represents Microsoft 365. + + + + + A lookup that identifies properties on an and caches the schema information + from those elements. + + + + + A structure that defines a namespace. + + + + + Initializes a new instance of the struct. + + + + + Gets the URI of the namespace + + + + + Gets a value indicating whether is empty or not. + + + + + + + + + + + + + + + + + + + + Implicitly convert a string to a namespace. + + + + + A structure that defines a fully qualified name with a namespace and name. + + + + + Gets the namespace of the qualified name. + + + + + Gets the name of the qualified name. + + + + + + + + + + + + + + + + + + + + Gets the relationship type. + + + + + Gets the content type of the part. Some types with fixed content types have + same relationship type but different content type. + + This value is null for non-fixed content type. + + + + Gets a value indicating whether the min occurs > 0, (i.e. is required). + + + + + Gets a value indicating whether max occurs > 1, (i.e. has multiple occurrences). + + + + + Gets the file format version information. + + + + + Test whether the element is a strong typed element - the class is generated by CodeGen. + + The specified element. + True if the class of the element is generated. + + + + This struct represents a way to access elements in a structured way based on its compiled particle. + + + + + Clears any elements that compare as equal based on the schema particles. For example, equivalent choice + items will be removed. + + + + + Gets a value indicating whether the collection has value or not. + + + + + Adds an element into the collection at the appropriate location. + + Element to add. + true if the element was added, and false if not. + + + + Gets whether the exists in the collection. + + The item to search for. + true if the element was found, and false if not. + + + + Checks if two instances are the same. They may not have the exact same sequence, but if they are replaceable, then they are equal. + + + + + + + These extensions are set up so that it is easier to test a against an . + + + + + Gets the Office version of the available property. + + + + + Initializes a new instance of the OfficeAvailabilityAttribute class. + + The Office version where this class or property is available. + If there is more than one version, use bitwise OR to specify multiple versions. + + + + Describes a required item. + + + + + A helpful utility to generate hashcodes. This is in box in .NET Core 2.1 and .NET Standard 2.1 (and later versions) + but this provides support for down-level. This does not implement as sophisticated an algorithm as that version does, + but this should be sufficient for most use cases. + + + + + The exception that is thrown for Markup Compatibility content errors. + + + + + Initializes a new instance of the InvalidMCContentException class. + + + + + Initializes a new instance of the InvalidMCContentException class with a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the InvalidMCContentException class with serialized data. + + The SerializationInfo that holds the serialized object data about the exception being thrown. + The StreamingContext that contains contextual information about the source or destination. + + + + Initializes a new instance of the InvalidMCContentException class with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Defines the Markup Compatibility Attributes. + + + + + Gets or sets a whitespace-delimited list of prefixes, where each + prefix identifies an ignorable namespace. + + + + + Gets or sets a whitespace-delimited list of element-qualified names + that identify the expanded names of elements. The content of the + elements shall be processed, even if the elements themselves are + ignored. + + + + + Gets or sets a whitespace-delimited list of element qualified names + that identify the expanded names of elements. The elements are suggested + by a markup producer for preservation by markup editors, even if + the elements themselves are ignored. + + + + + Gets or sets a whitespace-delimited list of attribute qualified names + that identify expanded names of attributes. The attributes were + suggested by a markup producer for preservation by markup editors. + + + + + Gets or sets a whitespace-delimited list of prefixes that identify + a set of namespace names. + + + + + + + + + + + + + + This method is for MC validation use. Only push Ignorable and ProcessContent. + + + + + + + This method is for MC validation use only. + + + + + This method is called by ParseQNameList() and ParsePrefixList(). + + The value of the attribute. + True to stop parsing; False to continue. + + + + This method is called by ParseIgnorable() and ParseProcessContent(). + + The value of the attribute. + True to stop parsing; False to continue. + + + + The exception that is thrown for Markup Compatibility content errors. + + + + + Initializes a new instance of the InvalidMCContentException class. + + + + + Initializes a new instance of the InvalidMCContentException class with a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the InvalidMCContentException class with serialized data. + + The SerializationInfo that holds the serialized object data about the exception being thrown. + The StreamingContext that contains contextual information about the source or destination. + + + + Initializes a new instance of the InvalidMCContentException class with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Represents an Open XML attribute. + + + + + Initializes a new instance of the OpenXmlAttribute structure using the supplied qualified name, namespace URI, and text value. + + The qualified attribute name. + The namespace URI of the attribute. + The text value of the attribute. + + + + Initializes a new instance of the OpenXmlAttribute structure using the supplied namespace prefix, local name, namespace URI, and text value. + + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI of the attribute. + The text value of the attribute. + + + + Gets the namespace URI of the current attribute. + + + + + Gets the local name of the attribute. + + + + + Gets the namespace prefix of the current attribute. + + + + + Gets the text value of the attribute. + + + + + Gets the qualified name of the attribute. + + + + + Gets the qualified name of the current attribute. + + + + + Determines if this instance of an OpenXmlAttribute structure is equal to the specified instance of an OpenXmlAttribute structure. + + An instance of an OpenXmlAttribute structure. + Returns true if instances are equal; otherwise, returns false. + + + + Determines if two instances of OpenXmlAttribute structures are equal. + + The first instance of an OpenXmlAttribute structure. + The second instance of an OpenXmlAttribute structure. + Returns true if all corresponding members are equal; otherwise, returns false. + + + + Determines if two instances of OpenXmlAttribute structures are not equal. + + The first instance of an OpenXmlAttribute structure. + The second instance of an OpenXmlAttribute structure. + Returns true if some corresponding members are different; otherwise, returns false. + + + + Determines whether the specified Object is a OpenXmlAttribute structure and if so, indicates whether it is equal to this instance of an OpenXmlAttribute structure. + + An Object. + Returns true if obj is an OpenXmlAttribute structure and it is equal to this instance of an OpenXmlAttribute structure; otherwise, returns false. + + + + Gets the hash code for this instance of an OpenXmlAttribute structure. + + The hash code for this instance of an OpenXmlAttribute structure. + + + + Represents the base class for composite elements. + + + + + Initializes a new instance of the OpenXmlCompositeElement class. + + + + + Initializes a new instance of the OpenXmlCompositeElement class using the supplied outer XML. + + The outer XML of the element. + + + + Initializes a new instance of the OpenXmlCompositeElement class using the supplied collection of OpenXmlElement elements. + + A collection of OpenXmlElement elements. + + + + Initializes a new instance of the OpenXmlCompositeElement using the supplied array of OpenXmlElement elements. + + An array of OpenXmlElement elements. + + + + Gets the first child of the current OpenXmlElement element. + + + Returns null (Nothing in Visual Basic) if there is no such OpenXmlElement element. + + + + + Gets the last child of the current OpenXmlElement element. + Returns null (Nothing in Visual Basic) if there is no such OpenXmlElement element. + + + + + + + + + + + + + + Adds the specified element to the element if it is a known child. This adds the element in the correct location according to the schema. + + The OpenXmlElement element to append. + A flag to indicate if the method should throw if the child could not be added. + Success if the element was added, otherwise false. + + + + + + + + + + + + + + + + + + + + + + Removes all of the current element's child elements. + + + + + + + + Saves all of the current node's children to the specified XmlWriter. + + The XmlWriter at which to save the child nodes. + + + + Fires the ElementInserting event. + + The OpenXmlElement element to insert. + + + + Fires the ElementInserted event. + + The OpenXmlElement element to insert. + + + + Fires the ElementRemoving event. + + The OpenXmlElement element to remove. + + + + Fires the ElementRemoved event. + + The OpenXmlElement element to be removed. + + + + Populates the XML into a strong typed DOM tree. + + The XmlReader to read the XML content. + Specifies a load mode that is either lazy or full. + + + + Represents the Open XML document reader class. + + + + + Initializes a new instance of the OpenXmlDomReader class. + + The OpenXmlElement to read. + + + + Initializes a new instance of the OpenXmlDomReader class using the supplied OpenXmlElement and Boolean values. + + The OpenXmlElement to read. + Specify false to indicate to the reader to skip all miscellaneous nodes. The default value is false. + + + + Gets the list of attributes of the current element. + + + + + Gets the namespace declarations of the current element. + + + + + Gets the type of the corresponding strong typed class of the current element. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Move to next element + + true if the next element was read successfully; false if there are no more elements to read. + + + + Move to first child + + true if the first child element was read successfully; false if there are no child elements to read. + Only can be called on element start. Current will move to the end tag if no child element. + + + + Move to next sibling element + + true if the next sibling element was read successfully; false if there are no more sibling elements to read. + Current will move to the end tag of the parent if no more sibling element. + + + + Skips the children of the current node. + + + + + + + + + + + + + + Represents a base class that all elements in an Office Open XML document derive from. + + + Annotations will not be cloned when calling and . + + + + + Gets a for the current element. This feature collection will be read-only, but will inherit features from its parent part and package if available. + + + + + Initializes a new instance of the OpenXmlElement class. + + + + + Initializes a new instance of the OpenXmlElement class using the supplied outer XML of the element. + + The outer XML of the element. + + + + Gets or sets the next element in the linked list. + + + + + Gets a value indicating whether the inner raw xml is parsed. + + + + + Gets or sets the raw OuterXml. + + + + + Gets an array of fixed attributes (attributes that are defined in the schema) without forcing any parsing of the element. + If parsing is required, please use + + + + + Gets an array of fixed attributes which will be parsed out if they are not yet parsed. If parsing is not required, please + use . + + + + + Gets the OpenXmlElementContext of the current element. + + + + + Gets the OpenXmlElementContext from the root element. + + + + + Gets the first child of the OpenXmlElement element. + Returns null (Nothing in Visual Basic) if there is no such OpenXmlElement element. + + + + + Gets the last child of the OpenXmlElement element. + Returns null (Nothing in Visual Basic) if there is no such OpenXmlElement element. + + + + + Gets a value indicating whether the current element has any attributes. + + + + + Gets all extended attributes (attributes not defined in the schema) of the current element. + + + + + Gets a value indicating whether the current element has any child elements. + + + + + Gets all the child nodes of the current element. + + + + + Gets the parent element of the current element. + + + + + Gets the namespace URI of the current element. + + + + + Gets the local name of the current element. + + + + + Gets the namespace prefix of current element. + + + + + Gets all the namespace declarations defined in the current element. Returns an empty enumerator if there is no namespace declaration. + + + + + Gets the qualified name of the current element. + + + + + Gets the qualified name of the current element. + + + + + Gets or sets the concatenated values of the node and all of its children. + + + + + Gets or sets the markup that represents only the child elements of the current element. + + + + + Gets the markup that represents the current element and all of its child elements. + + + + + Gets an Open XML attribute with the specified tag name and namespace URI. + + The tag name. + The namespace URI. + Returns a clone of the OpenXmlAttribute with local name equal to "localName" and namespace URI equal to "namespaceUri". + When the "localName" is empty. + When the element does not have the specified attribute. + + + + Gets a list that contains a copy of all the attributes. + + A list of attributes. Return an empty list if there are no attributes. + The returned list is a non-live copy. + + + + Sets an attribute to the specified element. + If the attribute is a known attribute, the value of the attribute is set. + If the attribute is an extended attribute, the 'openxmlAttribute' is added to the extended attributes list. + + The attribute to be set on the element. + Thrown when the LocalName of the "openxmlAttribute" parameter is null or empty. + Thrown when an attempt to set a namespace declaration is made. + + + + Removes the attribute from the current element. + + The local name of the attribute. + The namespace URI of the attribute. + Thrown when the localName is empty. + + + + Sets a number of attributes to the element. + If an attribute is a known attribute, the value of the attribute is set. + If an attribute is an extended attribute, the 'openxmlAttribute' is added to the extended attributes list. + + The attributes to be set on the element. + + + + Clears all of the attributes, including both known attributes and extended attributes. + + + + + Adds a namespace declaration to the current node. + + The prefix. + The uri. + Thrown if the prefix is already used in the current node. + + + + Removes the namespace declaration for the specified prefix. Removes nothing if there is no prefix. + + + + + + Finds the first child element in type T. + + Type of element. + + + + + Gets the OpenXmlElement element that immediately precedes the current OpenXmlElement element. + Returns null (Nothing in Visual Basic ) if there is no preceding OpenXmlElement element. + + The OpenXmlElement element that immediately precedes the current OpenXmlElement element. + + + + Gets the OpenXmlElement element with the specified type that precedes the current OpenXmlElement. + Returns null (Nothing in Visual Basic) if there is no preceding OpenXmlElement element. + + The OpenXmlElement element with the specified type that precedes the current OpenXmlElement element. + + + + Gets the OpenXmlElement element that immediately follows the current OpenXmlElement element. + Returns null (Nothing in Visual Basic) if there is no next OpenXmlElement element. + + The OpenXmlElement element that immediately follows the current OpenXmlElement element. + + + + Gets the OpenXmlElement element with the specified type that follows the current OpenXmlElement element. + Returns null (Nothing in Visual Basic) if there is no next OpenXmlElement. + + The OpenXmlElement element with the specified type that follows the current OpenXmlElement element. + + + + Enumerates all of the current element's ancestors. + + An IEnumerable object that contains a list of the current OpenXmlElement element's ancestors. + + + + Enumerates only the current element's ancestors that have the specified type. + + The element type. + An IEnumerable object that contains a list of the current OpenXmlElement element's ancestors. + + + + Enumerates only the current element's children that have the specified type. + + The element type. + + + + + Enumerates all of the current element's children. + + + + + + Enumerate all of the current element's descendants of type T. + + The element type. + + + + + Enumerates all of the current element's descendants. + + + + + + Enumerates all of the sibling elements that precede the current element and have the same parent as the current element. + + An IEnumerable object that contains a list of OpenXmlElement elements. + + + + Enumerates all of the sibling elements that follow the current element and have the same parent as the current element. + + An IEnumerable object that contains a list of OpenXmlElement elements. + + + + When overridden in a derived class, creates a duplicate of the node. + + True to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which to save the current node. + + + + Appends each element from a list of elements to the end of the current element's list of child elements. + + The list that contains the OpenXmlElement elements to be appended. + + + + Appends each element from an array of elements to the end of the current element's list of child elements. + + The array of elements to be appended. + + + + Appends the specified element to the end of the current element's list of child nodes. + + The element to append. + The element that was appended. + + + + Inserts the specified element immediately after the specified reference element. + + The element to insert. + The reference element. is placed after . + The element that was inserted. + + + + Inserts the specified element immediately before the specified reference element. + + The element to insert. + The reference element. is placed before . + The element that was inserted. + + + + Inserts the specified element immediately after the current element. + + The new element to insert. + The inserted element. + Thrown when the parameter is a null reference. + Thrown when the parent is a null reference. + + + + Inserts the specified element immediately before the current element. + + The new element to insert. + The inserted element. + Thrown when the parameter is a null reference. + Thrown when the parent is a null reference. + + + + Inserts the specified element at the specified index in the current element's list of child elements. + + The element to insert. + The zero-based index where the element is to be inserted. + The element that was inserted. + Returns nullif equals null. + + + + Inserts the specified element at the beginning of the current element's list of child elements. + + The element to add. + The element that was added. + + + + Removes the specified child element from the current element's list of child elements. + + The child element to remove. + The element that was removed. + + + + Replaces a child element with another child element in the current element's list of child elements. + + The new child element to put in the list. + The child element to replace in the list. + The element that was replaced. + + + + Removes all of the current element's child elements. + + + + + Remove all of the current element's child elements that are of type T. + + + + + Removes the current element from its parent. + + Thrown when the parent is a null reference. + + + + Determines if the current element appears after a specified element in document order. + + The element to compare for order. + Returns true if the current element appears after the specified element in document order; otherwise returns false. + + + + Determines if the current element appears before a specified element in document order. + + The element to compare for order. + Returns true if the current element appears before the specified element in document order; otherwise returns false. + + + + Gets the order of the two specified elements in document order. + + The first element to compare for order. + The second element to compare for order. + + + + + Saves all of the children of the current node to the specified XmlWriter. + + The XmlWriter at which to save the child nodes. + + + + Attempts to set the attribute to a known attribute. + + + + + true if the attribute is a known attribute. + + + + Reads MC attributes from the xmlReader and than pushes MC Context on needed. + This xmlReader will keeps on the element start after this method. + + This method screen all attribute from xmlReader, and then set the xmlReader back to the element start. + Returns true if a MCAttributes is pushed. + + + + If this is a normal node, check mustunderstand attribute at load time + + The XmlReader. + The MarkupCompatibilityAttributes. + The MarkupCompatibilityProcessSettings. + + + + If this is a node in ACB, check mustunderstand after load + + + + + Gets a value that indicates the version in which the current element was introduced. + For strong typed element, the return value will be generated according to the schema. + For , always returns false + For , always returns true + + + + + Adds an object to the current OpenXmlElement element's list of annotations. + + The annotation to add to the current OpenXmlElement element. + + + + Get the first annotation object of the specified type from the current OpenXmlElement element. + + The type of the annotation to retrieve. + The first annotation object of the specified type. + + + + Get the first annotation object of the specified type from the current OpenXmlElement element. + + The type of the annotation to retrieve. + The first annotation object with the specified type. + + + + Gets a collection of annotations with the specified type for the current OpenXmlElement element. + + The type of the annotations to retrieve. + An IEnumerable(T) object that contains the annotations for current OpenXmlElement element. + + + + Gets a collection of annotations with the specified type for the current OpenXmlElement element. + + The type of the annotations to retrieve. + An IEnumerable(T) object that contains the annotations for the current OpenXmlElement element. + + + + Removes the annotations with the specified type from the current OpenXmlElement element. + + The type of the annotations to remove. + + + + Removes the annotations of the specified type from the current OpenXmlElement element. + + The type of the annotations to remove. + + + + Returns an enumerator that iterates through the child collection. + + An IEnumerator object that can be used to iterate through the child collection. + + + + Creates a duplicate of the current node. + + + Cloning an OpenXmlNode copies all attributes and their values, including those generated by the XML processor to represent defaulted attributes. This method recursively clones the node and the subtree underneath it. + Cloning is equivalent to calling CloneNode(true). + + The cloned node. + + + + Indicates whether the specified namespace uri equals @"http://www.w3.org/2000/xmlns/". + + The namespace uri. + True if nsUri == @"http://www.w3.org/2000/xmlns/". + + + + Returns true when the specified element is not an OpenXmlUnknownElement and it is not an OpenXmlMiscNode. + + + + + + + Gets or sets the markup compatibility attributes. Returns null if no markup compatibility attributes are defined for the current element. + + + + + Loads the MC attributes from the xmlReader. + This xmlReader will keeps on the element start after this method. + + This method screen all attribute from xmlReader, and then set the xmlReader back to the element start. + + + + Adds the MC attributes to the "attributes" collection. + + + + + + Finds the corresponding MC attribute from the attribute name. + + + + + + + Resolves the namespace prefix in the context of the current node. + + The prefix to resolve. + The resolved namespace. Returns null (Nothing in Visual Basic) if the prefix cannot be resolved. + + + + Finds the corresponding prefix for a namespace uri in the current element scope. + + The namespace uri. + The corresponding prefix. Returns null (Nothing in Visual Basic) if no prefix is found. + + + + Returns the next sibling element that is not an OpenXmlMiscNode element. + + The next sibling element that is not an OpenXmlMiscNode element. + + + + Returns the first child element that is not an OpenXmlMiscNode element. + + The first child element that is not an OpenXmlMiscNode element. + + + + Gets the root element of the current OpenXmlElement element. + + + Returns the root element if it is an OpenXmlPartRootElement element. Returns the current element if it is an OpenXmlPartRootElement element. + Returns null (Nothing in Visual Basic) if the current element has no parent or the root element is not an OpenXmlPartRootElement element. + + + + + Represents the OpenXml loading context. + + + + + Gets the XmlReaderSettings to be used by internal XmlReader + + + + + Gets or sets load mode + + + + + Gets layers to be full populated, only effective when LoadMode==Lazy. + Start from 0 (populate only the children layer). The magic number of 3 + is currently used, but could potentially be made into a public property + so a user can control this + + + + + Determines whether the namespace uri equals @"http://www.w3.org/2000/xmlns/". + + The namespace uri. + Returns true if nsUri equals @"http://www.w3.org/2000/xmlns/". + + + + Fires the ElementInserting event. + + The OpenXmlElement element to insert. + The parent element. + + + + Fires the ElementInserted event. + + The inserted OpenXmlElement element. + The parent element. + + + + Fires the ElementRemoving event. + + The OpenXmlElement element to remove. + The parent element. + + + + Fires the ElementRemoved event. + + The removed OpenXmlElement element. + The parent element. + + + + Occurs when an element is about to be inserted into the element hierarchy. + + + + + Occurs when an element has been inserted into the element hierarchy. + + + + + Occurs when an element is being removed from the element hierarchy. + + + + + Occurs when an element has been removed from the element hierarchy. + + + + + Static class to hold extension methods for OpenXmlElement. + + + + + Get position index in same type in the ChildElements of it's parent element. + + The OpenxmlElement. + The position index in same type element in parent. + + + + Get the part in which the element is in. + + The element. + The part in which the element is in. Returns null if not in a part. + + + + Gets the URI of the part the element is in. + + The element. + The URI of the part the element is in. Returns null if not in a part. + + + + Get attribute value of the specified attribute. + + + + + + + + + Tries to create an OpenXmlElement from the specified namespace URI and local name. + + The parent element. + The specified file format version. + The namespace URI of the requested child element. + The local name of the requested child element. + A new OpenXmlElement if the parent element can contains a child with the specified namespace and local name. Otherwise, returns null. + + + + Provides extension methods for pure functional transformations. + + + + + Adds child elements or attributes to the given element. + + The element type. + The element. + The content to be added to the element. + The element with the content added to it. + + + + Adds child elements or attributes to the given element. + + The element type. + The element. + The content to be added to the element. + The element with the content added to it. + + + + A struct that helps enumerate the child elements of an + + + + + Creates an instance of . + + + + + + Gets a node at the specified index. + + Index to retrieve the element. + The element if found. + + + + Gets the number of children the element has. + + + + + Gets an for the collection. + + The enumerator. + + + + Gets the first item of type in the children. + + Type to search for. + First instance if found. + + + + + + + + + + An enumerator used for . + + + + + Gets the current for the enumerator. + + + + + Moves the enumerator forward. + + true if it was moved, false otherwise. + + + + Represents the base class from which leaf elements are derived. + + + + + Gets or sets represents a shadow element to hold child elements if there are any. + + + + + Initializes a new instance of the OpenXmlLeafElement class. + + + + + + + + + + + + + + + + + Represents the base class from which leaf elements that have text are derived. + + + + + Initializes a new instance of the OpenXmlLeafTextElement class. + + + + + Initializes a new instance of the OpenXmlLeafTextElement class using the supplied text. + + + + + + Convert the text into value (depends on the type defined in the schema). + + The text to convert. + An OpenXmlSimpleType value. + All generated classes that are derived from this class will generate this method. + + + + + + + + + + + + + Gets or sets the text of the current element. + + + + + + + + + + + OpenXmlLoadMode - load mode, default is Lazy + Full - load all the OpenXmlElements recursively + Lazy (default) - load N layer descendant elements from the current element, lazy load (cache OuterXml) for others + default is populate 3 layers + + + + + Load all the OpenXmlElements recursively + + + + + Load only one layer element, cache OuterXml + + + + + Represents an Open XML non element node (i.e. PT, Comments, Entity, Notation, XmlDeclaration). + + + + + Initializes a new instance of the OpenXmlMiscNode class using the + supplied XmlNodeType value. + + + The XmlNodeType value. + + + + + Initializes a new instance of the OpenXmlMiscNode class using the + supplied XmlNodeType and outer XML values. + + The XmlNodeType value. + The outer XML of the element. + + + + Gets the type of XML node. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Load the out xml from the XmlReader. + + + The XmlReader not be moved. + + + + + + + + + + Represents the Open XML part reader class. + + + + + Initializes a new instance of the OpenXmlPartReader class using the supplied OpenXmlPart class. + + The OpenXmlPart to read. + + + + Initializes a new instance of the class. + + The to read. + Options on how to read the part. + + + + Initializes a new instance of the OpenXmlPartReader class using the supplied OpenXmlPart and Boolean values. + + The OpenXmlPart to read. + Specify false to indicate to the reader to skip all miscellaneous nodes. The default value is false. + + + + Initializes a new instance of the OpenXmlPartReader class using the supplied OpenXmlPart and Boolean values. + + The OpenXmlPart to read. + Specify false to indicate to the reader to skip all miscellaneous nodes. + Specify true to indicate to the reader to ignore insignificant white space. + + + + Initializes a new instance of the class. + + The stream for the part data. + A feature collection used to identify what parts and elements to create. + Options for how to read the . + + + + Gets the encoding of the XML file. + + + Returns null if encoding is not specified in the XML file. + + + + + Gets the standalone property of the XML file. Returns false if there is no "standalone" in the XML declaration stream. + + + + + Gets the list of attributes of the current element. + + + + + Gets the namespace declarations of the current element. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Moves to next element + + true if the next element was read successfully; false if there are no more elements to read. + + + + Move to first child + + true if the first child element was read successfully; false if there are no child elements to read. + Only can be called on element start. Current will move to the end tag if no child element. + + + + Move to next sibling element + + true if the next sibling element was read successfully; false if there are no more sibling elements to read. + Current will move to the end tag of the parent if no more sibling element. + + + + Skips the children of the current node. + + + + + + + + + + + + + + A collection of options for reading part information. + + + + + Gets or sets a value indicating whether miscellaneous nodes are read. + + + + + Gets or sets the maximum characters allowed in a part. + + + + + Gets or sets a value indicating whether whitespace will be ignored. + + + + + Gets or sets a value indicating whether the stream should be closed on the part reader being closed. + + + + + Represents a base class for all root elements. + + + + + Initializes a new instance of the OpenXmlPartRootElement class. + + + + + Initializes a new instance of the OpenXmlPartRootElement class using the supplied OpenXmlPart. + + The OpenXmlPart class. + + + + Initializes a new instance of the OpenXmlPartRootElement class using the supplied outer XML. + + The outer XML of the element. + + + + Initializes a new instance of the OpenXmlPartRootElement class using the supplied list of child elements. + + All child elements. + + + + Initializes a new instance of the OpenXmlPartRootElement class using the supplied array of child elements. + + All child elements + + + + Gets the OpenXmlElementContext. + + + + + Load the DOM tree from the Open XML part. + + The part this root element to be loaded from. + Thrown when the part contains an incorrect root element. + + + + Load the DOM tree from the Open XML part. + + The part this root element to be loaded from. + The stream of the part. + + Returns true when the part stream is loaded successfully into this root element. + Returns false when the part stream does not contain any xml element. + + Thrown when the part stream contains an incorrect root element. + + + + Save the DOM into the OpenXML part. + + + + + Saves the DOM tree to the specified stream. + + + The stream to which to save the XML. + + + + + Gets the part that is associated with the DOM tree. + It returns null when the DOM tree is not associated with a part. + + + + + Saves the data in the DOM tree back to the part. This method can + be called multiple times and each time it is called, the stream + will be flushed. + + + Call this method explicitly to save the changes in the DOM tree. + + Thrown when the tree is not associated with a part. + + + + Reloads the part content into an Open XML DOM tree. This method can + be called multiple times and each time it is called, the tree will + be reloaded and previous changes on the tree are abandoned. + + Thrown when the tree is not associated with a part. + + + + Saves the current node to the specified XmlWriter. + + + The XmlWriter to which to save the current node. + + + + + Gets a value indicating whether the Save method will try write all namespace declaration on the root element. + + + + + Defines the OpenXmlPartWriter. + + + + + Initializes a new instance of the OpenXmlPartWriter. + + The OpenXmlPart to be written to. + + + + Initializes a new instance of the OpenXmlPartWriter. + + The OpenXmlPart to be written to. + The encoding for the XML stream. + + + + Initializes a new instance of the OpenXmlPartWriter. + + The given part stream. + + + + Initializes a new instance of the OpenXmlPartWriter. + + The given part stream. + The encoding for the XML stream. + + + + Writes the XML declaration with the version "1.0". + + + + + Writes the XML declaration with the version "1.0" and the standalone attribute. + + If true, it writes "standalone=yes"; if false, it writes "standalone=no". + + + + Writes out a start element tag of the current element of the OpenXmlReader. And write all the attributes of the element. + + The OpenXmlReader to read from. + + + + Writes out a start element tag of the current element of the OpenXmlReader. And write the attributes in attributes. + + The OpenXmlReader to read from. + The attributes to be written, can be null if no attributes. + + + + Writes out a start element tag of the current element of the OpenXmlReader. And write the attributes in attributes. + + The OpenXmlReader to read from. + The attributes to be written, can be null if no attributes. + The namespace declarations to be written, can be null if no namespace declarations. + + + + Writes out a start tag of the element and all the attributes of the element. + + The OpenXmlElement object to be written. + + + + Writes out a start tag of the element. And write the attributes in attributes. The attributes of the element will be omitted. + + The OpenXmlElement object to be written. + The attributes to be written. + + + + Writes out a start tag of the element. And write the attributes in attributes. The attributes of the element will be omitted. + + The OpenXmlElement object to be written. + The attributes to be written. + The namespace declarations to be written, can be null if no namespace declarations. + + + + Closes one element. + + + + + Writes the given text content. + + The text to be written. + + + + Write the OpenXmlElement to the writer. + + The OpenXmlElement object to be written. + + + + Close the writer. + + + + + Represents the Open XML reader class. + + + + + Initializes a new instance of the OpenXmlReader class. + + + + + Initializes a new instance of the OpenXmlReader class using the supplied Boolean value. + + Specify false to indicate to the reader to skip all miscellaneous nodes. The default value is false. + + + + Creates an OpenXmlReader from the specified OpenXmlPart. + + The OpenXmlPart to read. + The newly created OpenXmlReader. + + + + Creates an OpenXmlReader from the specified OpenXmlPart and Boolean values. + + The OpenXmlPart to read. + Specify false to indicate to the reader to skip all miscellaneous nodes. The default value is false. + The newly created OpenXmlReader. + + + + Creates an OpenXmlReader from the specified OpenXmlPart and Boolean values. + + The OpenXmlPart to read. + Specify false to indicate to the reader to skip all miscellaneous nodes. The default value is false. + Specify true to indicate to the reader to ignore insignificant white space. The default value is true. + The newly created OpenXmlReader. + + + + Creates an OpenXmlReader from the OpenXmlElement (travel the DOM tree). + + The OpenXmlElement to read. + The newly created OpenXmlReader. + + + + Creates an OpenXmlReader from the OpenXmlElement (travel the DOM tree). + + The OpenXmlElement to read. + Specify false to indicate to the reader to skip all miscellaneous nodes. The default value is false. + The newly created OpenXmlReader. + + + + Gets a value indicating whether the OpenXmlReader will read or skip all miscellaneous nodes. + + + + + Gets the encoding of the XML file. + + + Returns null if the encoding is not specified in the XML file. + + + + + Gets the standalone property in the XML declaration of the XML stream. The default value is null. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets the list of attributes of the current element. + + + + + Gets the namespace declarations of the current element. + + + + + Gets the type of the corresponding strongly typed class of the current element. + + + + + Gets a value indicating whether the current node is a miscellaneous XML node (non element). + + and will be false when is true. + + + + Gets a value indicating whether the current node is an element start. + + + + + Gets a value indicating whether the current node is an element end. + + + + + Gets the depth of the current node in the XML document. The depth of the root element is 0. + + + + + Gets a value indicating whether the reader is positioned at the end of the stream. + + + + + Gets the local name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned. + + + + + Gets the namespace prefix associated with the current node. + + + + + Gets an instance of if available for the current reader. + + An object for obtaining information about line info + + + + Moves to read the next element. + + Returns true if the next element was read successfully; false if there are no more elements to read. + + + + Moves to read the first child element. + + Returns true if the first child element was read successfully; false if there are no child elements to read. + This method can only be called on element start. At the current node, the reader will move to the end tag if there is no child element. + + + + Moves to read the next sibling element. + + Returns true if the next sibling element was read successfully; false if there are no more sibling elements to read. + At the current node, the reader will move to the end tag of the parent node if there are no more sibling elements. + + + + Skips the child elements of the current node. + + + + + Loads the element at current cursor. + + The OpenXmlElement that was loaded. + Thrown when the current is the end element. + The new current element is the end of the element after LoadCurrentElement(). + + + + Gets the text of the element if the element is an OpenXmlLeafTextElement. Returns String.Empty for other elements. + + + The text of the element if the element is an OpenXmlLeafTextElement. Returns String.Empty for other elements. + + + + + Closes the reader. + + + + + Thrown if the object is disposed. + + + + + Closes the reader, and releases all resources. + + Specify true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Closes the reader, and releases all resources. + + + + + Represents elements that are not defined in the Office Open XML ECMA standard. + + + + + OpenXmlUnknownElement constructor + + + + + Initializes a new instance of the OpenXmlUnknownElement class using + the supplied element name. + + + The element name. + + + + + Initializes a new instance of the OpenXmlUnknownElement class using + the supplied qualified element name and namespace URI. + + The qualified element name. + The namespace URI of the element. + + + + Initializes a new instance of the OpenXmlUnknownElement class using + the supplied prefix, local name, and namespace URI. + + The namespace prefix of the element. + The local name of the element. + The namespace URI of the element. + + + + + + + + + + + + + + + + + + + Gets the text of the unknown element, only if the unknown element + has only one child that is a text node. + + + + + + + + + + + + + + + + + + + + Extension methods for managing unknown elements + + + + + Creates a new OpenXmlUnknownElement class by using the outer XML. + + Container to create unknown element from. + The outer XML of the element. + A new OpenXmlUnknownElement class. + + + + Defines the OpenXmlWriter. + + + + + Initializes a new instance of the OpenXmlWriter. + + + + + Create an OpenXmlWriter from the OpenXmlPart. + + The OpenXmlPart to be written. + The created OpenXmlWriter instance. + + + + Create an OpenXmlWriter from the OpenXmlPart. + + The OpenXmlPart to be written. + The encoding for the XML stream. + The created OpenXmlWriter instance. + + + + Create an OpenXmlWriter on a given stream. + + The target stream. + The created OpenXmlWriter instance. + + + + Create an OpenXmlWriter on given stream + + The target stream. + The encoding for the XML stream. + The created OpenXmlWriter instance. + + + + Writes the XML declaration with the version "1.0". + + + + + Writes the XML declaration with the version "1.0" and the standalone attribute. + + If true, it writes "standalone=yes"; if false, it writes "standalone=no". + + + + Writes out a start element tag of the current element of the OpenXmlReader. And write all the attributes of the element. + + The OpenXmlReader to read from. + + + + Writes out a start element tag of the current element of the OpenXmlReader. And write the attributes in attributes. + + The OpenXmlReader to read from. + The attributes to be written, can be null if no attributes. + + + + Writes out a start element tag of the current element of the OpenXmlReader. And write the attributes in attributes. + + The OpenXmlReader to read from. + The attributes to be written, can be null if no attributes. + The namespace declarations to be written, can be null if no namespace declarations. + + + + Writes out a start tag of the element and all the attributes of the element. + + The OpenXmlElement object to be written. + + + + Writes out a start tag of the element. And write the attributes in attributes. The attributes of the element will be omitted. + + The OpenXmlElement object to be written. + The attributes to be written. + + + + Writes out a start tag of the element. And write the attributes in attributes. The attributes of the element will be omitted. + + The OpenXmlElement object to be written. + The attributes to be written. + The namespace declarations to be written, can be null if no namespace declarations. + + + + Closes one element. + + + + + Write the OpenXmlElement to the writer. + + The OpenXmlElement object to be written. + + + + When overridden in a derived class, writes the given text content. + + The text to write. + + + + Close the writer. + + + + + Throw if object is disposed. + + + + + Closes the reader, and releases all resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Closes the writer, and releases all resources. + + + + + Extensions to retrieve package details. + + + + + Gets the current for the . + + Current package. + The underlying . + If is null. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to The part cannot be added here.. + + + + + Looks up a localized string similar to Schemas with ParticleType.Any is not supported. + + + + + Looks up a localized string similar to Cannot change the document type.. + + + + + Looks up a localized string similar to Cannot change the document type. The document may be corrupt.. + + + + + Looks up a localized string similar to The element does not allow the specified attribute.. + + + + + Looks up a localized string similar to Cannot load the root element from the part. The part contains invalid data.. + + + + + Looks up a localized string similar to Cannot reload the DOM tree since this element is not associated with an OpenXmlPart.. + + + + + Looks up a localized string similar to Cannot save DOM tree since this element is not associated with an OpenXmlPart.. + + + + + Looks up a localized string similar to Cannot set XML namespace declaration here. Use AddNamespaceDeclaration method instead.. + + + + + Looks up a localized string similar to The OpenXmlValidator cannot validate against AlternateContent, AlternateContentChoice and AlternateContentFallback.. + + + + + Looks up a localized string similar to The OpenXmlValidator cannot validate against OpenXmlMiscNode.. + + + + + Looks up a localized string similar to The OpenXmlValidator cannot validate against OpenXmlUnknownElement.. + + + + + Looks up a localized string similar to A circular reference has been detected.. + + + + + Looks up a localized string similar to The specified DataPart is referenced by other parts.. + + + + + Looks up a localized string similar to The specified DataPartReferenceRelationship is not allowed with this parent.. + + + + + Looks up a localized string similar to You should not validate document preprocessed based on FileFormatVersions.{0} against FileFormatVersions.{1} constraints. The preprocessing file format version is set in OpenSettings. Also check the file format version setting in the OpenXmlValidator.. + + + + + Looks up a localized string similar to The document has exceeded the size limit. Its type cannot be changed.. + + + + + Looks up a localized string similar to The prefix "{0}" is already defined in current node.. + + + + + Looks up a localized string similar to The specified argument is not a child of this element.. + + + + + Looks up a localized string similar to The validator is set to validate content based on Microsoft Office {0} rules. The passed in element is not defined in Microsoft Office {0}.. + + + + + Looks up a localized string similar to Cannot insert the OpenXmlElement "newChild" because it is part of a tree. . + + + + + Looks up a localized string similar to Empty collection.. + + + + + Looks up a localized string similar to The contentType parameter has incorrect value.. + + + + + Looks up a localized string similar to An ExtendedPart was encountered with a relationship type that starts with "http://schemas.openxmlformats.org". Expected a defined part instead based on the relationship type.. + + + + + Looks up a localized string similar to ExtendedPart must be added by AddExtendedPart( ).. + + + + + Looks up a localized string similar to The specified ExternalRelationship is not referenced by this part.. + + + + + Looks up a localized string similar to Package could not be opened for stream. See inner exception for details and be aware that there are behavior differences in stream support between .NET Framework and Core.. + + + + + Looks up a localized string similar to Feature {0} is not available in this collection.. + + + + + Looks up a localized string similar to The specified FileFormatVersions parameter has an invalid value: {0}. + + + + + Looks up a localized string similar to Could not find document. + + + + + Looks up a localized string similar to The root XML element "{0}" in the part is incorrect. The expected root XML element is: "{1}".. + + + + + Looks up a localized string similar to The specified DataPart is not in this document.. + + + + + Looks up a localized string similar to The specified MediaDataPart is not in this document.. + + + + + Looks up a localized string similar to The specified OpenXmlPart is not referenced by this part.. + + + + + Looks up a localized string similar to The specified ExternalRelationship is not referenced by this part.. + + + + + Looks up a localized string similar to Error in implicit conversion. Cannot convert null object.. + + + + + Looks up a localized string similar to This OpenXmlElement's InnerXml cannot be set.. + + + + + Looks up a localized string similar to The content type of the part is invalid. The expected content type is: {0}.. + + + + + Looks up a localized string similar to The specified value is not valid according to the specified enum type.. + + + + + Looks up a localized string similar to Cannot set the MainPartContentType property to this value because it is not valid for this type of document.. + + + + + Looks up a localized string similar to The specified MarkupCompatibilityProcessSettings.TargetFileFormatVersions is invalid to process the extensibility markup.. + + + + + Looks up a localized string similar to The XML has invalid content and cannot be constructed as an element.. + + + + + Looks up a localized string similar to The XML has invalid content and cannot be constructed as an element.. + + + + + Looks up a localized string similar to The specified package is not valid.. + + + + + Looks up a localized string similar to The document cannot be opened because there is an invalid part with an unexpected content type. + [Part Uri={0}], + [Content Type={1}], + [Expected Content Type={2}].. + + + + + Looks up a localized string similar to Text string can only be written out in OpenXmlLeafTextElement.. + + + + + Looks up a localized string similar to An invalid XML ID string. + + + + + Looks up a localized string similar to This OpenXmlLeafElement's InnerXml can only be set to null or to an empty string.. + + + + + Looks up a localized string similar to LocalName is null or empty.. + + + + + Looks up a localized string similar to The part cannot be added to this package because its content type is not allowed in this type of document.. + + + + + Looks up a localized string similar to The package contains malformed URI relationships. Please ensure the package is opened with a stream (that is seekable) or a file path to have the SDK automatically handle these scenarios.. + + + + + Looks up a localized string similar to An Audio / Video part shall not have implicit or explicit relationships to other parts defined by Open XML Standard.. + + + + + Looks up a localized string similar to There are more than one relationship references that target the specified part.. + + + + + Looks up a localized string similar to Namespace ids are only available for namespaces for Office 2021 and before. Please use prefixes or URLs instead.. + + + + + Looks up a localized string similar to The specified package is invalid. The main part is missing.. + + + + + Looks up a localized string similar to Non-composite elements do not have child elements.. + + + + + Looks up a localized string similar to The method or operation has not been implemented.. + + + + + Looks up a localized string similar to No external relationship with the specified ID was found.. + + + + + Looks up a localized string similar to No hyperlink relationship with the specified ID was found.. + + + + + Looks up a localized string similar to No ReferenceRelationship with the specified ID was found.. + + + + + Looks up a localized string similar to Current Markup Compatibility mode does not understand namespace prefix "{0}".. + + + + + Looks up a localized string similar to Only one instance of the type is allowed for this parent.. + + + + + Looks up a localized string similar to This operation requires that the document be opened with ReadWrite (or Write) access.. + + + + + Looks up a localized string similar to This operation requires that the package be opened with Read access.. + + + + + Looks up a localized string similar to Arguments openXmlPackage and its parent cannot be null at same time.. + + + + + Looks up a localized string similar to The parent of this element is null.. + + + + + Looks up a localized string similar to The specified part is already referenced as a target part by a relationship with a different ID.. + + + + + Looks up a localized string similar to The part has been destroyed.. + + + + + Looks up a localized string similar to The XML content is empty.. + + + + + Looks up a localized string similar to The specified part is not allowed with this parent.. + + + + + Looks up a localized string similar to The validator is set to validate content based on Microsoft Office {0} rules. The passed in part is not defined in Microsoft Office {0}.. + + + + + Looks up a localized string similar to A relationship can only be created between two parts in a package.. + + + + + Looks up a localized string similar to Cannot set the given root element to this part. The given part root element has already been associated with another OpenXmlPart.. + + + + + Looks up a localized string similar to The XML content is unknown. Cannot create an OpenXmlReader on that content.. + + + + + Looks up a localized string similar to The {0} property cannot be set when the {1} property is not null.. + + + + + Looks up a localized string similar to The reader is now positioned at the end element tag.. + + + + + Looks up a localized string similar to The reader is now positioned at EOF.. + + + + + Looks up a localized string similar to The reader is now positioned before the first element. Call OpenXmlReader.Read() before this operation.. + + + + + Looks up a localized string similar to The specified ReferenceRelationship is not referenced by this part.. + + + + + Looks up a localized string similar to Id conflicts with the Id of an existing relationship.. + + + + + Looks up a localized string similar to A required part is missing. The class name is stored in the PartClassName property.. + + + + + Looks up a localized string similar to Root element is null.. + + + + + Looks up a localized string similar to A shared part is referenced by multiple source parts with a different relationship type.. + + + + + Looks up a localized string similar to The stream was not opened for writing.. + + + + + Looks up a localized string similar to The stream was not opened for reading.. + + + + + Looks up a localized string similar to ISO 29500 Strict formatted document can't be opened while edit operation is enabled.. + + + + + Looks up a localized string similar to The string argument cannot be empty.. + + + + + Looks up a localized string similar to The specified string is empty.. + + + + + Looks up a localized string similar to The text value is not a valid enumeration value.. + + + + + Looks up a localized string similar to The text value is invalid. It can be only 'true', 'false', 'on', 'off', '0', '1'.. + + + + + Looks up a localized string similar to The text value is invalid. It can be only 'true', 'false', 't', 'f', ''.. + + + + + Looks up a localized string similar to The text value is invalid. It can be only 'true', 'false', 't', 'f'.. + + + + + Looks up a localized string similar to Encountered unexpected reentrancy while accessing part root. Please check if part root is loaded first by calling OpenXmlPart.IsRootElementLoaded. + + + + + Looks up a localized string similar to There is invalid extensibility markup in "{0}".. + + + + + Looks up a localized string similar to An unknown error occurred. Original message: '{0}'. + + + + + Looks up a localized string similar to The specified package is unknown.. + + + + + Looks up a localized string similar to Do not add hyperlink relationships through the AddExternalRelationship() method. Use AddHyperlinkRelationship() instead.. + + + + + Looks up a localized string similar to The OpenXmlPackage.Validate method found an error in the document.. + + + + + Represents the xsd:base64Binary value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class by deep copying + the supplied value. + + + The value. + + + + + Initializes a new instance of the class by deep copying + the supplied class. + + + The source class. + + + + + Gets or sets the Base64 binary string value. + + + + + The lexical forms of base64Binary values are limited to the 65 characters of the Base64 Alphabet defined in [RFC 2045], i.e., a-z, A-Z, 0-9, the plus sign (+), the forward slash (/) and the equal sign (=), together with the characters defined in [XML 1.0 (Second Edition)] as white space. No other characters are allowed. + + + + + Implicitly converts the specified value to a value. + + The object to convert. + The base64Binary string. Returns null when is null. + + + + Initializes a new instance of a class using the + supplied string. + + The specified base64Binary value. + A new instance with the value. + + + + Returns a new object that was created from a value. + + A value to use to create a new object. + A that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object used to retrieve a value representation. + + A value that represents a object. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the class by deep copying + the supplied class. + + + The source class. + + + + + Implicitly converts the specified value to a value. + + The to convert. + The converted value. + Thrown when is null. + + + + Initializes a new instance of the class by implicitly + converting the supplied value. + + The value. + A new instance with the value. + + + + Returns a new object that was created by using the supplied value. + + A value to use to create a new object. + A that corresponds to the value parameter. + + + + Returns the representation of a object. + + + A object to retrieve a representation. + + A value that represents a object. + + + + Represents the byte value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied + value. + + The value. + + + + Initializes a new instance of the class by deep copying + the supplied class. + + + The source class. + + + + + Implicitly converts the specified value to a value. + + + The to convert. + + + The converted value. + + Thrown when is null. + + + + Initializes a new instance of the class by implicitly converting + the supplied value. + + + The value. + + A new instance with the value. + + + + Returns a new object created from a value. + + A value to create a new object from. + A that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object to retrieve a value representation. + + A value that represents a object. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied + value. + + The value. + + + + Initializes a new instance of the class by deep copying the + supplied class. + + + The source class. + + + + + Convert the text to meaningful value. + + + + + Implicitly converts the specified value to a value. + + + The object to convert. + + + The converted value. + + Thrown when is null. + + + + Initializes a new instance of the class by implicitly + converting the supplied value. + + + The value. + + A new instance with the value. + + + + Returns a new object that was created from a value. + + A value to use to create a new object. + A object that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object used to retrieve a value representation. + + A value that represents a object. + + + + Represents the decimal value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied + value. + + The value. + + + + Initializes a new instance of the class by deep copying + the supplied class. + + + The source class. + + + + + Implicitly converts the specified value to a value. + + + The to convert. + + + The converted value. + + Thrown when is null. + + + + Initializes a new instance of the class by implicitly + converting the supplied value. + + + The value. + + A new instance with the value. + + + + Returns a new object that was created from a value. + + A value to use to create a new object. + A object that corresponds to the value parameter. + + + + Returns the representation of a object. + + + A object to use to retrieve a representation. + + A value that represents a object. + + + + Represents the double value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied + value. + + The value. + + + + Initializes a new instance of the by deep copying the + supplied value. + + + The source class. + + + + + Implicitly converts the specified value to a value. + + + The object to convert. + + + The converted value. + + Thrown when is null. + + + + Initializes a new instance of the class by implicitly + converting the supplied value. + + + The value. + + A new instance with the value. + + + + Returns a new object created from a value. + + A value to use to create a new object. + A object that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object used to retrieve a value representation. + + A value that represents a object. + + + + Represents the enum value for attributes. + + Type of enum. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied + value of type T. + + + The value of type T. + + + + + Initializes a new instance of the by deep copying the supplied + class. + + + The source class. + + + + + Implicitly converts the specified value to an enum. + + The to convert. + + The converted enum value. + + Thrown when is null. + + + + Initializes a new class by converting the supplied enum + value. + + The specified value. + A new instance corresponding to the value. + + + + Implicitly converts the specified value to a String value. + + The value to convert. + The converted string. + + + + + + + Represent the xsd:hexBinary value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied string. + + The value. + + + + Initializes a new instance of the class by deep copying the supplied class. + + The source class. + + + + hexBinary has a lexical representation where each binary octet is encoded as a character tuple, + consisting of two hexadecimal digits ([0-9a-fA-F]) representing the octet code. + For example, "0FB7" is a hex encoding for the 16-bit integer 4023 (whose binary representation is 111110110111). + + + + + Gets or sets the hex binary value + + + + + Attempts to retrieve the bytes associated with this if available. + + The bytes if successfully written. + Whether bytes where successfully written. + + + + Attempts to write the bytes associated with this if available. + + A buffer to write to + Whether bytes where successfully written. + + + + Returns a new object that was created from . + + A byte array to use to create a new object. + A object that corresponds to the value parameter. + + + + Returns a new object that was created from . + + A byte array to use to create a new object. + A object that corresponds to the value parameter. + + + + Implicitly converts the specified value to a value. + + The object to convert. + The converted HexBinary string. Returns null when is null. + + + + Implicitly converts the specified value to a object. + + The specified hexBinary value. + A new instance with the value. + + + + Returns a new object that was created from a value. + + A value to use to create a new object. + A object that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object used to retrieve a value representation. + + A value that represents a object. + + + + A factory of hex strings. + + + + + Returns a new hex string that was created from . + + A byte array to use to create a new hex string. + A hex string that corresponds to the value parameter. + + + + Returns a new hex string that was created from . + + A byte array to use to create a new hex string. + A hex string that corresponds to the value parameter. + + + + A definition of an OpenXml enum value + + + + + Gets a value indicating whether the current value is valid. + + + + + Gets the version this type was introduced in. + + + + + Gets the value of the enum. + + + + + Factory to create a new enum value of the specified type. + + Type to create enum. + + + + Creates an enum value with the supplied value. + + Value of enum + Constructed enum. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the by deep copying the supplied IntValue class. + + The source class. + + + + Implicitly converts the specified value to an value. + + The to convert. + The converted value. + Thrown when is null. + + + + Implicitly converts an value to a instance. + + The specified value. + A new instance with the value. + + + + Returns a new object that was created from an value. + + An value to use to create a new object. + An that corresponds to the value parameter. + + + + Returns an representation of an object. + + + An object to retrieve an representation. + + An value that represents an object. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the by deep copying the supplied class. + + The source class. + + + + Implicitly converts the specified value to an value. + + The to convert. + + The converted value. + + Thrown when is null. + + + + Implicitly converts an value to a specified instance. + + The specified value. + A new instance with the value. + + + + Returns a new object that was created from an value. + + An value to use to create a new object. + An that corresponds to the value parameter. + + + + Returns the representation of an object. + + + An object to use to retrieve an representation. + + An value that represents an object. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the by deep copying the supplied class. + + The source class. + + + + Implicitly converts the specified to an value. + + The to convert. + The converted value. + Thrown when is null. + + + + Implicitly converts an value to an value. + + The specified value. + A new instance with the value. + + + + Returns a new object that was created from an value. + + An value to use to create a new object. + An that corresponds to the value parameter. + + + + Returns the representation of an object. + + + An object used to retrieve an representation. + + An value that represents an object. + + + + Represents the xsd:integer value for attributes. + + + Integer is derived from decimal by fixing the value of fractionDigits to be 0 and disallowing the trailing decimal point. + The value space of integer is the infinite set {...,-2,-1,0,1,2,...}. The base type of integer is decimal. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the class by deep copying the supplied class. + + The source class. + + + + Implicitly converts the specified to an value. + + The to convert. + + The converted value. + + Thrown when is null. + + + + Implicitly converts the specified value to an class. + + The specified value. + A new instance with the value. + + + + Returns a new object created from an value. + + An value to use to create a new object. + An that corresponds to the value parameter. + + + + Returns the representation of an object. + + + An object used to retrieve an representation. + + An value that represents an object. + + + + Represents the list value attributes (xsd:list). + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied list of values. + + The list of the values. + + + + Initializes a new instance of the class by deep copying the supplied class. + + The source class. + + + + + + + Gets the values. + + + + + Convert the text to meaningful value. + + + + + Convert the text to meaningful value. + + + + + + Gets or sets the inner XML text. + + + + + + + + Defines an data type for attributes that have enum values that are values that represent: 'true' or 'false', 'on' or 'off', or '0' or '1'. + + + + + Initializes a new instance of class. + + + + + Initializes a new instance of class using the supplied value. + + The value. + + + + Initializes a new instance of class using the supplied class. + + The source class. + + + + Gets the real text value of the text value. + + The text value which could be 'true', 'false', 'on', 'off', '0', or '1'. + True for 'true', 'on', '0', or '1'. + + + + Gets the default text value. + + The boolean value. + "1" for true, "0" for false. + + + + Implicitly converts the specified object to a value. + + The object to convert. + The converted value. + + + + Implicitly converts a value to an value. + + The value to convert. + The converted . + + + + Returns a new object created from a value. + + A value that is used to create a new object. + A that corresponds to the value parameter. + + + + Returns the internal representation of a object. + + A object to retrieve an internal representation. + A value that represents a object. + + + + Represents a comparable and equatable reference. + + The type of the value. + + + + Creates a new instance of . + + + + + Initializes a new instance of the + class by deep copying the supplied + value. + + The source instance. + + + + Gets or sets the value of this instance. + + + + + + + + + + + + + + + + + + + + Determines whether the specified operands are equal. + + The left operand, or null. + The right operand, or null. + True if the operands are equal; otherwise, false. + + + + Determines whether the specified operands are not equal. + + The left operand, or null. + The right operand, or null. + True if the operands are not equal; otherwise, false. + + + + Determines whether the left operand is less than the right operand. + + The left operand, or null. + The right operand, or null. + True if the left operand is less than the right operand; otherwise, false. + + + + Determines whether the left operand is less than or equal to the right operand. + + The left operand, or null. + The right operand, or null. + True if the left operand is less than or equal to the right operand; otherwise, false. + + + + Determines whether the left operand is greater than the right operand. + + The left operand, or null. + The right operand, or null. + True if the left operand is greater than the right operand; otherwise, false. + + + + Determines whether the left operand is greater than or equal to the right operand. + + The left operand, or null. + The right operand, or null. + True if the left operand is greater than or equal to the right operand; otherwise, false. + + + + Represents a comparable and equatable value. + + The type of the value. + + + + Creates a new instance of . + + + + + Creates a new instance of . + + The value in type T. + + + + Initializes a new instance of the + class by deep copying the supplied + value. + + The source instance. + + + + + + + + + + + + + + + + + + + + + + + + + Determines whether the specified operands are equal. + + The left operand, or null. + The right operand, or null. + True if the operands are equal; otherwise, false. + + + + Determines whether the specified operands are not equal. + + The left operand, or null. + The right operand, or null. + True if the operands are not equal; otherwise, false. + + + + Determines whether the left operand is less than the right operand. + + The left operand, or null. + The right operand, or null. + True if the left operand is less than the right operand; otherwise, false. + + + + Determines whether the left operand is less than or equal to the right operand. + + The left operand, or null. + The right operand, or null. + True if the left operand is less than or equal to the right operand; otherwise, false. + + + + Determines whether the left operand is greater than the right operand. + + The left operand, or null. + The right operand, or null. + True if the left operand is greater than the right operand; otherwise, false. + + + + Determines whether the left operand is greater than or equal to the right operand. + + The left operand, or null. + The right operand, or null. + True if the left operand is greater than or equal to the right operand; otherwise, false. + + + + Represents the abstract base class for all simple types that are used in attributes. + + + + + Initializes a new instance of the OpenXmlSimpleType class. + + + + + Initializes a new instance of the OpenXmlSimpleType class. + + The source OpenXmlSimpleType. + + + + Gets or sets the internal raw text value. + DO NOT use this property. Only for OpenXmlSimpleType.cs internal use. + + + + + Gets a value indicating whether the underneath text value is a valid value. + + + + + Gets or sets the inner XML text. + + + + + Returns a String that represents the current value. + + A String that represents the current value. + + + + Creates a duplicate of the current value. + + + This method is a deep copy clone. + + The cloned value. + + + + Implicitly converts a specified attribute value to a String value. + + The OpenXmlSimpleType instance. + The converted string value. + + + + Test whether the value is allowed in the specified file format version. Only for EnumValue. + + The file format version. + True if the value is defined in the specified file format version. + + Method to support enum validation in schema validation. + + + + + Represents a generic value for simple value types (such as , , , etc). + + The type of the value. + + + + Initializes a new instance of the OpenXmlSimpleValue class. + + + + + Initializes a new instance of the OpenXmlSimpleValue class. + + The value in type T. + + + + Initializes a new instance of the OpenXmlSimpleValue class by deep copying the supplied OpenXmlSimpleValue class. + + The source OpenXmlSimleValue class. + + + + + + + Gets or sets the value of the simple value. + + + + + + + + Convert the text to meaningful value. + + + + + Convert the text to meaningful value with no exceptions + + + + + Implicitly converts the specified value to T. + + The OpenXmlSimpleValue instance. + The internal value in the OpenXmlSimpleValue class. + Thrown when xmlAttribute is null. + + + + + + + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the by deep copying the supplied class. + + The source class. + + + + Implicitly converts the specified to an value. + + The to convert. + The converted value. + Thrown when is null. + + + + Implicitly converts the specified value to an instance. + + The specified value. + A new instance with the value. + + + + Returns a new object created from a Byte value. + + An value to use to create a new object. + An that corresponds to the value parameter. + + + + Returns the representation of an object. + + + An object to retrieve an representation. + + An value that represents an object. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the class by deep copying the supplied class. + + The source class. + + + + Implicitly converts the specified object to a value. + + The to convert. + + The converted value. + + Thrown when is null. + + + + Implicitly converts the specified value to a object. + + The specified value. + A new instance with the value. + + + + Returns a new object that was created from a value. + + A value to use to create a new object. + A object that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object used to retrieve a value representation. + + A value that represents a object. + + + + Represents the string value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied string. + + The string value. + + + + Initializes a new instance of the class by deep copying the supplied class. + + The source class. + + + + Gets or sets the string value. + + + + + Implicitly converts the specified value to a value. + + The to convert. + + The converted value. Returns nullwhen is null. + + + + + Implicitly converts the specified value to a object. + + The specified value. + A new instance with the value. + + + + Returns a new object that was created from a value. + + A value to use to create a new object. + A that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object used to retrieve a value representation. + + A value that represents a object. + + + + Represents the data type for attributes that have enum values that are values that represent 't' or 'f', or 'true' or 'false'. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the class using the supplied class. + + The source class. + + + + Implicitly converts a object to a value. + + The source to convert. + The converted value. + + + + Implicitly converts a value to a TrueFalsBlankValue value. + + The source value to convert. + The converted value. + + + + Returns a new object created from a value. + + A value to create a new object from. + A that corresponds to the value parameter. + + + + Returns the internal representation of a object. + + A object to retrieve an internal representation. + A value that represents a object. + + + + Gets the real boolean value of the text value. + + The text value which could be 't', 'f', 'true', 'false', ''. + True on text value is 't', 'true'; False on text value is 'f', 'false', '' + + + + Gets the text value. + + The boolean value. + "t" for True, "f" for false. + + + + Represents the data type for attributes that have enum values that are values that represent 't' or 'f', or 'true' or 'false'. + + + + + Initializes a new instance of class. + + + + + Initializes a new instance of class using the supplied value. + + The value. + + + + Initializes a new instance of the class using the supplied class. + + The source class. + + + + Implicitly converts a class to a value. + + The to convert. + The converted value. + + + + Implicitly converts a value to a instance. + + The value to convert. + The converted value. + + + + Returns a new object that was created from a value. + + A value to use to create a new object. + A that corresponds to the value parameter. + + + + Returns the internal representation of a object. + + A object to retrieve an internal representation. + A value that represents a object. + + + + Gets the real boolean value of the text value. + + The text value which could be 't', 'f', 'true', 'false'. + True on text value is 't', 'true'; False on text value is 'f', 'false'. + + + + Gets the default text value. + + The boolean value. + "t" false true, "f" for false. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the class by deep copying the supplied class. + + The source class. + + + + Implicitly converts the specified object to a value. + + The to convert. + The converted value. + Thrown when is null. + + + + Implicitly converts a value to a class. + + The specified value. + A new instance with the value. + + + + Returns a new object created from a value. + + A value to use to create a new object. + A that corresponds to the value parameter. + + + + Returns the representation of a object. + + + A object to retrieve a representation. + + A value that represents a object. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the class by deep copying the supplied class. + + The source class. + + + + Implicitly converts the specified class to a value. + + The class to convert. + The converted value. + Thrown when is null. + + + + Implicitly converts a specified value to a class. + + The specified value. + A new instance with the value. + + + + Returns a new object created from a value. + + A value to use to create a new object. + A class that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object used to retrieve a value representation. + + A value that represents a object. + + + + Represents the value for attributes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the supplied value. + + The value. + + + + Initializes a new instance of the class by deep copying the class. + + The source class. + + + + Implicitly converts the specified object to a value. + + The object to convert. + The converted value. + Thrown when is null. + + + + Implicitly converts a specified value to a class. + + The specified value. + A new instance with the value. + + + + Returns a new object created from a value. + + A value to use to create a new object. + A that corresponds to the value parameter. + + + + Returns the value representation of a object. + + + A object used to retrieve a representation. + + A value that represents a object. + + + + DocumentValidator - defines a base class for document validator. + + + + + Initializes a new instance of the DocumentValidator. + + The shared validation cache. + + + + Validate the specified document. + + The document to be validated. + The settings to be used during validation. + + Return results in ValidationResult. + + + + Validate the specified part. + + The OpenXmlPart to be validated. + The settings to be used during validation. + + + + + + Gets all the parts needs to be validated. + + + + + Defines the OpenXmlValidator. + + + + + Initializes a new instance of the . + + + Defaults to . + + + + + Initializes a new instance of the . + + The target file format to be validated against. + Thrown when the parameter is not a known format. + + + + Gets the target file format to be validated against. + + + + + Gets or sets the maximum number of errors the OpenXmlValidator will return. + Default is 1000. A 0 value means no limitation. + + Throw when the value set is less than zero. + + + + Validates the specified document. + + The target . + A set of validation errors. + Thrown when the parameter is null. + + + + Validates the specified document. + + The target . + Cancellation token + A set of validation errors. + Thrown when the parameter is null. + + + + Validates the specified content in the . + + The target OpenXmlPart. + A set of validation errors. + Thrown when the parameter is null. + Throw when the specified part is not a defined part in the specified version. + + + + Validates the specified content in the . + + The target OpenXmlPart. + Cancellation token + A set of validation errors. + Thrown when the parameter is null. + Throw when the specified part is not a defined part in the specified version. + + + + Validates the specified element. + + The target OpenXmlElement. + A set of validation errors. + Thrown when the parameter is null. + Thrown when the is type of , , , or . + Thrown when the is not defined in the specified . + + + + Validates the specified element. + + The target OpenXmlElement. + Cancellation token + A set of validation errors. + Thrown when the parameter is null. + Thrown when the is type of , , , or . + Thrown when the is not defined in the specified . + + + + Defines the base class for OpenXmlPackage and OpenXmlPart. + + + + + Validate against a given version + + Version to validate against + The validation errors + + + + Validates the package (do not validate the xml content in each part). + + The Open XML container to validate + Version to validate against + Parts already processed. + + + + All particle validator. + + + + + Initializes a new instance of the AllParticleValidator. + + + + + + Try match the particle. + + + The context information for validation. + + + + Try match the particle once. + + + The context information for validation. + + xsd:all can only contain xsd:element children and maxOccurs of each children can only be 1 + + + + + Validator for MarkupCompatibility feature - AlternateContent. + + + See Ecma376 "Part 5: Markup Compatibility and Extensibility" for reference. + + + + + Validate ACB syntax - AlternateContent, Choice, Fallback and their attributes. + + + + + + Validate attributes on AlternateContent, Choice and Fallback element. + + + The element to be validated. + + + + Test whether the attribute is "xml:space" or "xml:lang". + + The attribute to be tested. + True if the attribute is "xml:space" or "xml:lang". + + + + Particle constraint data for particle which type is ParticleType.Any. + + + xsd:any can contains only one namespace. + If there are multiple namespace in the original xsd, it will be split into multiple xsd:any in binary database. + + + + + Initializes a new instance of the AnyParticle. + + + + + Gets the value of the xsd:any@namespace. + + + + + + + + Any particle validator. + + + + + Initializes a new instance of the AnyParticleValidator. + + + + + + Try match this element once. + + + The context information for validation. + + + + Try match this element. + + + The context information for validation. + + + + Get the required elements - elements which minOccurs > 0. + + + True if there are required elements in this particle. + + + + Get the required elements - elements which minOccurs > 0. + + Required elements in this particle. + + + + Get the expected elements - elements which minOccurs >= 0. + + + True if there are expected elements in this particle. + + + + Get the expected elements - elements which minOccurs >= 0. + + Expected elements in this particle. + + + + Choice particle validator. + + + + + Initializes a new instance of the ChoiceParticleValidator. + + + + + + Try match the particle once. + + + The context information for validation. + + + + Get the required elements - elements which minOccurs > 0. + + + True if there are required elements in this particle. + + + + Compatibility-Rule Attributes + + + + + Validate compatibility rule attributes - Ignorable, ProcessContent, PreserveElements, PreserveAttributes, MustUnderstand. + + The validation context. + + + + Validate QName list in PreserveElements, PreserveAttributes, ProcessContent. + + The QName list to be validated. + The ignorable namespaces. + + The QName that is not valid. + + + + Particle constraint for sequence, choice, all, and group. + + + + + Initializes a new instance of the CompositeParticle. + + + + + Gets the children particles. + + + + + + + + Base class for composite particle - sequence, choice, all, group. Defines some common functions. + + + + + Gets the constraint to be validated. + + + + + Initializes a new instance of the CompositeParticleValidator. + + + + + + Be called on root particle of complex type. + + + + + + Try match the particle. + + + The context information for validation. + + + + Get the required elements - elements which minOccurs > 0. + + + True if there are required elements in this particle. + + + + Get the expected elements - elements which minOccurs >= 0. + + + True if there are expected elements in this particle. + + + + Particle constraint data for particle which type is ParticleType.Element. + + + + + Initializes a new instance of the ElementParticle. + + + + + + + + + + + + + + + + + + + + + + + + + + Hold expected children for error reporting. + + + + + Add a known element of the child. + + + + + + Add namespace string of xsd:any child. + + + + + + Add all expected children from another ExpectedChildren. + + + + + + Gets the count of required children elements. + + + + + Returns the list of expected children message used in error reporting. + + The parent element. Used to map ElementTypeId to element name for child element. + The Fmt_ListOfPossibleElements sub string to be used in error reporting. + + + + Group particle validator. + + + + + Initializes a new instance of the ChoiceParticleValidator. + + + + + + Try match the particle once. + + + The context information for validation. + + + + Defines methods to validate particles. + + + + + Try match the particle once. + + + The context information for validation. + + + + Try match the particle, + + + The context information for validation. + + + + Get the required elements - elements which minOccurs > 0. + + + True if there are required elements in this particle. + + + + Get the required elements - elements which minOccurs > 0. + + Required elements in this particle. + + + + Get the expected elements - elements which minOccurs >= 0. + + + True if there are expected elements in this particle. + + + + Get the expected elements - elements which minOccurs >= 0. + + Expected elements in this particle. + + + + Static class to hold extension methods for OpenXmlElement. + + + + + Gets the next child (skip all MC elements (skip ACB layer, skip Ignorable element.)). + + The logic parent element. + The child element to be tested. + Markup Compatibility context. + Targeting file format (Office2007 or Office201). + The logic child (when we apply a MC preprocessor). + + + + A constraint data item for complex type. + The ParticleType, MinOccurs, MaxOccurs means the constraint of this particle in the parent. + + + + + Initializes a new instance of the ParticleConstraint. + + + + + Gets the type of the particle. + + + + + Gets the minOccurs constraint. + + + + + Gets the maxOccurs constraint. + 0 means "unbounded". + + + + + Gets a value indicating whether the maxOccurs is unbounded. + + + + + Gets a value indicating whether maxOccurs is unbounded or maxOccurs > 1 + + + + + Test whether the count is valid. + + The count of the occurs. + Returns true if maxOccurs="unbounded" or this.MaxOccurs>count. + + + + Gets a ParticleValidator for this particle constraint. + + + + + Particle match result. + + + + + Information about particle match. + + + + + Initializes a new instance of the ParticleMatchInfo. + + + + + Initializes a new instance of the ParticleMatchInfo. + + + + + + Gets or sets particle match result. + + + + + Gets the start element to be matched by a particle rule. + + + + + Gets or sets the last element matched by the particle match. + + + + + Gets or sets message on match error + + + TODO: how can this be decoupled from the validator? + + + + + Gets the element type ids of expected children. + Fill this field on partial match. + + + Will be null if matched or not matched. + Will contains the expected child element types if partial match. + + + + + Purpose: + Reuse this.ExpectedChildren data field. + Avoid this.ExpectedChildren be referenced by more than one object (so "this.ExpectedChildren = other.ExpectedChildren" is not allowed). + + + + + + Particle type. + + + + + Base class for particle validator. + + + + + Initializes a new instance of the ParticleValidator. + + + + + Be called on root particle of complex type. + + + + + + Try match the particle once. + + + The context information for validation. + + + + Try match the particle. + + + The context information for validation. + + + + Get the required elements - elements which minOccurs > 0. + + + True if there are required elements in this particle. + + + + Get the required elements - elements which minOccurs > 0. + + Required elements in this particle. + + + + Get the expected elements - elements which minOccurs >= 0. + + + True if there are expected elements in this particle. + + + + Get the expected elements - elements which minOccurs >= 0. + + Expected elements in this particle. + + + + AnyURI (xsd:anyURI) based simple type constraint. + + + anyURI represents a Uniform Resource Identifier Reference (URI). + An anyURI value can be absolute or relative, and may have an optional fragment identifier (i.e., it may be a URI Reference). + This type should be used to specify the intention that the value fulfills the role of a URI as defined by [RFC 2396], as amended by [RFC 2732]. + + + + + QName (xsd:QName) based simple type constraint. + + + QName represents XML qualified names. + The ·value space· of QName is the set of tuples {namespace name, local part}, where namespace name is an anyURI and local part is an NCName. + The ·lexical space· of QName is the set of strings that ·match· the QName production of [Namespaces in XML]. + + + + + Token (xsd:token) based simple type constraint. + + + token represents tokenized strings. + The ·value space· of token is the set of strings that do not contain the carriage return (#xD), + line feed (#xA) nor tab (#x9) characters, that have no leading or trailing spaces (#x20) and + that have no internal sequences of two or more spaces. + The ·lexical space· of token is the set of strings that do not contain the carriage return (#xD), + line feed (#xA) nor tab (#x9) characters, that have no leading or trailing spaces (#x20) and + that have no internal sequences of two or more spaces. The ·base type· of token is normalizedString + + In Ecma376, most token are enumerations. + + + + + An implementation of XmlConvert.VerifyTOKEN(string) as it is not available cross platform and throws if fails + + + + + Validate an OpenXmlElement based on the schema. + + + + + Only validation whether the children elements are valid according to this type's constraint defined in schema. + + The validation context. + + + + Validate the attributes constraint. + + The validation context. + + + + empty CT, OpenXmlLeafElement + + + + + empty CT, but used as part root element, OpenXmlPartRootElement + + + + + simple content CT, OpenXmlLeafTextElement + + + + + Composite CT + + + + + Sequence particle validator. + + + + + Initializes a new instance of the SequenceParticleValidator. + + + + + + Try match the particle once. + + + The context information for validation. + + + + Get the required elements - elements which minOccurs > 0. + + + True if there are required elements in this particle. + + + + Get the expected elements - elements which minOccurs >= 0. + + + True if there are expected elements in this particle. + + + + ##any - Elements from any namespace can be present. + + + + + ##other - Elements from any namespace that is not the target namespace of the parent element containing this element can be present. + + + + + #local - Elements that are not qualified with a namespace can be present. + + + + + ##targetNamespace - Elements from the target namespace of the parent element containing this element can be present. + + + + + Get corresponding namespace string for Any, Other, Local and TargetNamespace. + + One of the Any, Other, Local and TargetNamespace. + ##any, ##other, ##local or ##targetNamespace. + + + + All simple types built in to xml schema. + + + + + 1.15 attribute should be absent if another attribute not equals some value + + + + + 1.14 attribute should be absent if another attribute equals some value + + + + + One attribute value must no bigger than another's. + Attribute value should be number. + + + + + 1.16 only one of a group attributes can exist + + + + + Two attributes of one element must appear as a pair. + + + + + 1.18 attribute is required if another attribute equals some value + + + + + 1.19 attribute should be of some value if another attribute is of some value + + + + + 1.12 Attribute value length must be in specified range. + + + + + 1.17 value of one attribute must be less than or equal another's + + + + + 1.2 Attribute value should follow specified regular expression + + + + + 1.3 Attribute value is a number, it must (or must not) in range of min to max. + If valid/invalid values are not numbers or not contiguous, AttributeValueSetConstraint should be used. + + + + + 1.4/1.10 Attribute value must (or must not) in specified value set. + If valid/invalid values are numbers and contiguous, AttributeValueRangeConstraint should be used. + + + + + 3.2 Class for package-level constraint "indexed element must exist". + + + + + Element's parent must be/not be of a specified type + + + + + 3.1 Class for package-level constraint "referenced element must exist". + + + + + Base class for each semantic constraint category. + + + + + Semantic validation logic + + return null if validation succeed + + + + 2.3 Element's attribute value should be unique within specified type of element. + + + + + Add a text value and track whether it has been seen before or not. + + + + + Clear the tracking set to free up space + + + + + Checks if a duplicate was detected. Once a duplicate is checked, subsequent calls will result in false so we only raise the error once. + + + + + Method to get or create a cached value. To minimize allocations, the key should track everything that is + required to generate the item in the factory. If so, then a static lambda can be used to ensure nothing + else is required and that the key will be correct. + + Type of the value produced. + Type of the key provided. + Provided key that should identify the cached value uniquely. + A factory method to create the value. + The created or cached value. + + + + Gets target file format. + + + + + If a is used and is canceled, this will throw. Otherwise, it will + check the number of errors against the . + + true if error count is too high. + + + + Gets used to track MC context. + + + + + Gets or sets a value indicating whether collect ExpectedChildren or not. + + + + + Get the first child of this.Element according to the MC Mode. + + The first child in the MC mode. + + + + Get the next child of this.Element according to the MC Mode. + + The child after which the next child going to be retrieved. + The next child after the specified child in the MC mode. + + + + Gets the maximum number of errors. A zero (0) value means no limitation. + When the errors >= MaxNumberOfErrors, errors will not be recorded, and MaxNumberOfErrorsEvent will be fired. + + + + + An implementation of for validation error event. + + + + + Gets or sets the validation error. + + + + + Defines the ValidationErrorInfo. + + + + + Gets the unique identifier of this error. + + + + + Gets the type of this error. + + + + + Gets the description and the suggestion on how to resolve the errors. + + + + + Gets the XmlPath information of this error. + + + + + Gets the OpenXmlElement of the invalid node. + + + + + Gets the part which the invalid element is in. + + + + + Gets elements related with the invalid node. + + + + + Gets parts related with the invalid node. + + + + + The type of the validation error. + + + + + Schema validation error. + + + + + Semantic validation error. + + + + + Package structure validation error. + + + + + Markup Compatibility validation error. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Inner exception: {0}.. + + + + + Looks up a localized string similar to any element in namespace '{0}'. + + + + + Looks up a localized string similar to <{0}:{1}>. + + + + + Looks up a localized string similar to ,. + + + + + Looks up a localized string similar to List of possible elements expected: {0}.. + + + + + Looks up a localized string similar to The attribute '{0}' needs to specify a proper prefix when defined on an AlternateContent element.. + + + + + Looks up a localized string similar to The Ignorable attribute is invalid - The value '{0}' contains an invalid prefix that is not defined.. + + + + + Looks up a localized string similar to The MustUnderstand attribute is invalid - The value '{0}' contains an invalid prefix that is not defined.. + + + + + Looks up a localized string similar to The PreserveAttributes attribute is invalid - The value '{0}' contains invalid qualified names. The ProcessAttributes attribute value cannot reference any attribute name that does not belong to a namespace that is identified by the Ignorable attribute of the same element.. + + + + + Looks up a localized string similar to The PreserveElements attribute is invalid - The value '{0}' contains invalid qualified names. The PreserveElements attribute value cannot reference any element name that does not belong to a namespace that is identified by the Ignorable attribute of the same element.. + + + + + Looks up a localized string similar to The ProcessContent attribute is invalid - The value '{0}' contains invalid qualified names. The ProcessContent attribute value cannot reference any element name that does not belong to a namespace that is identified by the Ignorable attribute of the same element.. + + + + + Looks up a localized string similar to The Requires attribute is invalid - The value '{0}' contains an invalid prefix that is not defined.. + + + + + Looks up a localized string similar to The {0} element should not have an xml:lang or xml:space attribute.. + + + + + Looks up a localized string similar to An element should not have an xml:lang or xml:space attribute and also be identified by a ProcessContent attribute.. + + + + + Looks up a localized string similar to All Choice elements must have a Requires attribute whose value contains a whitespace delimited list of namespace prefixes.. + + + + + Looks up a localized string similar to An AlternateContent element must contain one or more Choice child elements, optionally followed by a Fallback child element.. + + + + + Looks up a localized string similar to An AlternateContent element cannot be the child of an AlternateContent element.. + + + + + Looks up a localized string similar to Invalid document error: more than one part retrieved for one URI.. + + + + + Looks up a localized string similar to The package/part '{0}' cannot have a relationship that targets '{1}'.. + + + + + Looks up a localized string similar to An ExtendedPart '{0}' was encountered with a relationship type that starts with "http://schemas.openxmlformats.org". Expected a defined part instead based on the relationship type.. + + + + + Looks up a localized string similar to The package/part '{0}' can only have one instance of relationship that targets part '{1}'.. + + + + + Looks up a localized string similar to The package/part '{0}' cannot have a relationship that targets part '{1}'.. + + + + + Looks up a localized string similar to A required part '{0}' is missing.. + + + + + Looks up a localized string similar to Element '{0}' cannot appear more than once if content model type is "all".. + + + + + Looks up a localized string similar to The '{0}' attribute is invalid - The value '{1}' is not valid according to any of the memberTypes of the union.. + + + + + Looks up a localized string similar to The attribute '{0}' has invalid value '{1}'.{2}. + + + + + Looks up a localized string similar to The '{0}' element is invalid - The value '{1}' is not valid according to any of the memberTypes of the union.. + + + + + Looks up a localized string similar to The element '{0}' has invalid value '{1}'.{2}. + + + + + Looks up a localized string similar to The attribute value cannot be empty.. + + + + + Looks up a localized string similar to The text value cannot be empty.. + + + + + Looks up a localized string similar to The Enumeration constraint failed.. + + + + + Looks up a localized string similar to The element has incomplete content.{0}. + + + + + Looks up a localized string similar to The element '{0}' is a leaf element and cannot contain children.. + + + + + Looks up a localized string similar to The element has invalid child element '{0}'.{1}. + + + + + Looks up a localized string similar to The element has child element '{0}' of invalid type '{1}'.. + + + + + Looks up a localized string similar to The actual length according to data type '{0}' is not equal to the specified length. The expected length is {1}.. + + + + + Looks up a localized string similar to The MaxExclusive constraint failed. The value must be less than {0}.. + + + + + Looks up a localized string similar to The MaxInclusive constraint failed. The value must be less than or equal to {0}.. + + + + + Looks up a localized string similar to The actual length according to data type '{0}' is greater than the MaxLength value. The length must be smaller than or equal to {1}.. + + + + + Looks up a localized string similar to The MinExclusive constraint failed. The value must be greater than {0}.. + + + + + Looks up a localized string similar to The MinInclusive constraint failed. The value must be greater than or equal to {0}.. + + + + + Looks up a localized string similar to The actual length according to data type '{0}' is less than the MinLength value. The length must be bigger than or equal to {1}.. + + + + + Looks up a localized string similar to The required attribute '{0}' is missing.. + + + + + Looks up a localized string similar to The Pattern constraint failed. The expected pattern is {0}.. + + + + + Looks up a localized string similar to The string '{0}' is not a valid '{1}' value.. + + + + + Looks up a localized string similar to The TotalDigits constraint failed. The expected number of digits is {0}.. + + + + + Looks up a localized string similar to The '{0}' attribute is not declared.. + + + + + Looks up a localized string similar to The element has unexpected child element '{0}'.{1}. + + + + + Looks up a localized string similar to Attribute '{0}' should be absent when the value of attribute '{1}' is not {2}.. + + + + + Looks up a localized string similar to Attribute '{0}' should be absent when the value of attribute '{1}' is {2}.. + + + + + Looks up a localized string similar to Attribute '{0}' and '{1}' cannot be present at the same time. Only one of these attributes '{2}' can be present at a given time.. + + + + + Looks up a localized string similar to Attribute '{0}' should be present when the value of attribute '{1}' is '{2}'.. + + + + + Looks up a localized string similar to Attribute '{0}' should have value(s) {1} when attribute '{2}' has value(s) {3}. Current value of attribute '{4}' is '{5}'.. + + + + + Looks up a localized string similar to The attribute '{0}' has invalid value '{1}'.{2}. + + + + + Looks up a localized string similar to Attribute '{0}' has value '{1}'. It should be less than or equal to the value of attribute '{2}' which is '{3}'.. + + + + + Looks up a localized string similar to Attribute '{0}' has value '{1}'. It should be less than the value of attribute '{2}' which is '{3}'.. + + + + + Looks up a localized string similar to Attribute '{0}' should have unique value in the whole document. Its current value '{1}' duplicates with others.. + + + + + Looks up a localized string similar to Cell contents have invalid value '{0}' for type '{1}'.. + + + + + Looks up a localized string similar to Relationship '{0}' referenced by attribute '{1}' has incorrect type. Its type should be '{2}'.. + + + + + Looks up a localized string similar to The relationship '{0}' referenced by attribute '{1}' does not exist.. + + + + + Looks up a localized string similar to The actual length is greater than the MaxLength value. The length must be smaller than or equal to {0}.. + + + + + Looks up a localized string similar to The actual length is less than the MinLength value. The length must be bigger than or equal to {0}.. + + + + + Looks up a localized string similar to Element '{0}' referenced by '{1}@{2}' does not exist in part '{3}'. The index is '{4}'.. + + + + + Looks up a localized string similar to Element '{0}' referenced by '{1}@{2}' does not exist in part '{3}'. The reference value is '{4}'.. + + + + + Looks up a localized string similar to Attribute '{0}' should have unique value. Its current value '{1}' duplicates with others.. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:base64Binary. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:hexBinary. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:ID. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:integer. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:language. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:NCName. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:nonNegativeInteger. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:positiveInteger. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:QName. + + + + + Looks up a localized string similar to http://www.w3.org/2001/XMLSchema:token. + + + + + Settings for validation. + + + + + Initializes a new instance of the ValidationSettings. + + The target file format. + + + + Gets the target file format. + + + + + Gets or sets the maximum number of errors the OpenXmlValidator will return. + Default is 1000. A zero (0) value means no limitation. + + + + + Enumerate all the descendants elements of this element and do validating. + Preorder traversing. + + + The delegate method to do the validating. + + + + Defines the XmlConvertingReader - This XmlReader tries to replace the Strict namespaces with equivalent Transitional namespaces. + + + + + Creates an instance of + + + + + Gets the inner + + + + + Gets a value indicating whether strict translation is enabled. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Defines the XmlConvertingReaderFactory. + + + + + Defines XPath like information for OpenXmlElement. + + + + + Initializes a new instance of the from + the specified . + + + The . + + + + + Initializes a new instance of the from + the specified . + + The . + + + + Gets the namespace definitions used in + + + + + Gets the XPath string. + + + + + Gets the internal URI of the part relative to the package root. + + + + + Gets XmlPath information of the specified OpenXmlElement. + + The OpenXmlElement. + XmlPath to this element from root element. + + + + Indicates that an API is experimental and it may change in the future. + + + This attribute allows call sites to be flagged with a diagnostic that indicates that an experimental + feature is used. Authors can use this attribute to ship preview features in their assemblies. + + + + + Initializes a new instance of the class, specifying the ID that the compiler will use + when reporting a use of the API the attribute applies to. + + The ID that the compiler will use when reporting a use of the API the attribute applies to. + + + + Gets the ID that the compiler will use when reporting a use of the API the attribute applies to. + + The unique diagnostic ID. + + The diagnostic ID is shown in build output for warnings and errors. + This property represents the unique ID that can be used to suppress the warnings or errors, if needed. + + + + + Gets or sets the URL for corresponding documentation. + The API accepts a format string instead of an actual URL, creating a generic URL that includes the diagnostic ID. + + The format string that represents a URL to corresponding documentation. + An example format string is https://contoso.com/obsoletion-warnings/{0}. + + + + Specifies that null is allowed as an input even if the corresponding type disallows it. + + + + + Specifies that null is disallowed as an input even if the corresponding type allows it. + + + + + Specifies that an output may be null even if the corresponding type disallows it. + + + + + Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns. + + + + + Specifies that when a method returns , the parameter may be null even if the corresponding type disallows it. + + + + Initializes the attribute with the specified return value condition. + + The return value condition. If the method returns this value, the associated parameter may be null. + + + + Gets a value indicating whether the return value condition. + + + + Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it. + + + + Initializes the attribute with the specified return value condition. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + + Gets a value indicating whether the return value condition. + + + + Specifies that the output will be non-null if the named parameter is non-null. + + + + Initializes the attribute with the associated parameter name. + + The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null. + + + + Gets the associated parameter name. + + + + Applied to a method that will never return under any circumstance. + + + + + Specifies that the method will not return if the associated Boolean parameter is passed the specified value. + + + + Initializes the attribute with the specified parameter value. + + The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to + the associated parameter matches this value. + + + + Gets a value indicating whether the condition parameter value. + + + + Specifies that the method or property will ensure that the listed field and property members have not-null values. + + + + Initializes the attribute with a field or property member. + + The field or property member that is promised to be not-null. + + + + Initializes the attribute with the list of field and property members. + + The list of field and property members that are promised to be not-null. + + + + Gets field or property member names. + + + + Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition. + + + + Initializes the attribute with the specified return value condition and a field or property member. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + The field or property member that is promised to be not-null. + + + + Initializes the attribute with the specified return value condition and list of field and property members. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + The list of field and property members that are promised to be not-null. + + + + Gets a value indicating whether the return value condition. + + + Gets field or property member names. + + + diff --git a/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml.meta b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml.meta new file mode 100644 index 0000000..9ccc3cf --- /dev/null +++ b/Assets/Packages/DocumentFormat.OpenXml.Framework.3.1.1/lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1da19ad0276dc204386cbf0ea8b7024d +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0.meta b/Assets/Packages/ExcelNumberFormat.1.1.0.meta new file mode 100644 index 0000000..a3cdf5b --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0acfa03825090d64dbd22356207f452a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/.signature.p7s b/Assets/Packages/ExcelNumberFormat.1.1.0/.signature.p7s new file mode 100644 index 0000000..cb3a58e Binary files /dev/null and b/Assets/Packages/ExcelNumberFormat.1.1.0/.signature.p7s differ diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/ExcelNumberFormat.nuspec b/Assets/Packages/ExcelNumberFormat.1.1.0/ExcelNumberFormat.nuspec new file mode 100644 index 0000000..90d8dcb --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0/ExcelNumberFormat.nuspec @@ -0,0 +1,22 @@ + + + + ExcelNumberFormat + 1.1.0 + ExcelNumberFormat developers + false + MIT + https://licenses.nuget.org/MIT + icon.png + https://github.com/andersnm/ExcelNumberFormat + .NET library to parse ECMA-376 number format strings and format values like Excel and other spreadsheet softwares. + excel,formatting,numfmt,formatcode + + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/ExcelNumberFormat.nuspec.meta b/Assets/Packages/ExcelNumberFormat.1.1.0/ExcelNumberFormat.nuspec.meta new file mode 100644 index 0000000..2a32d7e --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0/ExcelNumberFormat.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e6320f78470d22e4b9a693da7ebc309e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/icon.png b/Assets/Packages/ExcelNumberFormat.1.1.0/icon.png new file mode 100644 index 0000000..f9b6229 Binary files /dev/null and b/Assets/Packages/ExcelNumberFormat.1.1.0/icon.png differ diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/icon.png.meta b/Assets/Packages/ExcelNumberFormat.1.1.0/icon.png.meta new file mode 100644 index 0000000..46857fd --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0/icon.png.meta @@ -0,0 +1,136 @@ +fileFormatVersion: 2 +guid: 8224defad2c47c14196d6792621a6bf5 +TextureImporter: + internalIDToNameTable: + - first: + 213: 6934086728263231946 + second: icon_0 + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: icon_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac961e71423da3060800000000000000 + internalID: 6934086728263231946 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/lib.meta b/Assets/Packages/ExcelNumberFormat.1.1.0/lib.meta new file mode 100644 index 0000000..4bbde89 --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1176c2a1cc46a2744aa436d4690f3629 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0.meta b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0.meta new file mode 100644 index 0000000..d4b03c0 --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e57f5ceee7b62e749b59c981c9832788 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.dll b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.dll new file mode 100644 index 0000000..aaf7bf8 Binary files /dev/null and b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.dll differ diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.dll.meta b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.dll.meta new file mode 100644 index 0000000..7f37f5d --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 544e4365c22154e45b61e103730a310d +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.xml b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.xml new file mode 100644 index 0000000..811b0c3 --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.xml @@ -0,0 +1,110 @@ + + + + ExcelNumberFormat + + + + + A backward-compatible version of . + Starting from .net Core 3.0 the default precision used for formatting floating point number has changed. + To always format numbers the same way, no matter what version of runtime is used, we specify the precision explicitly. + + + + + Similar to regular .NET DateTime, but also supports 0/1 1900 and 29/2 1900. + + + + + The closest .NET DateTime to the specified excel date. + + + + + Number of days to adjust by in post. + + + + + Constructs a new ExcelDateTime from a numeric value. + + + + + Wraps a regular .NET datetime. + + + + + + Prints right-aligned, left-padded integer before the decimal separator. With optional most-significant zero. + + + + + Prints left-aligned, right-padded integer after the decimal separator. Does not print significant zero. + + + + + Prints left-aligned, left-padded fraction integer denominator. + Assumes tokens contain only placeholders, valueString has fewer or equal number of digits as tokens. + + + + + Returns the first digit from valueString. If the token is '?' + returns the first significant digit from valueString, or '0' if there are no significant digits. + The out valueIndex parameter contains the offset to the next digit in valueString. + + + + + Parse ECMA-376 number format strings and format values like Excel and other spreadsheet softwares. + + + + + Initializes a new instance of the class. + + The number format string. + + + + Gets a value indicating whether the number format string is valid. + + + + + Gets the number format string. + + + + + Gets a value indicating whether the format represents a DateTime + + + + + Gets a value indicating whether the format represents a TimeSpan + + + + + Formats a value with this number format in a specified culture. + + The value to format. + The culture to use for formatting. + If false, numeric dates start on January 0 1900 and include February 29 1900 - like Excel on PC. If true, numeric dates start on January 1 1904 - like Excel on Mac. + The formatted string. + + + + Parses as many placeholders and literals needed to format a number with optional decimals. + Returns number of tokens parsed, or 0 if the tokens didn't form a number. + + + + diff --git a/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.xml.meta b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.xml.meta new file mode 100644 index 0000000..b5d2572 --- /dev/null +++ b/Assets/Packages/ExcelNumberFormat.1.1.0/lib/netstandard2.0/ExcelNumberFormat.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4a5c4cf341a98204dae0bb00a3207b7b +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/RBush.Signed.4.0.0.meta b/Assets/Packages/RBush.Signed.4.0.0.meta new file mode 100644 index 0000000..5096fbe --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ed91761905bea14ea8f64d6cf8ca14a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/RBush.Signed.4.0.0/.signature.p7s b/Assets/Packages/RBush.Signed.4.0.0/.signature.p7s new file mode 100644 index 0000000..8aebbf3 Binary files /dev/null and b/Assets/Packages/RBush.Signed.4.0.0/.signature.p7s differ diff --git a/Assets/Packages/RBush.Signed.4.0.0/RBush.Signed.nuspec b/Assets/Packages/RBush.Signed.4.0.0/RBush.Signed.nuspec new file mode 100644 index 0000000..48b0590 --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/RBush.Signed.nuspec @@ -0,0 +1,21 @@ + + + + RBush.Signed + 4.0.0 + RBush + viceroypenguin + MIT + https://licenses.nuget.org/MIT + readme.md + Spatial Index data structure; used to make it easier to find data points on a two dimensional plane. + Copyright © 2017-2024 Turning Code, LLC (and others) + .NET R-Tree Algorithm tree search spatial index + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/RBush.Signed.4.0.0/RBush.Signed.nuspec.meta b/Assets/Packages/RBush.Signed.4.0.0/RBush.Signed.nuspec.meta new file mode 100644 index 0000000..425873a --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/RBush.Signed.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 61dba2885a45fb743b14d62910960c8d +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/RBush.Signed.4.0.0/lib.meta b/Assets/Packages/RBush.Signed.4.0.0/lib.meta new file mode 100644 index 0000000..19a66f7 --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b31c974c339e9547bfc82b136b6f6fb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0.meta b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0.meta new file mode 100644 index 0000000..41fd2f6 --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 88578e3db5b93e54d91a52d038afd034 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.dll b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.dll new file mode 100644 index 0000000..341b5d2 Binary files /dev/null and b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.dll differ diff --git a/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.dll.meta b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.dll.meta new file mode 100644 index 0000000..2c7b02d --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: bc831b832c743eb428d80f84265ada77 +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.xml b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.xml new file mode 100644 index 0000000..d4744f1 --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.xml @@ -0,0 +1,907 @@ + + + + RBush + + + + Throws an if is null. + The reference type argument to validate as non-null. + The name of the parameter with which corresponds. + + + + A bounding envelope, used to identify the bounds of of the points within + a particular node. + + The minimum X value of the bounding box. + The minimum Y value of the bounding box. + The maximum X value of the bounding box. + The maximum Y value of the bounding box. + + + + A bounding envelope, used to identify the bounds of of the points within + a particular node. + + The minimum X value of the bounding box. + The minimum Y value of the bounding box. + The maximum X value of the bounding box. + The maximum Y value of the bounding box. + + + The minimum X value of the bounding box. + + + The minimum Y value of the bounding box. + + + The maximum X value of the bounding box. + + + The maximum Y value of the bounding box. + + + + The calculated area of the bounding box. + + + + + Half of the linear perimeter of the bounding box + + + + + Extends a bounding box to include another bounding box + + The other bounding box + A new bounding box that encloses both bounding boxes. + Does not affect the current bounding box. + + + + Intersects a bounding box to only include the common area + of both bounding boxes + + The other bounding box + A new bounding box that is the intersection of both bounding boxes. + Does not affect the current bounding box. + + + + Determines whether is contained + within this bounding box. + + The other bounding box + + if is + completely contained within this bounding box; + otherwise. + + + + + Determines whether intersects + this bounding box. + + The other bounding box + + if is + intersects this bounding box in any way; + otherwise. + + + + + A bounding box that contains the entire 2-d plane. + + + + + An empty bounding box. + + + + + Exposes an that describes the + bounding box of current object. + + + + + The bounding box of the current object. + + + + + Provides the base interface for the abstraction for + an updateable data store of elements on a 2-d plane. + + The type of elements in the index. + + + + Adds an object to the + + + The object to be added to . + + + + + Removes an object from the . + + + The object to be removed from the . + + indicating whether the item was removed. + + + + Removes all elements from the . + + + + + Adds all of the elements from the collection to the . + + + A collection of items to add to the . + + + For multiple items, this method is more performant than + adding items individually via . + + + + + Provides the base interface for the abstraction of + an index to find points within a bounding box. + + The type of elements in the index. + + + + Get all of the elements within the current . + + + A list of every element contained in the . + + + + + Get all of the elements from this + within the bounding box. + + The area for which to find elements. + + A list of the points that are within the bounding box + from this . + + + + + An implementation of the R-tree data structure for 2-d spatial indexing. + + The type of elements in the index. + + + + The root of the R-tree. + + + + + The bounding box of all elements currently in the data structure. + + + + + Initializes a new instance of the that is + empty and has the default tree width and default . + + + + + Initializes a new instance of the that is + empty and has a custom max number of elements per tree node + and default . + + + + + + Initializes a new instance of the that is + empty and has a custom max number of elements per tree node + and a custom . + + + + + + + Gets the number of items currently stored in the + + + + + Removes all elements from the . + + + + + Get all of the elements within the current . + + + A list of every element contained in the . + + + + + Get all of the elements from this + within the bounding box. + + The area for which to find elements. + + A list of the points that are within the bounding box + from this . + + + + + Adds an object to the + + + The object to be added to . + + + + + Adds all of the elements from the collection to the . + + + A collection of items to add to the . + + + For multiple items, this method is more performant than + adding items individually via . + + + + + Removes an object from the . + + + The object to be removed from the . + + indicating whether the item was deleted. + + + + A node in an R-tree data structure containing other nodes + or elements of type . + + + + + The descendent nodes or elements of a + + + + + The current height of a . + + + A node containing individual elements has a of 1. + + + + + Determines whether the current is a leaf node. + + + + + Gets the bounding box of all of the descendents of the + current . + + + + + Extension methods for the object. + + + + + Get the nearest neighbors to a specific point. + + The type of elements in the index. + An index of points. + The number of points to retrieve. + The x-coordinate of the center point. + The y-coordinate of the center point. + The maximum distance of points to be considered "near"; optional. + A function to test each element for a condition; optional. + The list of up to elements nearest to the given point. + + + + Calculates the distance from the borders of an + to a given point. + + The from which to find the distance + The x-coordinate of the given point + The y-coordinate of the given point + The calculated Euclidean shortest distance from the to a given point. + + + + Specifies that null is allowed as an input even if the corresponding type disallows it. + + + + + Specifies that null is disallowed as an input even if the corresponding type allows it. + + + + + Applied to a method that will never return under any circumstance. + + + + + Specifies that the method will not return if the associated Boolean parameter is passed the specified value. + + + + + Initializes the attribute with the specified parameter value. + + + The condition parameter value. Code after the method will be considered unreachable + by diagnostics if the argument to the associated parameter matches this value. + + + + + Gets the condition parameter value. + + + + + Indicates that an API is experimental and it may change in the future. + + + This attribute allows call sites to be flagged with a diagnostic that indicates that an experimental + feature is used. Authors can use this attribute to ship preview features in their assemblies. + + + + + Initializes a new instance of the class, + specifying the ID that the compiler will use when reporting a use of the API the attribute applies to. + + The ID that the compiler will use when reporting a use of the API the attribute applies to. + + + + Gets the ID that the compiler will use when reporting a use of the API the attribute applies to. + + The unique diagnostic ID. + + The diagnostic ID is shown in build output for warnings and errors. + This property represents the unique ID that can be used to suppress the warnings or errors, if needed. + + + + + Gets or sets the URL for corresponding documentation. + The API accepts a format string instead of an actual URL, creating a generic URL that includes the diagnostic ID. + + The format string that represents a URL to corresponding documentation. + An example format string is https://contoso.com/obsoletion-warnings/{0}. + + + + Specifies that an output may be null even if the corresponding type disallows it. + + + + + Specifies that when a method returns , the parameter may be null even if the corresponding type disallows it. + + + + + Initializes the attribute with the specified return value condition. + + The return value condition. If the method returns this value, the associated parameter may be null. + + + + Gets the return value condition. + + + + + Specifies that the method or property will ensure that the listed field and property members have not-null values. + + + + + Initializes the attribute with a field or property member. + + The field or property member that is promised to be not-null. + + + + Initializes the attribute with the list of field and property members. + + The list of field and property members that are promised to be not-null. + + + + Gets field or property member names. + + + + + Specifies that the method or property will ensure that the listed field and property + members have not-null values when returning with the specified return value condition. + + + + + Initializes the attribute with the specified return value condition and a field or property member. + + The return value condition. If the method returns this value, the associated parameter will not be null. + The field or property member that is promised to be not-null. + + + + Initializes the attribute with the specified return value condition and list of field and property members. + + The return value condition. If the method returns this value, the associated parameter will not be null. + The list of field and property members that are promised to be not-null. + + + + Gets the return value condition. + + + + + Gets field or property member names. + + + + + Specifies that an output will not be null even if the corresponding type allows it. + Specifies that an input argument was not null when the call returns. + + + + + Specifies that the output will be non-null if the named parameter is non-null. + + + + + Initializes the attribute with the associated parameter name. + + The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null. + + + + Gets the associated parameter name. + + + + + Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it. + + + + + Initializes the attribute with the specified return value condition. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + Gets the return value condition. + + + + Specifies that this constructor sets all required members for the current type, + and callers do not need to set any required members themselves. + + + + + Specifies the syntax used in a string. + + + + + Initializes the with the identifier of the syntax used. + + The syntax identifier. + + + Initializes the with the identifier of the syntax used. + The syntax identifier. + Optional arguments associated with the specific syntax employed. + + + Gets the identifier of the syntax used. + + + Optional arguments associated with the specific syntax employed. + + + The syntax identifier for strings containing composite formats for string formatting. + + + The syntax identifier for strings containing date format specifiers. + + + The syntax identifier for strings containing date and time format specifiers. + + + The syntax identifier for strings containing format specifiers. + + + The syntax identifier for strings containing format specifiers. + + + The syntax identifier for strings containing JavaScript Object Notation (JSON). + + + The syntax identifier for strings containing numeric format specifiers. + + + The syntax identifier for strings containing regular expressions. + + + The syntax identifier for strings containing time format specifiers. + + + The syntax identifier for strings containing format specifiers. + + + The syntax identifier for strings containing URIs. + + + The syntax identifier for strings containing XML. + + + + Used to indicate a byref escapes and is not scoped. + + + + There are several cases where the C# compiler treats a as implicitly + - where the compiler does not allow the to escape the method. + + + For example: + + for instance methods. + parameters that refer to types. + parameters. + + + + This attribute is used in those instances where the should be allowed to escape. + + + Applying this attribute, in any form, has impact on consumers of the applicable API. It is necessary for + API authors to understand the lifetime implications of applying this attribute and how it may impact their users. + + + + + Represent a type can be used to index a collection either from the start or the end. + + Index is used by the C# compiler to support the new index syntax + + int[] someArray = new int[5] { 1, 2, 3, 4, 5 } ; + int lastElement = someArray[^1]; // lastElement = 5 + + + + + Construct an Index using a value and indicating if the index is from the start or from the end. + The index value. it has to be zero or positive number. + Indicating if the index is from the start or from the end. + + If the Index constructed from the end, index value 1 means pointing at the last element and index value 0 means pointing at beyond last element. + + + + Create an Index pointing at first element. + + + Create an Index pointing at beyond last element. + + + Create an Index from the start at the position indicated by the value. + The index value from the start. + + + Create an Index from the end at the position indicated by the value. + The index value from the end. + + + Returns the index value. + + + Indicates whether the index is from the start or the end. + + + Calculate the offset from the start using the giving collection length. + The length of the collection that the Index will be used with. length has to be a positive value + + For performance reason, we don't validate the input length parameter and the returned offset value against negative values. + we don't validate either the returned offset is greater than the input length. + It is expected Index will be used with collections which always have non negative length/count. If the returned offset is negative and + then used to index a collection will get out of range exception which will be same affect as the validation. + + + + Indicates whether the current Index object is equal to another object of the same type. + An object to compare with this object + + + Indicates whether the current Index object is equal to another Index object. + An object to compare with this object + + + Returns the hash code for this instance. + + + Converts integer number to an Index. + + + Converts the value of the current Index object to its equivalent string representation. + + + Represent a range has start and end indexes. + + Range is used by the C# compiler to support the range syntax. + + int[] someArray = new int[5] { 1, 2, 3, 4, 5 }; + int[] subArray1 = someArray[0..2]; // { 1, 2 } + int[] subArray2 = someArray[1..^0]; // { 2, 3, 4, 5 } + + + + + Represent the inclusive start index of the Range. + + + Represent the exclusive end index of the Range. + + + Construct a Range object using the start and end indexes. + Represent the inclusive start index of the range. + Represent the exclusive end index of the range. + + + Indicates whether the current Range object is equal to another object of the same type. + An object to compare with this object + + + Indicates whether the current Range object is equal to another Range object. + An object to compare with this object + + + Returns the hash code for this instance. + + + Converts the value of the current Range object to its equivalent string representation. + + + Create a Range object starting from start index to the end of the collection. + + + Create a Range object starting from first element in the collection to the end Index. + + + Create a Range object starting from first element to the end. + + + Calculate the start offset and length of range object using a collection length. + The length of the collection that the range will be used with. length has to be a positive value. + + For performance reason, we don't validate the input length parameter against negative values. + It is expected Range will be used with collections which always have non negative length/count. + We validate the range is inside the length scope though. + + + + + Indicates the type of the async method builder that should be used by a language compiler to + build the attributed async method or to build the attributed type when used as the return type + of an async method. + + + + Initializes the . + The of the associated builder. + + + Gets the of the associated builder. + + + + An attribute that allows parameters to receive the expression of other parameters. + + + + + Initializes a new instance of the class. + + The condition parameter value. + + + + Gets the parameter name the expression is retrieved from. + + + + + Initialize the attribute to refer to the method on the type. + + The type of the builder to use to construct the collection. + The name of the method on the builder to use to construct the collection. + + must refer to a static method that accepts a single parameter of + type and returns an instance of the collection being built containing + a copy of the data from that span. In future releases of .NET, additional patterns may be supported. + + + + + Gets the type of the builder to use to construct the collection. + + + + + Gets the name of the method on the builder to use to construct the collection. + + + This should match the metadata name of the target method. + For example, this might be ".ctor" if targeting the type's constructor. + + + + + Indicates that compiler support for a particular feature is required for the location where this attribute is applied. + + + + + Creates a new instance of the type. + + The name of the feature to indicate. + + + + The name of the compiler feature. + + + + + If true, the compiler can choose to allow access to the location where this attribute is applied if it does not understand . + + + + + The used for the ref structs C# feature. + + + + + The used for the required members C# feature. + + + + + Indicates which arguments to a method involving an interpolated string handler should be passed to that handler. + + + + + Initializes a new instance of the class. + + The name of the argument that should be passed to the handler. + may be used as the name of the receiver in an instance method. + + + + Initializes a new instance of the class. + + The names of the arguments that should be passed to the handler. + may be used as the name of the receiver in an instance method. + + + + Gets the names of the arguments that should be passed to the handler. + + may be used as the name of the receiver in an instance method. + + + + Indicates the attributed type is to be used as an interpolated string handler. + + + + + Reserved to be used by the compiler for tracking metadata. + This class should not be used by developers in source code. + + + + + Used to indicate to the compiler that a method should be called + in its containing module's initializer. + + + When one or more valid methods + with this attribute are found in a compilation, the compiler will + emit a module initializer which calls each of the attributed methods. + + Certain requirements are imposed on any method targeted with this attribute: + - The method must be `static`. + - The method must be an ordinary member method, as opposed to a property accessor, constructor, local function, etc. + - The method must be parameterless. + - The method must return `void`. + - The method must not be generic or be contained in a generic type. + - The method's effective accessibility must be `internal` or `public`. + + The specification for module initializers in the .NET runtime can be found here: + https://github.com/dotnet/runtime/blob/main/docs/design/specs/Ecma-335-Augments.md#module-initializer + + + + + Specifies that a type has required members or that a member is required. + + + + + Reserved for use by a compiler for tracking metadata. + This attribute should not be used by developers in source code. + + + + + Used to indicate to the compiler that the .locals init flag should not be set in method headers. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified message. + + An optional message associated with this attribute instance. + + + + Returns the optional message associated with this attribute instance. + + + + + Returns the optional URL associated with this attribute instance. + + + + diff --git a/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.xml.meta b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.xml.meta new file mode 100644 index 0000000..6265a9b --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/lib/netstandard2.0/RBush.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4b76db0b2ded8f74596f9c4d51979c6d +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/RBush.Signed.4.0.0/readme.md b/Assets/Packages/RBush.Signed.4.0.0/readme.md new file mode 100644 index 0000000..59f8893 --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/readme.md @@ -0,0 +1,150 @@ +RBush +===== + +RBush is a high-performance .NET library for 2D **spatial indexing** of points and rectangles. +It's based on an optimized **R-tree** data structure with **bulk insertion** support. + +*Spatial index* is a special data structure for points and rectangles +that allows you to perform queries like "all items within this bounding box" very efficiently +(e.g. hundreds of times faster than looping over all items). +It's most commonly used in maps and data visualizations. + +This code has been copied over from the Javascript [RBush](https://github.com/mourner/rbush) library. + +[![Build status](https://github.com/viceroypenguin/RBush/actions/workflows/build.yml/badge.svg)](https://github.com/viceroypenguin/RBush/actions) +[![License](https://img.shields.io/github/license/viceroypenguin/RBush)](license.txt) + +## Install + +Install with Nuget (`Install-Package RBush`). + +## Usage + +### Creating a Tree + +First, define the data item class to implement `ISpatialData`. Then the class can be used as such: + +```csharp +class Point : ISpatialData +{ + public Point(Envelope envelope) => + _envelope = envelope; + private readonly Envelope _envelope; + public public ref readonly Envelope Envelope => _envelope; +} + +var tree = new RBush() +``` + +An optional argument (`maxEntries`) to the constructor defines the maximum number +of entries in a tree node. `9` (used by default) is a reasonable choice for most +applications. Higher value means faster insertion and slower search, and vice versa. + +```csharp +var tree = new RBush(maxEntries: 16) +``` + +### Adding Data + +Insert an item: + +```csharp +var item = new Point( + new Envelope( + MinX: 0, + MinY: 0, + MaxX: 0, + MaxY: 0)); +tree.Insert(item); +``` + +### Bulk-Inserting Data + +Bulk-insert the given data into the tree: + +```csharp +var points = new List(); +tree.BulkLoad(points); +``` + +Bulk insertion is usually ~2-3 times faster than inserting items one by one. +After bulk loading (bulk insertion into an empty tree), +subsequent query performance is also ~20-30% better. + +Note that when you do bulk insertion into an existing tree, +it bulk-loads the given data into a separate tree +and inserts the smaller tree into the larger tree. +This means that bulk insertion works very well for clustered data +(where items in one update are close to each other), +but makes query performance worse if the data is scattered. + +### Search + +```csharp +var result = tree.Search( + new Envelope + ( + minX: 40, + minY: 20, + maxX: 80, + maxY: 70 + ); +``` + +Returns an `IEnumerable` of data items (points or rectangles) that the given bounding box intersects. + +```csharp +var allItems = tree.Search(); +``` + +Returns all items of the tree. + +### Removing Data + +#### Remove a previously inserted item: + +```csharp +tree.Delete(item); +``` + +Unless provided an `IComparer`, RBush uses `EqualityComparer.Default` +to select the item. If the item being passed in is not the same reference +value, ensure that the class supports `EqualityComparer.Default` +equality testing. + +#### Remove all items: + +```csharp +tree.Clear(); +``` + +## Credit + +This code was adapted from a Javascript library called [RBush](https://github.com/mourner/rbush). The only +changes made were to adapt coding styles and preferences. + +## Algorithms Used + +* single insertion: non-recursive R-tree insertion with overlap minimizing split routine from R\*-tree (split is very effective in JS, while other R\*-tree modifications like reinsertion on overflow and overlap minimizing subtree search are too slow and not worth it) +* single deletion: non-recursive R-tree deletion using depth-first tree traversal with free-at-empty strategy (entries in underflowed nodes are not reinserted, instead underflowed nodes are kept in the tree and deleted only when empty, which is a good compromise of query vs removal performance) +* bulk loading: OMT algorithm (Overlap Minimizing Top-down Bulk Loading) combined with FloydRivest selection algorithm +* bulk insertion: STLT algorithm (Small-Tree-Large-Tree) +* search: standard non-recursive R-tree search + +## Papers + +* [R-trees: a Dynamic Index Structure For Spatial Searching](http://www-db.deis.unibo.it/courses/SI-LS/papers/Gut84.pdf) +* [The R*-tree: An Efficient and Robust Access Method for Points and Rectangles+](http://dbs.mathematik.uni-marburg.de/publications/myPapers/1990/BKSS90.pdf) +* [OMT: Overlap Minimizing Top-down Bulk Loading Algorithm for R-tree](http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-74/files/FORUM_18.pdf) +* [Bulk Insertions into R-Trees Using the Small-Tree-Large-Tree Approach](http://www.cs.arizona.edu/~bkmoon/papers/dke06-bulk.pdf) +* [R-Trees: Theory and Applications (book)](http://www.apress.com/9781852339777) + +## Development + +Clone the repository and open `RBush.sln` in Visual Studio. + +## Compatibility + +RBush should run on any .NET system that supports .NET Standard 1.2 (.NET Framework 4.5.1 or later; .NET Core 1.0 or later). + + diff --git a/Assets/Packages/RBush.Signed.4.0.0/readme.md.meta b/Assets/Packages/RBush.Signed.4.0.0/readme.md.meta new file mode 100644 index 0000000..7ca66ea --- /dev/null +++ b/Assets/Packages/RBush.Signed.4.0.0/readme.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 51f58fe6849016b439cf6b61451fb0d3 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0.meta b/Assets/Packages/SixLabors.Fonts.1.0.0.meta new file mode 100644 index 0000000..e1dea39 --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 355b5fd9af0599c49b4f13d91e358127 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/.signature.p7s b/Assets/Packages/SixLabors.Fonts.1.0.0/.signature.p7s new file mode 100644 index 0000000..f87b3a9 Binary files /dev/null and b/Assets/Packages/SixLabors.Fonts.1.0.0/.signature.p7s differ diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/SixLabors.Fonts.nuspec b/Assets/Packages/SixLabors.Fonts.1.0.0/SixLabors.Fonts.nuspec new file mode 100644 index 0000000..7877b64 --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0/SixLabors.Fonts.nuspec @@ -0,0 +1,29 @@ + + + + SixLabors.Fonts + 1.0.0 + Six Labors and contributors + true + Apache-2.0 + https://licenses.nuget.org/Apache-2.0 + sixlabors.fonts.128.png + https://github.com/SixLabors/Fonts + A cross-platform library for loading and laying out fonts for processing and measuring; written in C# + Copyright © Six Labors + font truetype opentype woff woff2 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/SixLabors.Fonts.nuspec.meta b/Assets/Packages/SixLabors.Fonts.1.0.0/SixLabors.Fonts.nuspec.meta new file mode 100644 index 0000000..0815c7b --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0/SixLabors.Fonts.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a5c20281fe45f3b4082c411c402ee328 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/lib.meta b/Assets/Packages/SixLabors.Fonts.1.0.0/lib.meta new file mode 100644 index 0000000..977d400 --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b682e70f1ae8964468334a41e1af0053 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1.meta b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1.meta new file mode 100644 index 0000000..75a70f2 --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ac5c37ac8911a6649bab0cc219a5369f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.dll b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.dll new file mode 100644 index 0000000..651e04b Binary files /dev/null and b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.dll differ diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.dll.meta b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.dll.meta new file mode 100644 index 0000000..fcb5e88 --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 68c8fe8eb1e0dab488a842123ee978bb +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.xml b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.xml new file mode 100644 index 0000000..808a301 --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.xml @@ -0,0 +1,11311 @@ + + + + SixLabors.Fonts + + + + + A helper type for avoiding allocations while building arrays. + + The type of item contained in the array. + + + + Initializes a new instance of the struct. + + The intitial capacity of the array. + + + + Gets or sets the number of items in the array. + + + + + Returns a reference to specified element of the array. + + The index of the element to return. + The . + + Thrown when index less than 0 or index greater than or equal to . + + + + + Adds the given item to the array. + + The item to add. + + + + Appends a given number of empty items to the array returning + the items as a slice. + + The number of items in the slice. + Whether to clear the new slice, Defaults to . + The . + + + + Appends the slice to the array copying the data across. + + The array slice. + The . + + + + Clears the array. + Allocated memory is left intact for future usage. + + + + + Returns the current state of the array as a slice. + + The . + + + + Returns the current state of the array as a slice. + + The number of items in the slice. + The . + + + + Returns the current state of the array as a slice. + + The index at which to begin the slice. + The number of items in the slice. + The . + + + + ArraySlice represents a contiguous region of arbitrary memory similar + to and though constrained + to arrays. + Unlike , it is not a byref-like type. + + The type of item contained in the slice. + + + + Initializes a new instance of the struct. + + The underlying data buffer. + + + + Initializes a new instance of the struct. + + The underlying data buffer. + The offset position in the underlying buffer this slice was created from. + The number of items in the slice. + + + + Gets an empty + + + + + Gets the offset position in the underlying buffer this slice was created from. + + + + + Gets the number of items in the slice. + + + + + Gets a representing this slice. + + + + + Returns a reference to specified element of the slice. + + The index of the element to return. + The . + + Thrown when index less than 0 or index greater than or equal to . + + + + + Defines an implicit conversion of a to a + + + + + Defines an implicit conversion of an array to a + + + + + Copies the contents of this slice into destination span. If the source + and destinations overlap, this method behaves as if the original values in + a temporary location before the destination is overwritten. + + The slice to copy items into. + + Thrown when the destination slice is shorter than the source Span. + + + + + Fills the contents of this slice with the given value. + + + + + Forms a slice out of the given slice, beginning at 'start', of given length + + The index at which to begin this slice. + The desired length for the slice (exclusive). + + Thrown when the specified or end index is not in range (<0 or >Length). + + + + + + + + + + + + + + + + + + + + BinaryReader using big-endian encoding. + + + + + Buffer used for temporary storage before conversion into primitives + + + + + Initializes a new instance of the class. + Constructs a new binary reader with the given bit converter, reading + to the given stream, using the given encoding. + + Stream to read data from + if set to true [leave open]. + + + + Gets the underlying stream of the EndianBinaryReader. + + + + + Seeks within the stream. + + Offset to seek to. + Origin of seek operation. If SeekOrigin.Begin, the offset will be set to the start of stream position. + + + + Reads a single byte from the stream. + + The byte read + + + + Reads a single signed byte from the stream. + + The byte read + + + + Reads a 16-bit signed integer from the stream, using the bit converter + for this reader. 2 bytes are read. + + The 16-bit integer read + + + + Reads a fixed 32-bit value from the stream. + 4 bytes are read. + + The 32-bit value read. + + + + Reads a 32-bit signed integer from the stream, using the bit converter + for this reader. 4 bytes are read. + + The 32-bit integer read + + + + Reads a 64-bit signed integer from the stream. + 8 bytes are read. + + The 64-bit integer read. + + + + Reads a 16-bit unsigned integer from the stream. + 2 bytes are read. + + The 16-bit unsigned integer read. + + + + Reads a 16-bit unsigned integer from the stream representing an offset position. + 2 bytes are read. + + The 16-bit unsigned integer read. + + + + Reads array of 16-bit unsigned integers from the stream. + + The length. + + The 16-bit unsigned integer read. + + + + + Reads array of 16-bit unsigned integers from the stream to the buffer. + + The buffer to read to. + + + + Reads array or 32-bit unsigned integers from the stream. + + The length. + + The 32-bit unsigned integer read. + + + + + Reads array of 16-bit unsigned integers from the stream. + + The length. + + The 16-bit signed integer read. + + + + + Reads an array of 16-bit signed integers from the stream to the buffer. + + The buffer to read to. + + + + Reads a 8-bit unsigned integer from the stream, using the bit converter + for this reader. 1 bytes are read. + + The 8-bit unsigned integer read. + + + + Reads a 24-bit unsigned integer from the stream, using the bit converter + for this reader. 3 bytes are read. + + The 24-bit unsigned integer read. + + + + Reads a 32-bit unsigned integer from the stream, using the bit converter + for this reader. 4 bytes are read. + + The 32-bit unsigned integer read. + + + + Reads a 32-bit unsigned integer from the stream representing an offset position. + 4 bytes are read. + + The 32-bit unsigned integer read. + + + + Reads the specified number of bytes, returning them in a new byte array. + If not enough bytes are available before the end of the stream, this + method will return what is available. + + The number of bytes to read. + The bytes read. + + + + Reads a string of a specific length, which specifies the number of bytes + to read from the stream. These bytes are then converted into a string with + the encoding for this reader. + + The bytes to read. + The encoding. + + The string read from the stream. + + + + + Reads the uint32 string. + + a 4 character long UTF8 encoded string. + + + + Reads an offset consuming the given nuber of bytes. + + The offset size in bytes. + The 32-bit signed integer representing the offset. + Size is not in range. + + + + Reads the given number of bytes from the stream, throwing an exception + if they can't all be read. + + Buffer to read into. + Number of bytes to read. + + + + An disposable buffer that is backed by an array pool. + + The type of buffer element. + + + + A custom that can wrap of instances + and cast them to be for any arbitrary unmanaged value type. + + The value type to use when casting the wrapped instance. + + + + The wrapped of instance. + + + + + Initializes a new instance of the class. + + The of instance to wrap. + + + + + + + + + + + + + + + + Options for enabling color font support during layout and rendering. + + + + + Don't try rendering color glyphs at all + + + + + Render using glyphs accessed via Microsoft's COLR/CPAL table extensions to OpenType + + + + + Base class for exceptions thrown by this library. + + + + + + Initializes a new instance of the class. + + The message that describes the error. + + + + Exception for detailing missing font families. + + + + + + Initializes a new instance of the class. + + The name of the missing font family. + + + + Initializes a new instance of the class. + + The name of the missing font family. + + The collection of directories that were searched for the font family. + Pass an empty collection if font families were not searched in directories. + + + + + Gets the name of the font family that was not found. + + + + + Gets the collection of directories that were unsuccessfully searched for the font family. + + + If the exception did not originate from the then this property will be empty. + + + + + Helper methods to throw exceptions + + + + + Throws an . + + + + + Throws an . + + + + + Exception for detailing missing font families. + + + + + + Initializes a new instance of the class. + + The code point for the glyph we where unable to find. + + + + Exception font loading can throw if it encounters invalid data during font loading. + + + + + + Initializes a new instance of the class. + + The message that describes the error. + + + + Exception font loading can throw if it encounters invalid data during font loading. + + + + + + Initializes a new instance of the class. + + The message that describes the error. + The table. + + + + Gets the table where the error originated. + + + + + Exception font loading can throw if it finds a required table is missing during font loading. + + + + + + Initializes a new instance of the class. + + The message that describes the error. + The table. + + + + Gets the table where the error originated. + + + + + + Represents a font face with metrics, which is a set of glyphs with a specific style (regular, italic, bold etc). + + The font source is a filesystem path. + + + + + + + + Gets the filesystem path to the font face source. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reads a from the specified stream. + + The file path. + a . + + + + Defines a particular format for text, including font face, size, and style attributes. + This class cannot be inherited. + + + + + Initializes a new instance of the class. + + The font family. + The size of the font in PT units. + + + + Initializes a new instance of the class. + + The font family. + The size of the font in PT units. + The font style. + + + + Initializes a new instance of the class. + + The prototype. + The font style. + + + + Initializes a new instance of the class. + + The prototype. + The size of the font in PT units. + The font style. + + + + Initializes a new instance of the class. + + The prototype. + The size of the font in PT units. + + + + Gets the family. + + + + + Gets the name. + + + + + Gets the size of the font in PT units. + + + + + Gets the font metrics. + + + + + Gets a value indicating whether this is bold. + + + + + Gets a value indicating whether this is italic. + + + + + Gets the requested style. + + + + + Gets the filesystem path to the font family source. + + + When this method returns, contains the filesystem path to the font family source, + if the path exists; otherwise, the default value for the type of the path parameter. + This parameter is passed uninitialized. + + + if the was created via a filesystem path; otherwise, . + + + + + Gets the glyphs for the given codepoint. + + The code point of the character. + + When this method returns, contains the glyphs for the given codepoint if the glyphs + are found; otherwise the default value. This parameter is passed uninitialized. + + + if the face contains glyphs for the specified codepoint; otherwise, . + + + + + Gets the glyphs for the given codepoint. + + The code point of the character. + Options for enabling color font support during layout and rendering. + + When this method returns, contains the glyphs for the given codepoint and color support if the glyphs + are found; otherwise the default value. This parameter is passed uninitialized. + + + if the face contains glyphs for the specified codepoint; otherwise, . + + + + + Gets the glyphs for the given codepoint. + + The code point of the character. + The text attributes to apply to the glyphs. + Options for enabling color font support during layout and rendering. + + When this method returns, contains the glyphs for the given codepoint, attributes, and color support if the glyphs + are found; otherwise the default value. This parameter is passed uninitialized. + + + if the face contains glyphs for the specified codepoint; otherwise, . + + + + + Gets the glyphs for the given codepoint. + + The code point of the character. + The text attributes to apply to the glyphs. + The layout mode to apply to thte glyphs. + Options for enabling color font support during layout and rendering. + + When this method returns, contains the glyphs for the given codepoint, attributes, and color support if the glyphs + are found; otherwise the default value. This parameter is passed uninitialized. + + + if the face contains glyphs for the specified codepoint; otherwise, . + + + + + Gets the glyphs for the given codepoint. + + The code point of the character. + The text attributes to apply to the glyphs. + The text decorations to apply to the glyphs. + The layout mode to apply to thte glyphs. + Options for enabling color font support during layout and rendering. + + When this method returns, contains the glyphs for the given codepoint, attributes, and color support if the glyphs + are found; otherwise the default value. This parameter is passed uninitialized. + + + if the face contains glyphs for the specified codepoint; otherwise, . + + + + + Gets the amount, in px units, the glyph should be offset if it is proceeded by + the glyph. + + The previous glyph. + The current glyph. + The DPI (Dots Per Inch) to render/measure the kerning offset at. + + When this method returns, contains the offset, in font units, that should be applied to the + glyph, if the offset is found; otherwise the default vector value. + This parameter is passed uninitialized. + + + if the face contains and offset for the glyph combination; otherwise, . + + + + + Represents a collection of font families. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The collection of directories used to search for font families. + + Use this constructor instead of the parameterless constructor if the fonts added to that collection + are actually added after searching inside physical file system directories. The message of the + will include the searched directories. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Extension methods for . + + + + + Adds the fonts from the collection to this . + + The font collection. + The containing the system fonts. + + + + Adds the fonts from the collection to this . + + The font collection. + The delegate that defines the conditions of to add into the font collection. + The containing the system fonts. + + + + Provides basic descriptive metadata for the font. + + + + + Initializes a new instance of the class. + + The name table. + The os2 table. + The head table. + + + + Gets the style. + + + + + Gets the name of the font in the invariant culture. + + + + + Gets the name of the font family in the invariant culture. + + + + + Gets the font sub family in the invariant culture. + + + + + Gets the name of the font. + + The culture to load metadata in. + The font name. + + + + Gets the name of the font family. + + The culture to load metadata in. + The font family name. + + + + Gets the font sub family. + + The culture to load metadata in. + The font sub family name. + + + + Gets the name matching the given culture and id. + If is passed this method will return the first name matching the id. + + The culture to load metadata in. + The name id to match. + The name. + + + + Reads a from the specified stream. + + The file path. + a . + + + + Reads a from the specified stream. + + The stream. + a . + + + + Reads a from the specified stream. + + The reader. + + a . + + + + + Reads all the s from the file at the specified path (typically a .ttc file like simsun.ttc). + + The file path. + a . + + + + Reads all the s from the specified stream (typically a .ttc file like simsun.ttc). + + The stream to read the font collection from. + a . + + + + Defines a group of type faces having a similar basic design and certain + variations in styles. + + + + + Initializes a new instance of the struct. + + The name. + The collection. + The culture the family was extracted against + + + + Gets the name. + + + + + Gets the culture this instance was extracted against. + + + + + Compares two objects for equality. + + The on the left side of the operand. + The on the right side of the operand. + + if the current left is equal to the + parameter; otherwise, . + + + + + Compares two objects for inequality. + + The on the left side of the operand. + The on the right side of the operand. + + if the current left is unequal to the + parameter; otherwise, . + + + + + Create a new instance of the for the named font family with regular styling. + + The size of the font in PT units. + The new . + + + + Create a new instance of the for the named font family. + + The size of the font in PT units. + The font style. + The new . + + + + Gets the collection of that are currently available. + + The . + + + + Gets the collection of filesystem paths to the font family sources. + + + When this method returns, contains the filesystem paths to the font family sources, + if the path exists; otherwise, an empty value for the type of the paths parameter. + This parameter is passed uninitialized. + + + if the was created via filesystem paths; otherwise, . + + + + + Gets the specified font metrics matching the given font style. + + The font style to use when searching for a match. + + When this method returns, contains the metrics associated with the specified name, + if the name is found; otherwise, the default value for the type of the metrics parameter. + This parameter is passed uninitialized. + + + if the contains font metrics + with the specified name; otherwise, . + + + + + + + + + + + + + + + + + Represents a font face with metrics, which is a set of glyphs with a specific style (regular, italic, bold etc). + + + + + Gets the basic description of the face. + + + + + Gets the number of font units per EM square for this face. + + + + + Gets the scale factor that is applied to all glyphs in this face. + Calculated as 72 * so that 1pt = 1px. + + + + + Gets the metrics specific to horizontal text. + + + + + Gets the metrics specific to vertical text. + + + + + Gets the recommended horizontal size in font design units for subscripts for this font. + + + + + Gets the recommended vertical size in font design units for subscripts for this font. + + + + + Gets the recommended horizontal offset in font design units for subscripts for this font. + + + + + Gets the recommended vertical offset in font design units for subscripts for this font. + + + + + Gets the recommended horizontal size in font design units for superscripts for this font. + + + + + Gets the recommended vertical size in font design units for superscripts for this font. + + + + + Gets the recommended horizontal offset in font design units for superscripts for this font. + + + + + Gets the recommended vertical offset in font design units for superscripts for this font. + + + + + Gets thickness of the strikeout stroke in font design units. + + + + + Gets the position of the top of the strikeout stroke relative to the baseline in font design units. + + + + + Gets the suggested distance of the top of the underline from the baseline (negative values indicate below baseline). + + + + + Gets the suggested values for the underline thickness. In general, the underline thickness should match the thickness of + the underscore character (U+005F LOW LINE), and should also match the strikeout thickness, which is specified in the OS/2 table. + + + + + Gets the italic angle in counter-clockwise degrees from the vertical. Zero for upright text, negative for text that leans to the right (forward). + + + + + Gets the specified glyph id matching the codepoint. + + The codepoint. + + When this method returns, contains the glyph id associated with the specified codepoint, + if the codepoint is found; otherwise, 0. + This parameter is passed uninitialized. + + + if the face contains a glyph for the specified codepoint; otherwise, . + + + + + Gets the specified glyph id matching the codepoint pair. + + The codepoint. + The next codepoint. Can be null. + + When this method returns, contains the glyph id associated with the specified codepoint, + if the codepoint is found; otherwise, 0. + This parameter is passed uninitialized. + + + When this method return, contains a value indicating whether the next codepoint should be skipped. + + + if the face contains a glyph for the specified codepoint; otherwise, . + + + + + Tries to get the glyph class for a given glyph id. + The font needs to have a GDEF table defined. + + The glyph identifier. + The glyph class. + true, if the glyph class could be retrieved. + + + + Tries to get the mark attachment class for a given glyph id. + The font needs to have a GDEF table defined. + + The glyph identifier. + The mark attachment class. + true, if the mark attachment class could be retrieved. + + + + Gets the glyph metrics for a given code point. + + The Unicode code point to get the glyph for. + The text attributes applied to the glyph. + The text decorations applied to the glyph. + The layout mode applied to the glyph. + Options for enabling color font support during layout and rendering. + + When this method returns, contains the metrics for the given codepoint and color support if the metrics + are found; otherwise the default value. This parameter is passed uninitialized. + + + if the face contains glyph metrics for the specified codepoint; otherwise, . + + + + + Gets the unicode codepoints for which a glyph exists in the font. + + The . + + + + Gets the glyph metrics for a given code point and glyph id. + + The Unicode codepoint. + + The previously matched or substituted glyph id for the codepoint in the face. + If this value equals 0 the default fallback metrics are returned. + + The text attributes applied to the glyph. + The text decorations applied to the glyph. + The layout mode applied to the glyph. + Options for enabling color font support during layout and rendering. + The . + + + + Tries to get the GSUB table. + + The GSUB table. + true, if the glyph class could be retrieved. + + + + Applies any available substitutions to the collection of glyphs. + + The glyph substitution collection. + + + + Gets the amount, in font units, the glyph should be offset if it is proceeded by + the glyph. + + The previous glyph id. + The current glyph id. + + When this method returns, contains the offset, in font units, that should be applied to the + glyph, if the offset is found; otherwise the default vector value. + This parameter is passed uninitialized. + + + if the face contains and offset for the glyph combination; otherwise, . + + + + + Applies any available positioning updates to the collection of glyphs. + + The glyph positioning collection. + + + + Stores a set of four single precision floating points that represent the location and size of a rectangle. + + + + + Represents a that has X, Y, Width, and Height values set to zero. + + + + + Initializes a new instance of the struct. + + The horizontal position of the rectangle. + The vertical position of the rectangle. + The width of the rectangle. + The height of the rectangle. + + + + Initializes a new instance of the struct. + + + The which specifies the rectangles point in a two-dimensional plane. + + + The which specifies the rectangles height and width. + + + + + Gets the x-coordinate of this . + + + + + Gets the y-coordinate of this . + + + + + Gets the width of this . + + + + + Gets the height of this . + + + + + Gets the coordinates of the upper-left corner of the rectangular region represented by this . + + + + + Gets the size of this . + + + + + Gets a value indicating whether this is empty. + + + + + Gets the y-coordinate of the top edge of this . + + + + + Gets the x-coordinate of the right edge of this . + + + + + Gets the y-coordinate of the bottom edge of this . + + + + + Gets the x-coordinate of the left edge of this . + + + + + Compares two objects for equality. + + The on the left side of the operand. + The on the right side of the operand. + + True if the current left is equal to the parameter; otherwise, false. + + + + + Compares two objects for inequality. + + The on the left side of the operand. + The on the right side of the operand. + + True if the current left is unequal to the parameter; otherwise, false. + + + + + Creates a new with the specified location and size. + The left coordinate of the rectangle. + The top coordinate of the rectangle. + The right coordinate of the rectangle. + The bottom coordinate of the rectangle. + The . + + + + Returns the center point of the given . + + The rectangle. + The . + + + + Creates a rectangle that represents the intersection between and + . If there is no intersection, an empty rectangle is returned. + + The first rectangle. + The second rectangle. + The . + + + + Creates a new from the given + that is inflated by the specified amount. + + The rectangle. + The amount to inflate the width by. + The amount to inflate the height by. + A new . + + + + Creates a new by transforming the given rectangle by the given matrix. + + The source rectangle. + The transformation matrix. + A transformed . + + + + Creates a rectangle that represents the union between and . + + The first rectangle. + The second rectangle. + The . + + + + Deconstructs this rectangle into four floats. + + The out value for X. + The out value for Y. + The out value for the width. + The out value for the height. + + + + Creates a FontRectangle that represents the intersection between this FontRectangle and the . + + The rectangle. + New representing the intersections between the two rectangles. + + + + Creates a new inflated by the specified amount. + + The width. + The height. + New representing the inflated rectangle + + + + Creates a new inflated by the specified amount. + + The size. + New representing the inflated rectangle + + + + Determines if the specified point is contained within the rectangular region defined by + this . + + The x-coordinate of the given point. + The y-coordinate of the given point. + The . + + + + Determines if the specified point is contained within the rectangular region defined by this . + + The point. + The . + + + + Determines if the rectangular region represented by is entirely contained + within the rectangular region represented by this . + + The rectangle. + The . + + + + Determines if the specified intersects the rectangular region defined by + this . + + The other rectangle. + The . + + + + Adjusts the location of this rectangle by the specified amount. + + The point. + New representing the offset rectangle. + + + + Adjusts the location of this rectangle by the specified amount. + + The amount to offset the x-coordinate. + The amount to offset the y-coordinate. + New representing the inflated rectangle. + + + + + + + + + + + + + + + + The font styles + + + + + Regular + + + + + Bold + + + + + Italic + + + + + Bold and Italic + + + + + A glyph from a particular font face. + + + + + Gets the glyph metrics. + + + + + Calculates the bounding box. + + The glyph layout mode to measure using. + The location to calculate from. + The DPI (Dots Per Inch) to measure the glyph at. + The bounding box + + + + Renders the glyph to the render surface relative to a top left origin. + + The surface. + The location to render the glyph at. + The offset of the glyph vector relative to the top-left position of the glyph advance. + The glyph layout mode to render using. + The options to render using. + + + + Represents the bounds of a for a given . + + + + + Initializes a new instance of the struct. + + The Unicode codepoint for the glyph. + The glyph bounds. + + + + Gets the Unicode codepoint of the glyph. + + + + + Gets the glyph bounds. + + + + + + + + A glyphs layout and location + + + + + Gets the glyph. + + + + + Gets the codepoint represented by this glyph. + + + + + Gets the location of the glyph box. + + + + + Gets the location to render the glyph at. + + + + + Gets the offset of the glyph vector relative to the top-left position of the glyph advance. + For horizontal layout this will always be . + + + + + Gets the width. + + + + + Gets the height. + + + + + Gets the glyph layout mode. + + + + + Gets a value indicating whether this glyph is the first glyph on a new line. + + + + + Gets a value indicating whether the glyph represents a whitespace character. + + The . + + + + + + + Provides enumeration for the various layout mode of an individual glyph within a body of text. + + + + + Horizontal. + + + + + Vertical. + + + + + Rotated 90 degrees clockwise. + + + + + Represents a glyph metric from a particular font face. + + + + + Gets the font metrics. + + + + + Gets the Unicode codepoint of the glyph. + + + + + Gets the advance width for horizontal layout, expressed in font units. + + + + + Gets the advance height for vertical layout, expressed in font units. + + + + + Gets the left side bearing for horizontal layout, expressed in font units. + + + + + Gets the right side bearing for horizontal layout, expressed in font units. + + + + + Gets the top side bearing for vertical layout, expressed in font units. + + + + + Gets the bottom side bearing for vertical layout, expressed in font units. + + + + + Gets the bounds, expressed in font units. + + + + + Gets the width, expressed in font units. + + + + + Gets the height, expressed in font units. + + + + + Gets the glyph type. + + + + + Gets the color of this glyph when the is + + + + + + + + Gets the id of the glyph within the font tables. + + + + + Gets the scale factor that is applied to all glyphs in this face. + Normally calculated as 72 * so that 1pt = 1px + unless the glyph has that apply scaling adjustment. + + + + + Gets or sets the offset in font design units. + + + + + Gets the text run that the glyph belongs to. + + + + + Gets the text attributes applied to the glyph. + + + + + Gets the text decorations applied to the glyph. + + + + + Performs a semi-deep clone (FontMetrics are not cloned) for rendering + This allows caching the original in the font metrics. + + The current text run this glyph belongs to. + The new . + + + + Apply an offset to the glyph. + + The x-offset. + The y-offset. + + + + Applies an advance to the glyph. + + The x-advance. + The y-advance. + + + + Sets a new advance width. + + The x-advance. + + + + Sets a new advance height. + + The y-advance. + + + + Renders the glyph to the render surface in font units relative to a bottom left origin at (0,0) + + The surface renderer. + The location representing offset of the glyph outer bounds relative to the origin. + The offset of the glyph vector relative to the top-left position of the glyph advance. + The glyph layout mode to render using. + The options used to influence the rendering of this glyph. + + + + Gets a value indicating whether the specified code point should be skipped when rendering. + + The code point. + The . + + + + Gets a value indicating whether the specified code point should be rendered as a white space only. + + The code point. + The . + + + + Returns the size to render/measure the glyph based on the given size and resolution in px units. + + The font size in pt units. + The DPI (Dots Per Inch) to render/measure the glyph at + The . + + + + Gets the rotation matrix for the glyph based on the layout mode. + + The glyph layout mode. + The. + + + + Represents a collection of glyph metrics that are mapped to input codepoints. + + + + + Contains a map the index of a map within the collection, non-sequential codepoint offsets, and their glyph ids, point size, and mtrics. + + + + + Initializes a new instance of the class. + + The text options. + + + + + + + + + + + + + + + + + + + + + + Gets the glyph metrics at the given codepoint offset. + + The zero-based index within the input codepoint collection. + The font size in PT units of the font containing this glyph. + Whether the glyph is the result of a decomposition substitution. + + When this method returns, contains the glyph metrics associated with the specified offset, + if the value is found; otherwise, the default value for the type of the metrics parameter. + This parameter is passed uninitialized. + + The metrics. + + + + Updates the collection of glyph ids to the metrics collection to overwrite any glyphs that have been previously + identified as fallbacks. + + The font face with metrics. + The glyph substitution collection. + if the metrics collection does not contain any fallbacks; otherwise . + + + + Adds the collection of glyph ids to the metrics collection. + identified as fallbacks. + + The font face with metrics. + The glyph substitution collection. + if the metrics collection does not contain any fallbacks; otherwise . + + + + Updates the position of the glyph at the specified index. + + The font metrics. + The zero-based index of the element. + + + + Updates the advanced metrics of the glyphs at the given index and id, + adding dx and dy to the current advance. + + The font face with metrics. + The zero-based index of the element. + The id of the glyph to offset. + The delta x-advance. + The delta y-advance. + + + + Returns a value indicating whether the element at the given index should be processed. + + The font face with metrics. + The zero-based index of the elements to position. + if the element should be processed; otherwise, . + + + + The combined set of properties that uniquely identify the glyph that is to be rendered + at a particular size and dpi. + + + + + Gets the name of the Font this glyph belongs to. + + + + + Gets the color details of this glyph. + + + + + Gets the type of this glyph. + + + + + Gets the style of the font this glyph belongs to. + + + + + Gets the id of the glyph within the font tables. + + + + + Gets the codepoint represented by this glyph. + + + + + Gets the rendered point size. + + + + + Gets the dots-per-inch the glyph is to be rendered at. + + + + + Gets the layout mode applied to the glyph. + + + + + Gets the text run that this glyph belongs to. + + + + + Compares two objects for equality. + + + The on the left side of the operand. + + + The on the right side of the operand. + + + True if the current left is equal to the parameter; otherwise, false. + + + + + Compares two objects for inequality. + + + The on the left side of the operand. + + + The on the right side of the operand. + + + True if the current left is unequal to the parameter; otherwise, false. + + + + + + + + + + + + + + Represents the shaped bounds of a glyph. + Uses a class over a struct for ease of use. + + + + + Contains supplementary data that allows the shaping of glyphs. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The data to copy properties from. + Whether to clear features. + + + + Gets or sets the glyph id. + + + + + Gets or sets the leading codepoint. + + + + + Gets or sets the codepoint count represented by this glyph. + + + + + Gets or sets the text direction. + + + + + Gets or sets the text run this glyph belongs to. + + + + + Gets or sets the id of any ligature this glyph is a member of. + + + + + Gets or sets a value indicating whether the glyph is ligated. + + + + + Gets or sets the ligature component index of the glyph. + + + + + Gets or sets the index of any mark attachment. + + + + + Gets or sets the index of any cursive attachment. + + + + + Gets or sets the collection of features. + + + + + Gets or sets the shaping bounds. + + + + + Gets or sets a value indicating whether this glyph is the result of a substitution. + + + + + Gets or sets a value indicating whether this glyph is the result of a decomposition substitution + + + + + Gets or sets the universal shaping information. + + + + + Gets or sets the Indic shaping information. + + + + + Represents information required for universal shaping. + + + + + Represents a collection of glyph indices that are mapped to input codepoints. + + + + + Contains a map the index of a map within the collection, non-sequential codepoint offsets, and their glyph ids. + + + + + Initializes a new instance of the class. + + The text options. + + + + Gets the number of glyphs ids contained in the collection. + This may be more or less than original input codepoint count (due to substitution process). + + + + + + + + Gets or sets the running id of any ligature glyphs contained withing this collection are a member of. + + + + + + + + Gets the shaping data at the specified position. + + The zero-based index of the elements to get. + The zero-based index within the input codepoint collection. + The . + + + + + + + + + + + + + Adds a clone of the glyph shaping data to the collection at the specified offset. + + The data. + The zero-based index within the input codepoint collection. + + + + Adds the glyph id and the codepoint it represents to the collection. + + The id of the glyph to add. + The codepoint the glyph represents. + The resolved text direction for the codepoint. + The text run this glyph belongs to. + The zero-based index within the input codepoint collection. + + + + Moves the specified glyph to the specified position. + + The index to move from. + The index to move to. + + + + Performs a stable sort of the glyphs by the comparison delegate starting at the specified index. + + The start index. + The end index. + The comparison delegate. + + + + Removes all elements from the collection. + + + + + Gets the specified glyph ids matching the given codepoint offset. + + The zero-based index within the input codepoint collection. + + When this method returns, contains the shaping data associated with the specified offset, + if the value is found; otherwise, the default value for the type of the data parameter. + This parameter is passed uninitialized. + + + if the contains glyph ids + for the specified offset; otherwise, . + + + + + Performs a 1:1 replacement of a glyph id at the given position. + + The zero-based index of the element to replace. + The replacement glyph id. + + + + Performs a 1:1 replacement of a glyph id at the given position while removing a series of glyph ids at the given positions within the sequence. + + The zero-based index of the element to replace. + The indices at which to remove elements. + The replacement glyph id. + The ligature id. + + + + Performs a 1:1 replacement of a glyph id at the given position while removing a series of glyph ids. + + The zero-based index of the element to replace. + The number of glyphs to remove. + The replacement glyph id. + + + + Replaces a single glyph id with a collection of glyph ids. + + The zero-based index of the element to replace. + The collection of replacement glyph ids. + + + + Represents the various versions of a glyph records. + + + + + This is a fall back glyph due to a missing code point. + + + + + This is a standard glyph to be drawn in the style the user defines. + + + + + This is a single layer of the multi-layer colored glyph (emoji). + + + + + Defines modes to determine how to apply hinting. The use of mathematical instructions + to adjust the display of an outline font so that it lines up with a rasterized grid. + + + + + Do not hint the glyphs. + + + + + Hint the glyph using standard configuration. + + + + + Horizontal alignment modes. + + + + + Aligns text from the left. + + + + + Aligns text from the right. + + + + + Aligns text from the center. + + + + + Represent the metrics of a font face specific to horizontal text. + + + + + + + + + + + + + + + + + + + + + + + A surface that can have a glyph rendered to it as a series of actions, where the engine support colored glyphs (emoji). + + + + + Sets the color to use for the current glyph. + + The color to override the renders brush with. + + + + Provides access to the color details for the current glyph. + + + + + Gets the blue component + + + + + Gets the green component + + + + + Gets the red component + + + + + Gets the alpha component + + + + + Compares two objects for equality. + + + The on the left side of the operand. + + + The on the right side of the operand. + + + True if the current left is equal to the parameter; otherwise, false. + + + + + Compares two objects for inequality. + + + The on the left side of the operand. + + + The on the right side of the operand. + + + True if the current left is unequal to the parameter; otherwise, false. + + + + + + + + Compares the for equality to this color. + + + The other to compare to. + + + True if the current color is equal to the parameter; otherwise, false. + + + + + + + + A readable and writable collection of fonts. + + + + + + Adds a font to the collection. + + The filesystem path to the font file. + The new . + + + + Adds a font to the collection. + + The filesystem path to the font file. + The description of the added font. + The new . + + + + Adds a font to the collection. + + The font stream. + The new . + + + + Adds a font to the collection. + + The font stream. + The description of the added font. + The new . + + + + Adds a true type font collection (.ttc). + + The font collection path. + The new . + + + + Adds a true type font collection (.ttc). + + The font collection path. + The descriptions of the added fonts. + The new . + + + + Adds a true type font collection (.ttc). + + The font stream. + The new . + + + + Adds a true type font collection (.ttc). + + The font stream. + The descriptions of the added fonts. + The new . + + + + Adds a font to the collection. + + The filesystem path to the font file. + The culture of the font to add. + The new . + + + + Adds a font to the collection. + + The filesystem path to the font file. + The culture of the font to add. + The description of the added font. + The new . + + + + Adds a font to the collection. + + The font stream. + The culture of the font to add. + The new . + + + + Adds a font to the collection. + + The font stream. + The culture of the font to add. + The description of the added font. + The new . + + + + Adds a true type font collection (.ttc). + + The font collection path. + The culture of the fonts to add. + The new . + + + + Adds a true type font collection (.ttc). + + The font collection path. + The culture of the fonts to add. + The descriptions of the added fonts. + The new . + + + + Adds a true type font collection (.ttc). + + The font stream. + The culture of the fonts to add. + The new . + + + + Adds a true type font collection (.ttc). + + The font stream. + The culture of the fonts to add. + The descriptions of the added fonts. + The new . + + + + Represents a collection of + + + + + Adds the font metrics and culture to the . + + The font metrics to add. + The culture of the font metrics to add. + The new . + + + + Adds the font metrics to the . + + The font metrics to add. + + + + A surface that can have a glyph rendered to it as a series of actions. + + + + + Begins the figure. + + + + + Sets a new start point to draw lines from. + + The point. + + + + Draw a quadratic bezier curve connecting the previous point to . + + The second control point. + The point. + + + + Draw a cubic bezier curve connecting the previous point to . + + The second control point. + The third control point. + The point. + + + + Draw a straight line connecting the previous point to . + + The point. + + + + Ends the figure. + + + + + Ends the glyph. + + + + + Begins the glyph. + + The bounds the glyph will be rendered at and at what size. + + The set of parameters that uniquely represents a version of a glyph in at particular font size, font family, font style and DPI. + + Returns true if the glyph should be rendered otherwise it returns false. + + + + Called once all glyphs have completed rendering. + + + + + Called before any glyphs have been rendered. + + The rectangle within the text will be rendered. + + + + Provides a callback to enable custom logic to request decoration details. + A custom might use alternative triggers to determine what decorations it needs access to. + + The text decorations the render wants render info for. + + + + Provides the positions required for drawing text decorations onto the + + The type of decoration these details correspond to. + The start position from where to draw the decorations from. + The end position from where to draw the decorations to. + The thickness to draw the decoration. + + + + A surface that can have a glyph rendered to it as a series of actions. + + + + + Renders the text. + + The target renderer surface. + The text. + The options. + Returns the original + + + + Defines the contract for glyph shaping collections. + + + + + Gets the collection count. + + + + + Gets the text options used by this collection. + + + + + Gets the glyph shaping data at the specified index. + + The zero-based index of the elements to get. + The . + + + + Adds the shaping feature to the collection which should be applied to the glyph at a specified index. + + The zero-based index of the element. + The feature to apply. + + + + Enables a previously added shaping feature. + + The zero-based index of the element. + The feature to enable. + + + + Disables a previously added shaping feature. + + The zero-based index of the element. + The feature to disable. + + + + Defines the contract for the metrics header of a font face. + + + + + Gets the typographic ascender of the face, expressed in font units. + + + + + Gets the typographic descender of the face, expressed in font units. + + + + + Gets the typographic line gap of the face, expressed in font units. + This field should be combined with the and + values to determine default line spacing. + + + + + Gets the typographic line spacing of the face, expressed in font units. + + + + + Gets the maximum advance width, in font units, for all glyphs in this face. + + + + + Gets the maximum advance height, in font units, for all glyphs in this + face.This is only relevant for vertical layouts, and is set to for + fonts that do not provide vertical metrics. + + + + + The raw stream containing the uncompressed image data. + + + + + A value indicating whether this instance of the given entity has been disposed. + + if this instance has been disposed; otherwise, . + + If the entity is disposed, it must not be disposed a second + time. The isDisposed field is set the first time the entity + is disposed. If the isDisposed field is true, then the Dispose() + method will not dispose again. This help not to prolong the entity's + life in the Garbage Collector. + + + + + The read crc data. + + + + + The stream responsible for decompressing the input stream. + + + + + Initializes a new instance of the class. + + The stream. + + Thrown if the compression method is incorrect. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents a readonly collection of fonts. + + + + + Gets the collection of in this + using the invariant culture. + + + + + Gets the specified font family matching the invariant culture and font family name. + + The font family name. + The first matching the given name. + is + The collection contains no matches. + + + + Gets the specified font family matching the invariant culture and font family name. + + The font family name. + + When this method returns, contains the family associated with the specified name, + if the name is found; otherwise, the default value for the type of the family parameter. + This parameter is passed uninitialized. + + + if the contains a family + with the specified name; otherwise, . + + is + + + + Gets the collection of in this + using the given culture. + + The culture of the families to return. + The . + + + + Gets the specified font family matching the given culture and font family name. + + The font family name. + The culture to use when searching for a match. + The first matching the given name. + is + The collection contains no matches. + + + + Gets the specified font family matching the given culture and font family name. + + The font family name. + The culture to use when searching for a match. + + When this method returns, contains the family associated with the specified name, + if the name is found; otherwise, the default value for the type of the family parameter. + This parameter is passed uninitialized. + + + if the contains a family + with the specified name; otherwise, . + + is + + + + Represents a readonly collection of font metrics. + The interface uses compiler pattern matching to provide enumeration capabilities. + + + + + Gets the specified font metrics matching the given culture and font family name. + + The font family name. + The culture to use when searching for a match. + The font style to use when searching for a match. + + When this method returns, contains the metrics associated with the specified name, + if the name is found; otherwise, the default value for the type of the family parameter. + This parameter is passed uninitialized. + + + if the contains font metrics + with the specified name; otherwise, . + + is + + + + Gets the collection of available font metrics for a given culture and font family name. + + The font family name. + The culture to use when searching for a match. + The . + is + + + + Gets the collection of available font styles for a given culture and font family name. + + The font family name. + The culture to use when searching for a match. + The . + is + + + + + + + Represents a readonly collection of Operating System fonts. + + + + + + Gets the collection of Operating System directories that were searched for font families. + + + + + + Kerning is the contextual adjustment of inter-glyph spacing. + This property controls metric kerning, kerning that utilizes adjustment data contained in the font. + + + + + Specifies that kerning is applied. + + + + + Specifies that kerning is not applied. + + + + + Specifies that kerning is applied at the discretion of the layout engine. + + + + + Defines modes to determine the layout direction of text. + + + + + Text is laid out horizontally from top to bottom. + + + + + Text is laid out horizontally from bottom to top. + + + + + Text is laid out vertically from left to right. + + + + + Text is laid out vertically from right to left. + + + + + Text is laid out vertically from left to right. Horizontal glyphs are rotated 90 degrees clockwise. + + + + + Text is laid out vertically from right to left. Horizontal glyphs are rotated 90 degrees clockwise. + + + + + Extensions to . + + + + + Gets a value indicating whether the layout mode is horizontal. + + The layout mode. + The . + + + + Gets a value indicating whether the layout mode is vertical. + + The layout mode. + The . + + + + Gets a value indicating whether the layout mode is vertical-mixed only. + + The layout mode. + The . + + + + Provides a mapped view of an underlying slice, selecting arbitrary indices + from the source array. + + The type of item contained in the underlying array. + + + + Initializes a new instance of the struct. + + The data slice. + The map slice. + + + + Gets the number of items in the map. + + + + + Returns a reference to specified element of the slice. + + The index of the element to return. + The . + + Thrown when index less than 0 or index greater than or equal to . + + + + + An integer type for constants used to specify supported string encodings in various CFString functions. + + + + + An encoding constant that identifies the UTF 8 encoding. + + + + + An encoding constant that identifies kTextEncodingUnicodeDefault + kUnicodeUTF16LEFormat encoding. This constant specifies little-endian byte order. + + + + + Options you can use to determine how CFURL functions parse a file system path name. + + + + + Indicates a POSIX style path name. Components are slash delimited. A leading slash indicates an absolute path; a trailing slash is not significant. + + + + + Returns the number of values currently in an array. + + The array to examine. + The number of values in . + + + + Returns the type identifier for the CFArray opaque type. + + The type identifier for the CFArray opaque type. + CFMutableArray objects have the same type identifier as CFArray objects. + + + + Retrieves a value at a given index. + + The array to examine. + The index of the value to retrieve. If the index is outside the index space of (0 to N-1 inclusive where N is the count of ), the behavior is undefined. + The value at the index in . If the return value is a Core Foundation Object, ownership follows The Get Rule. + + + + Returns the unique identifier of an opaque type to which a Core Foundation object belongs. + + The CFType object to examine. + A value of type CFTypeID that identifies the opaque type of . + + This function returns a value that uniquely identifies the opaque type of any Core Foundation object. + You can compare this value with the known CFTypeID identifier obtained with a “GetTypeID” function specific to a type, for example CFDateGetTypeID. + These values might change from release to release or platform to platform. + + + + + Returns the number (in terms of UTF-16 code pairs) of Unicode characters in a string. + + The string to examine. + The number (in terms of UTF-16 code pairs) of characters stored in . + + + + Copies the character contents of a string to a local C string buffer after converting the characters to a given encoding. + + The string whose contents you wish to access. + + The C string buffer into which to copy the string. On return, the buffer contains the converted characters. If there is an error in conversion, the buffer contains only partial results. + The buffer must be large enough to contain the converted characters and a NUL terminator. For example, if the string is Toby, the buffer must be at least 5 bytes long. + + The length of in bytes. + The string encoding to which the character contents of should be converted. The encoding must specify an 8-bit encoding. + upon success or if the conversion fails or the provided buffer is too small. + This function is useful when you need your own copy of a string’s character data as a C string. You also typically call it as a “backup” when a prior call to the function fails. + + + + Quickly obtains a pointer to a C-string buffer containing the characters of a string in a given encoding. + + The string whose contents you wish to access. + The string encoding to which the character contents of should be converted. The encoding must specify an 8-bit encoding. + A pointer to a C string or NULL if the internal storage of does not allow this to be returned efficiently. + + + This function either returns the requested pointer immediately, with no memory allocations and no copying, in constant time, or returns NULL. If the latter is the result, call an alternative function such as the function to extract the characters. + + + Whether or not this function returns a valid pointer or NULL depends on many factors, all of which depend on how the string was created and its properties. In addition, the function result might change between different releases and on different platforms. So do not count on receiving a non-NULL result from this function under any circumstances. + + + + + + Releases a Core Foundation object. + + A CFType object to release. This value must not be NULL. + + + + Returns the path portion of a given URL. + + The CFURL object whose path you want to obtain. + The operating system path style to be used to create the path. See for a list of possible values. + The URL's path in the format specified by . Ownership follows the create rule. See The Create Rule. + This function returns the URL's path as a file system path for a given path style. + + + + Returns the type identifier for the CFURL opaque type. + + The type identifier for the CFURL opaque type. + + + + Returns an array of font URLs. + + This function returns a retained reference to a CFArray of CFURLRef objects representing the URLs of the available fonts, or NULL on error. The caller is responsible for releasing the array. + + + + An enumerator that enumerates over available macOS system fonts. + The enumerated strings are the absolute paths to the font files. + + + Internally, it calls the native CoreText's method to retrieve + the list of fonts so using this class must be guarded by RuntimeInformation.IsOSPlatform(OSPlatform.OSX). + + + + + ReadOnlyArraySlice represents a contiguous region of arbitrary memory similar + to and though constrained + to arrays. + Unlike , it is not a byref-like type. + + The type of item contained in the slice. + + + + Initializes a new instance of the struct. + + The underlying data buffer. + + + + Initializes a new instance of the struct. + + The underlying data buffer. + The offset position in the underlying buffer this slice was created from. + The number of items in the slice. + + + + Gets an empty + + + + + Gets the offset position in the underlying buffer this slice was created from. + + + + + Gets the number of items in the slice. + + + + + Gets a representing this slice. + + + + + Returns a reference to specified element of the slice. + + The index of the element to return. + The . + + Thrown when index less than 0 or index greater than or equal to . + + + + + Defines an implicit conversion of an array to a + + + + + Copies the contents of this slice into destination span. If the source + and destinations overlap, this method behaves as if the original values in + a temporary location before the destination is overwritten. + + The slice to copy items into. + + Thrown when the destination slice is shorter than the source Span. + + + + + Forms a slice out of the given slice, beginning at 'start', of given length + + The index at which to begin this slice. + The desired length for the slice (exclusive). + + Thrown when the specified or end index is not in range (<0 or >Length). + + + + + + + + + + + + + + + + + + + + Provides a readonly mapped view of an underlying slice, selecting arbitrary indices + from the source array. + + The type of item contained in the underlying array. + + + + Initializes a new instance of the struct. + + The data slice. + The map slice. + + + + Gets the number of items in the map. + + + + + Returns a reference to specified element of the slice. + + The index of the element to return. + The . + + Thrown when index less than 0 or index greater than or equal to . + + + + + Extension methods for the type. + + + + + Contains CFF specific methods. + + + + Represents a font face with metrics, which is a set of glyphs with a specific style (regular, italic, bold etc). + + The font source is a stream. + + + Contains TrueType specific methods. + + + + + Initializes a new instance of the class. + + The True Type font tables. + + + + Initializes a new instance of the class. + + The Compact Font tables. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reads a from the specified stream. + + The file path. + a . + + + + Reads a from the specified stream. + + The file path. + Position in the stream to read the font from. + a . + + + + Reads a from the specified stream. + + The stream. + a . + + + + Reads a from the specified stream. + + The file path. + a . + + + + Reads a from the specified stream. + + The stream. + a . + + + + Provides a collection of fonts. + + + + + Gets the default set of locations we probe for System Fonts. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Provides a collection of fonts. + + + + + Gets the collection containing the globally installed system fonts. + + + + + Gets the collection of s installed on current system. + + + + + + + + + + + Create a new instance of the for the named font family with regular styling. + + The font family name. + The size of the font in PT units. + The new . + + + + Create a new instance of the for the named font family. + + The font family name. + The size of the font in PT units. + The font style. + The new . + + + + + + + + + + + + + Create a new instance of the for the named font family with regular styling. + + The font family name. + The font culture. + The size of the font in PT units. + The new . + + + + Create a new instance of the for the named font family. + + The font family name. + The font culture. + The size of the font in PT units. + The font style. + The new . + + + + Gets a value indicating whether the glyph represented by the codepoint should be interpreted vertically. + + The codepoint represented by the glyph. + The layout mode. + The . + + + + Gets the sequence lookup records. + The seqLookupRecords array lists the sequence lookup records that specify actions to be taken on glyphs at various positions within the input sequence. + These do not have to be ordered in sequence position order; they are ordered according to the desired result. + All of the sequence lookup records are processed in order, and each applies to the results of the actions indicated by the preceding record. + + + + + In OpenType Layout, index values identify glyphs. For efficiency and ease of representation, a font developer + can group glyph indices to form glyph classes. Class assignments vary in meaning from one lookup subtable + to another. For example, in the GSUB and GPOS tables, classes are used to describe glyph contexts. + GDEF tables also use the idea of glyph classes. + + + + + + Gets the class id for the given glyph id. + Any glyph not included in the range of covered glyph IDs automatically belongs to Class 0. + + The glyph identifier. + The class id. + + + + + + + + + + Loads the class sequence rule set table. + + The big endian binary reader. + Offset from beginning of the ClassSequenceRuleSet table. + A class sequence rule set table. + + + + Each subtable (except an Extension LookupType subtable) in a lookup references a Coverage table (Coverage), + which specifies all the glyphs affected by a substitution or positioning operation described in the subtable. + The GSUB, GPOS, and GDEF tables rely on this notion of coverage. + If a glyph does not appear in a Coverage table, the client can skip that subtable and move + immediately to the next subtable. + + + + + + Features provide information about how to use the glyphs in a font to render a script or language. + For example, an Arabic font might have a feature for substituting initial glyph forms, and a Kanji font + might have a feature for positioning glyphs vertically. All OpenType Layout features define data for + glyph substitution, glyph positioning, or both. + + + + + + + Provides enumeration for the different font features. + + + + + + Access All Alternates. Shortcode: aalt. + This feature makes all variations of a selected character accessible. This serves several purposes: An application may not support the feature by which the desired glyph would normally be accessed; + the user may need a glyph outside the context supported by the normal substitution, or the user may not know what feature produces the desired glyph. + Since many-to-one substitutions are not covered, ligatures would not appear in this table unless they were variant forms of another ligature. + + + + + Above-base Forms. Shortcode: abvf. + Substitutes the above-base form of a vowel. + + + + + Above-base Mark Positioning. Shortcode: abvm. + Positions marks above base glyphs. + + + + + Above-base Substitutions. Shortcode: abvs. + Substitutes a ligature for a base glyph and mark that’s above it. + + + + + Alternative Fractions. Shortccde: afrc. + Replaces figures separated by a slash with an alternative form. + + + + + Akhand. Shortcode: akhn. + Preferentially substitutes a sequence of characters with a ligature. This substitution is done irrespective of any characters that may precede or follow the sequence. + + + + + Below-base Forms. Shortcode: blwf. + Substitutes the below-base form of a consonant in conjuncts. + + + + + Below-base Mark Positioning. Shortcode: blwm. + Positions marks below base glyphs. + + + + + Below-base Substitutions. Shortcode: blws. + Produces ligatures that comprise of base glyph and below-base forms. + + + + + Contextual Alternates. Shortcode: calt. + In specified situations, replaces default glyphs with alternate forms which provide better joining behavior. + Used in script typefaces which are designed to have some or all of their glyphs join. + + + + + Case-Sensitive Forms. Shortcode: case. + Shifts various punctuation marks up to a position that works better with all-capital sequences or sets of lining figures; + also changes oldstyle figures to lining figures. By default, glyphs in a text face are designed to work with lowercase characters. + Some characters should be shifted vertically to fit the higher visual center of all-capital or lining text. + Also, lining figures are the same height (or close to it) as capitals, and fit much better with all-capital text. + + + + + Glyph Composition/Decomposition. Shortcode: ccmp. + To minimize the number of glyph alternates, it is sometimes desirable to decompose the default glyph for a character into two or more glyphs. + Additionally, it may be preferable to compose default glyphs for two or more characters into a single glyph for better glyph processing. + This feature permits such composition/decomposition. The feature should be processed as the first feature processed, and should be processed only when it is called. + + + + + Conjunct Form After Ro. Shortcode: cfar. + Substitutes alternate below-base or post-base forms in Khmer script when occurring after conjoined Ro (“Coeng Ra”). + + + + + Conjunct Forms. Shortcode: cjct. + Produces conjunct forms of consonants in Indic scripts. This is similar to the Akhands feature, but is applied at a different sequential point in the process of shaping an Indic syllable. + + + + + Contextual Ligatures. Shortcode: clig. + Replaces a sequence of glyphs with a single glyph which is preferred for typographic purposes. Unlike other ligature features, 'clig' specifies the context in which the ligature is recommended. + This capability is important in some script designs and for swash ligatures. + + + + + Centered CJK Punctuation. Shortcode: cpct. + Centers specific punctuation marks for those fonts that do not include centered and non-centered forms. + + + + + Capital Spacing. Shortcode: cpsp. + Globally adjusts inter-glyph spacing for all-capital text. Most typefaces contain capitals and lowercase characters, and the capitals are positioned to work with the lowercase. + When capitals are used for words, they need more space between them for legibility and esthetics. + This feature would not apply to monospaced designs. Of course the user may want to override this behavior in order to do more pronounced letterspacing for esthetic reasons. + + + + + Contextual Swash. Shortcode: cswh. + This feature replaces default character glyphs with corresponding swash glyphs in a specified context. Note that there may be more than one swash alternate for a given character. + + + + + Cursive Positioning. Shortcode: curs. + In cursive scripts like Arabic, this feature cursively positions adjacent glyphs. + + + + + Petite Capitals From Capitals. Shortcode: c2pc. + This feature turns capital characters into petite capitals. It is generally used for words which would otherwise be set in all caps, such as acronyms, + but which are desired in petite-cap form to avoid disrupting the flow of text. See the 'pcap' feature description for notes on the relationship of caps, + smallcaps and petite caps. + + + + + Small Capitals From Capitals. Shortcode: c2sc. + This feature turns capital characters into small capitals. It is generally used for words which would otherwise be set in all caps, + such as acronyms, but which are desired in small-cap form to avoid disrupting the flow of text. + + + + + Distances. Shortcode: dist. + Provides a means to control distance between glyphs. + + + + + Discretionary Ligatures. Shortcode: dlig. + Replaces a sequence of glyphs with a single glyph which is preferred for typographic purposes. + This feature covers those ligatures which may be used for special effect, at the user’s preference. + + + + + Denominators. Shortcode: dnom. + Replaces selected figures which follow a slash with denominator figures. + + + + + Dotless Forms. Shortcode: dtls. + This feature provides dotless forms for Math Alphanumeric characters, such as U+1D422 MATHEMATICAL BOLD SMALL I, U+1D423 MATHEMATICAL BOLD SMALL J, + U+1D456 U+MATHEMATICAL ITALIC SMALL I, U+1D457 MATHEMATICAL ITALIC SMALL J, and so on. The dotless forms are to be used as base forms for placing mathematical accents over them. + + + + + Expert Forms. Shortcode: expt. + Like the JIS78 Forms feature, this feature replaces standard forms in Japanese fonts with corresponding forms preferred by typographers. + Although most of the JIS78 substitutions are included, the expert substitution goes on to handle many more characters. + + + + + Final Glyph on Line Alternates. Shortcode: falt. + Replaces line final glyphs with alternate forms specifically designed for this purpose (they would have less or more advance width as need may be), to help justification of text. + + + + + Terminal Form #2. Shortcode: fin2. + Replaces the Alaph glyph at the end of Syriac words with its appropriate form, when the preceding base character cannot be joined to, + and that preceding base character is not a Dalath, Rish, or dotless Dalath-Rish. + + + + + Terminal Form #3. Shortcode: fin3. + Replaces Alaph glyphs at the end of Syriac words when the preceding base character is a Dalath, Rish, or dotless Dalath-Rish. + + + + + Terminal Forms. Shortcode: fina. + Replaces glyphs for characters that have applicable joining properties with an alternate form when occurring in a final context. + + + + + Flattened ascent forms. Shortcode: flac. + This feature provides flattened forms of accents to be used over high-rise bases such as capitals. + This feature should only change the shape of the accent and should not move it in the vertical or horizontal direction. + Moving of the accents is done by the math handling client. Accents are flattened by the Math engine if their base is higher than MATH.MathConstants.FlattenedAccentBaseHeight. + + + + + Fractions. Shortcode: frac. + Replaces figures separated by a slash with “common” (diagonal) fractions. + + + + + Full Widths. Shortcode: fwid. + Replaces glyphs set on other widths with glyphs set on full (usually em) widths. In a CJKV font, this may include “lower ASCII” Latin characters and various symbols. + In a European font, this feature replaces proportionally-spaced glyphs with monospaced glyphs, which are generally set on widths of 0.6 em. + + + + + Half Forms. Shortcode: half. + Produces the half forms of consonants in Indic scripts. + + + + + Halant Forms. Shortcode: haln. + Produces the halant forms of consonants in Indic scripts. + + + + + Alternate Half Widths. Shortcode: halt. + Respaces glyphs designed to be set on full-em widths, fitting them onto half-em widths. This differs from 'hwid' in that it does not substitute new glyphs. + + + + + Historical Forms. Shortcode: hist. + Some letterforms were in common use in the past, but appear anachronistic today. The best-known example is the long form of s; others would include the old Fraktur k. + Some fonts include the historical forms as alternates, so they can be used for a “period” effect. This feature replaces the default (current) forms with the historical alternates. + While some ligatures are also used for historical effect, this feature deals only with single characters. + + + + + Horizontal Kana Alternates. Shortcode: hkna. + Replaces standard kana with forms that have been specially designed for only horizontal writing. This is a typographic optimization for improved fit and more even color. Also see 'vkna'. + + + + + Historical Ligatures. Shortcode: hlig. + Some ligatures were in common use in the past, but appear anachronistic today. Some fonts include the historical forms as alternates, so they can be used for a “period” effect. + This feature replaces the default (current) forms with the historical alternates. + + + + + Hangul. Shortcode: hngl. + Replaces hanja (Chinese-style) Korean characters with the corresponding hangul (syllabic) characters. This effectively reverses the standard input method, + in which hangul are entered and replaced by hanja. Many of these substitutions are one-to-one (GSUB lookup type 1), + but hanja substitution often requires the user to choose from several possible hangul characters (GSUB lookup type 3). + + + + + Hojo Kanji Forms (JIS X 0212-1990 Kanji Forms). Shortcode: hojo. + The JIS X 0212-1990 (aka, “Hojo Kanji”) and JIS X 0213:2004 character sets overlap significantly. + In some cases their prototypical glyphs differ. When building fonts that support both JIS X 0212-1990 and JIS X 0213:2004 (such as those supporting the Adobe-Japan 1-6 character collection), + it is recommended that JIS X 0213:2004 forms be preferred as the encoded form. The 'hojo' feature is used to access the JIS X 0212-1990 glyphs for the cases when the JIS X 0213:2004 form is encoded. + + + + + Half Widths. Shortcode: hwid. + Replaces glyphs on proportional widths, or fixed widths other than half an em, with glyphs on half-em (en) widths. Many CJKV fonts have glyphs which are set on multiple widths; this feature selects the half-em version. + There are various contexts in which this is the preferred behavior, including compatibility with older desktop documents. + + + + + Initial Forms. Shortcode: init. + Replaces glyphs for characters that have applicable joining properties with an alternate form when occurring in an initial context. + + + + + Isolated Forms. Shortcode: isol. + Replaces glyphs for characters that have applicable joining properties with an alternate form when occurring in a isolate (non-joining) context. + + + + + Italics. Shortcode: ital. + Some fonts (such as Adobe’s Pro Japanese fonts) will have both Roman and Italic forms of some characters in a single font. + This feature replaces the Roman glyphs with the corresponding Italic glyphs. + + + + + Justification Alternates. Shortcode: jalt. + Improves justification of text by replacing glyphs with alternate forms specifically designed for this purpose (they would have less or more advance width as need may be). + + + + + JIS78 Forms. Shortcode: jp78. + This feature replaces default (JIS90) Japanese glyphs with the corresponding forms from the JIS C 6226-1978 (JIS78) specification. + + + + + JIS83 Forms. Shortcode: jp83. + This feature replaces default (JIS90) Japanese glyphs with the corresponding forms from the JIS X 0208-1983 (JIS83) specification. + + + + + JIS90 Forms. Shortcode: jp90. + This feature replaces Japanese glyphs from the JIS78 or JIS83 specifications with the corresponding forms from the JIS X 0208-1990 (JIS90) specification. + + + + + JIS2004 Forms. Shortcode: jp04. + The National Language Council (NLC) of Japan has defined new glyph shapes for a number of JIS characters, which were incorporated into JIS X 0213:2004 as new prototypical forms. + The 'jp04' feature is a subset of the 'nlck' feature, and is used to access these prototypical glyphs in a manner that maintains the integrity of JIS X 0213:2004. + + + + + Kerning. Shortcode: kern. + Adjusts amount of space between glyphs, generally to provide optically consistent spacing between glyphs. + Although a well-designed typeface has consistent inter-glyph spacing overall, some glyph combinations require adjustment for improved legibility. + Besides standard adjustment in the horizontal direction, this feature can supply size-dependent kerning data via device tables, “cross-stream” kerning in the Y text direction, + and adjustment of glyph placement independent of the advance adjustment. Note that this feature may apply to runs of more than two glyphs, and would not be used in monospaced fonts. + Also note that this feature does not apply to text set vertically. + + + + + Left Bounds. Shortcode: lfbd. + Aligns glyphs by their apparent left extents at the left ends of horizontal lines of text, replacing the default behavior of aligning glyphs by their origins. + This feature is called by the Optical Bounds ('opbd') feature. + + + + + Standard Ligatures. Shortcode: liga. + Replaces a sequence of glyphs with a single glyph which is preferred for typographic purposes. This feature covers the ligatures which the designer/manufacturer judges should be used in normal conditions. + + + + + Leading Jamo Forms. Shortcode: ljmo. + Substitutes the leading jamo form of a cluster. + + + + + Lining Figures. Shortcode: lnum. + This feature changes selected non-lining figures to lining figures. + + + + + Localized Forms. Shortcode: locl. + Many scripts used to write multiple languages over wide geographical areas have developed localized variant forms of specific letters, + which are used by individual literary communities. For example, a number of letters in the Bulgarian and Serbian alphabets have forms distinct from their Russian counterparts and from each other. + In some cases the localized form differs only subtly from the script “norm”, in others the forms are radically distinct. This feature enables localized forms of glyphs to be substituted for default forms. + + + + + Left-to-right glyph alternates. Shortcode: ltra. + This feature applies glyphic variants (other than mirrored forms) appropriate for left-to-right text (for mirrored forms, see 'ltrm'). + + + + + Left-to-right mirrored forms. Shortcode: ltrm. + This feature applies mirrored forms appropriate for left-to-right text. (For left-to-right glyph alternates, see 'ltra'). + + + + + Mark Positioning. Shortcode: mark. + Positions mark glyphs with respect to base glyphs. + + + + + Medial Forms #2. Shortcode: med2. + Replaces Alaph glyphs in the middle of Syriac words when the preceding base character can be joined to. + + + + + Medial Forms. Shortcode: medi + Replaces glyphs for characters that have applicable joining properties with an alternate form when occurring in a medial context. + This applies to characters that have the Unicode Joining_Type property value Dual_Joining. + + + + + Mathematical Greek. Shortcode: mgrk. + Replaces standard typographic forms of Greek glyphs with corresponding forms commonly used in mathematical notation (which are a subset of the Greek alphabet). + + + + + Mark to Mark Positioning. Shortcode: mkmk. + Positions marks with respect to other marks. Required in various non-Latin scripts like Arabic. + + + + + Shortcode: mset. + Positions Arabic combining marks in fonts for Windows 95 using glyph substitution. + + + + + Alternate Annotation Forms. Shortcode: nalt. + Replaces default glyphs with various notational forms (e.g. glyphs placed in open or solid circles, squares, parentheses, diamonds or rounded boxes). + In some cases an annotation form may already be present, but the user may want a different one. + + + + + NLC Kanji Forms. Shortcode: nlck. + The National Language Council (NLC) of Japan has defined new glyph shapes for a number of JIS characters in 2000. The 'nlck' feature is used to access those glyphs. + + + + + Nukta Forms. Shortcode: nukt. + Produces Nukta forms in Indic scripts. + + + + + Numerators. Shortcode: numr. + Replaces selected figures which precede a slash with numerator figures, and replaces the typographic slash with the fraction slash. + + + + + Oldstyle Figures. Shortcode: onum. + This feature changes selected figures from the default or lining style to oldstyle form. + + + + + Optical Bounds. Shortcode: opbd. + Aligns glyphs by their apparent left or right extents in horizontal setting, or apparent top or bottom extents in vertical setting, + replacing the default behavior of aligning glyphs by their origins. Another name for this behavior would be visual justification. + The optical edge of a given glyph is only indirectly related to its advance width or bounding box; this feature provides a means for getting true visual alignment. + + + + + Ordinals. Shortcode: ordn. + Replaces default alphabetic glyphs with the corresponding ordinal forms for use after figures. One exception to the follows-a-figure rule is the numero character (U+2116), + which is actually a ligature substitution, but is best accessed through this feature. + + + + + Ornaments. Shortcode: ornm. + This is a dual-function feature, which uses two input methods to give the user access to ornament glyphs (e.g. fleurons, dingbats and border elements) in the font. + One method replaces the bullet character with a selection from the full set of available ornaments; + the other replaces specific “lower ASCII” characters with ornaments assigned to them. The first approach supports the general or browsing user; + the second supports the power user. + + + + + Proportional Alternate Widths. Shortcode: palt. + Respaces glyphs designed to be set on full-em widths, fitting them onto individual (more or less proportional) horizontal widths. + This differs from 'pwid' in that it does not substitute new glyphs (GPOS, not GSUB feature). The user may prefer the monospaced form, + or may simply want to ensure that the glyph is well-fit and not rotated in vertical setting (Latin forms designed for proportional spacing would be rotated). + + + + + Petite Capitals. Shortcode: pcap. + Some fonts contain an additional size of capital letters, shorter than the regular smallcaps and whimsically referred to as petite caps. + Such forms are most likely to be found in designs with a small lowercase x-height, where they better harmonise with lowercase text than + the taller smallcaps (for examples of petite caps, see the Emigre type families Mrs Eaves and Filosofia). This feature turns lowercase characters into petite capitals. + Forms related to petite capitals, such as specially designed figures, may be included. + + + + + Proportional Kana. Shortcode: pkna. + Replaces glyphs, kana and kana-related, set on uniform widths (half or full-width) with proportional glyphs. + + + + + Proportional Figures. Shortcode: pnum. + Replaces figure glyphs set on uniform (tabular) widths with corresponding glyphs set on glyph-specific (proportional) widths. + Tabular widths will generally be the default, but this cannot be safely assumed. Of course this feature would not be present in monospaced designs. + + + + + Pre-base Forms. Shortcode: pref. + Substitutes the pre-base form of a consonant. + + + + + Pre-base Substitutions. Shortcode: pres. + Produces the pre-base forms of conjuncts in Indic scripts. It can also be used to substitute the appropriate glyph variant for pre-base vowel signs. + + + + + Post-base Forms. Shortcode: pstf. + Substitutes the post-base form of a consonant. + + + + + Post-base Substitutions. Shortcode: psts. + Substitutes a sequence of a base glyph and post-base glyph, with its ligaturised form. + + + + + Proportional Widths. Shortcode: pwid. + Replaces glyphs set on uniform widths (typically full or half-em) with proportionally spaced glyphs. + The proportional variants are often used for the Latin characters in CJKV fonts, but may also be used for Kana in Japanese fonts. + + + + + Quarter Widths. Shortcode: qwid. + Replaces glyphs on other widths with glyphs set on widths of one quarter of an em (half an en). The characters involved are normally figures and some forms of punctuation. + + + + + Randomize. Shortcode: rand. + In order to emulate the irregularity and variety of handwritten text, this feature allows multiple alternate forms to be used. + + + + + Required Contextual Alternates. Shortcode: rclt. + In specified situations, replaces default glyphs with alternate forms which provide for better joining behavior or other glyph relationships. + Especially important in script typefaces which are designed to have some or all of their glyphs join, but applicable also to e.g. variants to improve spacing. + This feature is similar to 'calt', but with the difference that it should not be possible to turn off 'rclt' substitutions: they are considered essential to correct layout of the font. + + + + + Required Ligatures. Shortcode: rlig. + Replaces a sequence of glyphs with a single glyph which is preferred for typographic purposes. This feature covers those ligatures, which the script determines as required to be used in normal conditions. + This feature is important for some scripts to insure correct glyph formation. + + + + + Rakar Forms. Shortcode: rkrf. + Produces conjoined forms for consonants with rakar in Devanagari and Gujarati scripts. + + + + + Reph Form. Shortcode: rphf. + Substitutes the Reph form for a consonant and halant sequence. + + + + + Right Bounds. Shortcode: rtbd. + Aligns glyphs by their apparent right extents at the right ends of horizontal lines of text, replacing the default behavior of aligning glyphs by their origins. + This feature is called by the Optical Bounds ('opbd') feature. + + + + + Right-to-left alternates. Shortcode: rtla. + This feature applies glyphic variants (other than mirrored forms) appropriate for right-to-left text. (For mirrored forms, see 'rtlm'.) + + + + + Right-to-left mirrored forms. Shortcode: rtlm. + This feature applies mirrored forms appropriate for right-to-left text other than for those characters that would be covered by the character-level mirroring step performed by an OpenType layout engine. + (For right-to-left glyph alternates, see 'rtla'.) + + + + + Ruby Notation Forms. Shortcode: ruby. + Japanese typesetting often uses smaller kana glyphs, generally in superscripted form, to clarify the meaning of kanji which may be unfamiliar to the reader. + These are called “ruby”, from the old typesetting term for four-point-sized type. This feature identifies glyphs in the font which have been designed for this use, + substituting them for the default designs. + + + + + Required Variation Alternates. Shortcode: rvrn. + his feature is used in fonts that support OpenType Font Variations in order to select alternate glyphs for particular variation instances. + + + + + Stylistic Alternates. Shortcode: salt. + Many fonts contain alternate glyph designs for a purely esthetic effect; these don’t always fit into a clear category like swash or historical. + As in the case of swash glyphs, there may be more than one alternate form. This feature replaces the default forms with the stylistic alternates. + + + + + Scientific Inferiors. Shortcode: sinf. + Replaces lining or oldstyle figures with inferior figures (smaller glyphs which sit lower than the standard baseline, primarily for chemical or mathematical notation). + May also replace lowercase characters with alphabetic inferiors. + + + + + Optical size. Shortcode: size. + This feature stores two kinds of information about the optical size of the font: design size + (the point size for which the font is optimized) and size range (the range of point sizes which the font can serve well), + as well as other information which helps applications use the size range. The design size is useful for determining proper tracking behavior. + The size range is useful in families which have fonts covering several ranges. Additional values serve to identify the set of fonts which share related size ranges, + and to identify their shared name. Note that sizes refer to nominal final output size, and are independent of viewing magnification or resolution. + + + + + Small Capitals. Shortcode: smcp. + This feature turns lowercase characters into small capitals. This corresponds to the common SC font layout. It is generally used for display lines set in Large and small caps, such as titles. + Forms related to small capitals, such as oldstyle figures, may be included. + + + + + Simplified Forms. Shortcode: smpl. + Replaces “traditional” Chinese or Japanese forms with the corresponding “simplified” forms. + + + + + Math script style alternates. Shortcode: ssty. + This feature provides glyph variants adjusted to be more suitable for use in subscripts and superscripts. + + + + + Stretching Glyph Decomposition. Shortcode: stch. + Unicode characters, such as the Syriac Abbreviation Mark (U+070F), that enclose other characters need to be able + to stretch in order to dynamically adapt to the width of the enclosed text. This feature defines a decomposition set + consisting of an odd number of glyphs which describe the stretching glyph. The odd numbered glyphs in the decomposition are + fixed reference points which are distributed evenly from the start to the end of the enclosed text. The even numbered glyphs may + be repeated as necessary to fill the space between the fixed glyphs. The first and last glyphs may either be simple glyphs with width at the baseline, + or mark glyphs. All other decomposition glyphs should have width, but must be defined as mark glyphs. + + + + + Subscript. Shortcode: subs. + The 'subs' feature may replace a default glyph with a subscript glyph, or it may combine a glyph substitution with positioning adjustments for proper placement. + + + + + Superscript. Shortcode: sups. + Replaces lining or oldstyle figures with superior figures (primarily for footnote indication), and replaces lowercase letters with superior letters (primarily for abbreviated French titles). + + + + + Swash. Shortcode: swsh. + This feature replaces default character glyphs with corresponding swash glyphs. Note that there may be more than one swash alternate for a given character. + + + + + Titling. Shortcode: titl. + This feature replaces the default glyphs with corresponding forms designed specifically for titling. + These may be all-capital and/or larger on the body, and adjusted for viewing at larger sizes. + + + + + Trailing Jamo Forms. Shortcode: tjmo. + Substitutes the trailing jamo form of a cluster. + + + + + Traditional Name Forms. Shortcode: tnam. + Replaces “simplified” Japanese kanji forms with the corresponding “traditional” forms. This is equivalent to the Traditional Forms feature, + but explicitly limited to the traditional forms considered proper for use in personal names (as many as 205 glyphs in some fonts). + + + + + Tabular Figures. Shortcode: tnum. + Replaces figure glyphs set on proportional widths with corresponding glyphs set on uniform (tabular) widths. + Tabular widths will generally be the default, but this cannot be safely assumed. Of course this feature would not be present in monospaced designs. + + + + + Traditional Forms. Shortcode: trad. + Replaces 'simplified' Chinese hanzi or Japanese kanji forms with the corresponding 'traditional' forms. + + + + + Third Widths. Shortcode: twid. + Replaces glyphs on other widths with glyphs set on widths of one third of an em. The characters involved are normally figures and some forms of punctuation. + + + + + Unicase. Shortcode: unic. + This feature maps upper- and lowercase letters to a mixed set of lowercase and small capital forms, resulting in a single case alphabet + (for an example of unicase, see the Emigre type family Filosofia). The letters substituted may vary from font to font, as appropriate to the design. + If aligning to the x-height, smallcap glyphs may be substituted, or specially designed unicase forms might be used. Substitutions might also include specially designed figures. + + + + + Alternate Vertical Metrics. Shortcode: valt. + Repositions glyphs to visually center them within full-height metrics, for use in vertical setting. Typically applies to full-width Latin glyphs, + which are aligned on a common horizontal baseline and not rotated when set vertically in CJKV fonts. + + + + + Vattu Variants. Shortcode: vatu. + In an Indic consonant conjunct, substitutes a ligature glyph for a base consonant and a following vattu (below-base) form of a conjoining consonant, or for a half form of a consonant and a following vattu form. + + + + + Vertical Alternates. Shortcode: vert. + Transforms default glyphs into glyphs that are appropriate for upright presentation in vertical writing mode.While the glyphs for most + characters in East Asian writing systems remain upright when set in vertical writing mode, some must be transformed — + usually by rotation, shifting, or different component ordering — for vertical writing mode. + + + + + Alternate Vertical Half Metrics. Shortcode: vhal. + Respaces glyphs designed to be set on full-em heights, fitting them onto half-em heights. + + + + + Vowel Jamo Forms. Shortcode: vjmo. + Substitutes the vowel jamo form of a cluster. + + + + + Vertical Kana Alternates. Shortcode: vkna. + Replaces standard kana with forms that have been specially designed for only vertical writing. This is a typographic optimization for improved fit and more even color. Also see 'hkna'. + + + + + Vertical Kerning. Shortcode: vkrn + Adjusts amount of space between glyphs, generally to provide optically consistent spacing between glyphs. + Although a well-designed typeface has consistent inter-glyph spacing overall, some glyph combinations require adjustment for improved legibility. + Besides standard adjustment in the vertical direction, this feature can supply size-dependent kerning data via device tables, + “cross-stream” kerning in the X text direction, and adjustment of glyph placement independent of the advance adjustment. + Note that this feature may apply to runs of more than two glyphs, and would not be used in monospaced fonts. Also note that this feature applies only to text set vertically. + + + + + Proportional Alternate Vertical Metrics. Shortcode: vpal. + Respaces glyphs designed to be set on full-em heights, fitting them onto individual (more or less proportional) vertical heights. This differs from 'valt' in that it does not substitute new glyphs (GPOS, not GSUB feature). + The user may prefer the monospaced form, or may simply want to ensure that the glyph is well-fit. + + + + + Vertical Alternates and Rotation. Shortcode: vrt2. + Replaces some fixed-width (half-, third- or quarter-width) or proportional-width glyphs (mostly Latin or katakana) with forms suitable for vertical writing (that is, rotated 90 degrees clockwise). + Note that these are a superset of the glyphs covered in the 'vert' table. + + + + + Vertical Alternates for Rotation. Shortcode: vrtr. + Transforms default glyphs into glyphs that are appropriate for sideways presentation in vertical writing mode. + While the glyphs for most characters in East Asian writing systems remain upright when set in vertical writing mode, glyphs for other characters — + such as those of other scripts or for particular Western-style punctuation — are expected to be presented sideways in vertical writing. + + + + + Slashed Zero. Shortcode: zero. + Some fonts contain both a default form of zero, and an alternative form which uses a diagonal slash through the counter. Especially in condensed designs, it can be difficult to distinguish between 0 and O (zero and capital O) in any situation where capitals and lining figures may be arbitrarily mixed. + This feature allows the user to change from the default 0 to a slashed form. + + + + + The GSUB and GPOS tables use the Glyph Class Definition table (GlyphClassDef) to identify which glyph classes to adjust with lookups. + + + + + + Base glyph (single character, spacing glyph). + + + + + Ligature glyph (multiple character, spacing glyph). + + + + + Mark glyph (non-spacing combining glyph). + + + + + Component glyph (part of single character, spacing glyph). + + + + + The GDEF table contains three kinds of information in subtables: + 1. glyph class definitions that classify different types of glyphs in a font; + 2. attachment point lists that identify glyph positioning attachments for each glyph; + and 3. ligature caret lists that provide information for caret positioning and text selection involving ligatures. + + + + + + Initializes a new instance of the class. + + The horizontal value, in design units. + The vertical value, in design units. + + + + Gets the horizontal value, in design units. + + + + + Gets the vertical value, in design units. + + + + + Loads the anchor table. + + The big endian binary reader. + The offset to the beginning of the anchor table. + The anchor table. + + + + Represents the anchor coordinates for a given table. + + + + + Gets the horizontal value, in design units. + + + + + Gets the vertical value, in design units. + + + + + Initializes a new instance of the class. + + The big endian binary reader. + The offset to the beginning of the base array table. + The class count. + + + + Gets the base records. + + + + + Initializes a new instance of the struct. + + The big endian binary reader. + The class count. + Offset to the from beginning of BaseArray table. + + + + Gets the base anchor tables. + + + + + Class2Record used in Pair Adjustment Positioning Format 2. + A Class2Record consists of two ValueRecords, one for the first glyph in a class pair (valueRecord1) and one for the second glyph (valueRecord2). + Note that both fields of a Class2Record are optional: If the PairPos subtable has a value of zero (0) for valueFormat1 or valueFormat2, + then the corresponding record (valueRecord1 or valueRecord2) will be empty — that is, not present. + + + + + Initializes a new instance of the struct. + + The big endian binary reader. + The value format for value record 1. + The value format for value record 2. + + + + Gets the positioning for the first glyph. + + + + + Gets the positioning for second glyph. + + + + + In a ComponentRecord, the zero-based ligatureAnchorOffsets array lists offsets to Anchor tables by mark class. + If a component does not define an attachment point for a particular class of marks, then the offset to the corresponding Anchor table will be NULL. + Example 8 at the end of this chapter shows a MarkLigPosFormat1 subtable used to attach mark accents to a ligature glyph in the Arabic script. + + + + + Initializes a new instance of the class. + + The big endian binary reader. + Number of defined mark classes. + Offset from beginning of LigatureAttach table. + + + + Initializes a new instance of the class. + + The big endian binary reader. + The offset to exitAnchor table, from beginning of CursivePos subtable. + Offsets to entry and exit Anchor table, from beginning of CursivePos subtable. + + + + Gets the entry anchor table. + + + + + Gets the exit anchor table. + + + + + EntryExitRecord sued in Cursive Attachment Positioning Format1. + Each EntryExitRecord consists of two offsets: one to an Anchor table that identifies the entry point on the glyph (entryAnchorOffset), + and an offset to an Anchor table that identifies the exit point on the glyph (exitAnchorOffset). + + + + + Initializes a new instance of the struct. + + The big endian binary reader. + The offset to exitAnchor table, from beginning of CursivePos subtable. + + + + Gets the offset to entryAnchor table, from beginning of CursivePos subtable. + + + + + Gets the offset to exitAnchor table, from beginning of CursivePos subtable. + + + + + The LigatureArray table contains a count (ligatureCount) and an array of offsets (ligatureAttachOffsets) to LigatureAttach tables. + The ligatureAttachOffsets array lists the offsets to LigatureAttach tables, one for each ligature glyph listed in the ligatureCoverage table, + in the same order as the ligatureCoverage index. + + + + + Initializes a new instance of the class. + + The big endian binary reader. + The offset to the start of the ligature array table. + Number of defined mark classes. + + + + Each LigatureAttach table consists of an array (componentRecords) and count (componentCount) of the component glyphs in a ligature. + The array stores the ComponentRecords in the same order as the components in the ligature. + The order of the records also corresponds to the writing direction — that is, the logical direction — of the text. + For text written left to right, the first component is on the left; for text written right to left, the first component is on the right. + + + + + Initializes a new instance of the class. + + The big endian binary reader. + Number of defined mark classes. + Offset from beginning of LigatureAttach table. + + + + The headers of the GSUB and GPOS tables contain offsets to Lookup List tables (LookupList) for + glyph substitution (GSUB table) and glyph positioning (GPOS table). The LookupList table contains + an array of offsets to Lookup tables (lookupOffsets). + + + + + + A Lookup table (Lookup) defines the specific conditions, type, and results of a substitution + or positioning action that is used to implement a feature. For example, a substitution + operation requires a list of target glyph indices to be replaced, a list of replacement glyph + indices, and a description of the type of substitution action. + + + + + + A single adjustment positioning subtable (SinglePos) is used to adjust the placement or advance of a single glyph, + such as a subscript or superscript. In addition, a SinglePos subtable is commonly used to implement lookup data for contextual positioning. + A SinglePos subtable will have one of two formats: one that applies the same adjustment to a series of glyphs(Format 1), + and one that applies a different adjustment for each unique glyph(Format 2). + + + + + + A pair adjustment positioning subtable (PairPos) is used to adjust the placement or advances of two glyphs in relation to one another — + for instance, to specify kerning data for pairs of glyphs. Compared to a typical kerning table, however, + a PairPos subtable offers more flexibility and precise control over glyph positioning. + The PairPos subtable can adjust each glyph in a pair independently in both the X and Y directions, + and it can explicitly describe the particular type of adjustment applied to each glyph. + PairPos subtables can be either of two formats: one that identifies glyphs individually by index(Format 1), and one that identifies glyphs by class (Format 2). + + + + + + Cursive Attachment Positioning Subtable. + Some cursive fonts are designed so that adjacent glyphs join when rendered with their default positioning. + However, if positioning adjustments are needed to join the glyphs, a cursive attachment positioning (CursivePos) subtable can describe + how to connect the glyphs by aligning two anchor points: the designated exit point of a glyph, and the designated entry point of the following glyph. + + + + + + Mark-to-Base Attachment Positioning Subtable. The MarkToBase attachment (MarkBasePos) subtable is used to position combining mark glyphs with respect to base glyphs. + For example, the Arabic, Hebrew, and Thai scripts combine vowels, diacritical marks, and tone marks with base glyphs. + + + + + + Mark-to-Ligature Attachment Positioning Subtable. + The MarkToLigature attachment (MarkLigPos) subtable is used to position combining mark glyphs with respect to ligature base glyphs. + With MarkToBase attachment, described previously, each base glyph has an attachment point defined for each class of marks. + MarkToLigature attachment is similar, except that each ligature glyph is defined to have multiple components (in a virtual sense — not actual glyphs), + and each component has a separate set of attachment points defined for the different mark classes. + + + + + + Lookup Type 6: Mark-to-Mark Attachment Positioning Subtable. + The MarkToMark attachment (MarkMarkPos) subtable is identical in form to the MarkToBase attachment subtable, although its function is different. + MarkToMark attachment defines the position of one mark relative to another mark as when, for example, + positioning tone marks with respect to vowel diacritical marks in Vietnamese. + + + + + + Lookup Type 7: Contextual Positioning Subtables. + A Contextual Positioning subtable describes glyph positioning in context so a text-processing client can adjust the position + of one or more glyphs within a certain pattern of glyphs. + + + + + + LookupType 8: Chained Contexts Positioning Subtable. + A Chained Contexts Positioning subtable describes glyph positioning in context with an ability to look back and/or look ahead in the sequence of glyphs. + The design of the Chained Contexts Positioning subtable is parallel to that of the Contextual Positioning subtable, including the availability of three formats. + Each format can describe one or more chained backtrack, input, and lookahead sequence combinations, and one or more positioning adjustments for glyphs in each input sequence. + + + + + + This lookup provides a mechanism whereby any other lookup type’s subtables are stored at a 32-bit offset location in the GPOS table. + This is needed if the total size of the subtables exceeds the 16-bit limits of the various other offsets in the GPOS table. + In this specification, the subtable stored at the 32-bit offset location is termed the “extension” subtable. + + + + + + Initializes a new instance of the class. + + The big endian binary reader. + The number of mark classes. + The offset to the start of the mark array table. + + + + A Mark2Record declares one Anchor table for each mark class (including Class 0) identified in the MarkRecords of the MarkArray. + Each Anchor table specifies one mark2 attachment point used to attach all the mark1 glyphs in a particular class to the mark2 glyph. + + + + + Initializes a new instance of the class. + + The big endian binary reader. + The Number of Mark2 records. + Offset to the beginning of MarkArray table. + + + + Gets the mark anchor table. + + + + + The MarkArray table defines the class and the anchor point for a mark glyph. + Three GPOS subtable types — MarkToBase attachment, MarkToLigature attachment, + and MarkToMark attachment — use the MarkArray table to specify data for attaching marks. + The MarkArray table contains a count of the number of MarkRecords(markCount) and an array of those records(markRecords). + Each mark record defines the class of the mark and an offset to the Anchor table that contains data for the mark. + + + + + + Initializes a new instance of the class. + + The big endian binary reader. + The offset to the start of the mark array table. + + + + Gets the mark records. + + + + + Defines a mark record used in a mark array table: + + + + + + Initializes a new instance of the struct. + + The big endian binary reader. + Offset to the beginning of MarkArray table. + + + + Gets the class defined for the associated mark. + + + + + Gets the mark anchor table. + + + + + PairValueRecords are used in pair adjustment positioning subtables to adjust the placement or advances of two glyphs in relation to one another. + + + + + + Initializes a new instance of the struct. + + The big endian binary reader. + The types of data in valueRecord1 — for the first glyph in the pair (may be zero). + The types of data in valueRecord2 — for the first glyph in the pair (may be zero). + + + + Gets the second glyph ID. + + + + + Gets the Positioning data for the first glyph in the pair. + + + + + Gets the Positioning data for the second glyph in the pair. + + + + + A ValueFormat flags field defines the types of positioning adjustment data that ValueRecords specify. + + + + + + GPOS subtables use ValueRecords to describe all the variables and values used to adjust the position + of a glyph or set of glyphs. A ValueRecord may define any combination of X and Y values (in design units) + to add to (positive values) or subtract from (negative values) the placement and advance values provided in the font. + + + + + + Initializes a new instance of the struct. + + The big endian binary reader. + Defines the types of data in the ValueRecord. + + + + The Glyph Positioning table (GPOS) provides precise control over glyph placement for + sophisticated text layout and rendering in each script and language system that a font supports. + + + + + + The headers of the GSUB and GPOS tables contain offsets to Lookup List tables (LookupList) for + glyph substitution (GSUB table) and glyph positioning (GPOS table). The LookupList table contains + an array of offsets to Lookup tables (lookupOffsets). + + + + + + A Lookup table (Lookup) defines the specific conditions, type, and results of a substitution + or positioning action that is used to implement a feature. For example, a substitution + operation requires a list of target glyph indices to be replaced, a list of replacement glyph + indices, and a description of the type of substitution action. + + + + + + Single substitution (SingleSubst) subtables tell a client to replace a single glyph with another glyph. + The subtables can be either of two formats. Both formats require two distinct sets of glyph indices: + one that defines input glyphs (specified in the Coverage table), and one that defines the output glyphs. + Format 1 requires less space than Format 2, but it is less flexible. + + + + + + A Multiple Substitution (MultipleSubst) subtable replaces a single glyph with more than one glyph, + as when multiple glyphs replace a single ligature. The subtable has a single format: MultipleSubstFormat1. + + + + + + An Alternate Substitution (AlternateSubst) subtable identifies any number of aesthetic alternatives + from which a user can choose a glyph variant to replace the input glyph. + + + + + + A Ligature Substitution (LigatureSubst) subtable identifies ligature substitutions where a single glyph replaces multiple glyphs. + One LigatureSubst subtable can specify any number of ligature substitutions. + The subtable has one format: LigatureSubstFormat1. + + + + + + A Contextual Substitution subtable describes glyph substitutions in context that replace one + or more glyphs within a certain pattern of glyphs. + + + + + + A Chained Contexts Substitution subtable describes glyph substitutions in context + with an ability to look back and/or look ahead in the sequence of glyphs. + + + + + + This lookup provides a mechanism whereby any other lookup type’s subtables are stored at a 32-bit offset location + in the GSUB table. This is needed if the total size of the subtables exceeds the 16-bit limits of the various + other offsets in the GSUB table. In this specification, the subtable stored at the 32-bit offset location is + termed the "extension" subtable. + + + + + + An Alternate Substitution (AlternateSubst) subtable identifies any number of aesthetic alternatives + from which a user can choose a glyph variant to replace the input glyph. + + + + + + The Glyph Substitution (GSUB) table provides data for substitution of glyphs for appropriate rendering of scripts, + such as cursively-connecting forms in Arabic script, or for advanced typographic effects, such as ligatures. + + + + + + LookupFlag bit enumeration, see: https://docs.microsoft.com/en-us/typography/opentype/spec/chapter2#lookup-table + + + + + This bit relates only to the correct processing of the cursive attachment lookup type (GPOS lookup type 3). + When this bit is set, the last glyph in a given sequence to which the cursive attachment lookup is applied, will be positioned on the baseline. + + + + + If set, skips over base glyphs. + + + + + If set, skips over ligatures. + + + + + If set, skips over all combining marks. + + + + + If set, indicates that the lookup table structure is followed by a MarkFilteringSet field. + The layout engine skips over all mark glyphs not in the mark filtering set indicated. + + + + + For future use (Set to zero). + + + + + If not zero, skips over all marks of attachment type different from specified. + + + + + Provides enumeration determining when to zero mark advances. + + + + + OpenType Layout fonts may contain one or more groups of glyphs used to render various scripts, + which are enumerated in a ScriptList table. Both the GSUB and GPOS tables define + Script List tables (ScriptList): + + + + + + For all formats for both contextual and chained contextual lookups, a common record format + is used to specify an action—a nested lookup—to be applied to a glyph at a particular + sequence position within the input sequence. + + + + + + This is a shaper for Arabic, and other cursive scripts. + The shaping state machine was ported from fontkit. + + + + + + + + + + + + Assigns the features to each glyph within the collection. + + The glyph shaping collection. + The zero-based index of the elements to assign. + The number of elements to assign. + + + + Assigns the features to each glyph within the collection. + + The glyph shaping collection. + The zero-based index of the elements to assign. + The number of elements to assign. + + + + Assigns the preprocessing features to each glyph within the collection. + + The glyph shaping collection. + The zero-based index of the elements to assign. + The number of elements to assign. + + + + Assigns the postprocessing features to each glyph within the collection. + + The glyph shaping collection. + The zero-based index of the elements to assign. + The number of elements to assign. + + + + Assigns the shaper specific substitution features to each glyph within the collection. + + The glyph shaping collection. + The zero-based index of the elements to assign. + The number of elements to assign. + + + + Default shaper, which will be applied to all glyphs. + Based on fontkit: + + + + + + + + This is a shaper for the Hangul script, used by the Korean language. + The shaping state machine was ported from fontkit. + + + + + + + + + + + + The IndicShaper supports Indic scripts e.g. Devanagari, Kannada, etc. + + + + + Creates a Shaper based on the given script language. + + The script language. + The unicode script tag found in the font matching the script. + The text options. + A shaper for the given script. + + + + An individual shaping stage. + Each stage must have a feature tag but can also contain pre and post feature processing operations. + + + For comparison purposes we only care about the feature tag as we want to avoid duplication. + + + + + This shaper is an implementation of the Universal Shaping Engine, which + uses Unicode data to shape a number of scripts without a dedicated shaping engine. + . + + + + + + + + + + + Data type for tag identifiers. Tags are four byte integers, each byte representing a character. + Tags are used to identify tables, design-variation axes, scripts, languages, font features, and baselines with + human-readable names. + + + + + Initializes a new instance of the struct. + + The tag value. + + + + Gets the Tag value as 32 bit unsigned integer. + + + + + Converts the string representation of a number to its Tag equivalent. + + A string containing a tag to convert. + The . + + + + + + + + + + + + + + + + Provides a map from Unicode to OTF . + + + + + + Prevents a default instance of the class from being created. + + + + + Decodes the commands and numbers making up a Type 2 CharString. A Type 2 CharString extends on the Type 1 CharString format. + Compared to the Type 1 format, the Type 2 encoding offers smaller size and an opportunity for better rendering quality and + performance. The Type 2 charstring operators are (with one exception) a superset of the Type 1 operators. + + + A Type 2 charstring program is a sequence of unsigned 8-bit bytes that encode numbers and operators. + The byte value specifies a operator, a number, or subsequent bytes that are to be interpreted in a specific manner + + + + + Represents a glyph metric from a particular Compact Font Face. + + + + + + + + + + + The starting offset + + + + + The length + + + + + Parses a Compact Font Format (CFF) font program as described in The Compact Font Format specification (Adobe Technical Note #5176). + A CFF font may contain multiple fonts and achieves compression by sharing details between fonts in the set. + + + + + Latin 1 Encoding: ISO 8859-1 is a single-byte encoding that can represent the first 256 Unicode characters. + + + + + Appendix A: Standard Strings + + + + + Gets or sets the fd select map, which maps glyph # to font #. + + + + + Represents an element in an font dictionary array. + + + + + Gets the first glyph index in range + + + + + Gets the font dictionary index for all glyphs in range + + + + + Defines a common interface for CFF1 and CFF2 tables. + + + + + Gets the number of glyphs in the table. + + + + + Gets the glyph data at the given index. + + The glyph index. + The . + + + + A ref struct stack implementation that uses a pooled span to store the data. + + The type of elements in the stack. + + + + Adds an item to the stack. + + The item to add. + + + + Removes the first element of the stack. + + The element. + + + + Removes the last element of the stack. + + The element. + + + + Clears the current stack. + + + + + Used to apply a transform against any glyphs rendered by the engine. + + + + + Subtable format 14 specifies the Unicode Variation Sequences (UVSes) supported by the font. + A Variation Sequence, according to the Unicode Standard, comprises a base character followed + by a variation selector. For example, <U+82A6, U+E0101>. + + + + + Gets the unicode codepoints for which a glyph exists in the font. + + The . + + + + Gets the name of the font. + + + The name of the font. + + + + + Gets the name of the font. + + + The name of the font. + + + + + Gets the name of the font. + + + The name of the font. + + + + + Gets the name of the font. + + + The name of the font. + + + + + Defines the contract for shared font tables + + + + + + woff font table format. + + + + + woff2 font table format. + + + + + otf font table format. + + + + + Represents a true type glyph control point. + + + + + Gets or sets the position of the point. + + + + + Gets or sets a value indicating whether the point is on a curve. + + + + + Initializes a new instance of the struct. + + The position. + Whether the point is on a curve. + + + + + + + + + + + + + + + + Represents the raw glyph outlines for a given glyph comprised of a collection of glyph table entries. + The type is mutable by design to reduce copying during transformation. + + + + + Transforms a glyph vector by a specified 3x2 matrix. + + The glyph vector to transform. + The transformation matrix. + + + + Applies True Type hinting to the specified glyph vector. + + The hinting mode. + The glyph vector to hint. + The True Type interpreter. + The first phantom point. + The second phantom point. + The third phantom point. + The fourth phantom point. + + + + Creates a new glyph vector that is a deep copy of the specified instance. + + The source glyph vector to copy. + The cloned . + + + + Returns a value indicating whether the current instance is empty. + + The indicating the result. + + + + Code adapted from + For further information + + + + + + + + Represents a glyph metric from a particular TrueType font face. + + + + + + + + Gets the outline for the current glyph. + + The . + + + + + + + Represents a font collection header (for .ttc font collections). + A font collection contains one or more fonts where typically the glyf table is shared by multiple fonts to save space, + but other tables are not. + Each font in the collection has its own set of tables. + + + + + Gets the tag, should be "ttcf". + + + + + Gets the array of offsets to the OffsetTable of each font. Use for each font. + + + + + Reads the UIntBase128 Data Type. + + The binary reader using big endian encoding. + The result as uint. + true, if succeeded. + + + + Reads the UIntBase255 Data Type. + + The binary reader using big endian encoding. + The UIntBase255 result. + + + + Text alignment modes. + + + + + Aligns text from the left or top when the text direction is + and from the right or bottom when the text direction is . + + + + + Aligns text from the right or bottom when the text direction is + and from the left or top when the text direction is . + + + + + Aligns text from the center. + + + + + Provides enumeration of various text attributes. + + + + + No attributes are applied + + + + + The text set slightly below the normal line of type. + + + + + The text set slightly above the normal line of type. + + + + + Provides enumeration of various text decorations. + + + + + No attributes are applied + + + + + The text is underlined + + + + + The text contains a horizontal line through the center. + + + + + The text contains a horizontal line above it + + + + + Specifies the writing direction for text. + + + + + Left to right. + + + + + Right to left. + + + + + Automatically determined. + + + + + Text justification modes. + + + + + No justification + + + + + The text is justified by adding space between words (effectively varying word-spacing), + which is most appropriate for languages that separate words using spaces, like English or Korean. + + + + + The text is justified by adding space between characters (effectively varying letter-spacing), + which is most appropriate for languages like Japanese. + + + + + Encapsulated logic or laying out text. + + + + + Reorders a series of runs from logical to visual order, returning the left most run. + + + The ordered bidi run. + The . + + + + Encapsulated logic for laying out and then measuring text properties. + + + + + Measures the advance (line-height and horizontal/vertical advance) of the text in pixel units. + + The text. + The text shaping options. + The advance of the text if it was to be rendered. + + + + Measures the advance (line-height and horizontal/vertical advance) of the text in pixel units. + + The text. + The text shaping options. + The advance of the text if it was to be rendered. + + + + Measures the minimum size required, in pixel units, to render the text. + + The text. + The text shaping options. + The size of the text if it was to be rendered. + + + + Measures the minimum size required, in pixel units, to render the text. + + The text. + The text shaping options. + The size of the text if it was to be rendered. + + + + Measures the text bounds in sub-pixel units. + + The text. + The text shaping options. + The bounds of the text if it was to be rendered. + + + + Measures the text bounds in sub-pixel units. + + The text. + The text shaping options. + The bounds of the text if it was to be rendered. + + + + Measures the advance (line-height and horizontal/vertical advance) of each character of the text in pixel units. + + The text. + The text shaping options. + The list of character advances of the text if it was to be rendered. + Whether any of the characters had non-empty advances. + + + + Measures the advance (line-height and horizontal/vertical advance) of each character of the text in pixel units. + + The text. + The text shaping options. + The list of character advances of the text if it was to be rendered. + Whether any of the characters had non-empty advances. + + + + Measures the minimum size required, in pixel units, to render each character in the text. + + The text. + The text shaping options. + The list of character dimensions of the text if it was to be rendered. + Whether any of the characters had non-empty dimensions. + + + + Measures the minimum size required, in pixel units, to render each character in the text. + + The text. + The text shaping options. + The list of character dimensions of the text if it was to be rendered. + Whether any of the characters had non-empty dimensions. + + + + Measures the character bounds of the text in sub-pixel units. + + The text. + The text shaping options. + The list of character bounds of the text if it was to be rendered. + Whether any of the characters had non-empty bounds. + + + + Measures the character bounds of the text in sub-pixel units. + + The text. + The text shaping options. + The list of character bounds of the text if it was to be rendered. + Whether any of the characters had non-empty bounds. + + + + Gets the number of lines contained within the text. + + The text. + The text shaping options. + The line count. + + + + Gets the number of lines contained within the text. + + The text. + The text shaping options. + The line count. + + + + Provides configuration options for rendering and shaping text. + + + + + Initializes a new instance of the class. + + The font. + + + + Initializes a new instance of the class from properties + copied from the given instance. + + The options whose properties are copied into this instance. + + + + Gets or sets the font. + + + + + Gets or sets the collection of fallback font families to use when + a specific glyph is missing from . + + + + + Gets or sets the DPI (Dots Per Inch) to render/measure the text at. + + Defaults to 72. + + + + + Gets or sets the width of the tab. Measured as the distance in spaces (U+0020). + + + If value is -1 then the font default tab width is used. + + + + + Gets or sets a value indicating whether to apply hinting - The use of mathematical instructions + to adjust the display of an outline font so that it lines up with a rasterized grid. + + + + + Gets or sets the line spacing. Applied as a multiple of the line height. + + Defaults to 1. + + + + + Gets or sets the rendering origin. + + + + + Gets or sets the length in pixel units (px) at which text will automatically wrap onto a new line. + This property also affects the width or height (depending on the ) of the text box + for alignment of text. + + + If value is -1 then wrapping is disabled. + + + + + Gets or sets the word breaking mode to use when wrapping text. + + + + + Gets or sets the text direction. + + + + + Gets or sets the text alignment of the text within the box. + + + + + Gets or sets the justification of the text within the box. + + + + + Gets or sets the horizontal alignment of the text box. + + + + + Gets or sets the vertical alignment of the text box. + + + + + Gets or sets the layout mode for the text lines. + + + + + Gets or sets the kerning mode indicating whether to apply kerning (character spacing adjustments) + to the glyph positions from information found within the font. + + + + + Gets or sets a value indicating whether to enable various color font formats. + + + + + Gets or sets the collection of additional feature tags to apply during glyph shaping. + + + + + Gets or sets an optional collection of text runs to apply to the body of text. + + + + + Encapsulated logic for laying out and then rendering text to a surface. + + + + + Initializes a new instance of the class. + + The renderer. + + + + Renders the text to the . + + The target renderer. + The text to render. + The text options. + + + + Renders the text to the . + + The target renderer. + The text to render. + The text option. + + + + Renders the text to the default renderer. + + The text to render. + The text options. + + + + Renders the text to the default renderer. + + The text to render. + The style. + + + + Represents a run of text spanning a series of graphemes within a string. + + + + + Gets or sets the inclusive start index of the first grapheme in this . + + + + + Gets or sets the exclusive end index of the last grapheme in this . + + + + + Gets or sets the font for this run. + + + + + Gets or sets the text attributes applied to this run. + + + + + Gets or sets the text decorations applied to this run. + + + + + Returns the slice of the given text representing this . + + The text to slice. + The . + + + + + + + Represents the Unicode Arabic Joining value of a given . + + + + + + Initializes a new instance of the struct. + + The codepoint. + + + + Gets the Unicode joining type. + + + + + Gets the Unicode joining group. + + + + + Unicode Arabic Joining Groups + . + + + + + African_Feh + + + + + African_Noon + + + + + African_Qaf + + + + + Ain + + + + + Alaph + + + + + Alef + + + + + Beh + + + + + Beth + + + + + Burushaski_Yeh_Barree + + + + + Dal + + + + + Dalath_Rish + + + + + E + + + + + Farsi_Yeh + + + + + Fe + + + + + Feh + + + + + Final_Semkath + + + + + Gaf + + + + + Gamal + + + + + Hah + + + + + Hanifi_Rohingya_Kinna_Ya + + + + + Hanifi_Rohingya_Pa + + + + + He + + + + + Heh + + + + + Heh_Goal + + + + + Heth + + + + + Kaf + + + + + Kaph + + + + + Khaph + + + + + Knotted_Heh + + + + + Lam + + + + + Lamadh + + + + + Malayalam_Bha + + + + + Malayalam_Ja + + + + + Malayalam_Lla + + + + + Malayalam_Llla + + + + + Malayalam_Nga + + + + + Malayalam_Nna + + + + + Malayalam_Nnna + + + + + Malayalam_Nya + + + + + Malayalam_Ra + + + + + Malayalam_Ssa + + + + + Malayalam_Tta + + + + + Manichaean_Aleph + + + + + Manichaean_Ayin + + + + + Manichaean_Beth + + + + + Manichaean_Daleth + + + + + Manichaean_Dhamedh + + + + + Manichaean_Five + + + + + Manichaean_Gimel + + + + + Manichaean_Heth + + + + + Manichaean_Hundred + + + + + Manichaean_Kaph + + + + + Manichaean_Lamedh + + + + + Manichaean_Mem + + + + + Manichaean_Nun + + + + + Manichaean_One + + + + + Manichaean_Pe + + + + + Manichaean_Qoph + + + + + Manichaean_Resh + + + + + Manichaean_Sadhe + + + + + Manichaean_Samekh + + + + + Manichaean_Taw + + + + + Manichaean_Ten + + + + + Manichaean_Teth + + + + + Manichaean_Thamedh + + + + + Manichaean_Twenty + + + + + Manichaean_Waw + + + + + Manichaean_Yodh + + + + + Manichaean_Zayin + + + + + Meem + + + + + Mim + + + + + No_Joining_Group + + + + + Noon + + + + + Nun + + + + + Nya + + + + + Pe + + + + + Qaf + + + + + Qaph + + + + + Reh + + + + + Reversed_Pe + + + + + Rohingya_Yeh + + + + + Sad + + + + + Sadhe + + + + + Seen + + + + + Semkath + + + + + Shin + + + + + Straight_Waw + + + + + Swash_Kaf + + + + + Syriac_Waw + + + + + Tah + + + + + Taw + + + + + Teh_Marbuta + + + + + Hamza_On_Heh_Goal + + + + + Teth + + + + + Thin_Yeh + + + + + Vertical_Tail + + + + + Waw + + + + + Yeh + + + + + Yeh_Barree + + + + + Yeh_With_Tail + + + + + Yudh + + + + + Yudh_He + + + + + Zain + + + + + Zhain + + + + + Unicode Arabic Joining Types + Table 9-3. + + + + + Right Joining (R) + + + + + Left Joining (L) + + + + + Dual Joining (D) + + + + + Join Causing (C) + + + + + Non Joining (U) + + + + + Transparent (T) + + + + + Implementation of Unicode Bidirection Algorithm (UAX #9) + https://unicode.org/reports/tr9/ + + + + The Bidi algorithm uses a number of memory arrays for resolved + types, level information, bracket types, x9 removal maps and + more... + + + This implementation of the Bidi algorithm has been designed + to reduce memory pressure on the GC by re-using the same + work buffers, so instances of this class should be re-used + as much as possible. + + + + + + The original BidiCharacterType types as provided by the caller + + + + + Paired bracket types as provided by caller + + + + + Paired bracket values as provided by caller + + + + + Try if the incoming data is known to contain brackets + + + + + True if the incoming data is known to contain embedding runs + + + + + True if the incoming data is known to contain isolating runs + + + + + Two directional mapping of isolate start/end pairs + + + The forward mapping maps the start index to the end index. + The reverse mapping maps the end index to the start index. + + + + + The working BidiCharacterType types + + + + + The buffer underlying _workingTypes + + + + + The buffer underlying resolvedLevels + + + + + The resolve paragraph embedding level + + + + + The status stack used during resolution of explicit + embedding and isolating runs + + + + + Mapping used to virtually remove characters for rule X9 + + + + + Re-usable list of level runs + + + + + Mapping for the current isolating sequence, built + by joining level runs from the x9 map. + + + + + A stack of pending isolate openings used by FindIsolatePairs() + + + + + The level of the isolating run currently being processed + + + + + The direction of the isolating run currently being processed + + + + + The length of the isolating run currently being processed + + + + + A mapped slice of the resolved types for the isolating run currently + being processed + + + + + A mapped slice of the original types for the isolating run currently + being processed + + + + + A mapped slice of the run levels for the isolating run currently + being processed + + + + + A mapped slice of the paired bracket types of the isolating + run currently being processed + + + + + A mapped slice of the paired bracket values of the isolating + run currently being processed + + + + + Maximum pairing depth for paired brackets + + + + + Reusable list of pending opening brackets used by the + LocatePairedBrackets method + + + + + Resolved list of paired brackets + + + + + Initializes a new instance of the class. + + + + + Gets a per-thread instance that can be re-used as often + as necessary. + + + + + Gets the resolved levels. + + + + + Gets the resolved paragraph embedding level + + + + + Process data from a BidiData instance + + The Bidi Unicode data. + + + + Processes Bidi Data + + + + + Resolve the paragraph embedding level if not explicitly passed + by the caller. Also used by rule X5c for FSI isolating sequences. + + The data to be evaluated + The resolved embedding level + + + + Build a list of matching isolates for a directionality slice + Implements BD9 + + + + + Resolve the explicit embedding levels from the original + data. Implements rules X1 to X8. + + + + + Build a map to the original data positions that excludes all + the types defined by rule X9 + + + + + Find the original character index for an entry in the X9 map + + Index in the x9 removal map + Index to the original data + + + + Add a new level run + + + This method resolves the sos and eos values for the run + and adds the run to the list + /// + The index of the start of the run (in x9 removed units) + The length of the run (in x9 removed units) + The level of the run + + + + Find all runs of the same level, populating the _levelRuns + collection + + + + + Given a character index, find the level run that starts at that position + + The index into the original (unmapped) data + The index of the run that starts at that index + + + + Determine and the process all isolated run sequences + + + + + Process a single isolated run sequence, where the character sequence + mapping is currently held in _isolatedRunMapping. + + + + + Locate all pair brackets in the current isolating run + + A sorted list of BracketPairs + + + + Inspect a paired bracket set and determine its strong direction + + The paired bracket to be inspected + The direction of the bracket set content + + + + Look for a strong type before a paired bracket + + The paired bracket set to be inspected + The sos in case nothing found before the bracket + The strong direction before the brackets + + + + Sets the direction of a bracket pair, including setting the direction of + NSM's inside the brackets and following. + + The paired brackets + The resolved direction for the bracket pair + + + + Resets whitespace levels. Implements rule L1 + + + + + Assign levels to any characters that would be have been + removed by rule X9. The idea is to keep level runs together + that would otherwise be broken by an interfering isolate/embedding + control character. + + + + + Check if a directionality type represents whitespace + + + + + Convert a level to a direction where odd is RTL and + even is LTR + + The level to convert + A directionality + + + + Helper to check if a directionality is removed by rule X9 + + The bidi type to check + True if rule X9 would remove this character; otherwise false + + + + Check if a a directionality is neutral for rules N1 and N2 + + + + + Maps a direction to a strong type for rule N0 + + The direction to map + A strong direction - R, L or ON + + + + Hold the start and end index of a pair of brackets + + + + + Initializes a new instance of the struct. + + Index of the opening bracket + Index of the closing bracket + + + + Gets the index of the opening bracket + + + + + Gets the index of the closing bracket + + + + + Status stack entry used while resolving explicit + embedding levels + + + + + Provides information about a level run - a continuous + sequence of equal levels. + + + + + Provides enumeration for the Unicode Bidirectional character types. + . + + + + + Left-to-right. + + + + + Right-to-left. + + + + + Arabic Letter. + + + + + European Number + + + + + European Separator + + + + + European Terminator + + + + + Arabic Number. + + + + + Common Separator + + + + + Nonspacing Mark. + + + + + Boundary Neutral. + + + + + Paragraph Separator + + + + + Segment Separator + + + + + White Space. + + + + + Other Neutral. + + + + + Left-to-right Embedding. + + + + + Left-to-right Override + + + + + Right-to-left Embedding + + + + + Right-to-left Override. + + + + + Pop Directional Format + + + + + Left-to-right Isolate + + + + + Right-to-left Isolate. + + + + + First Strong Isolate + + + + + Pop Directional Isolate. + + + + + Represents the Unicode Bidi value of a given . + + + + + + Initializes a new instance of the struct. + + The codepoint. + + + + Gets the Unicode Bidirectional character type. + + + + + Gets the Unicode Bidirectional paired bracket type. + + + + + Gets the codepoint representing the bracket pairing for this instance. + + + When this method returns, contains the codepoint representing the bracket pairing for this instance; + otherwise, the default value for the type of the parameter. + This parameter is passed uninitialized. + . + if this instance has a bracket pairing; otherwise, + + + + Represents a unicode string and all associated attributes + for each character required for the Bidi algorithm + + + + + Gets the length of the data held by the BidiData + + + + + Gets the bidi character type of each code point + + + + + Gets the paired bracket type for each code point + + + + + Gets the paired bracket value for code point + + + The paired bracket values are the code points + of each character where the opening code point + is replaced with the closing code point for easier + matching. Also, bracket code points are mapped + to their canonical equivalents + + + + + Initialize with a text value. + + The text to process. + The paragraph embedding level + + + + Save the Types and PairedBracketTypes of this bididata + + + This is used when processing embedded style runs with + BidiCharacterType overrides. TextLayout saves the data, + overrides the style runs to neutral, processes the bidi + data for the entire paragraph and then restores this data + before processing the embedded runs. + + + + + Restore the data saved by SaveTypes + + + + + Gets a temporary level buffer. Used by TextLayout when + resolving style runs with different BidiCharacterType. + + Length of the required ExpandableBuffer + An uninitialized level ExpandableBuffer + + + + A simple bi-directional dictionary. + + Key type + Value type + + + + Provides enumeration for classifying characters into opening and closing paired brackets + for the purposes of the Unicode Bidirectional Algorithm. + . + + + + + None. + + + + + Open. + + + + + Close. + + + + + Represents a Unicode value ([ U+0000..U+10FFFF ], inclusive). + + + This type's constructors and conversion operators validate the input, so consumers can call the APIs + assuming that the underlying instance is well-formed. + + + + + Initializes a new instance of the struct. + + The char representing the UTF-16 code unit + + If represents a UTF-16 surrogate code point + U+D800..U+DFFF, inclusive. + + + + + Initializes a new instance of the struct. + + A char representing a UTF-16 high surrogate code unit. + A char representing a UTF-16 low surrogate code unit. + + If does not represent a UTF-16 high surrogate code unit + or does not represent a UTF-16 low surrogate code unit. + + + + + Initializes a new instance of the struct. + + The value to create the codepoint. + + If does not represent a value Unicode scalar value. + + + + + Initializes a new instance of the struct. + + The value to create the codepoint. + + If does not represent a value Unicode scalar value. + + + + + Gets a value indicating whether this value is ASCII ([ U+0000..U+007F ]) + and therefore representable by a single UTF-8 code unit. + + + + + Gets a value indicating whether this value is within the BMP ([ U+0000..U+FFFF ]) + and therefore representable by a single UTF-16 code unit. + + + + + Gets the Unicode plane (0 to 16, inclusive) which contains this scalar. + + + + + Gets the Unicode value as an integer. + + + + + Gets the length in code units () of the + UTF-16 sequence required to represent this scalar value. + + + The return value will be 1 or 2. + + + + + Gets the length in code units of the + UTF-8 sequence required to represent this scalar value. + + + The return value will be 1 through 4, inclusive. + + + + + Gets a instance that represents the Unicode replacement character U+FFFD. + + + + + Returns if is a valid Unicode code + point, i.e., is in [ U+0000..U+10FFFF ], inclusive. + + The value to evaluate. + if represents a valid codepoint; otherwise, + + + + Returns if is a valid Unicode code + point, i.e., is in [ U+0000..U+10FFFF ], inclusive. + + The value to evaluate. + if represents a valid codepoint; otherwise, + + + + Gets a value indicating whether the given codepoint is white space. + + The codepoint to evaluate. + if is a whitespace character; otherwise, + + + + Gets a value indicating whether the given codepoint is a non-breaking space. + + The codepoint to evaluate. + if is a non-breaking space character; otherwise, + + + + Gets a value indicating whether the given codepoint is a zero-width-non-joiner. + + The codepoint to evaluate. + if is a zero-width-non-joiner character; otherwise, + + + + Gets a value indicating whether the given codepoint is a zero-width-joiner. + + The codepoint to evaluate. + if is a zero-width-joiner character; otherwise, + + + + Gets a value indicating whether the given codepoint is a variation selector. + + + The codepoint to evaluate. + if is a variation selector character; otherwise, + + + + Gets a value indicating whether the given codepoint is a control character. + + The codepoint to evaluate. + if is a control character; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as a decimal digit. + + The codepoint to evaluate. + if is a decimal digit; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as a letter. + + The codepoint to evaluate. + if is a letter; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as a letter or decimal digit. + + The codepoint to evaluate. + if is a letter or decimal digit; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as a lowercase letter. + + The codepoint to evaluate. + if is a lowercase letter; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as a number. + + The codepoint to evaluate. + if is a number; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as punctuation. + + The codepoint to evaluate. + if is punctuation; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as a separator. + + The codepoint to evaluate. + if is a separator; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as a symbol. + + The codepoint to evaluate. + if is a symbol; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as a mark. + + The codepoint to evaluate. + if is a symbol; otherwise, + + + + Returns a value that indicates whether the specified codepoint is categorized as an uppercase letter. + + The codepoint to evaluate. + if is a uppercase letter; otherwise, + + + + Gets a value indicating whether the given codepoint is a tabulation indicator. + + The codepoint to evaluate. + if is a tabulation indicator; otherwise, + + + + Gets a value indicating whether the given codepoint is a new line indicator. + + The codepoint to evaluate. + if is a new line indicator; otherwise, + + + + Returns the number of codepoints in a given string buffer. + + The source buffer to parse. + The count. + + + + Gets the canonical representation of a given codepoint. + + + The code point to be mapped. + The mapped canonical code point, or the passed . + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Gets the codepoint representing the bidi mirror for this instance. + + + The code point to be mapped. + + When this method returns, contains the codepoint representing the bidi mirror for this instance; + otherwise, the default value for the type of the parameter. + This parameter is passed uninitialized. + . + if this instance has a mirror; otherwise, + + + + Gets the codepoint representing the vertical mirror for this instance. + + + The code point to be mapped. + + When this method returns, contains the codepoint representing the vertical mirror for this instance; + otherwise, the default value for the type of the parameter. + This parameter is passed uninitialized. + . + if this instance has a mirror; otherwise, + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Gets the for the given codepoint. + + The codepoint to evaluate. + The . + + + + Reads the at specified position. + + The text to read from. + The index to read at. + The count of chars consumed reading the buffer. + The . + + + + Decodes the from the provided UTF-16 source buffer at the specified position. + + The buffer to read from. + The index to read at. + The . + + + + Decodes the from the provided UTF-16 source buffer at the specified position. + + The buffer to read from. + The index to read at. + The count of chars consumed reading the buffer. + The . + + + + + + + + + + + + + + + + + + + + + + Returns this instance displayed as "'<char>' (U+XXXX)"; e.g., "'e' (U+0065)" + + The . + + + + Unicode Grapheme Cluster classes. + + + + + + This is not a property value; it is used in the rules to represent any code point. + + + + + U+000D CARRIAGE RETURN (CR) + + + + + U+000A LINE FEED (LF) + + + + + General_Category = Line_Separator, or
+ General_Category = Paragraph_Separator, or
+ General_Category = Control, or
+ General_Category = Unassigned and Default_Ignorable_Code_Point, or
+ General_Category = Format
+ and not U+000D CARRIAGE RETURN
+ and not U+000A LINE FEED
+ and not U+200C ZERO WIDTH NON-JOINER (ZWNJ)
+ and not U+200D ZERO WIDTH JOINER (ZWJ)
+ and not Prepended_Concatenation_Mark = Yes +
+
+ + + Grapheme_Extend = Yes, or
+ Emoji_Modifier = Yes
+ This includes:
+ General_Category = Nonspacing_Mark
+ General_Category = Enclosing_Mark
+ U+200C ZERO WIDTH NON-JOINER
+ plus a few General_Category = Spacing_Mark needed for canonical equivalence. +
+
+ + + Regional_Indicator = Yes
+ This consists of the range:
+ U+1F1E6 REGIONAL INDICATOR SYMBOL LETTER A + ..U+1F1FF REGIONAL INDICATOR SYMBOL LETTER Z +
+
+ + + Indic_Syllabic_Category = Consonant_Preceding_Repha, or
+ Indic_Syllabic_Category = Consonant_Prefixed, or
+ Prepended_Concatenation_Mark = Yes +
+
+ + + Grapheme_Cluster_Break ≠ Extend, and
+ General_Category = Spacing_Mark, or
+ any of the following (which have General_Category = Other_Letter):
+ U+0E33 ( ำ ) THAI CHARACTER SARA AM
+ U+0EB3 ( ຳ ) LAO VOWEL SIGN AM +
+
+ + + Hangul_Syllable_Type = L, such as:
+ U+1100 ( ᄀ ) HANGUL CHOSEONG KIYEOK
+ U+115F ( ᅟ ) HANGUL CHOSEONG FILLER
+ U+A960 ( ꥠ ) HANGUL CHOSEONG TIKEUT-MIEUM
+ U+A97C ( ꥼ ) HANGUL CHOSEONG SSANGYEORINHIEUH +
+
+ + + Hangul_Syllable_Type=V, such as:
+ U+1160 ( ᅠ ) HANGUL JUNGSEONG FILLER
+ U+11A2 ( ᆢ ) HANGUL JUNGSEONG SSANGARAEA
+ U+D7B0 ( ힰ ) HANGUL JUNGSEONG O-YEO
+ U+D7C6 ( ퟆ ) HANGUL JUNGSEONG ARAEA-E +
+
+ + + Hangul_Syllable_Type = T, such as:
+ U+11A8 ( ᆨ ) HANGUL JONGSEONG KIYEOK
+ U+11F9 ( ᇹ ) HANGUL JONGSEONG YEORINHIEUH
+ U+D7CB ( ퟋ ) HANGUL JONGSEONG NIEUN-RIEUL
+ U+D7FB ( ퟻ ) HANGUL JONGSEONG PHIEUPH-THIEUTH +
+
+ + + Hangul_Syllable_Type=LV, that is:
+ U+AC00 ( 가 ) HANGUL SYLLABLE GA
+ U+AC1C ( 개 ) HANGUL SYLLABLE GAE
+ U+AC38 ( 갸 ) HANGUL SYLLABLE GYA +
+
+ + + Hangul_Syllable_Type=LVT, that is:
+ U+AC01 ( 각 ) HANGUL SYLLABLE GAG
+ U+AC02 ( 갂 ) HANGUL SYLLABLE GAGG
+ U+AC03 ( 갃 ) HANGUL SYLLABLE GAGS
+ U+AC04 ( 간 ) HANGUL SYLLABLE GAN +
+
+ + + Extended Pictographic + + + + + U+200D ZERO WIDTH JOINER + + + + + Unicode Indic Positional Categories. + + + + + Bottom + + + + + Bottom_And_Left + + + + + Bottom_And_Right + + + + + Left + + + + + Left_And_Right + + + + + NA + + + + + Overstruck + + + + + Right + + + + + Top + + + + + Top_And_Bottom + + + + + Top_And_Bottom_And_Left + + + + + Top_And_Bottom_And_Right + + + + + Top_And_Left + + + + + Top_And_Left_And_Right + + + + + Top_And_Right + + + + + Visual_Order_Left + + + + + Unicode Indic Syllabic Categories. + + + + + + Avagraha. + + + + + Bindu. + + + + + Brahmi_Joining_Number. + + + + + Cantillation_Mark. + + + + + Consonant + + + + + Consonant_Dead + + + + + Consonant_Final + + + + + Consonant_Head_Letter + + + + + Consonant_Initial_Postfixed + + + + + Consonant_Killer + + + + + Consonant_Medial + + + + + Consonant_Placeholder + + + + + Consonant_Preceding_Repha + + + + + Consonant_Prefixed + + + + + Consonant_Subjoined + + + + + Consonant_Succeeding_Repha + + + + + Consonant_With_Stacker + + + + + Gemination_Mark + + + + + Invisible_Stacker + + + + + Joiner + + + + + Modifying_Letter + + + + + Non_Joiner + + + + + Nukta + + + + + Number + + + + + Number_Joiner + + + + + Other + + + + + Pure_Killer + + + + + Register_Shifter + + + + + Syllable_Modifier + + + + + Tone_Letter + + + + + Tone_Mark + + + + + Virama + + + + + Visarga + + + + + Vowel + + + + + Vowel_Dependent + + + + + Vowel_Independent + + + + + Information about a potential line break position. + + + + + Initializes a new instance of the struct. + + The code point index to measure to + The code point index to actually break the line at + True if this is a required line break; otherwise false + + + + Gets the break position, before any trailing whitespace. + This doesn't include trailing whitespace. + + + + + Gets the break position, after any trailing whitespace. + This includes trailing whitespace. + + + + + Gets a value indicating whether there should be a forced line break here. + + + + + Unicode line break classes. + + + + + + Open punctuation + + + + + Closing punctuation + + + + + Closing parenthesis + + + + + Ambiguous quotation + + + + + Glue + + + + + Non-starters + + + + + Exclamation/Interrogation + + + + + Symbols allowing break after + + + + + Infix separator + + + + + Prefix + + + + + Postfix + + + + + Numeric + + + + + Alphabetic + + + + + Hebrew Letter + + + + + Ideographic + + + + + Inseparable characters + + + + + Hyphen + + + + + Break after + + + + + Break before + + + + + Break on either side (but not pair) + + + + + Zero-width space + + + + + Combining marks + + + + + Word joiner + + + + + Hangul LV + + + + + Hangul LVT + + + + + Hangul L Jamo + + + + + Hangul V Jamo + + + + + Hangul T Jamo + + + + + Regional Indicator + + + + + Emoji Base + + + + + Emoji Modifier + + + + + Zero Width Joiner + + + + + Contingent break + + + + + Ambiguous (Alphabetic or Ideograph) + + + + + Break (mandatory) + + + + + Conditional Japanese Starter + + + + + Carriage return + + + + + Line feed + + + + + Next line + + + + + South-East Asian + + + + + Surrogates + + + + + Space + + + + + Unknown + + + + + Supports a simple iteration over a linebreak collection. + Implementation of the Unicode Line Break Algorithm. UAX:14 + + Methods are pattern-matched by compiler to allow using foreach pattern. + + + + + Returns an enumerator that iterates through the collection. + + An enumerator that iterates through the collection. + + + + Advances the enumerator to the next element of the collection. + + + if the enumerator was successfully advanced to the next element; + if the enumerator has passed the end of the collection. + + + + + Direct break opportunity + + + + + Indirect break opportunity + + + + + Indirect break opportunity for combining marks + + + + + Prohibited break for combining marks + + + + + Prohibited break + + + + + Contains extensions methods for memory types. + + + + + Returns an enumeration of from the provided span. + + The readonly span of char elements representing the text to enumerate. + + Invalid sequences will be represented in the enumeration by . + + The . + + + + Returns an enumeration of from the provided span. + + The span of char elements representing the text to enumerate. + + Invalid sequences will be represented in the enumeration by . + + The . + + + + Returns the number of code points in the provided text. + + The text to enumerate. + The count. + + + + Returns the number of code points in the provided span. + + The readonly span of char elements representing the text to enumerate. + The count. + + + + Returns the number of code points in the provided span. + + The span of char elements representing the text to enumerate. + The count. + + + + Returns an enumeration of Grapheme instances from the provided span. + + The readonly span of char elements representing the text to enumerate. + + Invalid sequences will be represented in the enumeration by . + + The . + + + + Returns an enumeration of Grapheme instances from the provided span. + + The span of char elements representing the text to enumerate. + + Invalid sequences will be represented in the enumeration by . + + The . + + + + Returns the number of graphemes in the provided text. + + The text to enumerate. + The count. + + + + Returns the number of graphemes in the provided span. + + The readonly span of char elements representing the text to enumerate. + The count. + + + + Returns the number of graphemes in the provided span. + + The span of char elements representing the text to enumerate. + The count. + + + + Reph formed out of initial Ra,H sequence. + + + + + Reph formed out of initial Ra,H,ZWJ sequence. + + + + + Encoded Repha character, no reordering needed. + + + + + Encoded Repha character, needs reordering. + + + + + Below-forms feature applied to pre-base and post-base. + + + + + Below-forms feature applied to post-base only. + + + + + Unicode Script classes + + + + + Shortcode: Zzzz + + + + + Shortcode: Zyyy + + + + + Shortcode: Zinh, Qaai + + + + + Shortcode: Adlm + + + + + Shortcode: Aghb + + + + + Shortcode: Ahom + + + + + Shortcode: Arab + + + + + Shortcode: Armi + + + + + Shortcode: Armn + + + + + Shortcode: Avst + + + + + Shortcode: Bali + + + + + Shortcode: Bamu + + + + + Shortcode: Bass + + + + + Shortcode: Batk + + + + + Shortcode: Beng + + + + + Shortcode: Bhks + + + + + Shortcode: Bopo + + + + + Shortcode: Brah + + + + + Shortcode: Brai + + + + + Shortcode: Bugi + + + + + Shortcode: Buhd + + + + + Shortcode: Cakm + + + + + Shortcode: Cans + + + + + Shortcode: Cari + + + + + Shortcode: Cham + + + + + Shortcode: Cher + + + + + Shortcode: Chrs + + + + + Shortcode: Copt, Qaac + + + + + Shortcode: Cpmn + + + + + Shortcode: Cprt + + + + + Shortcode: Cyrl + + + + + Shortcode: Deva + + + + + Shortcode: Diak + + + + + Shortcode: Dogr + + + + + Shortcode: Dsrt + + + + + Shortcode: Dupl + + + + + Shortcode: Egyp + + + + + Shortcode: Elba + + + + + Shortcode: Elym + + + + + Shortcode: Ethi + + + + + Shortcode: Geor + + + + + Shortcode: Glag + + + + + Shortcode: Gong + + + + + Shortcode: Gonm + + + + + Shortcode: Goth + + + + + Shortcode: Gran + + + + + Shortcode: Grek + + + + + Shortcode: Gujr + + + + + Shortcode: Guru + + + + + Shortcode: Hang + + + + + Shortcode: Hani + + + + + Shortcode: Hano + + + + + Shortcode: Hatr + + + + + Shortcode: Hebr + + + + + Shortcode: Hira + + + + + Shortcode: Hluw + + + + + Shortcode: Hmng + + + + + Shortcode: Hmnp + + + + + Shortcode: Hrkt + + + + + Shortcode: Hung + + + + + Shortcode: Ital + + + + + Shortcode: Java + + + + + Shortcode: Kali + + + + + Shortcode: Kana + + + + + Shortcode: Khar + + + + + Shortcode: Khmr + + + + + Shortcode: Khoj + + + + + Shortcode: Kits + + + + + Shortcode: Knda + + + + + Shortcode: Kthi + + + + + Shortcode: Lana + + + + + Shortcode: Laoo + + + + + Shortcode: Latn + + + + + Shortcode: Lepc + + + + + Shortcode: Limb + + + + + Shortcode: Lina + + + + + Shortcode: Linb + + + + + Shortcode: Lisu + + + + + Shortcode: Lyci + + + + + Shortcode: Lydi + + + + + Shortcode: Mahj + + + + + Shortcode: Maka + + + + + Shortcode: Mand + + + + + Shortcode: Mani + + + + + Shortcode: Marc + + + + + Shortcode: Medf + + + + + Shortcode: Mend + + + + + Shortcode: Merc + + + + + Shortcode: Mero + + + + + Shortcode: Mlym + + + + + Shortcode: Modi + + + + + Shortcode: Mong + + + + + Shortcode: Mroo + + + + + Shortcode: Mtei + + + + + Shortcode: Mult + + + + + Shortcode: Mymr + + + + + Shortcode: Nand + + + + + Shortcode: Narb + + + + + Shortcode: Nbat + + + + + Shortcode: Newa + + + + + Shortcode: Nkoo + + + + + Shortcode: Nshu + + + + + Shortcode: Ogam + + + + + Shortcode: Olck + + + + + Shortcode: Orkh + + + + + Shortcode: Orya + + + + + Shortcode: Osge + + + + + Shortcode: Osma + + + + + Shortcode: Ougr + + + + + Shortcode: Palm + + + + + Shortcode: Pauc + + + + + Shortcode: Perm + + + + + Shortcode: Phag + + + + + Shortcode: Phli + + + + + Shortcode: Phlp + + + + + Shortcode: Phnx + + + + + Shortcode: Plrd + + + + + Shortcode: Prti + + + + + Shortcode: Rjng + + + + + Shortcode: Rohg + + + + + Shortcode: Runr + + + + + Shortcode: Samr + + + + + Shortcode: Sarb + + + + + Shortcode: Saur + + + + + Shortcode: Sgnw + + + + + Shortcode: Shaw + + + + + Shortcode: Shrd + + + + + Shortcode: Sidd + + + + + Shortcode: Sind + + + + + Shortcode: Sinh + + + + + Shortcode: Sogd + + + + + Shortcode: Sogo + + + + + Shortcode: Sora + + + + + Shortcode: Soyo + + + + + Shortcode: Sund + + + + + Shortcode: Sylo + + + + + Shortcode: Syrc + + + + + Shortcode: Tagb + + + + + Shortcode: Takr + + + + + Shortcode: Tale + + + + + Shortcode: Talu + + + + + Shortcode: Taml + + + + + Shortcode: Tang + + + + + Shortcode: Tavt + + + + + Shortcode: Telu + + + + + Shortcode: Tfng + + + + + Shortcode: Tglg + + + + + Shortcode: Thaa + + + + + Shortcode: Thai + + + + + Shortcode: Tibt + + + + + Shortcode: Tirh + + + + + Shortcode: Tnsa + + + + + Shortcode: Toto + + + + + Shortcode: Ugar + + + + + Shortcode: Vaii + + + + + Shortcode: Vith + + + + + Shortcode: Wara + + + + + Shortcode: Wcho + + + + + Shortcode: Xpeo + + + + + Shortcode: Xsux + + + + + Shortcode: Yezi + + + + + Shortcode: Yiii + + + + + Shortcode: Zanb + + + + + An enumerator for retrieving instances from a . + Methods are pattern-matched by compiler to allow using foreach pattern. + + + + + Initializes a new instance of the struct. + + The buffer to read from. + + + + Gets the element in the collection at the current position of the enumerator. + + + + + Returns an enumerator that iterates through the collection. + + An enumerator that iterates through the collection. + + + + Advances the enumerator to the next element of the collection. + + + if the enumerator was successfully advanced to the next element; + if the enumerator has passed the end of the collection. + + + + + An enumerator for retrieving Grapheme instances from a . +
+ Implements the Unicode Grapheme Cluster Algorithm. UAX:29 + +
+ Methods are pattern-matched by compiler to allow using foreach pattern. +
+
+ + + Initializes a new instance of the struct. + + The buffer to read from. + + + + Gets the element in the collection at the current position of the enumerator. + + + + + Returns an enumerator that iterates through the collection. + + An enumerator that iterates through the collection. + + + + Advances the enumerator to the next element of the collection. + + + if the enumerator was successfully advanced to the next element; + if the enumerator has passed the end of the collection. + + + + + A read-only Trie, holding 32 bit data values. + A UnicodeTrie is a highly optimized data structure for mapping from Unicode + code points(values ranging from 0 to 0x10ffff) to a 32 bit value. + + + + + Initializes a new instance of the class. + + The stream containing the compressed data. + + + + Initializes a new instance of the class. + + The uncompressed trie data. + The start of the last range which ends at U+10ffff. + The value for out-of-range code points and illegal UTF-8. + + + + Get the value for a code point as stored in the trie. + + The code point. + The value. + + + + Saves the to the stream in a compressed format. + + The output stream. + + + + Builder class to manipulate and generate a trie. + This is useful for ICU data in primitive types. + Provides a compact way to store information that is indexed by Unicode + values, such as character properties, types, keyboard values, etc. + This is very useful when you have a block of Unicode data that contains significant + values while the rest of the Unicode data is unused in the application or + when you have a lot of redundance, such as where all 21,000 Han ideographs + have the same value. However, lookup is much faster than a hash table. + A trie of any primitive data type serves two purposes: +
    +
  • Fast access of the indexed values.
  • +
  • Smaller memory footprint.
  • +
+
+
+ + + Initializes a new instance of the class. + + The initial value that is set for all code points. + The value for out-of-range code points and illegal UTF-8. + + + + Gets the value for a code point as stored in the trie. + + The code point. + The value. + + + + Sets a value for a given code point. + + The code point. + The value. + + + + Set a value in a range of code points [start..end]. + All code points c with start <= c <= end will get the value if + is or if the old value is the + initial value. + + The first code point to get the value. + The last code point to get the value (inclusive). + The value. + Whether old non-initial values are to be overwritten. + + + + Compacts the data and populates an optimized readonly Trie. + + The . + + + + Is this code point a lead surrogate (U+d800..U+dbff)? + + The code point. + The . + + + + Returns if is an ASCII + character ([ U+0000..U+007F ]). + + + Per http://www.unicode.org/glossary/#ASCII, ASCII is only U+0000..U+007F. + + + + + Returns if is in the + Basic Multilingual Plane (BMP). + + + + + Gets the codepoint value representing the vertical mirror for this instance. +
+ +
+ +
+ + The representing the mirror or 0u if not found. + +
+ + + Returns if is a + Chinese/Japanese/Korean (CJK) character. + + + + + + + + + + + + Returns if is a Default Ignorable Code Point. + + + + + + + + + Returns the Unicode plane (0 through 16, inclusive) which contains this code point. + + + + + Given a Unicode scalar value, gets the number of UTF-16 code units required to represent this value. + + + + + Given a Unicode scalar value, gets the number of UTF-8 code units required to represent this value. + + + + + Returns if is a valid Unicode code + point, i.e., is in [ U+0000..U+10FFFF ], inclusive. + + + + + Returns if is a UTF-16 high surrogate code point, + i.e., is in [ U+D800..U+DBFF ], inclusive. + + + + + Returns if is a UTF-16 low surrogate code point, + i.e., is in [ U+DC00..U+DFFF ], inclusive. + + + + + Returns if is a UTF-16 surrogate code point, + i.e., is in [ U+D800..U+DFFF ], inclusive. + + + + + Returns if is between + and , inclusive. + + + + + Returns a Unicode scalar value from two code points representing a UTF-16 surrogate pair. + + + + + Decomposes an astral Unicode code point into UTF-16 high and low surrogate code units. + + + + + Formats a code point as the hex string "U+XXXX". + + + The input value doesn't have to be a real code point in the Unicode codespace. It can be any integer. + + + + + Unicode Vertical Orientation types. + + + + + + Characters which are displayed upright, with the same orientation that appears in the code charts. + + + + + Characters which are displayed sideways, rotated 90 degrees clockwise compared to the code charts. + + + + + Characters which are not just upright or sideways, but generally require a different glyph than in the code + charts when used in vertical texts. In addition, as a fallback, the character can be displayed with the code + chart glyph upright. + + + + + Same as except that, as a fallback, the character can be displayed with the code chart glyph rotated 90 degrees clockwise. + + + + + Converts encoding ID to TextEncoding + + + + + Converts encoding ID to TextEncoding + + The identifier. + the encoding for this encoding ID + + + + Vertical alignment modes. + + + + + Aligns downward from the top. + + + + + Aligns text up and down from the middle. + + + + + Aligns text upwards from the bottom + + + + + Represent the metrics of a font face specific to vertical text. + + + + + + + + + + + + + + + + + + + + + + + Gets or sets a value indicating whether the metrics have been synthesized. + + + + + Encoding IDS + + + + + Unicode 1.0 semantics + + + + + Unicode 1.1 semantics + + + + + ISO/IEC 10646 semantics + + + + + Unicode 2.0 and onwards semantics, Unicode BMP only (cmap subtable formats 0, 4, 6). + + + + + Unicode 2.0 and onwards semantics, Unicode full repertoire (cmap subtable formats 0, 4, 6, 10, 12). + + + + + Unicode Variation Sequences (cmap subtable format 14). + + + + + Unicode full repertoire (cmap subtable formats 0, 4, 6, 10, 12, 13) + + + + + Provides enumeration of common name ids + + + + + + The copyright notice + + + + + The font family name; Up to four fonts can share the Font Family name, forming a font style linking + group (regular, italic, bold, bold italic — as defined by OS/2.fsSelection bit settings). + + + + + The font subfamily name; The Font Subfamily name distinguishes the font in a group with the same Font Family name (name ID 1). + This is assumed to address style (italic, oblique) and weight (light, bold, black, etc.). A font with no particular differences + in weight or style (e.g. medium weight, not italic and fsSelection bit 6 set) should have the string "Regular" stored in this position. + + + + + The unique font identifier + + + + + The full font name; a combination of strings 1 and 2, or a similar human-readable variant. If string 2 is "Regular", it is sometimes omitted from name ID 4. + + + + + Version string. Should begin with the syntax 'Version <number>.<number>' (upper case, lower case, or mixed, with a space between "Version" and the number). + The string must contain a version number of the following form: one or more digits (0-9) of value less than 65,535, followed by a period, followed by one or more + digits of value less than 65,535. Any character other than a digit will terminate the minor number. A character such as ";" is helpful to separate different pieces of version information. + The first such match in the string can be used by installation software to compare font versions. + Note that some installers may require the string to start with "Version ", followed by a version number as above. + + + + + Postscript name for the font; Name ID 6 specifies a string which is used to invoke a PostScript language font that corresponds to this OpenType font. + When translated to ASCII, the name string must be no longer than 63 characters and restricted to the printable ASCII subset, codes 33 to 126, + except for the 10 characters '[', ']', '(', ')', '{', '}', '<', '>', '/', '%'. + In a CFF OpenType font, there is no requirement that this name be the same as the font name in the CFF’s Name INDEX. + Thus, the same CFF may be shared among multiple font components in a Font Collection. See the 'name' table section of + Recommendations for OpenType fonts "" for additional information. + + + + + Trademark; this is used to save any trademark notice/information for this font. Such information should + be based on legal advice. This is distinctly separate from the copyright. + + + + + The manufacturer + + + + + Designer; name of the designer of the typeface. + + + + + Description; description of the typeface. Can contain revision information, usage recommendations, history, features, etc. + + + + + URL Vendor; URL of font vendor (with protocol, e.g., http://, ftp://). If a unique serial number is embedded in + the URL, it can be used to register the font. + + + + + URL Designer; URL of typeface designer (with protocol, e.g., http://, ftp://). + + + + + License Description; description of how the font may be legally used, or different example scenarios for licensed use. + This field should be written in plain language, not legalese. + + + + + License Info URL; URL where additional licensing information can be found. + + + + + Typographic Family name: The typographic family grouping doesn't impose any constraints on the number of faces within it, + in contrast with the 4-style family grouping (ID 1), which is present both for historical reasons and to express style linking groups. + If name ID 16 is absent, then name ID 1 is considered to be the typographic family name. + (In earlier versions of the specification, name ID 16 was known as "Preferred Family".) + + + + + Typographic Subfamily name: This allows font designers to specify a subfamily name within the typographic family grouping. + This string must be unique within a particular typographic family. If it is absent, then name ID 2 is considered to be the + typographic subfamily name. (In earlier versions of the specification, name ID 17 was known as "Preferred Subfamily".) + + + + + Sample text; This can be the font name, or any other text that the designer thinks is the best sample to display the font in. + + + + + platforms ids + + + + + Unicode platform + + + + + Script manager code + + + + + [deprecated] ISO encoding + + + + + Window encoding + + + + + Custom platform + + + + + Defines modes to determine when line breaks should appear when words overflow + their content box. + + + + + Use the default line break rule. + + + + + To prevent overflow, word breaks should be inserted between any two + characters (excluding Chinese/Japanese/Korean text). + + + + + Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. + Non-CJK text behavior is the same as for + + + + + Uses a combination of and rules in that order. + + + + + Provides methods to protect against invalid parameters for a DEBUG build. + + + + + Ensures that the value is not null. + + The target object, which cannot be null. + The name of the parameter that is to be checked. + The type of the value. + is null. + + + + Ensures that the target value is not null, empty, or whitespace. + + The target string, which should be checked against being null or empty. + Name of the parameter. + is null. + is empty or contains only blanks. + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + The type of the value. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + The type of the value. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + The type of the value. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + The type of the value. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + The type of the value. + + is less than the minimum value of greater than the maximum value. + + + + + Verifies, that the method parameter with specified target value is true + and throws an exception if it is found to be so. + + The target value, which cannot be false. + The name of the parameter that is to be checked. + The error message, if any to add to the exception. + + is false. + + + + + Verifies, that the method parameter with specified target value is false + and throws an exception if it is found to be so. + + The target value, which cannot be true. + The name of the parameter that is to be checked. + The error message, if any to add to the exception. + + is true. + + + + + Verifies, that the `source` span has the length of 'minLength', or longer. + + The element type of the spans. + The source span. + The minimum length. + The name of the parameter that is to be checked. + + has less than items. + + + + + Verifies, that the `source` span has the length of 'minLength', or longer. + + The element type of the spans. + The target span. + The minimum length. + The name of the parameter that is to be checked. + + has less than items. + + + + + Verifies that the 'destination' span is not shorter than 'source'. + + The source element type. + The destination element type. + The source span. + The destination span. + The name of the argument for 'destination'. + + + + Verifies that the 'destination' span is not shorter than 'source'. + + The source element type. + The destination element type. + The source span. + The destination span. + The name of the argument for 'destination'. + + + + Provides methods to protect against invalid parameters. + + + Provides methods to protect against invalid parameters. + + + + + Ensures that the value is not null. + + The target object, which cannot be null. + The name of the parameter that is to be checked. + The type of the value. + is null. + + + + Ensures that the target value is not null, empty, or whitespace. + + The target string, which should be checked against being null or empty. + Name of the parameter. + is null. + is empty or contains only blanks. + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + The type of the value. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + The type of the value. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + The type of the value. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + The type of the value. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + The type of the value. + + is less than the minimum value of greater than the maximum value. + + + + + Verifies, that the method parameter with specified target value is true + and throws an exception if it is found to be so. + + The target value, which cannot be false. + The name of the parameter that is to be checked. + The error message, if any to add to the exception. + + is false. + + + + + Verifies, that the method parameter with specified target value is false + and throws an exception if it is found to be so. + + The target value, which cannot be true. + The name of the parameter that is to be checked. + The error message, if any to add to the exception. + + is true. + + + + + Verifies, that the `source` span has the length of 'minLength', or longer. + + The element type of the spans. + The source span. + The minimum length. + The name of the parameter that is to be checked. + + has less than items. + + + + + Verifies, that the `source` span has the length of 'minLength', or longer. + + The element type of the spans. + The target span. + The minimum length. + The name of the parameter that is to be checked. + + has less than items. + + + + + Verifies that the 'destination' span is not shorter than 'source'. + + The source element type. + The destination element type. + The source span. + The destination span. + The name of the argument for 'destination'. + + + + Verifies that the 'destination' span is not shorter than 'source'. + + The source element type. + The destination element type. + The source span. + The destination span. + The name of the argument for 'destination'. + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Ensures that the specified value is less than a maximum value. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is less than or equal to a maximum value + and throws an exception if it is not. + + The target value, which should be validated. + The maximum value. + The name of the parameter that is to be checked. + + is greater than the maximum value. + + + + + Verifies that the specified value is greater than a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value + and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The name of the parameter that is to be checked. + + is less than the minimum value. + + + + + Verifies that the specified value is greater than or equal to a minimum value and less than + or equal to a maximum value and throws an exception if it is not. + + The target value, which should be validated. + The minimum value. + The maximum value. + The name of the parameter that is to be checked. + + is less than the minimum value of greater than the maximum value. + + + + + Helper methods to throw exceptions + + + + + Throws an when fails. + + + + + Throws an when fails. + + + + + Throws an when fails. + + + + + Throws an when fails. + + + + + Throws an when fails. + + + + + Throws an when fails. + + + + + Throws an when fails. + + + + + Throws an when fails. + + + + + Throws a new . + + The message to include in the exception. + The argument name. + Thrown with and . + + + + Throws a new . + + The argument name. + The message to include in the exception. + Thrown with and . + + + + Throws a new . + + The argument name. + The message to include in the exception. + Thrown with and . + + + + Initializes a new instance of the class. + + The state table. + The accepting states. + The tags. + + + + Gets the state table. + + + + + Gets the accepting states. + + + + + Gets the tags. + + + + + Returns an iterable object that yields pattern matches over the input sequence. + + The input sequence. + The . + + + + For each match over the input sequence, action functions matching + the tag definitions in the input pattern are called with the startIndex, + length, and the sequence to be sliced. + + The input sequence. + The collection of actions. + + + + Defines an AST node. + + + + + Gets the following position. + + + + + Gets a value indicating whether this node is nullable. + + + + + Gets the number of child nodes in this node. + + + + + Gets or sets the node at the given position. + + The index of the node. + The node at the given position. + + + + Calculates the follow position for this instance. + + + + + Returns a copy of the node. + + The . + + + + Defines a logical AST node. + + + + + Gets the collection of nodes as the first position. + + + + + Gets the collection of nodes at the last position. + + + + + The base AST node. + + + + + + + + + + + + + + + + + Represents a variable reference. + + + + + + + + + + + + + + Represents a comment. + + + + + + + + Represents an assignment statement. e.g. `variable = expression;` + + + + + + + + Represents an alternation. e.g. `a | b` + + + + + + + + + + + + + + + + + Represents a concatenation, or chain. e.g. `a b c` + + + + + + + + + + + + + + + + + + + + Represents a repetition. e.g. `a+`, `b*`, or `c?` + + + + + + + + + + + + + + + + + + + + Base class for leaf nodes. + + + + + + + + + + + Represents a literal value, e.g. a number. + + + + + + + + Marks the end of an expression. + + + + + + + + Represents a tag e.g. `a:(a b)`. + + + + + + + + Builds a repetition of the given expression. + + The expression to repeat. + The minimum value to repeat. + The maximum number to repeat. + THe . + Thrown if is out of range. + + + + Concatenates two nodes. + + The first node. + The second node. + The combined . + + + + Creates a union of two node sequences. + + The first node sequence. + The second node sequence. + The . + + + + Adds all the elements from set to . + + The first node sequence. + The second node sequence. + + + + Determines whether two sets are equal. + + The first node sequence. + The second node sequence. + The + +
+
diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.xml.meta b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.xml.meta new file mode 100644 index 0000000..a96f5c2 --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0/lib/netstandard2.1/SixLabors.Fonts.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a48f70af37adb604b98c20c54c7128a0 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/sixlabors.fonts.128.png b/Assets/Packages/SixLabors.Fonts.1.0.0/sixlabors.fonts.128.png new file mode 100644 index 0000000..fd2a2b6 Binary files /dev/null and b/Assets/Packages/SixLabors.Fonts.1.0.0/sixlabors.fonts.128.png differ diff --git a/Assets/Packages/SixLabors.Fonts.1.0.0/sixlabors.fonts.128.png.meta b/Assets/Packages/SixLabors.Fonts.1.0.0/sixlabors.fonts.128.png.meta new file mode 100644 index 0000000..8b4b36e --- /dev/null +++ b/Assets/Packages/SixLabors.Fonts.1.0.0/sixlabors.fonts.128.png.meta @@ -0,0 +1,136 @@ +fileFormatVersion: 2 +guid: d86bfabd2afc38444ba196475a5ab68b +TextureImporter: + internalIDToNameTable: + - first: + 213: 471046327715530374 + second: sixlabors.fonts.128_0 + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: sixlabors.fonts.128_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6868c3ca32e798600800000000000000 + internalID: 471046327715530374 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1.meta b/Assets/Packages/System.IO.Packaging.8.0.1.meta new file mode 100644 index 0000000..4e7622d --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c1839d7ee4622d439393176894d0d61 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/.signature.p7s b/Assets/Packages/System.IO.Packaging.8.0.1/.signature.p7s new file mode 100644 index 0000000..25944a5 Binary files /dev/null and b/Assets/Packages/System.IO.Packaging.8.0.1/.signature.p7s differ diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/Icon.png b/Assets/Packages/System.IO.Packaging.8.0.1/Icon.png new file mode 100644 index 0000000..a0f1fdb Binary files /dev/null and b/Assets/Packages/System.IO.Packaging.8.0.1/Icon.png differ diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/Icon.png.meta b/Assets/Packages/System.IO.Packaging.8.0.1/Icon.png.meta new file mode 100644 index 0000000..1efc2a4 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/Icon.png.meta @@ -0,0 +1,136 @@ +fileFormatVersion: 2 +guid: 08d9738b4dadb7e429259f8d5482c162 +TextureImporter: + internalIDToNameTable: + - first: + 213: -2278566297644842510 + second: Icon_0 + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: Icon_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 512 + height: 512 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f1c3bf4608e060e0800000000000000 + internalID: -2278566297644842510 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/LICENSE.TXT b/Assets/Packages/System.IO.Packaging.8.0.1/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/LICENSE.TXT.meta b/Assets/Packages/System.IO.Packaging.8.0.1/LICENSE.TXT.meta new file mode 100644 index 0000000..6864132 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 17d81f6ce1205a24aadbf1c5f08629ad +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/System.IO.Packaging.nuspec b/Assets/Packages/System.IO.Packaging.8.0.1/System.IO.Packaging.nuspec new file mode 100644 index 0000000..e1fdc87 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/System.IO.Packaging.nuspec @@ -0,0 +1,29 @@ + + + + System.IO.Packaging + 8.0.1 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + https://dot.net/ + Provides classes that support storage of multiple data objects in a single container. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/System.IO.Packaging.nuspec.meta b/Assets/Packages/System.IO.Packaging.8.0.1/System.IO.Packaging.nuspec.meta new file mode 100644 index 0000000..9ce8214 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/System.IO.Packaging.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3e805f829e7360b458d3effa8de5350b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/THIRD-PARTY-NOTICES.TXT b/Assets/Packages/System.IO.Packaging.8.0.1/THIRD-PARTY-NOTICES.TXT new file mode 100644 index 0000000..9b4e777 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/THIRD-PARTY-NOTICES.TXT @@ -0,0 +1,1272 @@ +.NET Runtime uses third-party libraries or other resources that may be +distributed under licenses different than the .NET Runtime software. + +In the event that we accidentally failed to list a required notice, please +bring it to our attention. Post an issue or email us: + + dotnet@microsoft.com + +The attached notices are provided for information only. + +License notice for ASP.NET +------------------------------- + +Copyright (c) .NET Foundation. All rights reserved. +Licensed under the Apache License, Version 2.0. + +Available at +https://github.com/dotnet/aspnetcore/blob/main/LICENSE.txt + +License notice for Slicing-by-8 +------------------------------- + +http://sourceforge.net/projects/slicing-by-8/ + +Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved + + +This software program is licensed subject to the BSD License, available at +http://www.opensource.org/licenses/bsd-license.html. + + +License notice for Unicode data +------------------------------- + +https://www.unicode.org/license.html + +Copyright © 1991-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +License notice for Zlib +----------------------- + +https://github.com/madler/zlib +https://zlib.net/zlib_license.html + +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.3.1, January 22nd, 2024 + + Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +*/ + +License notice for Mono +------------------------------- + +http://www.mono-project.com/docs/about-mono/ + +Copyright (c) .NET Foundation Contributors + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the Software), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for International Organization for Standardization +----------------------------------------------------------------- + +Portions (C) International Organization for Standardization 1986: + Permission to copy in any form is granted for use with + conforming SGML systems and applications as defined in + ISO 8879, provided this notice is included in all copies. + +License notice for Intel +------------------------ + +"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for Xamarin and Novell +------------------------------------- + +Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Copyright (c) 2011 Novell, Inc (http://www.novell.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Third party notice for W3C +-------------------------- + +"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE +Status: This license takes effect 13 May, 2015. +This work is being provided by the copyright holders under the following license. +License +By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. +Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications: +The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. +Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included. +Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." +Disclaimers +THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. +The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders." + +License notice for Bit Twiddling Hacks +-------------------------------------- + +Bit Twiddling Hacks + +By Sean Eron Anderson +seander@cs.stanford.edu + +Individually, the code snippets here are in the public domain (unless otherwise +noted) — feel free to use them however you please. The aggregate collection and +descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are +distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and +without even the implied warranty of merchantability or fitness for a particular +purpose. + +License notice for Brotli +-------------------------------------- + +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +compress_fragment.c: +Copyright (c) 2011, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +decode_fuzzer.c: +Copyright (c) 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + +License notice for Json.NET +------------------------------- + +https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md + +The MIT License (MIT) + +Copyright (c) 2007 James Newton-King + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for vectorized base64 encoding / decoding +-------------------------------------------------------- + +Copyright (c) 2005-2007, Nick Galbreath +Copyright (c) 2013-2017, Alfred Klomp +Copyright (c) 2015-2017, Wojciech Mula +Copyright (c) 2016-2017, Matthieu Darbois +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for vectorized hex parsing +-------------------------------------------------------- + +Copyright (c) 2022, Geoff Langdale +Copyright (c) 2022, Wojciech Mula +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for RFC 3492 +--------------------------- + +The punycode implementation is based on the sample code in RFC 3492 + +Copyright (C) The Internet Society (2003). All Rights Reserved. + +This document and translations of it may be copied and furnished to +others, and derivative works that comment on or otherwise explain it +or assist in its implementation may be prepared, copied, published +and distributed, in whole or in part, without restriction of any +kind, provided that the above copyright notice and this paragraph are +included on all such copies and derivative works. However, this +document itself may not be modified in any way, such as by removing +the copyright notice or references to the Internet Society or other +Internet organizations, except as needed for the purpose of +developing Internet standards in which case the procedures for +copyrights defined in the Internet Standards process must be +followed, or as required to translate it into languages other than +English. + +The limited permissions granted above are perpetual and will not be +revoked by the Internet Society or its successors or assigns. + +This document and the information contained herein is provided on an +"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING +TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING +BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION +HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +Copyright(C) The Internet Society 1997. All Rights Reserved. + +This document and translations of it may be copied and furnished to others, +and derivative works that comment on or otherwise explain it or assist in +its implementation may be prepared, copied, published and distributed, in +whole or in part, without restriction of any kind, provided that the above +copyright notice and this paragraph are included on all such copies and +derivative works.However, this document itself may not be modified in any +way, such as by removing the copyright notice or references to the Internet +Society or other Internet organizations, except as needed for the purpose of +developing Internet standards in which case the procedures for copyrights +defined in the Internet Standards process must be followed, or as required +to translate it into languages other than English. + +The limited permissions granted above are perpetual and will not be revoked +by the Internet Society or its successors or assigns. + +This document and the information contained herein is provided on an "AS IS" +basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE +DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY +RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A +PARTICULAR PURPOSE. + +License notice for Algorithm from RFC 4122 - +A Universally Unique IDentifier (UUID) URN Namespace +---------------------------------------------------- + +Copyright (c) 1990- 1993, 1996 Open Software Foundation, Inc. +Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. & +Digital Equipment Corporation, Maynard, Mass. +Copyright (c) 1998 Microsoft. +To anyone who acknowledges that this file is provided "AS IS" +without any express or implied warranty: permission to use, copy, +modify, and distribute this file for any purpose is hereby +granted without fee, provided that the above copyright notices and +this notice appears in all source code copies, and that none of +the names of Open Software Foundation, Inc., Hewlett-Packard +Company, Microsoft, or Digital Equipment Corporation be used in +advertising or publicity pertaining to distribution of the software +without specific, written prior permission. Neither Open Software +Foundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital +Equipment Corporation makes any representations about the +suitability of this software for any purpose." + +License notice for The LLVM Compiler Infrastructure (Legacy License) +-------------------------------------------------------------------- + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +License notice for Bob Jenkins +------------------------------ + +By Bob Jenkins, 1996. bob_jenkins@burtleburtle.net. You may use this +code any way you wish, private, educational, or commercial. It's free. + +License notice for Greg Parker +------------------------------ + +Greg Parker gparker@cs.stanford.edu December 2000 +This code is in the public domain and may be copied or modified without +permission. + +License notice for libunwind based code +---------------------------------------- + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for Printing Floating-Point Numbers (Dragon4) +------------------------------------------------------------ + +/****************************************************************************** + Copyright (c) 2014 Ryan Juckett + http://www.ryanjuckett.com/ + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source + distribution. +******************************************************************************/ + +License notice for Printing Floating-point Numbers (Grisu3) +----------------------------------------------------------- + +Copyright 2012 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for xxHash +------------------------- + +xxHash - Extremely Fast Hash algorithm +Header File +Copyright (C) 2012-2021 Yann Collet + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +You can contact the author at: + - xxHash homepage: https://www.xxhash.com + - xxHash source repository: https://github.com/Cyan4973/xxHash + +License notice for Berkeley SoftFloat Release 3e +------------------------------------------------ + +https://github.com/ucb-bar/berkeley-softfloat-3 +https://github.com/ucb-bar/berkeley-softfloat-3/blob/master/COPYING.txt + +License for Berkeley SoftFloat Release 3e + +John R. Hauser +2018 January 20 + +The following applies to the whole of SoftFloat Release 3e as well as to +each source file individually. + +Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the +University of California. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions, and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions, and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE +DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for xoshiro RNGs +-------------------------------- + +Written in 2018 by David Blackman and Sebastiano Vigna (vigna@acm.org) + +To the extent possible under law, the author has dedicated all copyright +and related and neighboring rights to this software to the public domain +worldwide. This software is distributed without any warranty. + +See . + +License for fastmod (https://github.com/lemire/fastmod), ibm-fpgen (https://github.com/nigeltao/parse-number-fxx-test-data) and fastrange (https://github.com/lemire/fastrange) +-------------------------------------- + + Copyright 2018 Daniel Lemire + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +License for sse4-strstr (https://github.com/WojciechMula/sse4-strstr) +-------------------------------------- + + Copyright (c) 2008-2016, Wojciech Mula + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for The C++ REST SDK +----------------------------------- + +C++ REST SDK + +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +License notice for MessagePack-CSharp +------------------------------------- + +MessagePack for C# + +MIT License + +Copyright (c) 2017 Yoshifumi Kawai + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +License notice for lz4net +------------------------------------- + +lz4net + +Copyright (c) 2013-2017, Milosz Krajewski + +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for Nerdbank.Streams +----------------------------------- + +The MIT License (MIT) + +Copyright (c) Andrew Arnott + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +License notice for RapidJSON +---------------------------- + +Tencent is pleased to support the open source community by making RapidJSON available. + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +Licensed under the MIT License (the "License"); you may not use this file except +in compliance with the License. You may obtain a copy of the License at + +http://opensource.org/licenses/MIT + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. + +License notice for DirectX Math Library +--------------------------------------- + +https://github.com/microsoft/DirectXMath/blob/master/LICENSE + + The MIT License (MIT) + +Copyright (c) 2011-2020 Microsoft Corp + +Permission is hereby granted, free of charge, to any person obtaining a copy of this +software and associated documentation files (the "Software"), to deal in the Software +without restriction, including without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be included in all copies +or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF +CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE +OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for ldap4net +--------------------------- + +The MIT License (MIT) + +Copyright (c) 2018 Alexander Chermyanin + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for vectorized sorting code +------------------------------------------ + +MIT License + +Copyright (c) 2020 Dan Shechter + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +License notice for musl +----------------------- + +musl as a whole is licensed under the following standard MIT license: + +Copyright © 2005-2020 Rich Felker, et al. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +License notice for "Faster Unsigned Division by Constants" +------------------------------ + +Reference implementations of computing and using the "magic number" approach to dividing +by constants, including codegen instructions. The unsigned division incorporates the +"round down" optimization per ridiculous_fish. + +This is free and unencumbered software. Any copyright is dedicated to the Public Domain. + + +License notice for mimalloc +----------------------------------- + +MIT License + +Copyright (c) 2019 Microsoft Corporation, Daan Leijen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +License notice for The LLVM Project +----------------------------------- + +Copyright 2019 LLVM Project + +Licensed under the Apache License, Version 2.0 (the "License") with LLVM Exceptions; +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +https://llvm.org/LICENSE.txt + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +License notice for Apple header files +------------------------------------- + +Copyright (c) 1980, 1986, 1993 + The Regents of the University of California. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by the University of + California, Berkeley and its contributors. +4. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +License notice for JavaScript queues +------------------------------------- + +CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. + +Statement of Purpose +The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). +Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. +For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: +the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; +moral rights retained by the original author(s) and/or performer(s); +publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; +rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; +rights protecting the extraction, dissemination, use and reuse of data in a Work; +database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and +other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. +2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. +3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. +4. Limitations and Disclaimers. +a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. +b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. +c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. +d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. + + +License notice for FastFloat algorithm +------------------------------------- +MIT License +Copyright (c) 2021 csFastFloat authors +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +License notice for MsQuic +-------------------------------------- + +Copyright (c) Microsoft Corporation. +Licensed under the MIT License. + +Available at +https://github.com/microsoft/msquic/blob/main/LICENSE + +License notice for m-ou-se/floatconv +------------------------------- + +Copyright (c) 2020 Mara Bos +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for code from The Practice of Programming +------------------------------- + +Copyright (C) 1999 Lucent Technologies + +Excerpted from 'The Practice of Programming +by Brian W. Kernighan and Rob Pike + +You may use this code for any purpose, as long as you leave the copyright notice and book citation attached. + +Notice for Euclidean Affine Functions and Applications to Calendar +Algorithms +------------------------------- + +Aspects of Date/Time processing based on algorithm described in "Euclidean Affine Functions and Applications to Calendar +Algorithms", Cassio Neri and Lorenz Schneider. https://arxiv.org/pdf/2102.06959.pdf + +License notice for amd/aocl-libm-ose +------------------------------- + +Copyright (C) 2008-2020 Advanced Micro Devices, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: +1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +License notice for fmtlib/fmt +------------------------------- + +Formatting library for C++ + +Copyright (c) 2012 - present, Victor Zverovich + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License for Jb Evain +--------------------- + +Copyright (c) 2006 Jb Evain (jbevain@gmail.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +--- Optional exception to the license --- + +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into a machine-executable object form of such +source code, you may redistribute such embedded portions in such object form +without including the above copyright and permission notices. + + +License for MurmurHash3 +-------------------------------------- + +https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp + +MurmurHash3 was written by Austin Appleby, and is placed in the public +domain. The author hereby disclaims copyright to this source + +License for Fast CRC Computation +-------------------------------------- + +https://github.com/intel/isa-l/blob/33a2d9484595c2d6516c920ce39a694c144ddf69/crc/crc32_ieee_by4.asm +https://github.com/intel/isa-l/blob/33a2d9484595c2d6516c920ce39a694c144ddf69/crc/crc64_ecma_norm_by8.asm + +Copyright(c) 2011-2015 Intel Corporation All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + * Neither the name of Intel Corporation nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License for C# Implementation of Fast CRC Computation +----------------------------------------------------- + +https://github.com/SixLabors/ImageSharp/blob/f4f689ce67ecbcc35cebddba5aacb603e6d1068a/src/ImageSharp/Formats/Png/Zlib/Crc32.cs + +Copyright (c) Six Labors. +Licensed under the Apache License, Version 2.0. + +Available at +https://github.com/SixLabors/ImageSharp/blob/f4f689ce67ecbcc35cebddba5aacb603e6d1068a/LICENSE diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/THIRD-PARTY-NOTICES.TXT.meta b/Assets/Packages/System.IO.Packaging.8.0.1/THIRD-PARTY-NOTICES.TXT.meta new file mode 100644 index 0000000..13aad71 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/THIRD-PARTY-NOTICES.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d386cb2c1797770459736c0c6a76d925 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive.meta new file mode 100644 index 0000000..659395f --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 951a1ffe53b76324783752f68e3123e7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461.meta new file mode 100644 index 0000000..156ac52 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95bd524e2ba6ed545b2651a75198df3f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461/System.IO.Packaging.targets b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461/System.IO.Packaging.targets new file mode 100644 index 0000000..f8a899e --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461/System.IO.Packaging.targets @@ -0,0 +1,6 @@ + + + + + diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461/System.IO.Packaging.targets.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461/System.IO.Packaging.targets.meta new file mode 100644 index 0000000..e81a837 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net461/System.IO.Packaging.targets.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 90323d21977adb74aa007f0eb279c592 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net462.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net462.meta new file mode 100644 index 0000000..3e1520c --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net462.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3944ea0bc7f9c9340bf9dbe95a10f233 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net462/_._ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net462/_._ new file mode 100644 index 0000000..e69de29 diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net462/_._.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net462/_._.meta new file mode 100644 index 0000000..2e55b64 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net462/_._.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: fe728e06dc5855f4988deb38e16fe322 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net6.0.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net6.0.meta new file mode 100644 index 0000000..7c1c9b6 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net6.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e54659c43357aa4cab3e3a031cbad7f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net6.0/_._ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net6.0/_._ new file mode 100644 index 0000000..e69de29 diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net6.0/_._.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net6.0/_._.meta new file mode 100644 index 0000000..43a5c53 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/net6.0/_._.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 17d6e8e869d88aa45be4a6db55399820 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0.meta new file mode 100644 index 0000000..a6be97d --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f0fae1c000fdbce4689ad0400fcdd26f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0/System.IO.Packaging.targets b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0/System.IO.Packaging.targets new file mode 100644 index 0000000..ad3cac8 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0/System.IO.Packaging.targets @@ -0,0 +1,6 @@ + + + + + diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0/System.IO.Packaging.targets.meta b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0/System.IO.Packaging.targets.meta new file mode 100644 index 0000000..3edf3cf --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/buildTransitive/netcoreapp2.0/System.IO.Packaging.targets.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 156ecd4ec08e2164b85b8583fde6d8b6 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/lib.meta b/Assets/Packages/System.IO.Packaging.8.0.1/lib.meta new file mode 100644 index 0000000..38ab2ed --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68363c61e76b4cf46971f0b60528e3fc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0.meta b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0.meta new file mode 100644 index 0000000..0b75c6d --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10aa380b5a87c2240a1f92e5aa8b7a6b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.dll b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.dll new file mode 100644 index 0000000..db4d642 Binary files /dev/null and b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.dll differ diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.dll.meta b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.dll.meta new file mode 100644 index 0000000..a089b7d --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 8fff9fed24cf07640b1e0eb799855441 +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.xml b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.xml new file mode 100644 index 0000000..994885f --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.xml @@ -0,0 +1,998 @@ + + + + System.IO.Packaging + + + + The exception that is thrown when an input file or a data stream that is supposed to conform to a certain file format specification is malformed. + + + Creates a new instance of the class. + + + Creates a new instance of the class and initializes it with serialized data. This constructor is called during deserialization to reconstitute the exception object transmitted over a stream. + The object that holds the serialized object data. + The contextual information about the source or destination. + + + Creates a new instance of the class with a specified error message. + A value that represents the error message. + + + Creates a new instance of the class with a specified error message and exception type. + A value that represents the error message. + The value of the property, which represents the cause of the current exception. + + + Creates a new instance of the class with a source URI value. + The value of the file that caused this error. + + + Creates a new instance of the class with a source URI value and an exception type. + The value of the file that caused this error. + The value of the property, which represents the cause of the current exception. + + + Creates a new instance of the class with a source URI value and a specified error message. + The value of the file that caused this error. + A value that represents the error message. + + + Creates a new instance of the class with a source URI value, a specified error message, and an exception type. + The value of the file that caused this error. + A value that represents the error message. + The value of the property, which represents the cause of the current exception. + + + Sets the object with the file name and additional exception information. + The object that holds the serialized object data. + The contextual information about the source or destination. + + + Gets the name of a file that caused the . + A that represents the name the file that caused the exception. + + + Specifies the compression level for content that is stored in a . + + + Compression is optimized for performance. + + + Compression is optimized for size. + + + Compression is optimized for a balance between size and performance. + + + Compression is turned off. + + + Compression is optimized for high performance. + + + Specifies the encryption option for parts in a . + + + No encryption. + + + Encryption supported through rights management. + + + Represents a container that can store multiple data objects. + + + Initializes a new instance of the class that uses a given . + The file IO permissions for the package. + The value for is not valid. + + + Saves and closes the package plus all underlying part streams. + + + Creates a new uncompressed part with a given URI and content type. + The uniform resource identifier (URI) of the new part. + The content type of the data stream. + + or is . + + is not a valid URI. + A part with the specified is already present in the package. + The package is not open ( or has been called). + The package is read-only (a new part cannot be added). + The new created part. + + + Creates a new part with a given URI, content type, and compression option. + The URI of the new part. + The content type of the data stream. + The compression option for the data stream, or compression. + + or is . + + is not a valid uniform resource identifier (URI). + A part with the specified is already present in the package. + The value is not valid. + The package is not open ( or has been called). + The package is read-only (a new part cannot be added). + The new created part. + + + When overridden in a derived class, creates a new part in the package. + The uniform resource identifier (URI) for the part being created. + The content type of the data stream. + The compression option for the data stream. + The created part. + + + Creates a package-level relationship to a part with a given URI, target mode, and relationship type. + The uniform resource identifier (URI) of the target part. + Indicates if the target part is or to the package. + A URI that uniquely defines the role of the relationship. + + or is . + The part is a , or is and is an absolute URI. + The value for is not valid. + The package is not open ( or has been called). + The package is read-only. + The package-level relationship to the specified part. + + + Creates a package-level relationship to a part with a given URI, target mode, relationship type, and identifier (ID). + The uniform resource identifier (URI) of the target part. + Indicates if the target part is or to the package. + A URI that uniquely defines the role of the relationship. + A unique XML identifier. + + or is . + The part is a , or is and is an absolute URI. + The value for is not valid. + The package is not open ( or has been called). + The package is read-only. + + is not a valid XML identifier; or a part with the specified already occurs in the package. + The package-level relationship to the specified part. + + + Deletes a part with a given URI from the package. + The URI of the part to delete. + + is . + + is not a valid URI. + The package is not open ( or has been called). + The package is read-only. + + + When overridden in a derived class, deletes a part with a given URI. + The of the to delete. + + + Deletes a package-level relationship. + The of the to delete. + + is . + The package is not open ( or has been called). + The package is read-only. + + is not a valid XML identifier. + + + Flushes and saves the content of all parts and relationships, closes the package, and releases all resources. + + to release both managed and unmanaged resources; to release only unmanaged resources. + + + Saves the contents of all parts and relationships that are contained in the package. + The package is not open ( or has been called). + The package is read-only and cannot be modified. + + + When overridden in a derived class, saves the content of all parts and relationships to the derived class store. + + + Returns the part with a given URI. + The uniform resource identifier (URI) of the part to return. + + is . + + is not a valid uniform resource identifier (URI). + A part with the specified is not in the package. + The package is not open ( or has been called). + The package is write-only. + The part with the specified . + + + When overridden in a derived class, returns the part addressed by a given URI. + The uniform resource identifier (URI) of the part to retrieve. + The requested part; or , if a part with the specified is not in the package. + + + Returns a collection of all the parts in the package. + The package is not open ( or has been called). + The package is write-only. + A collection of all the elements that are contained in the package. + + + When overridden in a derived class, returns an array of all the parts in the package. + An array of all the parts that are contained in the package. + + + Returns the package-level relationship with a given identifier. + The of the relationship to return. + + is . + + is not a valid XML identifier. + A relationship with the specified is not in the package. + The package is not open ( or has been called). + The package is write-only. + The package-level relationship with the specified . + + + Returns a collection of all the package-level relationships. + The package is not open ( or has been called). + The package is write-only. + A collection of all the package-level relationships that are contained in the package. + + + Returns a collection of all the package-level relationships that match a given . + The to match and return in the collection. + + is . + + is an empty string. + The package is not open ( or has been called). + The package is write-only. + A collection of package-level relationships that match the specified . + + + Opens a package on a given IO stream. + The IO stream on which to open the package. + + is . + The package to open requires read or read/write permission and the specified is write-only; or, the package to open requires write or read/write permission and the specified is read-only. + The opened package. + + + Opens a package with a given IO stream and file mode. + The IO stream on which to open the package. + The file mode in which to open the package. + + is . + + value is not valid. + The package to open requires read or read/write permission and the specified is write-only; or, the package to open requires write or read/write permission and the specified is read-only. + The opened package. + + + Opens a package with a given IO stream, file mode, and file access setting. + The IO stream on which to open the package. + The file mode in which to open the package. + The file access in which to open the package. + + is . + The value for or is not valid. + The package to open requires read or read/write permission and the specified is write-only; or the package to open requires write or read/write permission and the specified is read-only. + The opened package. + + + Opens a package at a given path and file name. + The path and file name of the package. + + is . + The opened package. + + + Opens a package at a given path using a given file mode. + The path and file name of the package. + The file mode in which to open the package. + + is . + Value for is not valid. + The opened package. + + + Opens a package at a given path using a given file mode and file access setting. + The path and file name of the package. + The file mode in which to open the package. + The file access in which to open the package. + + is . + Value for or is not valid. + The opened package. + + + Opens a package at a given path using a given file mode, file access, and file share setting. + The path and file name of the package. + The file mode in which to open the package. + The file access in which to open the package. + The file sharing mode in which to open the package. + + is . + The value for , , or is not valid. + The opened package. + + + Indicates whether a part with a given URI is in the package. + The of the part to check for. + + is . + + is not a valid uniform resource identifier (URI). + The package is not open ( or has been called). + The package is write-only (information cannot be read). + + if a part with the specified is in the package; otherwise, . + + + Indicates whether a package-level relationship with a given ID is contained in the package. + The of the relationship to check for. + + is . + + is not a valid XML identifier. + The package is not open ( or has been called). + The package is write-only. + + if a package-level relationship with the specified is in the package; otherwise, . + + + This member supports the Windows Presentation Foundation (WPF) infrastructure and is not intended for application use. Use the type-safe method instead. + + + Gets the file access setting for the package. + The package is not open ( or has been called). + One of the values: , , or . + + + Gets the core properties of the package. + The package is not open ( or has been called). + The core properties of the package. + + + Provides a base class for parts stored in a . This class is abstract. + + + Initializes a new instance of the class with a specified parent and part URI. + The parent of the part. + The URI of the part, relative to the parent root. + + or is . + + + Initializes a new instance of the class with a specified parent , part URI, and MIME content type. + The parent of the part. + The URI of the part, relative to the parent root. + The MIME content type of the part data stream. + + or is . + + is not a valid URI. + + + Initializes a new instance of the class with a specified parent , part URI, MIME content type, and . + The parent of the part. + The URI of the part, relative to the parent root. + The MIME content type of the part's data stream. + The compression option of the part data stream. + + or is . + + is not a valid URI. + The value is not valid. + + + Creates a part-level relationship between this to a specified target or external resource. + The URI of the target part. + One of the enumeration values. For example, if the target part is inside the ; or if the target is a resource outside the . + The role of the relationship. + The part has been deleted. + + -or- + + The is not open ( or has been called). + + or is . + The parameter is not a valid enumeration value. + The part identified by the is a relationship (the target of a relationship cannot be another relationship). + + -or- + + is specified as but is an absolute external URI. + The package is read-only (a new relationship cannot be added). + The part-level relationship between this to the target or external resource. + + + Creates a part-level relationship between this to a specified target or external resource. + The URI of the target part. + One of the enumeration values. For example, if the target part is inside the ; or if the target is a resource outside the . + The role of the relationship. + A unique ID for the relationship. + The part has been deleted. + + -or- + + The is not open ( or has been called). + + or is . + The parameter is not a valid enumeration value. + The part identified by the is a relationship (the target of a relationship cannot be another relationship). + + -or- + + is specified as but is an absolute external URI. + The package is read-only (a new relationship cannot be added). + + is not a valid XML identifier. + + -or- + + A part with the specified already exists. + The part-level relationship between this to the target or external resource. + + + Deletes a specified part-level . + The of the relationship to delete. + The part has been deleted. + + -or- + + The is not open ( or has been called). + + is . + The package is read-only (relationships cannot be deleted). + + is not a valid XML identifier. + + + When overridden in a derived class, returns the MIME type of the part content. + The derived class does not provide an override implementation required for the method. + The MIME type of the part content. + + + Returns the relationship that has a specified . + The of the relationship to return. + + is . + + is not a valid XML identifier. + + is an empty string. + The part has been deleted. + + -or- + + The is not open ( or has been called). + + -or- + + A relationship with the specified does not exist in the package. + The package is write-only (relationship information cannot be read). + The relationship that matches the specified . + + + Returns a collection of all the relationships that are owned by this part. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The package is write-only (relationship information cannot be read). + A collection of all the relationships that are owned by the part. + + + Returns a collection of the relationships that match a specified . + The of the relationships to locate and return in the collection. + + is . + + is an empty string. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The package is write-only (relationship information cannot be read). + A collection of the relationships that match the specified . + + + Returns the part content data stream. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The stream object returned by the method of the derived subclass is . + The content data stream for the part. + + + Returns the content stream opened in a specified I/O . + The I/O mode in which to open the content stream. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The parameter is not a valid enumeration value. + The parameter is not compatible with the package and part stream. + + -or- + + The stream object returned by the method of the derived subclass is . + The content stream of the part. + + + Returns the part content stream opened with a specified and . + The I/O mode in which to open the content stream. + The access permissions to use in opening the content stream. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The parameter is not a valid enumeration value. + + -or- + + The parameter is not a valid enumeration value. + + or is not compatible with the package and part stream. + + -or- + + The parameter is specified as but the parameter requires write access. ( values of , , , and require or access.) + + -or- + + The stream object returned by the method of the derived subclass is . + The content stream for the part. + + + When overridden in a derived class, returns the part content stream opened with a specified and . + The I/O mode in which to open the content stream. + The access permissions to use in opening the content stream. + The content data stream of the part. + + + Returns a value that indicates whether this part owns a relationship with a specified . + The of the relationship to check for. + + is . + + is not a valid XML identifier. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The package is write-only (relationship information cannot be read). + + if this part owns a relationship with the specified ; otherwise, . + + + Gets the compression option of the part content stream. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The compression option of the part content stream. + + + Gets the MIME type of the content stream. + The part has been deleted. + + -or- + + The is not open ( or has been called). + + -or- + + The string returned by the derived class method is empty. + The MIME type of the content data stream for the part. + + + Gets the parent of the part. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The parent package of the part. + + + Gets the URI of the part. + The part has been deleted. + + -or- + + The is not open ( or has been called). + The URI of the part relative to the package root. + + + Represents a collection of objects. + + + Returns an enumerator for iterating through the parts in the collection. + An enumerator for iterating through the elements in the collection. + + + Returns an enumerator that iterates through the collection. + An object that can be used to iterate through the collection. + + + For a description of this member, see . + An object that can be used to iterate through the collection. + + + Represents the core properties of a . + + + Initializes a new instance of the class. + + + Releases all resources used by the instance. + + + Releases the unmanaged resources used by the instance and optionally releases the managed resources. + + to release both managed and unmanaged resources; to release only unmanaged resources. + + + When overridden in a derived class, gets or sets the category of the . + The category of the content that is contained in the . + + + When overridden in a derived class, gets or sets a value that represents the status of the . + The status of the content. + + + When overridden in a derived class, gets or sets a value that represents the type of content that is contained in the . + The type of content that is contained in the . + + + When overridden in a derived class, gets or sets the date and time the was created. + The date and time the was initially created. + + + When overridden in a derived class, gets or sets a value that identifies the individual or entity that created the and its content. + The individual or entity that created the and its content. + + + When overridden in a derived class, gets or sets a description of the content contained in the . + A description of the content contained in the . + + + When overridden in a derived class, gets or sets a value that unambiguously identifies the and its content. + A value that unambiguously identifies the and its content. + + + When overridden in a derived class, gets or sets a value that define a delimited set of keywords to support searching and indexing the and its content. + A delimited set of keywords to support searching and indexing the and content. + + + When overridden in a derived class, gets or sets a value that identifies the language of the content. + A value that identifies the content language. + + + When overridden in a derived class, gets or sets a value that identifies the user who last modified the content. + The user who last modified the content. + + + When overridden in a derived class, gets or sets the date and time the content was last printed. + The date and time the content was last printed. + + + When overridden in a derived class, gets or sets the date and time the was last changed. + The date and time the was last changed. + + + When overridden in a derived class, gets or sets the revision number of the . + The revision number of the . + + + When overridden in a derived class, gets or sets the topic of the content. + The topic of the content. + + + When overridden in a derived class, gets or sets the name given to the and its content. + The name given to the and its content. + + + When overridden in a derived class, gets or sets the version number of the . + The version number of the . + + + Represents an association between a source or , and a target object which can be a or external resource. + + + Gets a string that identifies the relationship. + A string that identifies the relationship. + + + Gets the that contains this relationship. + The package that contains this relationship. + + + Gets the qualified type name of the relationship. + The qualified type name of the relationship. + + + Gets the URI of the package or part that owns the relationship. + The URI of the or that owns the relationship. + + + Gets a value that indicates whether the target of the relationship is or to the . + An enumeration value that indicates whether references a resource or to the . + + + Gets the URI of the target resource of the relationship. + The URI of the target resource. + + + Represents a collection of elements that are owned by a given or the . + + + Returns an enumerator for iterating through the relationships in the collection. + An enumerator for iterating through the elements in the collection. + + + This type or member supports the Windows Presentation Foundation infrastructure and is not intended to be used directly from your code. + Do not use - use . + + + Defines criteria to select part-level or package-level relationships. + + + Initializes a new instance of the class. + The uniform resource identifier (URI) of the or the (SourceUri="/") that owns the relationship. + The type of the , either by relationship or relationship . + The qualification string that is used to select the relationships based on the . + + or is . + The parameter is not valid. + The parameter is but is not a valid XML Schema Definition (XSD) identifier (ID). + The is not valid for the specified . + +-or- + +The is not the root ("/") and is also not a valid URI. + + + Returns a list of objects that match the defined , , and . + The package from which to select the relationships based on the selection criteria. + + is . + A list of relationships that match the selection parameters specified to the constructor. + + + Gets the selection criteria specified to the constructor. + The selection criteria based on the of or specified to the constructor. + + + Gets the specified to the constructor. + The selector type of or specified to the constructor. + + + Gets the root package URI ("/") or part specified to the constructor as the owner of the relationship. + The root package URI ("/") or part specified to the constructor as the owner of the relationship. + + + Specifies the type of selection criteria that is used to match and return selections through a . + + + + selections are by . + + + + selections are by . + + + Provides utility methods to compose and parse pack URI objects. + + + Defines the pack URI scheme name "pack". + + + Returns a value that indicates whether two pack URIs are equivalent. + The first pack URI. + The second pack URI. + Either or is not an absolute URI. + + -or- + + Either or do not begin with a "pack://" scheme. + A signed integer indicating the relationship between and . + + Value Meaning Less than 0 is less than . 0 is equivalent to . Greater than 0 is greater than . + + + Returns a value that indicates whether two package part URIs are equivalent. + The URI of the first . + The URI of the second . + + or is not a valid part URI syntax. + A value that indicates the relationship between and . + + Value Meaning Less than 0 is less than . 0 is equivalent to . Greater than 0 is greater than . + + + Creates a new pack URI that points to a package. + The URI of the referenced . + + is . + + is not an absolute URI. + The pack URI for the referenced by the given . + + + Creates a pack URI given a URI and the URI of a part in the package. + The URI of the . + The URI of the in the package. + + is . + + is not an absolute URI. + + -or- + + is not a valid part URI syntax. + The pack URI of the given . + + + Creates a pack URI given a URI, the URI of a part in the package, and a "#" fragment to append. + The URI of the . + The URI of the in the package. + A "#" reference identifying an element within the package part. + + is . + + is not an absolute URI. + + -or- + + is not a valid part URI syntax. + + -or- + + is empty or does begin with "#". + The pack URI that identifies the specified package, package part, and fragment. + + + Creates a formatted URI. + The URI of the within the package. + + is . + + is not an absolute . + A formatted URI. + + + Returns the normalized form of a specified URI. + The URI to normalize. + + is . + + does not have a valid syntax. + The normalized form of the given . + + + Returns the inner URI that points to the entire package of a specified pack URI. + The pack URI from which to return the URI of the . + + is . + + is not an absolute . + The URI of the from the specified . + + + Returns the URI of a within a specified pack URI. + The pack URI from which to return the URI. + If the is . + If the is not an absolute . + +-or- + + does not have the "pack://" scheme. + +-or- + +The partUri extracted from does not conform to the valid partUri syntax. + The URI of the in the given , or if points to a package instead of a . + + + Returns the URI of the relationship part associated with a specified . + The of the to return the URI for the associated . + + is . + + syntax is not valid for a package part URI. + + -or- + + is an absolute URI. + + -or- + + references a relationship part. + The URI of the part associated with the identified by . + + + Returns the relative URI between two specified URIs. + The URI of the source part. + The URI of the target part. + + or is . + Either the or does not have a valid syntax. + The relative URI from to . + + + Returns the from the with a specified URI. + The URI of the relationship part to return the from. + + is . + + is an absolute URI. + + -or- + + syntax is not valid for a . + + -or- + + does not reference a relationship part. + + -or- + + The of the relationship part references another relationship part (not valid). + The of the from the relationship with the specified . + + + Returns a value that indicates whether a specified URI is the URI of a part. + The URI to check for a part. + + is . + + is an absolute URI. + + -or- + + is an invalid syntax. + + if identifies a part; otherwise, . + + + Returns a part URI given a source part URI and a URI with a relative path to a target part. + The URI of the source part, or "/" to designate the root. + The relative URI to the target part. + + or is . + + is not a valid part URI. + + -or- + + is not a valid relative URI. + The URI of the target part resolved between the specified and the parameters. + + + Specifies whether the target of a is inside or outside the . + + + The relationship references a resource that is external to the package. + + + The relationship references a part that is inside the package. + + + Implements a derived subclass of the abstract base class - the class uses a ZIP archive as the container store. This class cannot be inherited. + + + Represents a part that is stored in a . + + + \ No newline at end of file diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.xml.meta b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.xml.meta new file mode 100644 index 0000000..4285898 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/lib/netstandard2.0/System.IO.Packaging.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6a95a68240c795b43b6ed7403ed739c0 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/useSharedDesignerContext.txt b/Assets/Packages/System.IO.Packaging.8.0.1/useSharedDesignerContext.txt new file mode 100644 index 0000000..e69de29 diff --git a/Assets/Packages/System.IO.Packaging.8.0.1/useSharedDesignerContext.txt.meta b/Assets/Packages/System.IO.Packaging.8.0.1/useSharedDesignerContext.txt.meta new file mode 100644 index 0000000..748f431 --- /dev/null +++ b/Assets/Packages/System.IO.Packaging.8.0.1/useSharedDesignerContext.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3e770a6b252209743b1e2c58b3836cc8 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0.meta new file mode 100644 index 0000000..da1a6bd --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 51f209a559ebc534e89217c6458f6a27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/.signature.p7s b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/.signature.p7s new file mode 100644 index 0000000..e936987 Binary files /dev/null and b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/.signature.p7s differ diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/LICENSE.TXT b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/LICENSE.TXT.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/LICENSE.TXT.meta new file mode 100644 index 0000000..75056a8 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 69e154c5f56ef1f48813ecf10685b7a7 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.nuspec b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.nuspec new file mode 100644 index 0000000..e3c587d --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.nuspec @@ -0,0 +1,36 @@ + + + + System.Runtime.CompilerServices.Unsafe + 4.7.0 + System.Runtime.CompilerServices.Unsafe + Microsoft + microsoft,dotnetframework + false + MIT + https://licenses.nuget.org/MIT + https://github.com/dotnet/corefx + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.nuspec.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.nuspec.meta new file mode 100644 index 0000000..866a722 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.nuspec.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d95ee83bac2cb574ba9fcc64d271e1a2 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT new file mode 100644 index 0000000..77a243e --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT @@ -0,0 +1,375 @@ +.NET Core uses third-party libraries or other resources that may be +distributed under licenses different than the .NET Core software. + +In the event that we accidentally failed to list a required notice, please +bring it to our attention. Post an issue or email us: + + dotnet@microsoft.com + +The attached notices are provided for information only. + +License notice for ASP.NET +------------------------------- + +Copyright (c) .NET Foundation. All rights reserved. +Licensed under the Apache License, Version 2.0. + +Available at +https://github.com/aspnet/AspNetCore/blob/master/LICENSE.txt + +License notice for Slicing-by-8 +------------------------------- + +http://sourceforge.net/projects/slicing-by-8/ + +Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved + + +This software program is licensed subject to the BSD License, available at +http://www.opensource.org/licenses/bsd-license.html. + + +License notice for Unicode data +------------------------------- + +http://www.unicode.org/copyright.html#License + +Copyright © 1991-2017 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +License notice for Zlib +----------------------- + +https://github.com/madler/zlib +http://zlib.net/zlib_license.html + +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.11, January 15th, 2017 + + Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +*/ + +License notice for Mono +------------------------------- + +http://www.mono-project.com/docs/about-mono/ + +Copyright (c) .NET Foundation Contributors + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the Software), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for International Organization for Standardization +----------------------------------------------------------------- + +Portions (C) International Organization for Standardization 1986: + Permission to copy in any form is granted for use with + conforming SGML systems and applications as defined in + ISO 8879, provided this notice is included in all copies. + +License notice for Intel +------------------------ + +"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for Xamarin and Novell +------------------------------------- + +Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Copyright (c) 2011 Novell, Inc (http://www.novell.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Third party notice for W3C +-------------------------- + +"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE +Status: This license takes effect 13 May, 2015. +This work is being provided by the copyright holders under the following license. +License +By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. +Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications: +The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. +Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included. +Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." +Disclaimers +THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. +The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders." + +License notice for Bit Twiddling Hacks +-------------------------------------- + +Bit Twiddling Hacks + +By Sean Eron Anderson +seander@cs.stanford.edu + +Individually, the code snippets here are in the public domain (unless otherwise +noted) — feel free to use them however you please. The aggregate collection and +descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are +distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and +without even the implied warranty of merchantability or fitness for a particular +purpose. + +License notice for Brotli +-------------------------------------- + +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +compress_fragment.c: +Copyright (c) 2011, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +decode_fuzzer.c: +Copyright (c) 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + +License notice for Json.NET +------------------------------- + +https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md + +The MIT License (MIT) + +Copyright (c) 2007 James Newton-King + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for vectorized base64 encoding / decoding +-------------------------------------------------------- + +Copyright (c) 2005-2007, Nick Galbreath +Copyright (c) 2013-2017, Alfred Klomp +Copyright (c) 2015-2017, Wojciech Mula +Copyright (c) 2016-2017, Matthieu Darbois +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT.meta new file mode 100644 index 0000000..13aa88e --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bfd5f3180b39d5a4baa27bb81a8e5943 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib.meta new file mode 100644 index 0000000..90023dd --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a6656b0f90aa814dbc0cc45d4ce4dfc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0.meta new file mode 100644 index 0000000..61e8c29 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a6c0fc39e1bff76439291a53a4a89c2a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..c66b445 Binary files /dev/null and b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta new file mode 100644 index 0000000..7aa1887 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 1bfb257e9b9244e4c8f96530693f30bf +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml new file mode 100644 index 0000000..2ee9db6 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml @@ -0,0 +1,252 @@ + + + + System.Runtime.CompilerServices.Unsafe + + + + Contains generic, low-level functionality for manipulating pointers. + + + Adds an element offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of offset to pointer. + + + Adds an element offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of offset to pointer. + + + Adds an element offset to the given void pointer. + The void pointer to add the offset to. + The offset to add. + The type of void pointer. + A new void pointer that reflects the addition of offset to the specified pointer. + + + Adds a byte offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of byte offset to pointer. + + + Determines whether the specified references point to the same location. + The first reference to compare. + The second reference to compare. + The type of reference. + + if and point to the same location; otherwise, . + + + Casts the given object to the specified type. + The object to cast. + The type which the object will be cast to. + The original object, casted to the given type. + + + Reinterprets the given reference as a reference to a value of type . + The reference to reinterpret. + The type of reference to reinterpret. + The desired type of the reference. + A reference to a value of type . + + + Returns a pointer to the given by-ref parameter. + The object whose pointer is obtained. + The type of object. + A pointer to the given value. + + + Reinterprets the given read-only reference as a reference. + The read-only reference to reinterpret. + The type of reference. + A reference to a value of type . + + + Reinterprets the given location as a reference to a value of type . + The location of the value to reference. + The type of the interpreted location. + A reference to a value of type . + + + Determines the byte offset from origin to target from the given references. + The reference to origin. + The reference to target. + The type of reference. + Byte offset from origin to target i.e. - . + + + Copies a value of type to the given location. + The location to copy to. + A pointer to the value to copy. + The type of value to copy. + + + Copies a value of type to the given location. + The location to copy to. + A reference to the value to copy. + The type of value to copy. + + + Copies bytes from the source address to the destination address. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address +without assuming architecture dependent alignment of the addresses. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address +without assuming architecture dependent alignment of the addresses. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Initializes a block of memory at the given location with a given initial value. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value +without assuming architecture dependent alignment of the address. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value +without assuming architecture dependent alignment of the address. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Returns a value that indicates whether a specified reference is greater than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is greater than ; otherwise, . + + + Returns a value that indicates whether a specified reference is less than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is less than ; otherwise, . + + + Reads a value of type from the given location. + The location to read from. + The type to read. + An object of type read from the given location. + + + Reads a value of type from the given location +without assuming architecture dependent alignment of the addresses. + The location to read from. + The type to read. + An object of type read from the given location. + + + Reads a value of type from the given location +without assuming architecture dependent alignment of the addresses. + The location to read from. + The type to read. + An object of type read from the given location. + + + Returns the size of an object of the given type parameter. + The type of object whose size is retrieved. + The size of an object of type . + + + Subtracts an element offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given void pointer. + The void pointer to subtract the offset from. + The offset to subtract. + The type of the void pointer. + A new void pointer that reflects the subtraction of offset from the specified pointer. + + + Subtracts a byte offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of byte offset from pointer. + + + Returns a to a boxed value. + The value to unbox. + The type to be unboxed. + A to the boxed value . + + is , and is a non-nullable value type. + + is not a boxed value type. +-or- + is not a boxed . + + cannot be found. + + + Writes a value of type to the given location. + The location to write to. + The value to write. + The type of value to write. + + + Writes a value of type to the given location +without assuming architecture dependent alignment of the addresses. + The location to write to. + The value to write. + The type of value to write. + + + Writes a value of type to the given location +without assuming architecture dependent alignment of the addresses. + The location to write to. + The value to write. + The type of value to write. + + + \ No newline at end of file diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta new file mode 100644 index 0000000..2f1d394 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 143f3376e7e53fd4b8044044ce71cb9f +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/useSharedDesignerContext.txt b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/useSharedDesignerContext.txt new file mode 100644 index 0000000..e69de29 diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/useSharedDesignerContext.txt.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/useSharedDesignerContext.txt.meta new file mode 100644 index 0000000..694c007 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/useSharedDesignerContext.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e53d146c0a4d1d941abf2dc2b6e0bbf7 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt new file mode 100644 index 0000000..f5d54e7 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt @@ -0,0 +1 @@ +0f7f38c4fd323b26da10cce95f857f77f0f09b48 diff --git a/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt.meta b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt.meta new file mode 100644 index 0000000..c923296 --- /dev/null +++ b/Assets/Packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4bd86ae63c94aa34b8b0030314399745 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/packages.config b/Assets/packages.config new file mode 100644 index 0000000..16391f8 --- /dev/null +++ b/Assets/packages.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Assets/packages.config.meta b/Assets/packages.config.meta new file mode 100644 index 0000000..6a966a6 --- /dev/null +++ b/Assets/packages.config.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 6b5ca4872dca95b4486aa6eaec860a25 +labels: +- NuGetForUnity +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Build.zip b/Build.zip new file mode 100644 index 0000000..16fc018 Binary files /dev/null and b/Build.zip differ diff --git a/Packages/manifest.json b/Packages/manifest.json index aeee9cb..1b51905 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -1,5 +1,6 @@ { "dependencies": { + "com.github-glitchenzo.nugetforunity": "https://github.com/GlitchEnzo/NuGetForUnity.git?path=/src/NuGetForUnity", "com.unity.collab-proxy": "2.7.1", "com.unity.feature.2d": "2.0.0", "com.unity.ide.rider": "3.0.26", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index 90c02d3..91cc308 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -1,5 +1,12 @@ { "dependencies": { + "com.github-glitchenzo.nugetforunity": { + "version": "https://github.com/GlitchEnzo/NuGetForUnity.git?path=/src/NuGetForUnity", + "depth": 0, + "source": "git", + "dependencies": {}, + "hash": "f8f1902ebec77284fd4ac83d043e0ef664d31831" + }, "com.unity.2d.animation": { "version": "10.0.3", "depth": 1, diff --git a/ProjectSettings/BurstAotSettings_StandaloneWindows.json b/ProjectSettings/BurstAotSettings_StandaloneWindows.json new file mode 100644 index 0000000..58cf25f --- /dev/null +++ b/ProjectSettings/BurstAotSettings_StandaloneWindows.json @@ -0,0 +1,18 @@ +{ + "MonoBehaviour": { + "Version": 4, + "EnableBurstCompilation": true, + "EnableOptimisations": true, + "EnableSafetyChecks": false, + "EnableDebugInAllBuilds": false, + "DebugDataKind": 1, + "EnableArmv9SecurityFeatures": false, + "CpuMinTargetX32": 0, + "CpuMaxTargetX32": 0, + "CpuMinTargetX64": 0, + "CpuMaxTargetX64": 0, + "CpuTargetsX32": 6, + "CpuTargetsX64": 72, + "OptimizeFor": 0 + } +} diff --git a/ProjectSettings/CommonBurstAotSettings.json b/ProjectSettings/CommonBurstAotSettings.json new file mode 100644 index 0000000..0293daf --- /dev/null +++ b/ProjectSettings/CommonBurstAotSettings.json @@ -0,0 +1,6 @@ +{ + "MonoBehaviour": { + "Version": 4, + "DisabledWarnings": "" + } +}