diff --git a/README.md b/README.md
index 4fc5757477..fd5ad9ecd9 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,7 @@ import * as docx from "docx";
## Basic Usage
```js
+var fs = require("fs");
var docx = require("docx");
// Create document
@@ -41,11 +42,12 @@ paragraph.addRun(new docx.TextRun("Lorem Ipsum Foo Bar"));
doc.addParagraph(paragraph);
// Used to export the file into a .docx file
-var exporter = new docx.LocalPacker(doc);
+var packer = new docx.Packer();
+packer.toBuffer(doc).then((buffer) => {
+ fs.writeFileSync("My First Document.docx", buffer);
+});
-exporter.pack("My First Document");
-
-// Done! A file called 'My First Document.docx' will be in your file system if you used LocalPacker
+// Done! A file called 'My First Document.docx' will be in your file system.
```
## Honoured Mentions
diff --git a/api/classes/abstractnumbering.html b/api/classes/abstractnumbering.html
index 5f6de2fd05..58abdffbc3 100644
--- a/api/classes/abstractnumbering.html
+++ b/api/classes/abstractnumbering.html
@@ -125,7 +125,7 @@
Parameters
@@ -265,7 +265,7 @@
Returns void
@@ -284,7 +284,7 @@
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
diff --git a/api/classes/alias.html b/api/classes/alias.html
index 3062d34c65..e4ad885d4a 100644
--- a/api/classes/alias.html
+++ b/api/classes/alias.html
@@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@
Returns boolean
@@ -165,7 +165,7 @@
Parameters
@@ -189,7 +189,7 @@
Returns void
@@ -208,7 +208,7 @@
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
diff --git a/api/classes/align.html b/api/classes/align.html
index a0f512fd11..17a4c0eac1 100644
--- a/api/classes/align.html
+++ b/api/classes/align.html
@@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@
Returns boolean
@@ -165,7 +165,7 @@
Parameters
@@ -189,7 +189,7 @@
Returns void
@@ -208,7 +208,7 @@
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
diff --git a/api/classes/alignment.html b/api/classes/alignment.html
index cf8ddb831c..f53367a72f 100644
--- a/api/classes/alignment.html
+++ b/api/classes/alignment.html
@@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@
Returns boolean
@@ -165,7 +165,7 @@
Parameters
@@ -189,7 +189,7 @@
Returns void
@@ -208,7 +208,7 @@
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
diff --git a/api/classes/alignmentattributes.html b/api/classes/alignmentattributes.html
index 914e101dd1..ae4557def4 100644
--- a/api/classes/alignmentattributes.html
+++ b/api/classes/alignmentattributes.html
@@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
Parameters
@@ -146,7 +146,7 @@
Returns boolean
@@ -168,7 +168,7 @@
Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
@@ -186,7 +186,7 @@
Parameters
diff --git a/api/classes/anchor.html b/api/classes/anchor.html
index 36962537f2..3021edb979 100644
--- a/api/classes/anchor.html
+++ b/api/classes/anchor.html
@@ -117,7 +117,7 @@
Parameters
@@ -150,7 +150,7 @@
Returns boolean
@@ -171,7 +171,7 @@
Parameters
@@ -195,7 +195,7 @@
Returns void
@@ -214,7 +214,7 @@
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
diff --git a/api/classes/anchorattributes.html b/api/classes/anchorattributes.html
index 077823f4a2..35328dc040 100644
--- a/api/classes/anchorattributes.html
+++ b/api/classes/anchorattributes.html
@@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
Parameters
@@ -144,7 +144,7 @@
Returns boolean
@@ -166,7 +166,7 @@
Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
@@ -184,7 +184,7 @@
Parameters
diff --git a/api/classes/appproperties.html b/api/classes/appproperties.html
index 5a6548b8d5..7023ddf550 100644
--- a/api/classes/appproperties.html
+++ b/api/classes/appproperties.html
@@ -117,7 +117,7 @@
Returns AppProperties
@@ -138,7 +138,7 @@
Returns boolean
@@ -159,7 +159,7 @@
Parameters
@@ -183,7 +183,7 @@
Returns void
@@ -202,7 +202,7 @@
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
diff --git a/api/classes/apppropertiesattributes.html b/api/classes/apppropertiesattributes.html
index 8898a20141..d1cda8fa3c 100644
--- a/api/classes/apppropertiesattributes.html
+++ b/api/classes/apppropertiesattributes.html
@@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
Parameters
@@ -144,7 +144,7 @@
Returns boolean
@@ -166,7 +166,7 @@
Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
@@ -184,7 +184,7 @@
Parameters
diff --git a/api/classes/attributes.html b/api/classes/attributes.html
index c4a69db61b..8600ca438c 100644
--- a/api/classes/attributes.html
+++ b/api/classes/attributes.html
@@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
Parameters
@@ -144,7 +144,7 @@
Returns boolean
@@ -166,7 +166,7 @@
Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
@@ -184,7 +184,7 @@
Parameters
diff --git a/api/classes/basedon.html b/api/classes/basedon.html
index c0f4b5ff88..1135598898 100644
--- a/api/classes/basedon.html
+++ b/api/classes/basedon.html
@@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@
Returns boolean
@@ -165,7 +165,7 @@
Parameters
@@ -189,7 +189,7 @@
Returns void
@@ -208,7 +208,7 @@
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
diff --git a/api/classes/baseunderline.html b/api/classes/baseunderline.html
index be3fd87b55..daa70f32e0 100644
--- a/api/classes/baseunderline.html
+++ b/api/classes/baseunderline.html
@@ -170,7 +170,7 @@
Parameters
@@ -200,7 +200,7 @@
Returns boolean
@@ -221,7 +221,7 @@
Parameters
@@ -245,7 +245,7 @@
Returns void
@@ -264,7 +264,7 @@
Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
Returns IXmlableObject
diff --git a/api/classes/basexmlcomponent.html b/api/classes/basexmlcomponent.html
index d8acd58d34..cc6dad56cf 100644
--- a/api/classes/basexmlcomponent.html
+++ b/api/classes/basexmlcomponent.html
@@ -117,7 +117,7 @@
Returns void
@@ -265,7 +265,7 @@Returns Paragraph[]
@@ -282,7 +282,7 @@Returns TableOfContents[]
@@ -300,7 +300,7 @@Returns IXmlableObject @@ -320,7 +320,7 @@
Parameters
diff --git a/api/classes/bold.html b/api/classes/bold.html index ab6c0a13e1..5ffef1b763 100644 --- a/api/classes/bold.html +++ b/api/classes/bold.html @@ -117,7 +117,7 @@Returns Bold
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/boldcomplexscript.html b/api/classes/boldcomplexscript.html index 2489912d1b..9aa0c437ac 100644 --- a/api/classes/boldcomplexscript.html +++ b/api/classes/boldcomplexscript.html @@ -117,7 +117,7 @@
Returns BoldComplexScript
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/bookmark.html b/api/classes/bookmark.html index 820e96df8f..1755794ed3 100644 --- a/api/classes/bookmark.html +++ b/api/classes/bookmark.html @@ -106,7 +106,7 @@
Parameters
@@ -134,7 +134,7 @@Parameters
@@ -145,7 +145,7 @@Returns boolean
@@ -184,7 +184,7 @@Parameters
@@ -208,7 +208,7 @@Returns void
@@ -227,7 +227,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/bookmarkendattributes.html b/api/classes/bookmarkendattributes.html index 4bd3c11498..a83d1efcdc 100644 --- a/api/classes/bookmarkendattributes.html +++ b/api/classes/bookmarkendattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/bookmarkstart.html b/api/classes/bookmarkstart.html index 5e3221957c..17aec618f9 100644 --- a/api/classes/bookmarkstart.html +++ b/api/classes/bookmarkstart.html @@ -123,7 +123,7 @@Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -187,7 +187,7 @@Parameters
@@ -211,7 +211,7 @@Returns void
@@ -230,7 +230,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/bookmarkstartattributes.html b/api/classes/bookmarkstartattributes.html index 2b55dc7d24..cf8bb0f9ee 100644 --- a/api/classes/bookmarkstartattributes.html +++ b/api/classes/bookmarkstartattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/border.html b/api/classes/border.html index 5d05f7fbd7..4f0e22b49f 100644 --- a/api/classes/border.html +++ b/api/classes/border.html @@ -121,7 +121,7 @@Returns Border
@@ -142,7 +142,7 @@Returns boolean
@@ -162,7 +162,7 @@Parameters
@@ -195,7 +195,7 @@Parameters
@@ -218,7 +218,7 @@Parameters
@@ -250,7 +250,7 @@Parameters
@@ -282,7 +282,7 @@Parameters
@@ -315,7 +315,7 @@Returns void
@@ -334,7 +334,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/break.html b/api/classes/break.html index 948fcbd60e..ebdeff6607 100644 --- a/api/classes/break.html +++ b/api/classes/break.html @@ -117,7 +117,7 @@
Returns Break
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/caps.html b/api/classes/caps.html index 46d03283b7..fc4d07dfcc 100644 --- a/api/classes/caps.html +++ b/api/classes/caps.html @@ -120,7 +120,7 @@
Returns Caps
@@ -142,7 +142,7 @@Inherited from BaseXmlComponent.IsDeleted
Overrides BaseXmlComponent.IsDeleted
-- Defined in file/xml-components/base.ts:14
+ - Defined in file/xml-components/base.ts:14
Returns boolean
@@ -164,7 +164,7 @@Inherited from XmlComponent.addChildElement
Overrides XmlComponent.addChildElement
-- Defined in file/xml-components/xml-component.ts:34
+ - Defined in file/xml-components/xml-component.ts:34
Parameters
@@ -189,7 +189,7 @@Inherited from XmlComponent.delete
Overrides XmlComponent.delete
-- Defined in file/xml-components/xml-component.ts:40
+ - Defined in file/xml-components/xml-component.ts:40
Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/centertabstop.html b/api/classes/centertabstop.html index 7478b088b8..c70da98663 100644 --- a/api/classes/centertabstop.html +++ b/api/classes/centertabstop.html @@ -117,7 +117,7 @@
Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/characterspacing.html b/api/classes/characterspacing.html index 895bc76501..1d5debd6e1 100644 --- a/api/classes/characterspacing.html +++ b/api/classes/characterspacing.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/characterstyle.html b/api/classes/characterstyle.html index 04d99c4d9d..e2bd2c0536 100644 --- a/api/classes/characterstyle.html +++ b/api/classes/characterstyle.html @@ -137,7 +137,7 @@
Parameters
@@ -167,7 +167,7 @@Returns boolean
@@ -188,7 +188,7 @@Parameters
@@ -211,7 +211,7 @@Parameters
@@ -234,7 +234,7 @@Parameters
@@ -257,7 +257,7 @@Parameters
@@ -281,7 +281,7 @@Returns void
@@ -298,7 +298,7 @@Parameters
@@ -323,7 +323,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -344,7 +344,7 @@
Parameters
@@ -367,7 +367,7 @@Returns CharacterStyle
@@ -384,7 +384,7 @@Parameters
@@ -407,7 +407,7 @@Returns CharacterStyle
@@ -424,7 +424,7 @@Parameters
diff --git a/api/classes/childnonvisualproperties.html b/api/classes/childnonvisualproperties.html index 31a8adaa47..c02b1eb24c 100644 --- a/api/classes/childnonvisualproperties.html +++ b/api/classes/childnonvisualproperties.html @@ -117,7 +117,7 @@Returns ChildNonVisualProperties
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/color.html b/api/classes/color.html index eac3c88a7f..e03e9793b1 100644 --- a/api/classes/color.html +++ b/api/classes/color.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/columns.html b/api/classes/columns.html index 0e1a46f1bf..615d6f9feb 100644 --- a/api/classes/columns.html +++ b/api/classes/columns.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/columnsattributes.html b/api/classes/columnsattributes.html index 7a619205db..5908619e15 100644 --- a/api/classes/columnsattributes.html +++ b/api/classes/columnsattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/compiler.html b/api/classes/compiler.html index c4656e3b6c..a884fdb1ee 100644 --- a/api/classes/compiler.html +++ b/api/classes/compiler.html @@ -103,7 +103,7 @@Returns Compiler
@@ -123,7 +123,7 @@Parameters
diff --git a/api/classes/contenttypeattributes.html b/api/classes/contenttypeattributes.html index 905861185d..f3249e08ff 100644 --- a/api/classes/contenttypeattributes.html +++ b/api/classes/contenttypeattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/contenttypes.html b/api/classes/contenttypes.html index 7aaa7f4362..5687faa4bf 100644 --- a/api/classes/contenttypes.html +++ b/api/classes/contenttypes.html @@ -119,7 +119,7 @@Returns ContentTypes
@@ -140,7 +140,7 @@Returns boolean
@@ -161,7 +161,7 @@Parameters
@@ -184,7 +184,7 @@Parameters
@@ -207,7 +207,7 @@Parameters
@@ -231,7 +231,7 @@Returns void
@@ -250,7 +250,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/contextualspacing.html b/api/classes/contextualspacing.html index d58872926d..f1ed550b6d 100644 --- a/api/classes/contextualspacing.html +++ b/api/classes/contextualspacing.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/continuationseperator.html b/api/classes/continuationseperator.html index 1a4f47777d..1b6d3b9d93 100644 --- a/api/classes/continuationseperator.html +++ b/api/classes/continuationseperator.html @@ -117,7 +117,7 @@
Returns ContinuationSeperator
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/continuationseperatorrun.html b/api/classes/continuationseperatorrun.html index a2b7e17cc5..542ad6e37b 100644 --- a/api/classes/continuationseperatorrun.html +++ b/api/classes/continuationseperatorrun.html @@ -134,7 +134,7 @@
Returns ContinuationSeperatorRun
@@ -155,7 +155,7 @@Returns boolean
@@ -176,7 +176,7 @@Parameters
@@ -200,7 +200,7 @@Returns Run
@@ -218,7 +218,7 @@Returns Run
@@ -236,7 +236,7 @@Returns Run
@@ -254,7 +254,7 @@Parameters
@@ -278,7 +278,7 @@Returns void
@@ -296,7 +296,7 @@Returns Run
@@ -314,7 +314,7 @@Parameters
@@ -341,7 +341,7 @@Returns Run
@@ -359,7 +359,7 @@Returns Run
@@ -378,7 +378,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -399,7 +399,7 @@
Returns Run
@@ -417,7 +417,7 @@Parameters
@@ -441,7 +441,7 @@Returns Run
@@ -459,7 +459,7 @@Returns Run
@@ -477,7 +477,7 @@Parameters
@@ -501,7 +501,7 @@Returns Run
@@ -519,7 +519,7 @@Returns Run
@@ -537,7 +537,7 @@Returns Run
@@ -555,7 +555,7 @@Parameters
diff --git a/api/classes/coreproperties.html b/api/classes/coreproperties.html index 69eca7e7f0..7562cde82c 100644 --- a/api/classes/coreproperties.html +++ b/api/classes/coreproperties.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/created.html b/api/classes/created.html index f17966a95e..d36c9bfce8 100644 --- a/api/classes/created.html +++ b/api/classes/created.html @@ -117,7 +117,7 @@
Returns Created
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/creator.html b/api/classes/creator.html index 47b964c2f3..8284654fa8 100644 --- a/api/classes/creator.html +++ b/api/classes/creator.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dashdotdotheavyunderline.html b/api/classes/dashdotdotheavyunderline.html index 164f32541f..5f2ab5318c 100644 --- a/api/classes/dashdotdotheavyunderline.html +++ b/api/classes/dashdotdotheavyunderline.html @@ -117,7 +117,7 @@
Returns DashDotDotHeavyUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dashdotheavyunderline.html b/api/classes/dashdotheavyunderline.html index eb084e8ea7..b9a115f6fb 100644 --- a/api/classes/dashdotheavyunderline.html +++ b/api/classes/dashdotheavyunderline.html @@ -117,7 +117,7 @@
Returns DashDotHeavyUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dashlongheavyunderline.html b/api/classes/dashlongheavyunderline.html index 08da824afb..75c74c971c 100644 --- a/api/classes/dashlongheavyunderline.html +++ b/api/classes/dashlongheavyunderline.html @@ -117,7 +117,7 @@
Returns DashLongHeavyUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dashlongunderline.html b/api/classes/dashlongunderline.html index 381d229137..d50ab93969 100644 --- a/api/classes/dashlongunderline.html +++ b/api/classes/dashlongunderline.html @@ -117,7 +117,7 @@
Returns DashLongUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dashunderline.html b/api/classes/dashunderline.html index 9f10fb0a42..b27138a6b7 100644 --- a/api/classes/dashunderline.html +++ b/api/classes/dashunderline.html @@ -117,7 +117,7 @@
Returns DashUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/datecomponent.html b/api/classes/datecomponent.html index 7b4efec1c2..ea4d6a0608 100644 --- a/api/classes/datecomponent.html +++ b/api/classes/datecomponent.html @@ -126,7 +126,7 @@
Inherited from XmlComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/xml-component.ts:7
+ - Defined in file/xml-components/xml-component.ts:7
Parameters
@@ -153,7 +153,7 @@Returns boolean
@@ -174,7 +174,7 @@Parameters
@@ -198,7 +198,7 @@Returns void
@@ -217,7 +217,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/default.html b/api/classes/default.html index c801a53432..c8e789a0db 100644 --- a/api/classes/default.html +++ b/api/classes/default.html @@ -117,7 +117,7 @@
Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/defaultattributes.html b/api/classes/defaultattributes.html index 769c1eb34a..2e6f3900c4 100644 --- a/api/classes/defaultattributes.html +++ b/api/classes/defaultattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/defaultstylesfactory.html b/api/classes/defaultstylesfactory.html index fb12ceaf2a..31fbc429d9 100644 --- a/api/classes/defaultstylesfactory.html +++ b/api/classes/defaultstylesfactory.html @@ -97,7 +97,7 @@Returns Styles
diff --git a/api/classes/description.html b/api/classes/description.html index 55e8fd3d34..d8f998d934 100644 --- a/api/classes/description.html +++ b/api/classes/description.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/docgridattributes.html b/api/classes/docgridattributes.html index 6608be02fc..49c9bdc299 100644 --- a/api/classes/docgridattributes.html +++ b/api/classes/docgridattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/docproperties.html b/api/classes/docproperties.html index 1938b5bc5a..172b88f6bb 100644 --- a/api/classes/docproperties.html +++ b/api/classes/docproperties.html @@ -117,7 +117,7 @@Returns DocProperties
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/docpropertiesattributes.html b/api/classes/docpropertiesattributes.html index 02f8000ff9..2e16304ea5 100644 --- a/api/classes/docpropertiesattributes.html +++ b/api/classes/docpropertiesattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/document.html b/api/classes/document.html index 5e61b71a67..7054ad3d95 100644 --- a/api/classes/document.html +++ b/api/classes/document.html @@ -125,7 +125,7 @@Parameters
@@ -151,7 +151,7 @@Returns Body
@@ -169,7 +169,7 @@Returns boolean
@@ -190,7 +190,7 @@Parameters
@@ -213,7 +213,7 @@Parameters
@@ -236,7 +236,7 @@Parameters
@@ -259,7 +259,7 @@Parameters
@@ -282,7 +282,7 @@Parameters
@@ -305,7 +305,7 @@Parameters
@@ -332,7 +332,7 @@Returns void
@@ -349,7 +349,7 @@Returns Paragraph[]
@@ -366,7 +366,7 @@Returns TableOfContents[]
@@ -385,7 +385,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/documentattributes.html b/api/classes/documentattributes.html index 1d37df02c5..feaa61c517 100644 --- a/api/classes/documentattributes.html +++ b/api/classes/documentattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/documentdefaults.html b/api/classes/documentdefaults.html index b89a5e3c87..2aa79e5fcc 100644 --- a/api/classes/documentdefaults.html +++ b/api/classes/documentdefaults.html @@ -117,7 +117,7 @@Returns DocumentDefaults
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/documentgrid.html b/api/classes/documentgrid.html index f1253fe744..67f579b455 100644 --- a/api/classes/documentgrid.html +++ b/api/classes/documentgrid.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dotdashunderline.html b/api/classes/dotdashunderline.html index 8c28bce564..e776f1f390 100644 --- a/api/classes/dotdashunderline.html +++ b/api/classes/dotdashunderline.html @@ -117,7 +117,7 @@
Returns DotDashUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dotdotdashunderline.html b/api/classes/dotdotdashunderline.html index 44fbaa8f87..6c1f23d80c 100644 --- a/api/classes/dotdotdashunderline.html +++ b/api/classes/dotdotdashunderline.html @@ -117,7 +117,7 @@
Returns DotDotDashUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dottedheavyunderline.html b/api/classes/dottedheavyunderline.html index e11989732e..974bce12b9 100644 --- a/api/classes/dottedheavyunderline.html +++ b/api/classes/dottedheavyunderline.html @@ -117,7 +117,7 @@
Returns DottedHeavyUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/dottedunderline.html b/api/classes/dottedunderline.html index 2aa93638e2..d89b916c47 100644 --- a/api/classes/dottedunderline.html +++ b/api/classes/dottedunderline.html @@ -117,7 +117,7 @@
Returns DottedUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/doublestrike.html b/api/classes/doublestrike.html index 8b345058cc..9b4cb07f91 100644 --- a/api/classes/doublestrike.html +++ b/api/classes/doublestrike.html @@ -117,7 +117,7 @@
Returns DoubleStrike
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/doubleunderline.html b/api/classes/doubleunderline.html index d33d97520d..f5d9f5bc7f 100644 --- a/api/classes/doubleunderline.html +++ b/api/classes/doubleunderline.html @@ -117,7 +117,7 @@
Returns DoubleUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/drawing.html b/api/classes/drawing.html index 82fad0b108..10d0584bea 100644 --- a/api/classes/drawing.html +++ b/api/classes/drawing.html @@ -118,7 +118,7 @@
Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -169,7 +169,7 @@Parameters
@@ -193,7 +193,7 @@Returns void
@@ -212,7 +212,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -232,7 +232,7 @@
Parameters
diff --git a/api/classes/effectextent.html b/api/classes/effectextent.html index c57e906bf8..9a25753a5f 100644 --- a/api/classes/effectextent.html +++ b/api/classes/effectextent.html @@ -117,7 +117,7 @@Returns EffectExtent
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/effectextentattributes.html b/api/classes/effectextentattributes.html index 6403964094..b9ec374fd2 100644 --- a/api/classes/effectextentattributes.html +++ b/api/classes/effectextentattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/emboss.html b/api/classes/emboss.html index 93d4d775cd..cbfd3c3f96 100644 --- a/api/classes/emboss.html +++ b/api/classes/emboss.html @@ -117,7 +117,7 @@Returns Emboss
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/end.html b/api/classes/end.html index ea3313f252..18084979c9 100644 --- a/api/classes/end.html +++ b/api/classes/end.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/extent.html b/api/classes/extent.html index 42cc21936b..7285695150 100644 --- a/api/classes/extent.html +++ b/api/classes/extent.html @@ -118,7 +118,7 @@
Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -169,7 +169,7 @@Parameters
@@ -193,7 +193,7 @@Returns void
@@ -212,7 +212,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -232,7 +232,7 @@
Parameters
diff --git a/api/classes/extentattributes.html b/api/classes/extentattributes.html index b280c64d63..d3a5b05678 100644 --- a/api/classes/extentattributes.html +++ b/api/classes/extentattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/extents.html b/api/classes/extents.html index 59254ab660..9b93de52fb 100644 --- a/api/classes/extents.html +++ b/api/classes/extents.html @@ -118,7 +118,7 @@Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -169,7 +169,7 @@Parameters
@@ -193,7 +193,7 @@Returns void
@@ -212,7 +212,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -232,7 +232,7 @@
Parameters
diff --git a/api/classes/extentsattributes.html b/api/classes/extentsattributes.html index d3634fc0f2..3831fb93ab 100644 --- a/api/classes/extentsattributes.html +++ b/api/classes/extentsattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/externalstylesfactory.html b/api/classes/externalstylesfactory.html index 4d82bce173..056efa1f15 100644 --- a/api/classes/externalstylesfactory.html +++ b/api/classes/externalstylesfactory.html @@ -97,7 +97,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/file.html b/api/classes/file.html index 534e9def92..696be4948e 100644 --- a/api/classes/file.html +++ b/api/classes/file.html @@ -140,7 +140,7 @@
Parameters
@@ -172,7 +172,7 @@Returns AppProperties
@@ -189,7 +189,7 @@Returns ContentTypes
@@ -206,7 +206,7 @@Returns CoreProperties
@@ -223,7 +223,7 @@Returns Document
@@ -240,7 +240,7 @@Returns Relationships
@@ -257,7 +257,7 @@Returns Relationships
@@ -274,7 +274,7 @@Returns FootNotes
@@ -291,7 +291,7 @@Returns FooterWrapper
@@ -308,7 +308,7 @@Returns FooterWrapper[]
@@ -325,7 +325,7 @@Returns HeaderWrapper
@@ -342,7 +342,7 @@Returns HeaderWrapper[]
@@ -359,7 +359,7 @@Returns Media
@@ -376,7 +376,7 @@Returns Numbering
@@ -393,7 +393,7 @@Returns Settings
@@ -411,7 +411,7 @@Returns Styles
@@ -419,7 +419,7 @@Parameters
@@ -445,7 +445,7 @@Parameters
@@ -468,7 +468,7 @@Parameters
@@ -491,7 +491,7 @@Parameters
@@ -514,7 +514,7 @@Parameters
@@ -537,7 +537,7 @@Parameters
@@ -560,7 +560,7 @@Parameters
@@ -586,7 +586,7 @@Returns HeaderWrapper
@@ -603,7 +603,7 @@Returns FooterWrapper
@@ -620,7 +620,7 @@Parameters
@@ -643,7 +643,7 @@Returns HeaderWrapper
@@ -660,7 +660,7 @@Parameters
@@ -686,7 +686,7 @@Parameters
@@ -715,7 +715,7 @@Parameters
@@ -741,7 +741,7 @@Parameters
@@ -764,7 +764,7 @@Parameters
@@ -790,7 +790,7 @@Parameters
@@ -813,7 +813,7 @@Parameters
@@ -836,7 +836,7 @@Returns void
diff --git a/api/classes/footer.html b/api/classes/footer.html index 8c0b21fd56..c14de26db7 100644 --- a/api/classes/footer.html +++ b/api/classes/footer.html @@ -122,7 +122,7 @@Parameters
@@ -152,7 +152,7 @@Returns boolean
@@ -169,7 +169,7 @@Returns number
@@ -190,7 +190,7 @@Parameters
@@ -213,7 +213,7 @@Parameters
@@ -236,7 +236,7 @@Parameters
@@ -259,7 +259,7 @@Parameters
@@ -282,7 +282,7 @@Parameters
@@ -309,7 +309,7 @@Returns void
@@ -328,7 +328,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/footerattributes.html b/api/classes/footerattributes.html index a47a4e31e0..974c441252 100644 --- a/api/classes/footerattributes.html +++ b/api/classes/footerattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/footerreference.html b/api/classes/footerreference.html index 03d85a852b..9bd65d2130 100644 --- a/api/classes/footerreference.html +++ b/api/classes/footerreference.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/footerreferenceattributes.html b/api/classes/footerreferenceattributes.html index 529b6d9e7c..29797e7347 100644 --- a/api/classes/footerreferenceattributes.html +++ b/api/classes/footerreferenceattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/footerwrapper.html b/api/classes/footerwrapper.html index 1b6c25faaa..5b73a5a0e7 100644 --- a/api/classes/footerwrapper.html +++ b/api/classes/footerwrapper.html @@ -117,7 +117,7 @@Parameters
@@ -149,7 +149,7 @@Returns Footer
@@ -166,7 +166,7 @@Returns Media
@@ -183,7 +183,7 @@Returns Relationships
@@ -203,7 +203,7 @@Parameters
@@ -226,7 +226,7 @@Parameters
@@ -249,7 +249,7 @@Parameters
@@ -272,7 +272,7 @@Parameters
@@ -295,7 +295,7 @@Parameters
@@ -324,7 +324,7 @@Parameters
@@ -347,7 +347,7 @@Parameters
diff --git a/api/classes/footnote.html b/api/classes/footnote.html index 663f3be7a6..8e11ed6056 100644 --- a/api/classes/footnote.html +++ b/api/classes/footnote.html @@ -118,7 +118,7 @@Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -169,7 +169,7 @@Parameters
@@ -192,7 +192,7 @@Parameters
@@ -216,7 +216,7 @@Returns void
@@ -235,7 +235,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/footnoteattributes.html b/api/classes/footnoteattributes.html index c783dc589a..642b2677b4 100644 --- a/api/classes/footnoteattributes.html +++ b/api/classes/footnoteattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/footnoteref.html b/api/classes/footnoteref.html index f4c46176fd..02b9182cb3 100644 --- a/api/classes/footnoteref.html +++ b/api/classes/footnoteref.html @@ -117,7 +117,7 @@Returns FootnoteRef
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/footnotereference.html b/api/classes/footnotereference.html index 25e91f2ddb..781172fdd9 100644 --- a/api/classes/footnotereference.html +++ b/api/classes/footnotereference.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/footnotereferencerun.html b/api/classes/footnotereferencerun.html index 45b8febdcc..7f4cdc3094 100644 --- a/api/classes/footnotereferencerun.html +++ b/api/classes/footnotereferencerun.html @@ -134,7 +134,7 @@
Parameters
@@ -161,7 +161,7 @@Returns boolean
@@ -182,7 +182,7 @@Parameters
@@ -206,7 +206,7 @@Returns Run
@@ -224,7 +224,7 @@Returns Run
@@ -242,7 +242,7 @@Returns Run
@@ -260,7 +260,7 @@Parameters
@@ -284,7 +284,7 @@Returns void
@@ -302,7 +302,7 @@Returns Run
@@ -320,7 +320,7 @@Parameters
@@ -347,7 +347,7 @@Returns Run
@@ -365,7 +365,7 @@Returns Run
@@ -384,7 +384,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -405,7 +405,7 @@
Returns Run
@@ -423,7 +423,7 @@Parameters
@@ -447,7 +447,7 @@Returns Run
@@ -465,7 +465,7 @@Returns Run
@@ -483,7 +483,7 @@Parameters
@@ -507,7 +507,7 @@Returns Run
@@ -525,7 +525,7 @@Returns Run
@@ -543,7 +543,7 @@Returns Run
@@ -561,7 +561,7 @@Parameters
diff --git a/api/classes/footnotereferencerunattributes.html b/api/classes/footnotereferencerunattributes.html index b7aaea09b8..12036053f0 100644 --- a/api/classes/footnotereferencerunattributes.html +++ b/api/classes/footnotereferencerunattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/footnotereferencestyle.html b/api/classes/footnotereferencestyle.html index 2b7520435c..6120fa6407 100644 --- a/api/classes/footnotereferencestyle.html +++ b/api/classes/footnotereferencestyle.html @@ -126,7 +126,7 @@Returns FootnoteReferenceStyle
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Parameters
@@ -216,7 +216,7 @@Parameters
@@ -240,7 +240,7 @@Parameters
@@ -264,7 +264,7 @@Returns void
@@ -282,7 +282,7 @@Parameters
@@ -307,7 +307,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -328,7 +328,7 @@
Parameters
@@ -352,7 +352,7 @@Returns CharacterStyle
@@ -370,7 +370,7 @@Parameters
@@ -394,7 +394,7 @@Returns CharacterStyle
@@ -412,7 +412,7 @@Parameters
diff --git a/api/classes/footnoterefrun.html b/api/classes/footnoterefrun.html index 71bbe371a5..c3dcd2a471 100644 --- a/api/classes/footnoterefrun.html +++ b/api/classes/footnoterefrun.html @@ -134,7 +134,7 @@Returns FootnoteRefRun
@@ -155,7 +155,7 @@Returns boolean
@@ -176,7 +176,7 @@Parameters
@@ -200,7 +200,7 @@Returns Run
@@ -218,7 +218,7 @@Returns Run
@@ -236,7 +236,7 @@Returns Run
@@ -254,7 +254,7 @@Parameters
@@ -278,7 +278,7 @@Returns void
@@ -296,7 +296,7 @@Returns Run
@@ -314,7 +314,7 @@Parameters
@@ -341,7 +341,7 @@Returns Run
@@ -359,7 +359,7 @@Returns Run
@@ -378,7 +378,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -399,7 +399,7 @@
Returns Run
@@ -417,7 +417,7 @@Parameters
@@ -441,7 +441,7 @@Returns Run
@@ -459,7 +459,7 @@Returns Run
@@ -477,7 +477,7 @@Parameters
@@ -501,7 +501,7 @@Returns Run
@@ -519,7 +519,7 @@Returns Run
@@ -537,7 +537,7 @@Returns Run
@@ -555,7 +555,7 @@Parameters
diff --git a/api/classes/footnotes.html b/api/classes/footnotes.html index 6f7c6c5cea..8cad47003d 100644 --- a/api/classes/footnotes.html +++ b/api/classes/footnotes.html @@ -118,7 +118,7 @@Returns FootNotes
@@ -139,7 +139,7 @@Returns boolean
@@ -160,7 +160,7 @@Parameters
@@ -183,7 +183,7 @@Parameters
@@ -207,7 +207,7 @@Returns void
@@ -226,7 +226,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/footnotesattributes.html b/api/classes/footnotesattributes.html index 0aafb7fe67..f0a99f4e15 100644 --- a/api/classes/footnotesattributes.html +++ b/api/classes/footnotesattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/footnotetext.html b/api/classes/footnotetext.html index 5a139703d0..f894071bc9 100644 --- a/api/classes/footnotetext.html +++ b/api/classes/footnotetext.html @@ -151,7 +151,7 @@Returns FootnoteText
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/footnotetextchar.html b/api/classes/footnotetextchar.html index 8055c038a3..a5df494704 100644 --- a/api/classes/footnotetextchar.html +++ b/api/classes/footnotetextchar.html @@ -126,7 +126,7 @@Returns FootnoteTextChar
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Parameters
@@ -216,7 +216,7 @@Parameters
@@ -240,7 +240,7 @@Parameters
@@ -264,7 +264,7 @@Returns void
@@ -282,7 +282,7 @@Parameters
@@ -307,7 +307,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -328,7 +328,7 @@
Parameters
@@ -352,7 +352,7 @@Returns CharacterStyle
@@ -370,7 +370,7 @@Parameters
@@ -394,7 +394,7 @@Returns CharacterStyle
@@ -412,7 +412,7 @@Parameters
diff --git a/api/classes/form.html b/api/classes/form.html index 75a4c7fdc1..6aab3351a2 100644 --- a/api/classes/form.html +++ b/api/classes/form.html @@ -118,7 +118,7 @@Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -169,7 +169,7 @@Parameters
@@ -193,7 +193,7 @@Returns void
@@ -212,7 +212,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -232,7 +232,7 @@
Parameters
diff --git a/api/classes/formatter.html b/api/classes/formatter.html index f49adaa0ea..9a08c46214 100644 --- a/api/classes/formatter.html +++ b/api/classes/formatter.html @@ -97,7 +97,7 @@Parameters
diff --git a/api/classes/graphic.html b/api/classes/graphic.html index c76f08b814..cedea142a1 100644 --- a/api/classes/graphic.html +++ b/api/classes/graphic.html @@ -118,7 +118,7 @@Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -172,7 +172,7 @@Parameters
@@ -196,7 +196,7 @@Returns void
@@ -215,7 +215,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -235,7 +235,7 @@
Parameters
diff --git a/api/classes/graphicdata.html b/api/classes/graphicdata.html index 0df4146c30..b339f18579 100644 --- a/api/classes/graphicdata.html +++ b/api/classes/graphicdata.html @@ -118,7 +118,7 @@Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -172,7 +172,7 @@Parameters
@@ -196,7 +196,7 @@Returns void
@@ -215,7 +215,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -235,7 +235,7 @@
Parameters
diff --git a/api/classes/graphicdataattributes.html b/api/classes/graphicdataattributes.html index 6f06700643..ec08677114 100644 --- a/api/classes/graphicdataattributes.html +++ b/api/classes/graphicdataattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/graphicframelockattributes.html b/api/classes/graphicframelockattributes.html index 093199ca94..bdd6c14f48 100644 --- a/api/classes/graphicframelockattributes.html +++ b/api/classes/graphicframelockattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/graphicframelocks.html b/api/classes/graphicframelocks.html index 94cf6a0d57..e8dbca16f2 100644 --- a/api/classes/graphicframelocks.html +++ b/api/classes/graphicframelocks.html @@ -117,7 +117,7 @@Returns GraphicFrameLocks
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/graphicframeproperties.html b/api/classes/graphicframeproperties.html index 4e5a038e3c..5b33453034 100644 --- a/api/classes/graphicframeproperties.html +++ b/api/classes/graphicframeproperties.html @@ -117,7 +117,7 @@
Returns GraphicFrameProperties
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/gridcol.html b/api/classes/gridcol.html index 2116a4fb5c..f1ab20443f 100644 --- a/api/classes/gridcol.html +++ b/api/classes/gridcol.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/gridspan.html b/api/classes/gridspan.html index a701f238aa..00389b26aa 100644 --- a/api/classes/gridspan.html +++ b/api/classes/gridspan.html @@ -124,7 +124,7 @@
Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -172,7 +172,7 @@Parameters
@@ -196,7 +196,7 @@Returns void
@@ -215,7 +215,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/header.html b/api/classes/header.html index d0714d162d..a76a90020d 100644 --- a/api/classes/header.html +++ b/api/classes/header.html @@ -122,7 +122,7 @@
Parameters
@@ -152,7 +152,7 @@Returns boolean
@@ -169,7 +169,7 @@Returns number
@@ -190,7 +190,7 @@Parameters
@@ -213,7 +213,7 @@Parameters
@@ -236,7 +236,7 @@Parameters
@@ -259,7 +259,7 @@Parameters
@@ -282,7 +282,7 @@Parameters
@@ -309,7 +309,7 @@Returns void
@@ -328,7 +328,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/headerattributes.html b/api/classes/headerattributes.html index c013b2647f..064611b304 100644 --- a/api/classes/headerattributes.html +++ b/api/classes/headerattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/headerreference.html b/api/classes/headerreference.html index 2d9dbc7918..fefa6e3603 100644 --- a/api/classes/headerreference.html +++ b/api/classes/headerreference.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/headerreferenceattributes.html b/api/classes/headerreferenceattributes.html index 24a091ea32..a45ed46fb7 100644 --- a/api/classes/headerreferenceattributes.html +++ b/api/classes/headerreferenceattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/headerwrapper.html b/api/classes/headerwrapper.html index 072dfee219..18ff5cf3f0 100644 --- a/api/classes/headerwrapper.html +++ b/api/classes/headerwrapper.html @@ -117,7 +117,7 @@Parameters
@@ -149,7 +149,7 @@Returns Header
@@ -166,7 +166,7 @@Returns Media
@@ -183,7 +183,7 @@Returns Relationships
@@ -203,7 +203,7 @@Parameters
@@ -226,7 +226,7 @@Parameters
@@ -249,7 +249,7 @@Parameters
@@ -272,7 +272,7 @@Parameters
@@ -295,7 +295,7 @@Parameters
@@ -324,7 +324,7 @@Parameters
@@ -347,7 +347,7 @@Parameters
diff --git a/api/classes/heading1style.html b/api/classes/heading1style.html index b57bbffbc8..694a17e839 100644 --- a/api/classes/heading1style.html +++ b/api/classes/heading1style.html @@ -151,7 +151,7 @@Returns Heading1Style
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/heading2style.html b/api/classes/heading2style.html index c88f22a803..f6eb358486 100644 --- a/api/classes/heading2style.html +++ b/api/classes/heading2style.html @@ -151,7 +151,7 @@Returns Heading2Style
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/heading3style.html b/api/classes/heading3style.html index 21acd7c030..c35dee3198 100644 --- a/api/classes/heading3style.html +++ b/api/classes/heading3style.html @@ -151,7 +151,7 @@Returns Heading3Style
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/heading4style.html b/api/classes/heading4style.html index a8a0d4ea7d..d677638161 100644 --- a/api/classes/heading4style.html +++ b/api/classes/heading4style.html @@ -151,7 +151,7 @@Returns Heading4Style
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/heading5style.html b/api/classes/heading5style.html index b9a1156af4..9c817421e6 100644 --- a/api/classes/heading5style.html +++ b/api/classes/heading5style.html @@ -151,7 +151,7 @@Returns Heading5Style
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/heading6style.html b/api/classes/heading6style.html index f9e5e91632..74eacae153 100644 --- a/api/classes/heading6style.html +++ b/api/classes/heading6style.html @@ -151,7 +151,7 @@Returns Heading6Style
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/headingstyle.html b/api/classes/headingstyle.html index 38e68f5029..ec52c37e05 100644 --- a/api/classes/headingstyle.html +++ b/api/classes/headingstyle.html @@ -174,7 +174,7 @@Parameters
@@ -204,7 +204,7 @@Returns boolean
@@ -225,7 +225,7 @@Parameters
@@ -249,7 +249,7 @@Parameters
@@ -273,7 +273,7 @@Parameters
@@ -297,7 +297,7 @@Returns ParagraphStyle
@@ -315,7 +315,7 @@Parameters
@@ -339,7 +339,7 @@Returns ParagraphStyle
@@ -357,7 +357,7 @@Returns ParagraphStyle
@@ -375,7 +375,7 @@Parameters
@@ -399,7 +399,7 @@Parameters
@@ -423,7 +423,7 @@Returns void
@@ -441,7 +441,7 @@Returns ParagraphStyle
@@ -459,7 +459,7 @@Parameters
@@ -483,7 +483,7 @@Parameters
@@ -507,7 +507,7 @@Returns ParagraphStyle
@@ -525,7 +525,7 @@Returns ParagraphStyle
@@ -543,7 +543,7 @@Returns ParagraphStyle
@@ -561,7 +561,7 @@Returns ParagraphStyle
@@ -579,7 +579,7 @@Returns ParagraphStyle
@@ -597,7 +597,7 @@Parameters
@@ -621,7 +621,7 @@Parameters
@@ -645,7 +645,7 @@Returns ParagraphStyle
@@ -663,7 +663,7 @@Parameters
@@ -688,7 +688,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -709,7 +709,7 @@
Parameters
@@ -733,7 +733,7 @@Returns ParagraphStyle
@@ -751,7 +751,7 @@Returns ParagraphStyle
@@ -769,7 +769,7 @@Returns ParagraphStyle
@@ -787,7 +787,7 @@Parameters
@@ -811,7 +811,7 @@Returns ParagraphStyle
@@ -829,7 +829,7 @@Parameters
@@ -853,7 +853,7 @@Returns ParagraphStyle
@@ -871,7 +871,7 @@Returns ParagraphStyle
@@ -889,7 +889,7 @@Returns ParagraphStyle
@@ -907,7 +907,7 @@Returns ParagraphStyle
@@ -925,7 +925,7 @@Parameters
@@ -949,7 +949,7 @@Parameters
@@ -976,7 +976,7 @@Returns ParagraphStyle
diff --git a/api/classes/horizontalposition.html b/api/classes/horizontalposition.html index bf3aa64b99..60ffd46220 100644 --- a/api/classes/horizontalposition.html +++ b/api/classes/horizontalposition.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/hyperlink.html b/api/classes/hyperlink.html index 84ba11a1e4..2f997f157b 100644 --- a/api/classes/hyperlink.html +++ b/api/classes/hyperlink.html @@ -123,7 +123,7 @@linkId: number
@@ -169,7 +169,7 @@
Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -190,7 +190,7 @@Parameters
@@ -214,7 +214,7 @@Returns void
@@ -233,7 +233,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/hyperlinkattributes.html b/api/classes/hyperlinkattributes.html index 9a7d8f2fa1..22b99b341c 100644 --- a/api/classes/hyperlinkattributes.html +++ b/api/classes/hyperlinkattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/hyperlinkstyle.html b/api/classes/hyperlinkstyle.html index 77ea6810db..a11616f2f3 100644 --- a/api/classes/hyperlinkstyle.html +++ b/api/classes/hyperlinkstyle.html @@ -126,7 +126,7 @@Returns HyperlinkStyle
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Parameters
@@ -216,7 +216,7 @@Parameters
@@ -240,7 +240,7 @@Parameters
@@ -264,7 +264,7 @@Returns void
@@ -282,7 +282,7 @@Parameters
@@ -307,7 +307,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -328,7 +328,7 @@
Parameters
@@ -352,7 +352,7 @@Returns CharacterStyle
@@ -370,7 +370,7 @@Parameters
@@ -394,7 +394,7 @@Returns CharacterStyle
@@ -412,7 +412,7 @@Parameters
diff --git a/api/classes/image.html b/api/classes/image.html index 6012ab3409..c3153e2267 100644 --- a/api/classes/image.html +++ b/api/classes/image.html @@ -110,7 +110,7 @@Parameters
@@ -136,7 +136,7 @@Returns ImageParagraph
@@ -153,7 +153,7 @@Returns PictureRun
@@ -173,7 +173,7 @@Parameters
diff --git a/api/classes/imageparagraph.html b/api/classes/imageparagraph.html index 2f68cf08fc..44f481227e 100644 --- a/api/classes/imageparagraph.html +++ b/api/classes/imageparagraph.html @@ -162,7 +162,7 @@Parameters
@@ -192,7 +192,7 @@Returns Border
@@ -210,7 +210,7 @@Returns boolean
@@ -227,7 +227,7 @@Returns PictureRun
@@ -245,7 +245,7 @@Returns ParagraphProperties
@@ -266,7 +266,7 @@Parameters
@@ -290,7 +290,7 @@Parameters
@@ -314,7 +314,7 @@Parameters
@@ -338,7 +338,7 @@Parameters
@@ -362,7 +362,7 @@Parameters
@@ -386,7 +386,7 @@Parameters
@@ -410,7 +410,7 @@Parameters
@@ -434,7 +434,7 @@Parameters
@@ -458,7 +458,7 @@Returns Paragraph
@@ -476,7 +476,7 @@Parameters
@@ -500,7 +500,7 @@Returns Paragraph
@@ -518,7 +518,7 @@Parameters
@@ -545,7 +545,7 @@Parameters
@@ -569,7 +569,7 @@Returns Paragraph
@@ -587,7 +587,7 @@Parameters
@@ -611,7 +611,7 @@Returns void
@@ -629,7 +629,7 @@Returns Paragraph
@@ -647,7 +647,7 @@Returns Paragraph
@@ -665,7 +665,7 @@Returns Paragraph
@@ -683,7 +683,7 @@Returns Paragraph
@@ -701,7 +701,7 @@Returns Paragraph
@@ -719,7 +719,7 @@Returns Paragraph
@@ -737,7 +737,7 @@Returns Paragraph
@@ -755,7 +755,7 @@Returns Paragraph
@@ -773,7 +773,7 @@Parameters
@@ -797,7 +797,7 @@Returns Paragraph
@@ -815,7 +815,7 @@Returns Paragraph
@@ -833,7 +833,7 @@Returns Paragraph
@@ -851,7 +851,7 @@Returns Paragraph
@@ -869,7 +869,7 @@Parameters
@@ -896,7 +896,7 @@Parameters
@@ -920,7 +920,7 @@Returns Paragraph
@@ -938,7 +938,7 @@Returns Paragraph
@@ -957,7 +957,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -978,7 +978,7 @@
Parameters
@@ -1002,7 +1002,7 @@Returns Paragraph
@@ -1020,7 +1020,7 @@Parameters
@@ -1046,7 +1046,7 @@Parameters
@@ -1073,7 +1073,7 @@Parameters
@@ -1100,7 +1100,7 @@Parameters
@@ -1127,7 +1127,7 @@Parameters
@@ -1151,7 +1151,7 @@Returns Paragraph
@@ -1169,7 +1169,7 @@Parameters
@@ -1193,7 +1193,7 @@Returns Paragraph
@@ -1211,7 +1211,7 @@Returns Paragraph
diff --git a/api/classes/imagereplacer.html b/api/classes/imagereplacer.html index 985ee978db..c15b4d77c4 100644 --- a/api/classes/imagereplacer.html +++ b/api/classes/imagereplacer.html @@ -98,7 +98,7 @@Parameters
@@ -124,7 +124,7 @@Parameters
diff --git a/api/classes/importdotx.html b/api/classes/importdotx.html index bd630ae91f..af18a57b2f 100644 --- a/api/classes/importdotx.html +++ b/api/classes/importdotx.html @@ -103,7 +103,7 @@Returns ImportDotx
@@ -123,7 +123,7 @@Parameters
diff --git a/api/classes/importedrootelementattributes.html b/api/classes/importedrootelementattributes.html index 12c406c3d5..866006ee4c 100644 --- a/api/classes/importedrootelementattributes.html +++ b/api/classes/importedrootelementattributes.html @@ -124,7 +124,7 @@Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -172,7 +172,7 @@Parameters
@@ -196,7 +196,7 @@Returns void
@@ -214,7 +214,7 @@Returns IXmlableObject
diff --git a/api/classes/importedxmlcomponent.html b/api/classes/importedxmlcomponent.html index b5b90c59b4..56588ff918 100644 --- a/api/classes/importedxmlcomponent.html +++ b/api/classes/importedxmlcomponent.html @@ -126,7 +126,7 @@Parameters
@@ -156,7 +156,7 @@Returns boolean
@@ -177,7 +177,7 @@Parameters
@@ -201,7 +201,7 @@Returns void
@@ -219,7 +219,7 @@Parameters
@@ -290,7 +290,7 @@Returns Imprint
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/indent.html b/api/classes/indent.html index 9bdec0fddf..bd12f42bd0 100644 --- a/api/classes/indent.html +++ b/api/classes/indent.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/initializablexmlcomponent.html b/api/classes/initializablexmlcomponent.html index cc12159fb1..d65f21e5d7 100644 --- a/api/classes/initializablexmlcomponent.html +++ b/api/classes/initializablexmlcomponent.html @@ -125,7 +125,7 @@
Parameters
@@ -155,7 +155,7 @@Returns boolean
@@ -176,7 +176,7 @@Parameters
@@ -200,7 +200,7 @@Returns void
@@ -219,7 +219,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/inline.html b/api/classes/inline.html index e8bbe7a006..e60a01c519 100644 --- a/api/classes/inline.html +++ b/api/classes/inline.html @@ -124,7 +124,7 @@mediaData: IMediaData
@@ -167,7 +167,7 @@
Parameters
@@ -149,7 +149,7 @@Returns boolean
@@ -188,7 +188,7 @@Parameters
@@ -212,7 +212,7 @@Returns void
@@ -231,7 +231,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -251,7 +251,7 @@
Parameters
diff --git a/api/classes/inlineattributes.html b/api/classes/inlineattributes.html index 59729567fb..c4061a5c10 100644 --- a/api/classes/inlineattributes.html +++ b/api/classes/inlineattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/italics.html b/api/classes/italics.html index 642182287d..fd18d00de1 100644 --- a/api/classes/italics.html +++ b/api/classes/italics.html @@ -117,7 +117,7 @@Returns Italics
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/italicscomplexscript.html b/api/classes/italicscomplexscript.html index 1c0539f66c..72a15bd111 100644 --- a/api/classes/italicscomplexscript.html +++ b/api/classes/italicscomplexscript.html @@ -117,7 +117,7 @@
Returns ItalicsComplexScript
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/keeplines.html b/api/classes/keeplines.html index 1c149c5810..78c98d116b 100644 --- a/api/classes/keeplines.html +++ b/api/classes/keeplines.html @@ -117,7 +117,7 @@
Returns KeepLines
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/keepnext.html b/api/classes/keepnext.html index 139537d3b1..016812cdb0 100644 --- a/api/classes/keepnext.html +++ b/api/classes/keepnext.html @@ -117,7 +117,7 @@
Returns KeepNext
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/keywords.html b/api/classes/keywords.html index eeba1dbd65..85eafd2215 100644 --- a/api/classes/keywords.html +++ b/api/classes/keywords.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/lastmodifiedby.html b/api/classes/lastmodifiedby.html index 0d5ac08d27..9f08999b9e 100644 --- a/api/classes/lastmodifiedby.html +++ b/api/classes/lastmodifiedby.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/lefttabstop.html b/api/classes/lefttabstop.html index 8e54a89478..02b0356387 100644 --- a/api/classes/lefttabstop.html +++ b/api/classes/lefttabstop.html @@ -117,7 +117,7 @@
Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/level.html b/api/classes/level.html index a5c4cf34c1..61e1757854 100644 --- a/api/classes/level.html +++ b/api/classes/level.html @@ -143,7 +143,7 @@
Parameters
@@ -179,7 +179,7 @@Returns boolean
@@ -200,7 +200,7 @@Parameters
@@ -224,7 +224,7 @@Parameters
@@ -248,7 +248,7 @@Parameters
@@ -272,7 +272,7 @@Returns Level
@@ -290,7 +290,7 @@Returns Level
@@ -308,7 +308,7 @@Returns Level
@@ -326,7 +326,7 @@Parameters
@@ -350,7 +350,7 @@Returns void
@@ -368,7 +368,7 @@Returns Level
@@ -386,7 +386,7 @@Parameters
@@ -410,7 +410,7 @@Parameters
@@ -434,7 +434,7 @@Returns Level
@@ -452,7 +452,7 @@Returns Level
@@ -470,7 +470,7 @@Returns Level
@@ -488,7 +488,7 @@Returns Level
@@ -506,7 +506,7 @@Returns Level
@@ -524,7 +524,7 @@Parameters
@@ -548,7 +548,7 @@Returns Level
@@ -567,7 +567,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -588,7 +588,7 @@
Returns Level
@@ -606,7 +606,7 @@Parameters
@@ -630,7 +630,7 @@Parameters
@@ -654,7 +654,7 @@Returns Level
@@ -672,7 +672,7 @@Parameters
@@ -696,7 +696,7 @@Returns Level
@@ -714,7 +714,7 @@Returns Level
@@ -732,7 +732,7 @@Returns Level
@@ -750,7 +750,7 @@Returns Level
@@ -768,7 +768,7 @@Parameters
diff --git a/api/classes/levelbase.html b/api/classes/levelbase.html index 0b38556976..cd554a5ff1 100644 --- a/api/classes/levelbase.html +++ b/api/classes/levelbase.html @@ -151,7 +151,7 @@Parameters
@@ -190,7 +190,7 @@Returns boolean
@@ -211,7 +211,7 @@Parameters
@@ -234,7 +234,7 @@Parameters
@@ -257,7 +257,7 @@Parameters
@@ -280,7 +280,7 @@Returns Level
@@ -297,7 +297,7 @@Returns Level
@@ -314,7 +314,7 @@Returns Level
@@ -331,7 +331,7 @@Parameters
@@ -355,7 +355,7 @@Returns void
@@ -372,7 +372,7 @@Returns Level
@@ -389,7 +389,7 @@Parameters
@@ -412,7 +412,7 @@Parameters
@@ -435,7 +435,7 @@Returns Level
@@ -452,7 +452,7 @@Returns Level
@@ -469,7 +469,7 @@Returns Level
@@ -486,7 +486,7 @@Returns Level
@@ -503,7 +503,7 @@Returns Level
@@ -520,7 +520,7 @@Parameters
@@ -543,7 +543,7 @@Returns Level
@@ -562,7 +562,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -582,7 +582,7 @@
Returns Level
@@ -599,7 +599,7 @@Parameters
@@ -622,7 +622,7 @@Parameters
@@ -645,7 +645,7 @@Returns Level
@@ -662,7 +662,7 @@Parameters
@@ -685,7 +685,7 @@Returns Level
@@ -702,7 +702,7 @@Returns Level
@@ -719,7 +719,7 @@Returns Level
@@ -736,7 +736,7 @@Returns Level
@@ -753,7 +753,7 @@Parameters
diff --git a/api/classes/levelforoverride.html b/api/classes/levelforoverride.html index 30d903a3cf..9f030d5da9 100644 --- a/api/classes/levelforoverride.html +++ b/api/classes/levelforoverride.html @@ -144,7 +144,7 @@Inherited from LevelBase.constructor
Overrides XmlComponent.constructor
-- Defined in file/numbering/level.ts:93
+ - Defined in file/numbering/level.ts:93
Parameters
@@ -183,7 +183,7 @@Returns boolean
@@ -204,7 +204,7 @@Parameters
@@ -228,7 +228,7 @@Parameters
@@ -252,7 +252,7 @@Parameters
@@ -276,7 +276,7 @@Returns Level
@@ -294,7 +294,7 @@Returns Level
@@ -312,7 +312,7 @@Returns Level
@@ -330,7 +330,7 @@Parameters
@@ -354,7 +354,7 @@Returns void
@@ -372,7 +372,7 @@Returns Level
@@ -390,7 +390,7 @@Parameters
@@ -414,7 +414,7 @@Parameters
@@ -438,7 +438,7 @@Returns Level
@@ -456,7 +456,7 @@Returns Level
@@ -474,7 +474,7 @@Returns Level
@@ -492,7 +492,7 @@Returns Level
@@ -510,7 +510,7 @@Returns Level
@@ -528,7 +528,7 @@Parameters
@@ -552,7 +552,7 @@Returns Level
@@ -571,7 +571,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -592,7 +592,7 @@
Returns Level
@@ -610,7 +610,7 @@Parameters
@@ -634,7 +634,7 @@Parameters
@@ -658,7 +658,7 @@Returns Level
@@ -676,7 +676,7 @@Parameters
@@ -700,7 +700,7 @@Returns Level
@@ -718,7 +718,7 @@Returns Level
@@ -736,7 +736,7 @@Returns Level
@@ -754,7 +754,7 @@Returns Level
@@ -772,7 +772,7 @@Parameters
diff --git a/api/classes/leveloverride.html b/api/classes/leveloverride.html index b074c25b3e..641783ef45 100644 --- a/api/classes/leveloverride.html +++ b/api/classes/leveloverride.html @@ -118,7 +118,7 @@Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -165,7 +165,7 @@Returns LevelForOverride
@@ -186,7 +186,7 @@Parameters
@@ -210,7 +210,7 @@Returns void
@@ -229,7 +229,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/link.html b/api/classes/link.html index c49f2dda92..2d88757c95 100644 --- a/api/classes/link.html +++ b/api/classes/link.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/listparagraph.html b/api/classes/listparagraph.html index 23f8cbe059..742a9fae16 100644 --- a/api/classes/listparagraph.html +++ b/api/classes/listparagraph.html @@ -151,7 +151,7 @@
Returns ListParagraph
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/maxrighttabstop.html b/api/classes/maxrighttabstop.html index 9480accc64..ba598bdfb1 100644 --- a/api/classes/maxrighttabstop.html +++ b/api/classes/maxrighttabstop.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/media.html b/api/classes/media.html index 0ef9945fd7..3237d00580 100644 --- a/api/classes/media.html +++ b/api/classes/media.html @@ -111,7 +111,7 @@
Returns Media
@@ -131,7 +131,7 @@Returns IMediaData[]
@@ -151,7 +151,7 @@Parameters
@@ -180,7 +180,7 @@Parameters
@@ -203,7 +203,7 @@Parameters
diff --git a/api/classes/modified.html b/api/classes/modified.html index fb5b2a5936..57284896ba 100644 --- a/api/classes/modified.html +++ b/api/classes/modified.html @@ -117,7 +117,7 @@Returns Modified
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/multileveltype.html b/api/classes/multileveltype.html index 2ed63c0bca..88e723bbbb 100644 --- a/api/classes/multileveltype.html +++ b/api/classes/multileveltype.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/name.html b/api/classes/name.html index 2d9918d90d..72a80151c6 100644 --- a/api/classes/name.html +++ b/api/classes/name.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/next.html b/api/classes/next.html index ce789ee7c5..8b1914df30 100644 --- a/api/classes/next.html +++ b/api/classes/next.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/nonvisualpicproperties.html b/api/classes/nonvisualpicproperties.html index d5906a0a24..079c42f06f 100644 --- a/api/classes/nonvisualpicproperties.html +++ b/api/classes/nonvisualpicproperties.html @@ -117,7 +117,7 @@
Returns NonVisualPicProperties
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/nonvisualproperties.html b/api/classes/nonvisualproperties.html index 27012946f0..d4edca7c56 100644 --- a/api/classes/nonvisualproperties.html +++ b/api/classes/nonvisualproperties.html @@ -117,7 +117,7 @@
Returns NonVisualProperties
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/nonvisualpropertiesattributes.html b/api/classes/nonvisualpropertiesattributes.html index 2eabf80e04..abf98fdb3b 100644 --- a/api/classes/nonvisualpropertiesattributes.html +++ b/api/classes/nonvisualpropertiesattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/num.html b/api/classes/num.html index 9ab2df6ada..3bd97b558f 100644 --- a/api/classes/num.html +++ b/api/classes/num.html @@ -124,7 +124,7 @@Parameters
@@ -149,7 +149,7 @@Returns boolean
@@ -188,7 +188,7 @@Parameters
@@ -212,7 +212,7 @@Returns void
@@ -229,7 +229,7 @@Parameters
@@ -257,7 +257,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/numbering.html b/api/classes/numbering.html index 81bcebe4f7..bf1837e33e 100644 --- a/api/classes/numbering.html +++ b/api/classes/numbering.html @@ -119,7 +119,7 @@
Returns Numbering
@@ -140,7 +140,7 @@Returns boolean
@@ -161,7 +161,7 @@Parameters
@@ -184,7 +184,7 @@Returns AbstractNumbering
@@ -201,7 +201,7 @@Parameters
@@ -225,7 +225,7 @@Returns void
@@ -243,7 +243,7 @@Returns IXmlableObject diff --git a/api/classes/numberproperties.html b/api/classes/numberproperties.html index 9ef4a0248f..be38fb68c5 100644 --- a/api/classes/numberproperties.html +++ b/api/classes/numberproperties.html @@ -117,7 +117,7 @@
Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/offset.html b/api/classes/offset.html index d8b1da5c9f..278c2a4c3b 100644 --- a/api/classes/offset.html +++ b/api/classes/offset.html @@ -117,7 +117,7 @@
Returns Offset
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/offsetattributes.html b/api/classes/offsetattributes.html index d327272732..532e74d99e 100644 --- a/api/classes/offsetattributes.html +++ b/api/classes/offsetattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/override.html b/api/classes/override.html index 8f09c1fee3..5f8a03f61c 100644 --- a/api/classes/override.html +++ b/api/classes/override.html @@ -117,7 +117,7 @@Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/overrideattributes.html b/api/classes/overrideattributes.html index 812aabfc44..1abcc1c5ca 100644 --- a/api/classes/overrideattributes.html +++ b/api/classes/overrideattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/packer.html b/api/classes/packer.html index d363289be0..ef1e17172d 100644 --- a/api/classes/packer.html +++ b/api/classes/packer.html @@ -105,7 +105,7 @@Returns Packer
@@ -125,7 +125,7 @@Parameters
@@ -148,7 +148,7 @@Parameters
@@ -171,7 +171,7 @@Parameters
diff --git a/api/classes/page.html b/api/classes/page.html index 7e834758df..d5ccbd35e3 100644 --- a/api/classes/page.html +++ b/api/classes/page.html @@ -117,7 +117,7 @@Returns Page
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/pageborders.html b/api/classes/pageborders.html index 8f1b75e0e1..c05ff464bd 100644 --- a/api/classes/pageborders.html +++ b/api/classes/pageborders.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -207,7 +207,7 @@Returns IXmlableObject diff --git a/api/classes/pagebreak.html b/api/classes/pagebreak.html index 6a029b5a4f..46cbad285e 100644 --- a/api/classes/pagebreak.html +++ b/api/classes/pagebreak.html @@ -134,7 +134,7 @@
Returns PageBreak
@@ -155,7 +155,7 @@Returns boolean
@@ -176,7 +176,7 @@Parameters
@@ -200,7 +200,7 @@Returns Run
@@ -218,7 +218,7 @@Returns Run
@@ -236,7 +236,7 @@Returns Run
@@ -254,7 +254,7 @@Parameters
@@ -278,7 +278,7 @@Returns void
@@ -296,7 +296,7 @@Returns Run
@@ -314,7 +314,7 @@Parameters
@@ -341,7 +341,7 @@Returns Run
@@ -359,7 +359,7 @@Returns Run
@@ -378,7 +378,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -399,7 +399,7 @@
Returns Run
@@ -417,7 +417,7 @@Parameters
@@ -441,7 +441,7 @@Returns Run
@@ -459,7 +459,7 @@Returns Run
@@ -477,7 +477,7 @@Parameters
@@ -501,7 +501,7 @@Returns Run
@@ -519,7 +519,7 @@Returns Run
@@ -537,7 +537,7 @@Returns Run
@@ -555,7 +555,7 @@Parameters
diff --git a/api/classes/pagebreakbefore.html b/api/classes/pagebreakbefore.html index 45bca092bc..ac53f84e03 100644 --- a/api/classes/pagebreakbefore.html +++ b/api/classes/pagebreakbefore.html @@ -124,7 +124,7 @@Returns PageBreakBefore
@@ -145,7 +145,7 @@Returns boolean
@@ -166,7 +166,7 @@Parameters
@@ -190,7 +190,7 @@Returns void
@@ -209,7 +209,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/pagemargin.html b/api/classes/pagemargin.html index 1e3f49aa72..3ff4147e6c 100644 --- a/api/classes/pagemargin.html +++ b/api/classes/pagemargin.html @@ -117,7 +117,7 @@
Parameters
@@ -165,7 +165,7 @@Returns boolean
@@ -186,7 +186,7 @@Parameters
@@ -210,7 +210,7 @@Returns void
@@ -229,7 +229,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/pagemarginattributes.html b/api/classes/pagemarginattributes.html index 2aca4c6344..bb29cdeb7f 100644 --- a/api/classes/pagemarginattributes.html +++ b/api/classes/pagemarginattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/pagenumbertype.html b/api/classes/pagenumbertype.html index bc91eb8a14..1012ea4776 100644 --- a/api/classes/pagenumbertype.html +++ b/api/classes/pagenumbertype.html @@ -117,7 +117,7 @@Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/pagenumbertypeattributes.html b/api/classes/pagenumbertypeattributes.html index ea0bb8b24e..c189b83e3e 100644 --- a/api/classes/pagenumbertypeattributes.html +++ b/api/classes/pagenumbertypeattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/pagesize.html b/api/classes/pagesize.html index 48acc17c08..f64742a96a 100644 --- a/api/classes/pagesize.html +++ b/api/classes/pagesize.html @@ -117,7 +117,7 @@Parameters
@@ -150,7 +150,7 @@Returns boolean
@@ -171,7 +171,7 @@Parameters
@@ -195,7 +195,7 @@Returns void
@@ -214,7 +214,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/pagesizeattributes.html b/api/classes/pagesizeattributes.html index 50606b085a..77e5b81a86 100644 --- a/api/classes/pagesizeattributes.html +++ b/api/classes/pagesizeattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/paragraph.html b/api/classes/paragraph.html index ae87f5d797..95271c5a5f 100644 --- a/api/classes/paragraph.html +++ b/api/classes/paragraph.html @@ -165,7 +165,7 @@Parameters
@@ -191,7 +191,7 @@Returns Border
@@ -209,7 +209,7 @@Returns boolean
@@ -226,7 +226,7 @@Returns ParagraphProperties
@@ -246,7 +246,7 @@Parameters
@@ -270,7 +270,7 @@Parameters
@@ -293,7 +293,7 @@Parameters
@@ -316,7 +316,7 @@Parameters
@@ -339,7 +339,7 @@Parameters
@@ -362,7 +362,7 @@Parameters
@@ -385,7 +385,7 @@Parameters
@@ -408,7 +408,7 @@Parameters
@@ -431,7 +431,7 @@Returns Paragraph
@@ -448,7 +448,7 @@Parameters
@@ -471,7 +471,7 @@Returns Paragraph
@@ -488,7 +488,7 @@Parameters
@@ -514,7 +514,7 @@Parameters
@@ -537,7 +537,7 @@Returns Paragraph
@@ -554,7 +554,7 @@Parameters
@@ -578,7 +578,7 @@Returns void
@@ -595,7 +595,7 @@Returns Paragraph
@@ -612,7 +612,7 @@Returns Paragraph
@@ -629,7 +629,7 @@Returns Paragraph
@@ -646,7 +646,7 @@Returns Paragraph
@@ -663,7 +663,7 @@Returns Paragraph
@@ -680,7 +680,7 @@Returns Paragraph
@@ -697,7 +697,7 @@Returns Paragraph
@@ -714,7 +714,7 @@Returns Paragraph
@@ -731,7 +731,7 @@Parameters
@@ -754,7 +754,7 @@Returns Paragraph
@@ -771,7 +771,7 @@Returns Paragraph
@@ -788,7 +788,7 @@Returns Paragraph
@@ -805,7 +805,7 @@Returns Paragraph
@@ -822,7 +822,7 @@Parameters
@@ -848,7 +848,7 @@Parameters
@@ -871,7 +871,7 @@Returns Paragraph
@@ -888,7 +888,7 @@Returns Paragraph
@@ -907,7 +907,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -927,7 +927,7 @@
Parameters
@@ -950,7 +950,7 @@Returns Paragraph
@@ -967,7 +967,7 @@Parameters
@@ -993,7 +993,7 @@Parameters
@@ -1019,7 +1019,7 @@Parameters
@@ -1045,7 +1045,7 @@Parameters
@@ -1068,7 +1068,7 @@Returns Paragraph
@@ -1085,7 +1085,7 @@Parameters
@@ -1108,7 +1108,7 @@Returns Paragraph
@@ -1125,7 +1125,7 @@Returns Paragraph
diff --git a/api/classes/paragraphproperties.html b/api/classes/paragraphproperties.html index 0932261af5..ebb8594d9b 100644 --- a/api/classes/paragraphproperties.html +++ b/api/classes/paragraphproperties.html @@ -125,7 +125,7 @@Returns ParagraphProperties
@@ -141,7 +141,7 @@Returns boolean
@@ -180,7 +180,7 @@Parameters
@@ -203,7 +203,7 @@Returns void
@@ -221,7 +221,7 @@Returns void
@@ -240,7 +240,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -260,7 +260,7 @@
Parameters
diff --git a/api/classes/paragraphpropertiesdefaults.html b/api/classes/paragraphpropertiesdefaults.html index aa0cef26ad..1b6e702b1b 100644 --- a/api/classes/paragraphpropertiesdefaults.html +++ b/api/classes/paragraphpropertiesdefaults.html @@ -117,7 +117,7 @@Returns ParagraphPropertiesDefaults
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/paragraphstyle.html b/api/classes/paragraphstyle.html index d27147888e..5b4d3ec09a 100644 --- a/api/classes/paragraphstyle.html +++ b/api/classes/paragraphstyle.html @@ -162,7 +162,7 @@
Parameters
@@ -192,7 +192,7 @@Returns boolean
@@ -213,7 +213,7 @@Parameters
@@ -236,7 +236,7 @@Parameters
@@ -259,7 +259,7 @@Parameters
@@ -282,7 +282,7 @@Returns ParagraphStyle
@@ -299,7 +299,7 @@Parameters
@@ -322,7 +322,7 @@Returns ParagraphStyle
@@ -339,7 +339,7 @@Returns ParagraphStyle
@@ -356,7 +356,7 @@Parameters
@@ -379,7 +379,7 @@Parameters
@@ -403,7 +403,7 @@Returns void
@@ -420,7 +420,7 @@Returns ParagraphStyle
@@ -437,7 +437,7 @@Parameters
@@ -460,7 +460,7 @@Parameters
@@ -483,7 +483,7 @@Returns ParagraphStyle
@@ -500,7 +500,7 @@Returns ParagraphStyle
@@ -517,7 +517,7 @@Returns ParagraphStyle
@@ -534,7 +534,7 @@Returns ParagraphStyle
@@ -551,7 +551,7 @@Returns ParagraphStyle
@@ -568,7 +568,7 @@Parameters
@@ -591,7 +591,7 @@Parameters
@@ -614,7 +614,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -700,7 +700,7 @@Returns ParagraphStyle
@@ -717,7 +717,7 @@Returns ParagraphStyle
@@ -734,7 +734,7 @@Returns ParagraphStyle
@@ -751,7 +751,7 @@Parameters
@@ -774,7 +774,7 @@Returns ParagraphStyle
@@ -791,7 +791,7 @@Parameters
@@ -814,7 +814,7 @@Returns ParagraphStyle
@@ -831,7 +831,7 @@Returns ParagraphStyle
@@ -848,7 +848,7 @@Returns ParagraphStyle
@@ -865,7 +865,7 @@Returns ParagraphStyle
@@ -882,7 +882,7 @@Parameters
@@ -905,7 +905,7 @@Parameters
@@ -931,7 +931,7 @@Returns ParagraphStyle
diff --git a/api/classes/pic.html b/api/classes/pic.html index 96fb5f278f..7211d4e707 100644 --- a/api/classes/pic.html +++ b/api/classes/pic.html @@ -118,7 +118,7 @@Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -172,7 +172,7 @@Parameters
@@ -196,7 +196,7 @@Returns void
@@ -215,7 +215,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -235,7 +235,7 @@
Parameters
diff --git a/api/classes/picattributes.html b/api/classes/picattributes.html index dbbbb07ae4..cd245074e4 100644 --- a/api/classes/picattributes.html +++ b/api/classes/picattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/piclocks.html b/api/classes/piclocks.html index babd480334..f40d30e9d0 100644 --- a/api/classes/piclocks.html +++ b/api/classes/piclocks.html @@ -117,7 +117,7 @@Returns PicLocks
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/piclocksattributes.html b/api/classes/piclocksattributes.html index cb3c4afd9f..03b1502ea4 100644 --- a/api/classes/piclocksattributes.html +++ b/api/classes/piclocksattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/picturerun.html b/api/classes/picturerun.html index 892eb1ca4d..364ef06d6d 100644 --- a/api/classes/picturerun.html +++ b/api/classes/picturerun.html @@ -135,7 +135,7 @@Parameters
@@ -165,7 +165,7 @@Returns boolean
@@ -186,7 +186,7 @@Parameters
@@ -210,7 +210,7 @@Returns Run
@@ -228,7 +228,7 @@Returns Run
@@ -246,7 +246,7 @@Returns Run
@@ -264,7 +264,7 @@Parameters
@@ -288,7 +288,7 @@Returns void
@@ -306,7 +306,7 @@Returns Run
@@ -324,7 +324,7 @@Parameters
@@ -351,7 +351,7 @@Returns Run
@@ -369,7 +369,7 @@Returns Run
@@ -388,7 +388,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -409,7 +409,7 @@
Returns Run
@@ -426,7 +426,7 @@Parameters
@@ -453,7 +453,7 @@Parameters
@@ -477,7 +477,7 @@Returns Run
@@ -495,7 +495,7 @@Returns Run
@@ -513,7 +513,7 @@Parameters
@@ -537,7 +537,7 @@Returns Run
@@ -555,7 +555,7 @@Returns Run
@@ -573,7 +573,7 @@Returns Run
@@ -591,7 +591,7 @@Parameters
diff --git a/api/classes/positionoffset.html b/api/classes/positionoffset.html index 5323fff5ab..8674daaa9b 100644 --- a/api/classes/positionoffset.html +++ b/api/classes/positionoffset.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/preferredtablewidth.html b/api/classes/preferredtablewidth.html index 467d516010..f2ae1fc1dc 100644 --- a/api/classes/preferredtablewidth.html +++ b/api/classes/preferredtablewidth.html @@ -117,7 +117,7 @@
Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/presetgeometry.html b/api/classes/presetgeometry.html index 67f435bd80..870c61677e 100644 --- a/api/classes/presetgeometry.html +++ b/api/classes/presetgeometry.html @@ -117,7 +117,7 @@
Returns PresetGeometry
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/presetgeometryattributes.html b/api/classes/presetgeometryattributes.html index 99bb2c2d6c..3c5b753d79 100644 --- a/api/classes/presetgeometryattributes.html +++ b/api/classes/presetgeometryattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/quickformat.html b/api/classes/quickformat.html index d234e8639b..b4ba58e92d 100644 --- a/api/classes/quickformat.html +++ b/api/classes/quickformat.html @@ -117,7 +117,7 @@Returns QuickFormat
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/relationship.html b/api/classes/relationship.html index 0055c2b629..381f1835df 100644 --- a/api/classes/relationship.html +++ b/api/classes/relationship.html @@ -117,7 +117,7 @@
Parameters
@@ -153,7 +153,7 @@Returns boolean
@@ -174,7 +174,7 @@Parameters
@@ -198,7 +198,7 @@Returns void
@@ -217,7 +217,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/relationshipattributes.html b/api/classes/relationshipattributes.html index d956f09400..477ed5e338 100644 --- a/api/classes/relationshipattributes.html +++ b/api/classes/relationshipattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/relationships.html b/api/classes/relationships.html index de446bd5ac..4398ae0177 100644 --- a/api/classes/relationships.html +++ b/api/classes/relationships.html @@ -120,7 +120,7 @@Returns Relationships
@@ -141,7 +141,7 @@Returns boolean
@@ -158,7 +158,7 @@Returns number
@@ -179,7 +179,7 @@Parameters
@@ -202,7 +202,7 @@Parameters
@@ -225,7 +225,7 @@Parameters
@@ -258,7 +258,7 @@Returns void
@@ -277,7 +277,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/relationshipsattributes.html b/api/classes/relationshipsattributes.html index d4d39a6720..102ffdbf9e 100644 --- a/api/classes/relationshipsattributes.html +++ b/api/classes/relationshipsattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/revision.html b/api/classes/revision.html index f31899b532..9b443b9ca0 100644 --- a/api/classes/revision.html +++ b/api/classes/revision.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/righttabstop.html b/api/classes/righttabstop.html index 1db8488aec..0695eb7509 100644 --- a/api/classes/righttabstop.html +++ b/api/classes/righttabstop.html @@ -117,7 +117,7 @@
Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/righttoleft.html b/api/classes/righttoleft.html index f4122fa64d..290edbc218 100644 --- a/api/classes/righttoleft.html +++ b/api/classes/righttoleft.html @@ -117,7 +117,7 @@
Returns RightToLeft
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/rsid.html b/api/classes/rsid.html index 63d5594646..c74f2bc13d 100644 --- a/api/classes/rsid.html +++ b/api/classes/rsid.html @@ -118,7 +118,7 @@
Inherited from XmlComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/xml-component.ts:7
+ - Defined in file/xml-components/xml-component.ts:7
Parameters
@@ -145,7 +145,7 @@Returns boolean
@@ -166,7 +166,7 @@Parameters
@@ -190,7 +190,7 @@Returns void
@@ -209,7 +209,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/run.html b/api/classes/run.html index 27fb066171..4fa53d9319 100644 --- a/api/classes/run.html +++ b/api/classes/run.html @@ -160,7 +160,7 @@
Returns Run
@@ -181,7 +181,7 @@Returns boolean
@@ -202,7 +202,7 @@Parameters
@@ -225,7 +225,7 @@Returns Run
@@ -242,7 +242,7 @@Returns Run
@@ -259,7 +259,7 @@Returns Run
@@ -276,7 +276,7 @@Parameters
@@ -300,7 +300,7 @@Returns void
@@ -317,7 +317,7 @@Returns Run
@@ -334,7 +334,7 @@Parameters
@@ -360,7 +360,7 @@Returns Run
@@ -377,7 +377,7 @@Returns Run
@@ -396,7 +396,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -416,7 +416,7 @@
Returns Run
@@ -433,7 +433,7 @@Parameters
@@ -456,7 +456,7 @@Returns Run
@@ -473,7 +473,7 @@Returns Run
@@ -490,7 +490,7 @@Parameters
@@ -513,7 +513,7 @@Returns Run
@@ -530,7 +530,7 @@Returns Run
@@ -547,7 +547,7 @@Returns Run
@@ -564,7 +564,7 @@Parameters
diff --git a/api/classes/runfonts.html b/api/classes/runfonts.html index c56a067688..b70338c9a0 100644 --- a/api/classes/runfonts.html +++ b/api/classes/runfonts.html @@ -117,7 +117,7 @@Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/runproperties.html b/api/classes/runproperties.html index 9400b40b67..861d81f1f6 100644 --- a/api/classes/runproperties.html +++ b/api/classes/runproperties.html @@ -118,7 +118,7 @@
Returns RunProperties
@@ -139,7 +139,7 @@Returns boolean
@@ -160,7 +160,7 @@Parameters
@@ -184,7 +184,7 @@Returns void
@@ -203,7 +203,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -223,7 +223,7 @@
Parameters
diff --git a/api/classes/runpropertiesdefaults.html b/api/classes/runpropertiesdefaults.html index 840ffbda37..c6ffcec872 100644 --- a/api/classes/runpropertiesdefaults.html +++ b/api/classes/runpropertiesdefaults.html @@ -119,7 +119,7 @@Returns RunPropertiesDefaults
@@ -140,7 +140,7 @@Returns boolean
@@ -161,7 +161,7 @@Parameters
@@ -185,7 +185,7 @@Returns void
@@ -202,7 +202,7 @@Parameters
@@ -227,7 +227,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -247,7 +247,7 @@
Parameters
diff --git a/api/classes/sectionproperties.html b/api/classes/sectionproperties.html index d937c89879..5f0de272ff 100644 --- a/api/classes/sectionproperties.html +++ b/api/classes/sectionproperties.html @@ -118,7 +118,7 @@Parameters
@@ -145,7 +145,7 @@Returns boolean
@@ -162,7 +162,7 @@Returns SectionPropertiesOptions
@@ -183,7 +183,7 @@Parameters
@@ -207,7 +207,7 @@Returns void
@@ -226,7 +226,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/semihidden.html b/api/classes/semihidden.html index 892c55ae4c..b574fdf954 100644 --- a/api/classes/semihidden.html +++ b/api/classes/semihidden.html @@ -117,7 +117,7 @@
Returns SemiHidden
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/separate.html b/api/classes/separate.html index 79dbdf239e..1ecc75b938 100644 --- a/api/classes/separate.html +++ b/api/classes/separate.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/seperator.html b/api/classes/seperator.html index ede24a3b29..86fe22f882 100644 --- a/api/classes/seperator.html +++ b/api/classes/seperator.html @@ -117,7 +117,7 @@
Returns Seperator
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/seperatorrun.html b/api/classes/seperatorrun.html index 6bd187ba32..4e94f857dc 100644 --- a/api/classes/seperatorrun.html +++ b/api/classes/seperatorrun.html @@ -134,7 +134,7 @@
Returns SeperatorRun
@@ -155,7 +155,7 @@Returns boolean
@@ -176,7 +176,7 @@Parameters
@@ -200,7 +200,7 @@Returns Run
@@ -218,7 +218,7 @@Returns Run
@@ -236,7 +236,7 @@Returns Run
@@ -254,7 +254,7 @@Parameters
@@ -278,7 +278,7 @@Returns void
@@ -296,7 +296,7 @@Returns Run
@@ -314,7 +314,7 @@Parameters
@@ -341,7 +341,7 @@Returns Run
@@ -359,7 +359,7 @@Returns Run
@@ -378,7 +378,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -399,7 +399,7 @@
Returns Run
@@ -417,7 +417,7 @@Parameters
@@ -441,7 +441,7 @@Returns Run
@@ -459,7 +459,7 @@Returns Run
@@ -477,7 +477,7 @@Parameters
@@ -501,7 +501,7 @@Returns Run
@@ -519,7 +519,7 @@Returns Run
@@ -537,7 +537,7 @@Returns Run
@@ -555,7 +555,7 @@Parameters
diff --git a/api/classes/sequentialidentifier.html b/api/classes/sequentialidentifier.html index 93847a3898..850926e190 100644 --- a/api/classes/sequentialidentifier.html +++ b/api/classes/sequentialidentifier.html @@ -134,7 +134,7 @@Parameters
@@ -161,7 +161,7 @@Returns boolean
@@ -182,7 +182,7 @@Parameters
@@ -206,7 +206,7 @@Returns Run
@@ -224,7 +224,7 @@Returns Run
@@ -242,7 +242,7 @@Returns Run
@@ -260,7 +260,7 @@Parameters
@@ -284,7 +284,7 @@Returns void
@@ -302,7 +302,7 @@Returns Run
@@ -320,7 +320,7 @@Parameters
@@ -347,7 +347,7 @@Returns Run
@@ -365,7 +365,7 @@Returns Run
@@ -384,7 +384,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -405,7 +405,7 @@
Returns Run
@@ -423,7 +423,7 @@Parameters
@@ -447,7 +447,7 @@Returns Run
@@ -465,7 +465,7 @@Returns Run
@@ -483,7 +483,7 @@Parameters
@@ -507,7 +507,7 @@Returns Run
@@ -525,7 +525,7 @@Returns Run
@@ -543,7 +543,7 @@Returns Run
@@ -561,7 +561,7 @@Parameters
diff --git a/api/classes/sequentialidentifierinstruction.html b/api/classes/sequentialidentifierinstruction.html index c6b49b5808..3b0513782f 100644 --- a/api/classes/sequentialidentifierinstruction.html +++ b/api/classes/sequentialidentifierinstruction.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/settings.html b/api/classes/settings.html index 17caad0e2c..9be3819c5f 100644 --- a/api/classes/settings.html +++ b/api/classes/settings.html @@ -118,7 +118,7 @@
Returns Settings
@@ -139,7 +139,7 @@Returns boolean
@@ -160,7 +160,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -201,7 +201,7 @@Returns void
@@ -220,7 +220,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/settingsattributes.html b/api/classes/settingsattributes.html index 8ac66248f5..4f26463bd9 100644 --- a/api/classes/settingsattributes.html +++ b/api/classes/settingsattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/shadow.html b/api/classes/shadow.html index f56e8a3f5f..546d0d1bcd 100644 --- a/api/classes/shadow.html +++ b/api/classes/shadow.html @@ -117,7 +117,7 @@Returns Shadow
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/shapeproperties.html b/api/classes/shapeproperties.html index 12d2002435..c03ae26ca9 100644 --- a/api/classes/shapeproperties.html +++ b/api/classes/shapeproperties.html @@ -118,7 +118,7 @@
Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -169,7 +169,7 @@Parameters
@@ -193,7 +193,7 @@Returns void
@@ -212,7 +212,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -232,7 +232,7 @@
Parameters
diff --git a/api/classes/shapepropertiesattributes.html b/api/classes/shapepropertiesattributes.html index 32c60a060a..fa32173731 100644 --- a/api/classes/shapepropertiesattributes.html +++ b/api/classes/shapepropertiesattributes.html @@ -117,7 +117,7 @@Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/simplepos.html b/api/classes/simplepos.html index b64aa4b161..62399aa46c 100644 --- a/api/classes/simplepos.html +++ b/api/classes/simplepos.html @@ -117,7 +117,7 @@Returns SimplePos
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/singleunderline.html b/api/classes/singleunderline.html index 9e8711d1f1..ff22b47990 100644 --- a/api/classes/singleunderline.html +++ b/api/classes/singleunderline.html @@ -117,7 +117,7 @@
Returns SingleUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/size.html b/api/classes/size.html index b96ebb7bac..81f1a7b640 100644 --- a/api/classes/size.html +++ b/api/classes/size.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/sizecomplexscript.html b/api/classes/sizecomplexscript.html index c5b32e859d..133f565bf4 100644 --- a/api/classes/sizecomplexscript.html +++ b/api/classes/sizecomplexscript.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/smallcaps.html b/api/classes/smallcaps.html index 3d1c4ea40e..969a416ad6 100644 --- a/api/classes/smallcaps.html +++ b/api/classes/smallcaps.html @@ -120,7 +120,7 @@
Returns SmallCaps
@@ -142,7 +142,7 @@Inherited from BaseXmlComponent.IsDeleted
Overrides BaseXmlComponent.IsDeleted
-- Defined in file/xml-components/base.ts:14
+ - Defined in file/xml-components/base.ts:14
Returns boolean
@@ -164,7 +164,7 @@Inherited from XmlComponent.addChildElement
Overrides XmlComponent.addChildElement
-- Defined in file/xml-components/xml-component.ts:34
+ - Defined in file/xml-components/xml-component.ts:34
Parameters
@@ -189,7 +189,7 @@Inherited from XmlComponent.delete
Overrides XmlComponent.delete
-- Defined in file/xml-components/xml-component.ts:40
+ - Defined in file/xml-components/xml-component.ts:40
Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/sourcerectangle.html b/api/classes/sourcerectangle.html index 5d34a6e982..c311cf4ef1 100644 --- a/api/classes/sourcerectangle.html +++ b/api/classes/sourcerectangle.html @@ -117,7 +117,7 @@
Returns SourceRectangle
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/spacing.html b/api/classes/spacing.html index c6e1ab3549..cabb4d439a 100644 --- a/api/classes/spacing.html +++ b/api/classes/spacing.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/stretch.html b/api/classes/stretch.html index 85e8d5211a..ea980289ca 100644 --- a/api/classes/stretch.html +++ b/api/classes/stretch.html @@ -117,7 +117,7 @@
Returns Stretch
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/strike.html b/api/classes/strike.html index 6abfc4a55c..7262688d7b 100644 --- a/api/classes/strike.html +++ b/api/classes/strike.html @@ -117,7 +117,7 @@
Returns Strike
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/structureddocumenttagcontent.html b/api/classes/structureddocumenttagcontent.html index 9fcce6cbf5..ff55000192 100644 --- a/api/classes/structureddocumenttagcontent.html +++ b/api/classes/structureddocumenttagcontent.html @@ -117,7 +117,7 @@
Returns StructuredDocumentTagContent
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/structureddocumenttagproperties.html b/api/classes/structureddocumenttagproperties.html index ec463c699f..6557c60c22 100644 --- a/api/classes/structureddocumenttagproperties.html +++ b/api/classes/structureddocumenttagproperties.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/style.html b/api/classes/style.html index 5dafef9ee2..7a5a1052dd 100644 --- a/api/classes/style.html +++ b/api/classes/style.html @@ -130,7 +130,7 @@styleId: string
@@ -171,7 +171,7 @@
Parameters
@@ -152,7 +152,7 @@Inherited from BaseXmlComponent.IsDeleted
Overrides BaseXmlComponent.IsDeleted
-- Defined in file/xml-components/base.ts:14
+ - Defined in file/xml-components/base.ts:14
Returns boolean
@@ -193,7 +193,7 @@Inherited from XmlComponent.addChildElement
Overrides XmlComponent.addChildElement
-- Defined in file/xml-components/xml-component.ts:34
+ - Defined in file/xml-components/xml-component.ts:34
Parameters
@@ -218,7 +218,7 @@Inherited from XmlComponent.delete
Overrides XmlComponent.delete
-- Defined in file/xml-components/xml-component.ts:40
+ - Defined in file/xml-components/xml-component.ts:40
Returns void
@@ -237,7 +237,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -257,7 +257,7 @@
Parameters
diff --git a/api/classes/stylelevel.html b/api/classes/stylelevel.html index db3ec69b84..83d26ef4de 100644 --- a/api/classes/stylelevel.html +++ b/api/classes/stylelevel.html @@ -104,7 +104,7 @@Parameters
@@ -129,7 +129,7 @@Parameters
@@ -148,7 +148,7 @@Returns boolean
@@ -169,7 +169,7 @@Parameters
@@ -192,7 +192,7 @@Parameters
@@ -218,7 +218,7 @@Returns DocumentDefaults
@@ -235,7 +235,7 @@Parameters
@@ -262,7 +262,7 @@Returns void
@@ -281,7 +281,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -301,7 +301,7 @@
Parameters
diff --git a/api/classes/subject.html b/api/classes/subject.html index a8b2ccd371..aa4ca00d5e 100644 --- a/api/classes/subject.html +++ b/api/classes/subject.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/subscript.html b/api/classes/subscript.html index 9536550ad1..7329923fa6 100644 --- a/api/classes/subscript.html +++ b/api/classes/subscript.html @@ -117,7 +117,7 @@
Returns SubScript
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/superscript.html b/api/classes/superscript.html index b36890ecb7..7477602a68 100644 --- a/api/classes/superscript.html +++ b/api/classes/superscript.html @@ -117,7 +117,7 @@
Returns SuperScript
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tab.html b/api/classes/tab.html index d9e49bc0a3..17f7b6008c 100644 --- a/api/classes/tab.html +++ b/api/classes/tab.html @@ -117,7 +117,7 @@
Returns Tab
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tabattributes.html b/api/classes/tabattributes.html index 3130d87550..410b0887fd 100644 --- a/api/classes/tabattributes.html +++ b/api/classes/tabattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -146,7 +146,7 @@Returns boolean
@@ -168,7 +168,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -186,7 +186,7 @@Parameters
diff --git a/api/classes/table.html b/api/classes/table.html index a5aaf2d000..f4ab82e6e4 100644 --- a/api/classes/table.html +++ b/api/classes/table.html @@ -123,7 +123,7 @@Parameters
@@ -156,7 +156,7 @@Returns boolean
@@ -173,7 +173,7 @@Returns TableProperties
@@ -194,7 +194,7 @@Parameters
@@ -218,7 +218,7 @@Returns void
@@ -235,7 +235,7 @@Parameters
@@ -258,7 +258,7 @@Parameters
@@ -284,7 +284,7 @@Parameters
@@ -309,7 +309,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -329,7 +329,7 @@
Returns Table
@@ -346,7 +346,7 @@Parameters
diff --git a/api/classes/tableborders.html b/api/classes/tableborders.html index 980c4fe3d3..1636525f63 100644 --- a/api/classes/tableborders.html +++ b/api/classes/tableborders.html @@ -117,7 +117,7 @@Returns TableBorders
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tablecell.html b/api/classes/tablecell.html index acd5366f87..e451c9e474 100644 --- a/api/classes/tablecell.html +++ b/api/classes/tablecell.html @@ -120,7 +120,7 @@
Returns TableCell
@@ -140,7 +140,7 @@Returns TableCellProperties
@@ -158,7 +158,7 @@Returns boolean
@@ -179,7 +179,7 @@Parameters
@@ -202,7 +202,7 @@Parameters
@@ -225,7 +225,7 @@Parameters
@@ -249,7 +249,7 @@Returns void
@@ -267,7 +267,7 @@Returns IXmlableObject diff --git a/api/classes/tablecellborders.html b/api/classes/tablecellborders.html index 1fcc2bb0ba..77759561ee 100644 --- a/api/classes/tablecellborders.html +++ b/api/classes/tablecellborders.html @@ -121,7 +121,7 @@
Returns TableCellBorders
@@ -142,7 +142,7 @@Returns boolean
@@ -162,7 +162,7 @@Parameters
@@ -192,7 +192,7 @@Parameters
@@ -215,7 +215,7 @@Parameters
@@ -244,7 +244,7 @@Parameters
@@ -273,7 +273,7 @@Parameters
@@ -303,7 +303,7 @@Returns void
@@ -321,7 +321,7 @@Returns IXmlableObject diff --git a/api/classes/tablecellmargin.html b/api/classes/tablecellmargin.html index 80f8c69222..c4c0c5f27b 100644 --- a/api/classes/tablecellmargin.html +++ b/api/classes/tablecellmargin.html @@ -121,7 +121,7 @@
Returns TableCellMargin
@@ -142,7 +142,7 @@Returns boolean
@@ -162,7 +162,7 @@Parameters
@@ -189,7 +189,7 @@Parameters
@@ -212,7 +212,7 @@Parameters
@@ -238,7 +238,7 @@Parameters
@@ -264,7 +264,7 @@Parameters
@@ -291,7 +291,7 @@Returns void
@@ -309,7 +309,7 @@Returns IXmlableObject diff --git a/api/classes/tablecellproperties.html b/api/classes/tablecellproperties.html index 13f80ccf29..a67c7078bd 100644 --- a/api/classes/tablecellproperties.html +++ b/api/classes/tablecellproperties.html @@ -123,7 +123,7 @@
Returns TableCellProperties
@@ -143,7 +143,7 @@Returns TableCellBorders
@@ -161,7 +161,7 @@Returns boolean
@@ -182,7 +182,7 @@Parameters
@@ -205,7 +205,7 @@Parameters
@@ -228,7 +228,7 @@Parameters
@@ -252,7 +252,7 @@Returns void
@@ -271,7 +271,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -291,7 +291,7 @@
Parameters
@@ -314,7 +314,7 @@Parameters
@@ -337,7 +337,7 @@Parameters
diff --git a/api/classes/tablecellshading.html b/api/classes/tablecellshading.html index 573aac8e18..1ecab8254a 100644 --- a/api/classes/tablecellshading.html +++ b/api/classes/tablecellshading.html @@ -124,7 +124,7 @@Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -172,7 +172,7 @@Parameters
@@ -196,7 +196,7 @@Returns void
@@ -215,7 +215,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tablecellwidth.html b/api/classes/tablecellwidth.html index 9214f9c9ca..18294bd784 100644 --- a/api/classes/tablecellwidth.html +++ b/api/classes/tablecellwidth.html @@ -124,7 +124,7 @@
Parameters
@@ -154,7 +154,7 @@Returns boolean
@@ -175,7 +175,7 @@Parameters
@@ -199,7 +199,7 @@Returns void
@@ -218,7 +218,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tablefloatoptionsattributes.html b/api/classes/tablefloatoptionsattributes.html index c412473180..c6e6392b32 100644 --- a/api/classes/tablefloatoptionsattributes.html +++ b/api/classes/tablefloatoptionsattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/tablefloatproperties.html b/api/classes/tablefloatproperties.html index eae8ba2012..655727294b 100644 --- a/api/classes/tablefloatproperties.html +++ b/api/classes/tablefloatproperties.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tablegrid.html b/api/classes/tablegrid.html index 91bbf78bf7..2fd546a8e2 100644 --- a/api/classes/tablegrid.html +++ b/api/classes/tablegrid.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tablelayout.html b/api/classes/tablelayout.html index 0a175b7139..eba2892764 100644 --- a/api/classes/tablelayout.html +++ b/api/classes/tablelayout.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tableofcontents.html b/api/classes/tableofcontents.html index 9b4cd8484d..6af52d4abf 100644 --- a/api/classes/tableofcontents.html +++ b/api/classes/tableofcontents.html @@ -117,7 +117,7 @@
Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tableproperties.html b/api/classes/tableproperties.html index 6e3cdb9738..c3d8e3a605 100644 --- a/api/classes/tableproperties.html +++ b/api/classes/tableproperties.html @@ -126,7 +126,7 @@
Inherited from XmlComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/xml-component.ts:7
+ - Defined in file/xml-components/xml-component.ts:7
Parameters
@@ -152,7 +152,7 @@Returns TableCellMargin
@@ -171,7 +171,7 @@Inherited from BaseXmlComponent.IsDeleted
Overrides BaseXmlComponent.IsDeleted
-- Defined in file/xml-components/base.ts:14
+ - Defined in file/xml-components/base.ts:14
Returns boolean
@@ -193,7 +193,7 @@Inherited from XmlComponent.addChildElement
Overrides XmlComponent.addChildElement
-- Defined in file/xml-components/xml-component.ts:34
+ - Defined in file/xml-components/xml-component.ts:34
Parameters
@@ -218,7 +218,7 @@Inherited from XmlComponent.delete
Overrides XmlComponent.delete
-- Defined in file/xml-components/xml-component.ts:40
+ - Defined in file/xml-components/xml-component.ts:40
Returns void
@@ -237,7 +237,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -257,7 +257,7 @@
Returns TableProperties
@@ -274,7 +274,7 @@Returns TableProperties
@@ -291,7 +291,7 @@Parameters
@@ -314,7 +314,7 @@Parameters
diff --git a/api/classes/tablerow.html b/api/classes/tablerow.html index 464e101df3..c1c55a8e6c 100644 --- a/api/classes/tablerow.html +++ b/api/classes/tablerow.html @@ -120,7 +120,7 @@Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -191,7 +191,7 @@Parameters
@@ -218,7 +218,7 @@Returns void
@@ -235,7 +235,7 @@Parameters
@@ -258,7 +258,7 @@Parameters
@@ -286,7 +286,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tablerowproperties.html b/api/classes/tablerowproperties.html index be0578ff08..8b5e1000c9 100644 --- a/api/classes/tablerowproperties.html +++ b/api/classes/tablerowproperties.html @@ -117,7 +117,7 @@
Returns TableRowProperties
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tabstop.html b/api/classes/tabstop.html index a8bfdf2139..5d4dc910f3 100644 --- a/api/classes/tabstop.html +++ b/api/classes/tabstop.html @@ -131,7 +131,7 @@
Parameters
@@ -158,7 +158,7 @@Returns boolean
@@ -179,7 +179,7 @@Parameters
@@ -203,7 +203,7 @@Returns void
@@ -222,7 +222,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/tabstopitem.html b/api/classes/tabstopitem.html index 27e644cf95..e4a39fcd32 100644 --- a/api/classes/tabstopitem.html +++ b/api/classes/tabstopitem.html @@ -117,7 +117,7 @@
Parameters
@@ -150,7 +150,7 @@Returns boolean
@@ -171,7 +171,7 @@Parameters
@@ -195,7 +195,7 @@Returns void
@@ -214,7 +214,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/text.html b/api/classes/text.html index 4cdd2d95e2..60da752665 100644 --- a/api/classes/text.html +++ b/api/classes/text.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/textrun.html b/api/classes/textrun.html index 95fd1bb55c..6f2405e289 100644 --- a/api/classes/textrun.html +++ b/api/classes/textrun.html @@ -134,7 +134,7 @@
Parameters
@@ -161,7 +161,7 @@Returns boolean
@@ -182,7 +182,7 @@Parameters
@@ -206,7 +206,7 @@Returns Run
@@ -224,7 +224,7 @@Returns Run
@@ -242,7 +242,7 @@Returns Run
@@ -260,7 +260,7 @@Parameters
@@ -284,7 +284,7 @@Returns void
@@ -302,7 +302,7 @@Returns Run
@@ -320,7 +320,7 @@Parameters
@@ -347,7 +347,7 @@Returns Run
@@ -365,7 +365,7 @@Returns Run
@@ -384,7 +384,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -405,7 +405,7 @@
Returns Run
@@ -423,7 +423,7 @@Parameters
@@ -447,7 +447,7 @@Returns Run
@@ -465,7 +465,7 @@Returns Run
@@ -483,7 +483,7 @@Parameters
@@ -507,7 +507,7 @@Returns Run
@@ -525,7 +525,7 @@Returns Run
@@ -543,7 +543,7 @@Returns Run
@@ -561,7 +561,7 @@Parameters
diff --git a/api/classes/thematicbreak.html b/api/classes/thematicbreak.html index ddc7a523c9..d147dad6e7 100644 --- a/api/classes/thematicbreak.html +++ b/api/classes/thematicbreak.html @@ -117,7 +117,7 @@Returns ThematicBreak
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/thickunderline.html b/api/classes/thickunderline.html index 8869fe07aa..667a6c95ea 100644 --- a/api/classes/thickunderline.html +++ b/api/classes/thickunderline.html @@ -117,7 +117,7 @@
Returns ThickUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/title.html b/api/classes/title.html index b575ea12f8..810ef3114d 100644 --- a/api/classes/title.html +++ b/api/classes/title.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/titlepage.html b/api/classes/titlepage.html index c3ee848d29..85d2531062 100644 --- a/api/classes/titlepage.html +++ b/api/classes/titlepage.html @@ -117,7 +117,7 @@
Returns TitlePage
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/titlepageattributes.html b/api/classes/titlepageattributes.html index cc77b30650..0951e0d077 100644 --- a/api/classes/titlepageattributes.html +++ b/api/classes/titlepageattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/titlestyle.html b/api/classes/titlestyle.html index 51c57abe94..ee52c9d78e 100644 --- a/api/classes/titlestyle.html +++ b/api/classes/titlestyle.html @@ -151,7 +151,7 @@Returns TitleStyle
@@ -172,7 +172,7 @@Returns boolean
@@ -193,7 +193,7 @@Parameters
@@ -217,7 +217,7 @@Parameters
@@ -241,7 +241,7 @@Parameters
@@ -265,7 +265,7 @@Returns ParagraphStyle
@@ -283,7 +283,7 @@Parameters
@@ -307,7 +307,7 @@Returns ParagraphStyle
@@ -325,7 +325,7 @@Returns ParagraphStyle
@@ -343,7 +343,7 @@Parameters
@@ -367,7 +367,7 @@Parameters
@@ -391,7 +391,7 @@Returns void
@@ -409,7 +409,7 @@Returns ParagraphStyle
@@ -427,7 +427,7 @@Parameters
@@ -451,7 +451,7 @@Parameters
@@ -475,7 +475,7 @@Returns ParagraphStyle
@@ -493,7 +493,7 @@Returns ParagraphStyle
@@ -511,7 +511,7 @@Returns ParagraphStyle
@@ -529,7 +529,7 @@Returns ParagraphStyle
@@ -547,7 +547,7 @@Returns ParagraphStyle
@@ -565,7 +565,7 @@Parameters
@@ -589,7 +589,7 @@Parameters
@@ -613,7 +613,7 @@Returns ParagraphStyle
@@ -631,7 +631,7 @@Parameters
@@ -656,7 +656,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject @@ -677,7 +677,7 @@
Parameters
@@ -701,7 +701,7 @@Returns ParagraphStyle
@@ -719,7 +719,7 @@Returns ParagraphStyle
@@ -737,7 +737,7 @@Returns ParagraphStyle
@@ -755,7 +755,7 @@Parameters
@@ -779,7 +779,7 @@Returns ParagraphStyle
@@ -797,7 +797,7 @@Parameters
@@ -821,7 +821,7 @@Returns ParagraphStyle
@@ -839,7 +839,7 @@Returns ParagraphStyle
@@ -857,7 +857,7 @@Returns ParagraphStyle
@@ -875,7 +875,7 @@Returns ParagraphStyle
@@ -893,7 +893,7 @@Parameters
@@ -917,7 +917,7 @@Parameters
@@ -944,7 +944,7 @@Returns ParagraphStyle
diff --git a/api/classes/uipriority.html b/api/classes/uipriority.html index cc7a31f03f..d4b40461f5 100644 --- a/api/classes/uipriority.html +++ b/api/classes/uipriority.html @@ -117,7 +117,7 @@Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/underline.html b/api/classes/underline.html index cfa33cd1cd..864d01e7f4 100644 --- a/api/classes/underline.html +++ b/api/classes/underline.html @@ -117,7 +117,7 @@
Parameters
@@ -147,7 +147,7 @@Returns boolean
@@ -168,7 +168,7 @@Parameters
@@ -192,7 +192,7 @@Returns void
@@ -211,7 +211,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/unhidewhenused.html b/api/classes/unhidewhenused.html index 501b17a91b..8d4d27b58d 100644 --- a/api/classes/unhidewhenused.html +++ b/api/classes/unhidewhenused.html @@ -117,7 +117,7 @@
Returns UnhideWhenUsed
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/updatefields.html b/api/classes/updatefields.html index c15291f597..c511f4d227 100644 --- a/api/classes/updatefields.html +++ b/api/classes/updatefields.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/updatefieldsattributes.html b/api/classes/updatefieldsattributes.html index 5bbb3e2232..2af92eba66 100644 --- a/api/classes/updatefieldsattributes.html +++ b/api/classes/updatefieldsattributes.html @@ -117,7 +117,7 @@
Inherited from XmlAttributeComponent.constructor
Overrides BaseXmlComponent.constructor
-- Defined in file/xml-components/default-attributes.ts:9
+ - Defined in file/xml-components/default-attributes.ts:9
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -166,7 +166,7 @@Inherited from XmlAttributeComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/default-attributes.ts:16
+ - Defined in file/xml-components/default-attributes.ts:16
Returns IXmlableObject
@@ -184,7 +184,7 @@Parameters
diff --git a/api/classes/valign.html b/api/classes/valign.html index b0b955ad53..721c663e46 100644 --- a/api/classes/valign.html +++ b/api/classes/valign.html @@ -124,7 +124,7 @@Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -172,7 +172,7 @@Parameters
@@ -196,7 +196,7 @@Returns void
@@ -215,7 +215,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/verticalalign.html b/api/classes/verticalalign.html index 63247181b0..3a215b553d 100644 --- a/api/classes/verticalalign.html +++ b/api/classes/verticalalign.html @@ -128,7 +128,7 @@BOTTOM: = "bottom"
@@ -138,7 +138,7 @@
CENTER: = "center"
@@ -148,7 +148,7 @@
TOP: = "top"
@@ -166,7 +166,7 @@
Parameters
@@ -193,7 +193,7 @@Returns boolean
@@ -214,7 +214,7 @@Parameters
@@ -238,7 +238,7 @@Returns void
@@ -257,7 +257,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/verticalposition.html b/api/classes/verticalposition.html index b82ee9f2f3..ee8071b3b0 100644 --- a/api/classes/verticalposition.html +++ b/api/classes/verticalposition.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/vmerge.html b/api/classes/vmerge.html index f5f2db6f27..0b24a96ec1 100644 --- a/api/classes/vmerge.html +++ b/api/classes/vmerge.html @@ -124,7 +124,7 @@
Parameters
@@ -151,7 +151,7 @@Returns boolean
@@ -172,7 +172,7 @@Parameters
@@ -196,7 +196,7 @@Returns void
@@ -215,7 +215,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/waveunderline.html b/api/classes/waveunderline.html index 71c61d0291..057ce48219 100644 --- a/api/classes/waveunderline.html +++ b/api/classes/waveunderline.html @@ -117,7 +117,7 @@
Returns WaveUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/wavydoubleunderline.html b/api/classes/wavydoubleunderline.html index 6c7ea2f348..3ac5044052 100644 --- a/api/classes/wavydoubleunderline.html +++ b/api/classes/wavydoubleunderline.html @@ -117,7 +117,7 @@
Returns WavyDoubleUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/wavyheavyunderline.html b/api/classes/wavyheavyunderline.html index cc6b6e249c..6ca10c3887 100644 --- a/api/classes/wavyheavyunderline.html +++ b/api/classes/wavyheavyunderline.html @@ -117,7 +117,7 @@
Returns WavyHeavyUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/wordsunderline.html b/api/classes/wordsunderline.html index caf1b9899b..7426c07160 100644 --- a/api/classes/wordsunderline.html +++ b/api/classes/wordsunderline.html @@ -117,7 +117,7 @@
Returns WordsUnderline
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/wrapnone.html b/api/classes/wrapnone.html index b744e095bc..b8348a04b5 100644 --- a/api/classes/wrapnone.html +++ b/api/classes/wrapnone.html @@ -117,7 +117,7 @@
Returns WrapNone
@@ -138,7 +138,7 @@Returns boolean
@@ -159,7 +159,7 @@Parameters
@@ -183,7 +183,7 @@Returns void
@@ -202,7 +202,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/wrapsquare.html b/api/classes/wrapsquare.html index 89f45bfee7..25dd3d4a4a 100644 --- a/api/classes/wrapsquare.html +++ b/api/classes/wrapsquare.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/wraptight.html b/api/classes/wraptight.html index 0df8ee6f25..64ce77b832 100644 --- a/api/classes/wraptight.html +++ b/api/classes/wraptight.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/wraptopandbottom.html b/api/classes/wraptopandbottom.html index 4afc1bb520..ee313ccb9f 100644 --- a/api/classes/wraptopandbottom.html +++ b/api/classes/wraptopandbottom.html @@ -117,7 +117,7 @@
Parameters
@@ -144,7 +144,7 @@Returns boolean
@@ -165,7 +165,7 @@Parameters
@@ -189,7 +189,7 @@Returns void
@@ -208,7 +208,7 @@Inherited from XmlComponent.prepForXml
Overrides BaseXmlComponent.prepForXml
-- Defined in file/xml-components/xml-component.ts:14
+ - Defined in file/xml-components/xml-component.ts:14
Returns IXmlableObject diff --git a/api/classes/xmlattributecomponent.html b/api/classes/xmlattributecomponent.html index cbede0854a..617e422131 100644 --- a/api/classes/xmlattributecomponent.html +++ b/api/classes/xmlattributecomponent.html @@ -255,7 +255,7 @@
Parameters
@@ -282,7 +282,7 @@Returns boolean
@@ -303,7 +303,7 @@Returns IXmlableObject
@@ -320,7 +320,7 @@Parameters
diff --git a/api/classes/xmlcomponent.html b/api/classes/xmlcomponent.html index 34c8ce1ee3..9f70503544 100644 --- a/api/classes/xmlcomponent.html +++ b/api/classes/xmlcomponent.html @@ -623,7 +623,7 @@Parameters
@@ -650,7 +650,7 @@Returns boolean
@@ -670,7 +670,7 @@Parameters
@@ -693,7 +693,7 @@Returns void
@@ -711,7 +711,7 @@Returns IXmlableObject diff --git a/api/enums/alignmentoptions.html b/api/enums/alignmentoptions.html index 5f6a375e5b..09900b2a8d 100644 --- a/api/enums/alignmentoptions.html +++ b/api/enums/alignmentoptions.html @@ -91,7 +91,7 @@BOTH: = "both"
@@ -101,7 +101,7 @@
CENTER: = "center"
@@ -111,7 +111,7 @@
DISTRIBUTE: = "distribute"
@@ -121,7 +121,7 @@
END: = "end"
@@ -131,7 +131,7 @@
LEFT: = "left"
@@ -141,7 +141,7 @@
RIGHT: = "right"
@@ -151,7 +151,7 @@
START: = "start"
diff --git a/api/enums/borderstyle.html b/api/enums/borderstyle.html
index 9e771b5825..81cfbd8177 100644
--- a/api/enums/borderstyle.html
+++ b/api/enums/borderstyle.html
@@ -111,7 +111,7 @@
DASHED: = "dashed"
@@ -121,7 +121,7 @@
DASH_DOT_STROKED: = "dashDotStroked"
@@ -131,7 +131,7 @@
DASH_SMALL_GAP: = "dashSmallGap"
@@ -141,7 +141,7 @@
DOTTED: = "dotted"
@@ -151,7 +151,7 @@
DOT_DASH: = "dotDash"
@@ -161,7 +161,7 @@
DOT_DOT_DASH: = "dotDotDash"
@@ -171,7 +171,7 @@
DOUBLE: = "double"
@@ -181,7 +181,7 @@
DOUBLE_WAVE: = "doubleWave"
@@ -191,7 +191,7 @@
INSET: = "inset"
@@ -201,7 +201,7 @@
NIL: = "nil"
@@ -211,7 +211,7 @@
NONE: = "none"
@@ -221,7 +221,7 @@
OUTSET: = "outset"
@@ -231,7 +231,7 @@
SINGLE: = "single"
@@ -241,7 +241,7 @@
THICK: = "thick"
@@ -251,7 +251,7 @@
THICK_THIN_LARGE_GAP: = "thickThinLargeGap"
@@ -261,7 +261,7 @@
THICK_THIN_MEDIUM_GAP: = "thickThinMediumGap"
@@ -271,7 +271,7 @@
THICK_THIN_SMALL_GAP: = "thickThinSmallGap"
@@ -281,7 +281,7 @@
THIN_THICK_LARGE_GAP: = "thinThickLargeGap"
@@ -291,7 +291,7 @@
THIN_THICK_MEDIUM_GAP: = "thinThickMediumGap"
@@ -301,7 +301,7 @@
THIN_THICK_SMALL_GAP: = "thinThickSmallGap"
@@ -311,7 +311,7 @@
THIN_THICK_THIN_LARGE_GAP: = "thinThickThinLargeGap"
@@ -321,7 +321,7 @@
THIN_THICK_THIN_MEDIUM_GAP: = "thinThickThinMediumGap"
@@ -331,7 +331,7 @@
THIN_THICK_THIN_SMALL_GAP: = "thinThickThinSmallGap"
@@ -341,7 +341,7 @@
THREE_D_EMBOSS: = "threeDEmboss"
@@ -351,7 +351,7 @@
THREE_D_ENGRAVE: = "threeDEngrave"
@@ -361,7 +361,7 @@
TRIPLE: = "triple"
@@ -371,7 +371,7 @@
WAVE: = "wave"
diff --git a/api/enums/footerreferencetype.html b/api/enums/footerreferencetype.html
index 52a0ff8bfc..fb403a6c15 100644
--- a/api/enums/footerreferencetype.html
+++ b/api/enums/footerreferencetype.html
@@ -87,7 +87,7 @@
DEFAULT: = "default"
@@ -97,7 +97,7 @@
EVEN: = "even"
@@ -107,7 +107,7 @@
FIRST: = "first"
diff --git a/api/enums/footnotetype.html b/api/enums/footnotetype.html
index b9eab6702b..0b2218bec2 100644
--- a/api/enums/footnotetype.html
+++ b/api/enums/footnotetype.html
@@ -86,7 +86,7 @@
CONTINUATION_SEPERATOR: = "continuationSeparator"
@@ -96,7 +96,7 @@
SEPERATOR: = "separator"
diff --git a/api/enums/headerreferencetype.html b/api/enums/headerreferencetype.html
index d62fa9046a..cbd1909ae4 100644
--- a/api/enums/headerreferencetype.html
+++ b/api/enums/headerreferencetype.html
@@ -87,7 +87,7 @@
DEFAULT: = "default"
@@ -97,7 +97,7 @@
EVEN: = "even"
@@ -107,7 +107,7 @@
FIRST: = "first"
diff --git a/api/enums/horizontalpositionalign.html b/api/enums/horizontalpositionalign.html
index 9c9655d0a1..469b24f0dc 100644
--- a/api/enums/horizontalpositionalign.html
+++ b/api/enums/horizontalpositionalign.html
@@ -89,7 +89,7 @@
CENTER: = "center"
@@ -99,7 +99,7 @@
INSIDE: = "inside"
@@ -109,7 +109,7 @@
LEFT: = "left"
@@ -119,7 +119,7 @@
OUTSIDE: = "outside"
@@ -129,7 +129,7 @@
RIGHT: = "right"
diff --git a/api/enums/horizontalpositionrelativefrom.html b/api/enums/horizontalpositionrelativefrom.html
index 9b1c20cdee..962b51689e 100644
--- a/api/enums/horizontalpositionrelativefrom.html
+++ b/api/enums/horizontalpositionrelativefrom.html
@@ -92,7 +92,7 @@
CHARACTER: = "character"
@@ -102,7 +102,7 @@
COLUMN: = "column"
@@ -112,7 +112,7 @@
INSIDE_MARGIN: = "insideMargin"
@@ -122,7 +122,7 @@
LEFT_MARGIN: = "leftMargin"
@@ -132,7 +132,7 @@
MARGIN: = "margin"
@@ -142,7 +142,7 @@
OUTSIDE_MARGIN: = "outsideMargin"
@@ -152,7 +152,7 @@
PAGE: = "page"
@@ -162,7 +162,7 @@
RIGHT_MARGIN: = "rightMargin"
diff --git a/api/enums/leadertype.html b/api/enums/leadertype.html
index 342ceadc45..f58279d3e8 100644
--- a/api/enums/leadertype.html
+++ b/api/enums/leadertype.html
@@ -89,7 +89,7 @@
DOT: = "dot"
@@ -99,7 +99,7 @@
HYPHEN: = "hyphen"
@@ -109,7 +109,7 @@
MIDDLE_DOT: = "middleDot"
@@ -119,7 +119,7 @@
NONE: = "none"
@@ -129,7 +129,7 @@
UNDERSCORE: = "underscore"
diff --git a/api/enums/levelsuffix.html b/api/enums/levelsuffix.html
index b0dffb282c..2e488c0e20 100644
--- a/api/enums/levelsuffix.html
+++ b/api/enums/levelsuffix.html
@@ -87,7 +87,7 @@
NOTHING: = "nothing"
@@ -97,7 +97,7 @@
SPACE: = "space"
@@ -107,7 +107,7 @@
TAB: = "tab"
diff --git a/api/enums/pageborderdisplay.html b/api/enums/pageborderdisplay.html
index fa0c343cf6..bc6e681df9 100644
--- a/api/enums/pageborderdisplay.html
+++ b/api/enums/pageborderdisplay.html
@@ -87,7 +87,7 @@
ALL_PAGES: = "allPages"
@@ -97,7 +97,7 @@
FIRST_PAGE: = "firstPage"
@@ -107,7 +107,7 @@
NOT_FIRST_PAGE: = "notFirstPage"
diff --git a/api/enums/pageborderoffsetfrom.html b/api/enums/pageborderoffsetfrom.html
index 890b64b698..f3f5fa639c 100644
--- a/api/enums/pageborderoffsetfrom.html
+++ b/api/enums/pageborderoffsetfrom.html
@@ -86,7 +86,7 @@
PAGE: = "page"
@@ -96,7 +96,7 @@
TEXT: = "text"
diff --git a/api/enums/pageborderzorder.html b/api/enums/pageborderzorder.html
index e7a826c45d..ee098e8310 100644
--- a/api/enums/pageborderzorder.html
+++ b/api/enums/pageborderzorder.html
@@ -86,7 +86,7 @@
BACK: = "back"
@@ -96,7 +96,7 @@
FRONT: = "front"
diff --git a/api/enums/pagenumberformat.html b/api/enums/pagenumberformat.html
index 10853dca1a..1c7beff37c 100644
--- a/api/enums/pagenumberformat.html
+++ b/api/enums/pagenumberformat.html
@@ -96,7 +96,7 @@
CARDINAL_TEXT: = "cardinalText"
@@ -106,7 +106,7 @@
DECIMAL: = "decimal"
@@ -116,7 +116,7 @@
DECIMAL_ENCLOSED_CIRCLE: = "decimalEnclosedCircle"
@@ -126,7 +126,7 @@
DECIMAL_ENCLOSED_FULL_STOP: = "decimalEnclosedFullstop"
@@ -136,7 +136,7 @@
DECIMAL_ENCLOSED_PAREN: = "decimalEnclosedParen"
@@ -146,7 +146,7 @@
DECIMAL_ZERO: = "decimalZero"
@@ -156,7 +156,7 @@
LOWER_LETTER: = "lowerLetter"
@@ -166,7 +166,7 @@
LOWER_ROMAN: = "lowerRoman"
@@ -176,7 +176,7 @@
NONE: = "none"
@@ -186,7 +186,7 @@
ORDINAL_TEXT: = "ordinalText"
@@ -196,7 +196,7 @@
UPPER_LETTER: = "upperLetter"
@@ -206,7 +206,7 @@
UPPER_ROMAN: = "upperRoman"
diff --git a/api/enums/pageorientation.html b/api/enums/pageorientation.html
index 64d466f7f2..f7387290a4 100644
--- a/api/enums/pageorientation.html
+++ b/api/enums/pageorientation.html
@@ -86,7 +86,7 @@
LANDSCAPE: = "landscape"
@@ -96,7 +96,7 @@
PORTRAIT: = "portrait"
diff --git a/api/enums/placementposition.html b/api/enums/placementposition.html
index 55a1809e1e..3150f24450 100644
--- a/api/enums/placementposition.html
+++ b/api/enums/placementposition.html
@@ -86,7 +86,7 @@
FLOATING:
@@ -96,7 +96,7 @@
INLINE:
diff --git a/api/enums/relativehorizontalposition.html b/api/enums/relativehorizontalposition.html
index 06a8f21d7c..a78dd3a123 100644
--- a/api/enums/relativehorizontalposition.html
+++ b/api/enums/relativehorizontalposition.html
@@ -89,7 +89,7 @@
CENTER: = "center"
@@ -99,7 +99,7 @@
INSIDE: = "inside"
@@ -109,7 +109,7 @@
LEFT: = "left"
@@ -119,7 +119,7 @@
OUTSIDE: = "outside"
@@ -129,7 +129,7 @@
RIGHT: = "right"
diff --git a/api/enums/relativeverticalposition.html b/api/enums/relativeverticalposition.html
index 05709695ff..319ff63e70 100644
--- a/api/enums/relativeverticalposition.html
+++ b/api/enums/relativeverticalposition.html
@@ -90,7 +90,7 @@
BOTTOM: = "bottom"
@@ -100,7 +100,7 @@
CENTER: = "center"
@@ -110,7 +110,7 @@
INLINE: = "inline"
@@ -120,7 +120,7 @@
INSIDE: = "inside"
@@ -130,7 +130,7 @@
OUTSIDE: = "outside"
@@ -140,7 +140,7 @@
TOP: = "top"
diff --git a/api/enums/spacetype.html b/api/enums/spacetype.html
index a4396fe88c..f11e77a762 100644
--- a/api/enums/spacetype.html
+++ b/api/enums/spacetype.html
@@ -86,7 +86,7 @@
DEFAULT: = "default"
@@ -96,7 +96,7 @@
PRESERVE: = "preserve"
diff --git a/api/enums/tableanchortype.html b/api/enums/tableanchortype.html
index 7c8abd99a4..80e7389c28 100644
--- a/api/enums/tableanchortype.html
+++ b/api/enums/tableanchortype.html
@@ -87,7 +87,7 @@
MARGIN: = "margin"
@@ -97,7 +97,7 @@
PAGE: = "page"
@@ -107,7 +107,7 @@
TEXT: = "text"
diff --git a/api/enums/tablelayouttype.html b/api/enums/tablelayouttype.html
index 46afc5db1f..87e3e5df1a 100644
--- a/api/enums/tablelayouttype.html
+++ b/api/enums/tablelayouttype.html
@@ -86,7 +86,7 @@
AUTOFIT: = "autofit"
@@ -96,7 +96,7 @@
FIXED: = "fixed"
diff --git a/api/enums/tabvalue.html b/api/enums/tabvalue.html
index 76cb025c76..2313d04aeb 100644
--- a/api/enums/tabvalue.html
+++ b/api/enums/tabvalue.html
@@ -93,7 +93,7 @@
BAR: = "bar"
@@ -103,7 +103,7 @@
CENTER: = "center"
@@ -113,7 +113,7 @@
CLEAR: = "clear"
@@ -123,7 +123,7 @@
DECIMAL: = "decimal"
@@ -133,7 +133,7 @@
END: = "end"
@@ -143,7 +143,7 @@
LEFT: = "left"
@@ -153,7 +153,7 @@
NUM: = "num"
@@ -163,7 +163,7 @@
RIGHT: = "right"
@@ -173,7 +173,7 @@
START: = "start"
diff --git a/api/enums/targetmodetype.html b/api/enums/targetmodetype.html
index 49a3927652..00a8f7ce9e 100644
--- a/api/enums/targetmodetype.html
+++ b/api/enums/targetmodetype.html
@@ -85,7 +85,7 @@
EXTERNAL: = "External"
diff --git a/api/enums/textwrapstyle.html b/api/enums/textwrapstyle.html
index bfc58a4b79..06b61c7103 100644
--- a/api/enums/textwrapstyle.html
+++ b/api/enums/textwrapstyle.html
@@ -88,7 +88,7 @@
NONE:
@@ -98,7 +98,7 @@
SQUARE:
@@ -108,7 +108,7 @@
TIGHT:
@@ -118,7 +118,7 @@
TOP_AND_BOTTOM:
diff --git a/api/enums/verticalpositionalign.html b/api/enums/verticalpositionalign.html
index 236b8ddc3d..fb362e8775 100644
--- a/api/enums/verticalpositionalign.html
+++ b/api/enums/verticalpositionalign.html
@@ -89,7 +89,7 @@
BOTTOM: = "bottom"
@@ -99,7 +99,7 @@
CENTER: = "center"
@@ -109,7 +109,7 @@
INSIDE: = "inside"
@@ -119,7 +119,7 @@
OUTSIDE: = "outside"
@@ -129,7 +129,7 @@
TOP: = "top"
diff --git a/api/enums/verticalpositionrelativefrom.html b/api/enums/verticalpositionrelativefrom.html
index aad7d50136..8902a68539 100644
--- a/api/enums/verticalpositionrelativefrom.html
+++ b/api/enums/verticalpositionrelativefrom.html
@@ -92,7 +92,7 @@
BOTTOM_MARGIN: = "bottomMargin"
@@ -102,7 +102,7 @@
INSIDE_MARGIN: = "insideMargin"
@@ -112,7 +112,7 @@
LINE: = "line"
@@ -122,7 +122,7 @@
MARGIN: = "margin"
@@ -132,7 +132,7 @@
OUTSIDE_MARGIN: = "outsideMargin"
@@ -142,7 +142,7 @@
PAGE: = "page"
@@ -152,7 +152,7 @@
PARAGRAPH: = "paragraph"
@@ -162,7 +162,7 @@
TOP_MARGIN: = "topMargin"
diff --git a/api/enums/vmergetype.html b/api/enums/vmergetype.html
index 59e89e4785..8a55ee7573 100644
--- a/api/enums/vmergetype.html
+++ b/api/enums/vmergetype.html
@@ -93,7 +93,7 @@
CONTINUE: = "continue"
@@ -108,7 +108,7 @@
RESTART: = "restart"
diff --git a/api/enums/widthtype.html b/api/enums/widthtype.html
index d71b9163e3..f5bd8acff1 100644
--- a/api/enums/widthtype.html
+++ b/api/enums/widthtype.html
@@ -88,7 +88,7 @@
AUTO: = "auto"
@@ -103,7 +103,7 @@
DXA: = "dxa"
@@ -118,7 +118,7 @@
NIL: = "nil"
@@ -133,7 +133,7 @@
PERCENTAGE: = "pct"
diff --git a/api/enums/wraptextoption.html b/api/enums/wraptextoption.html
index f5e9b2a545..2ab4f60087 100644
--- a/api/enums/wraptextoption.html
+++ b/api/enums/wraptextoption.html
@@ -88,7 +88,7 @@
BOTH_SIDES: = "bothSides"
@@ -98,7 +98,7 @@
LARGEST: = "largest"
@@ -108,7 +108,7 @@
LEFT: = "left"
@@ -118,7 +118,7 @@
RIGHT: = "right"
diff --git a/api/globals.html b/api/globals.html
index f589df9d9a..9f950bdbf0 100644
--- a/api/globals.html
+++ b/api/globals.html
@@ -483,7 +483,7 @@
AttributeMap: object
@@ -498,7 +498,7 @@
RelationshipType: "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" | "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"
@@ -508,7 +508,7 @@
SectionPropertiesOptions: IPageSizeAttributes & IPageMarginAttributes & IColumnsAttributes & IDocGridAttributesProperties & IHeadersOptions & IFootersOptions & IPageNumberTypeAttributes & IPageBordersOptions & ITitlePageOptions
@@ -521,7 +521,7 @@
WORKAROUND: "" = ""
@@ -537,7 +537,7 @@
WORKAROUND2: "" = ""
@@ -553,7 +553,7 @@
WORKAROUND3: "" = ""
@@ -576,7 +576,7 @@
diff --git a/api/interfaces/ianchorattributes.html b/api/interfaces/ianchorattributes.html
index 783b40c54a..82791ef8af 100644
--- a/api/interfaces/ianchorattributes.html
+++ b/api/interfaces/ianchorattributes.html
@@ -107,7 +107,7 @@
allowOverlap: "0" | "1"
@@ -117,7 +117,7 @@
behindDoc: "0" | "1"
@@ -128,7 +128,7 @@
@@ -139,7 +139,7 @@
@@ -150,7 +150,7 @@
@@ -161,7 +161,7 @@
@@ -171,7 +171,7 @@
layoutInCell: "0" | "1"
@@ -181,7 +181,7 @@
locked: "0" | "1"
@@ -191,7 +191,7 @@
relativeHeight: undefined | number
@@ -201,7 +201,7 @@
simplePos: "0" | "1"
diff --git a/api/interfaces/iapppropertiesattributes.html b/api/interfaces/iapppropertiesattributes.html
index 24105ff158..97b30df8dc 100644
--- a/api/interfaces/iapppropertiesattributes.html
+++ b/api/interfaces/iapppropertiesattributes.html
@@ -94,7 +94,7 @@
vt: string
@@ -104,7 +104,7 @@
xmlns: string
diff --git a/api/interfaces/iattributesproperties.html b/api/interfaces/iattributesproperties.html
index ffddd58c5e..ac3cfbdba3 100644
--- a/api/interfaces/iattributesproperties.html
+++ b/api/interfaces/iattributesproperties.html
@@ -111,7 +111,7 @@
bottom: undefined | string
@@ -121,7 +121,7 @@
color: undefined | string
@@ -131,7 +131,7 @@
footer: undefined | string
@@ -141,7 +141,7 @@
gutter: undefined | string
@@ -151,7 +151,7 @@
h: undefined | string
@@ -161,7 +161,7 @@
header: undefined | string
@@ -171,7 +171,7 @@
left: undefined | string
@@ -181,7 +181,7 @@
linePitch: undefined | string
@@ -191,7 +191,7 @@
pos: string | number
@@ -201,7 +201,7 @@
right: undefined | string
@@ -211,7 +211,7 @@
rsidR: undefined | string
@@ -221,7 +221,7 @@
rsidRPr: undefined | string
@@ -231,7 +231,7 @@
rsidSect: undefined | string
@@ -241,7 +241,7 @@
space: undefined | string
@@ -251,7 +251,7 @@
sz: undefined | string
@@ -261,7 +261,7 @@
top: undefined | string
@@ -271,7 +271,7 @@
type: undefined | string
@@ -281,7 +281,7 @@
val: string | number | boolean
@@ -291,7 +291,7 @@
w: undefined | string
diff --git a/api/interfaces/ibookmarkendattributesproperties.html b/api/interfaces/ibookmarkendattributesproperties.html
index f1668c2672..cc64960df7 100644
--- a/api/interfaces/ibookmarkendattributesproperties.html
+++ b/api/interfaces/ibookmarkendattributesproperties.html
@@ -93,7 +93,7 @@
id: string
diff --git a/api/interfaces/ibookmarkstartattributesproperties.html b/api/interfaces/ibookmarkstartattributesproperties.html
index 7db7c9d4e0..9ed878fafb 100644
--- a/api/interfaces/ibookmarkstartattributesproperties.html
+++ b/api/interfaces/ibookmarkstartattributesproperties.html
@@ -94,7 +94,7 @@
id: string
@@ -104,7 +104,7 @@
name: string
diff --git a/api/interfaces/icolumnsattributes.html b/api/interfaces/icolumnsattributes.html
index 7ad70728d2..ecac33abb2 100644
--- a/api/interfaces/icolumnsattributes.html
+++ b/api/interfaces/icolumnsattributes.html
@@ -93,7 +93,7 @@
space: undefined | number
diff --git a/api/interfaces/icontenttypeattributes.html b/api/interfaces/icontenttypeattributes.html
index e936b415f9..fe7797ec65 100644
--- a/api/interfaces/icontenttypeattributes.html
+++ b/api/interfaces/icontenttypeattributes.html
@@ -93,7 +93,7 @@
xmlns: undefined | string
diff --git a/api/interfaces/idefaultattributes.html b/api/interfaces/idefaultattributes.html
index b11a5092b5..77ec784883 100644
--- a/api/interfaces/idefaultattributes.html
+++ b/api/interfaces/idefaultattributes.html
@@ -94,7 +94,7 @@
contentType: string
@@ -104,7 +104,7 @@
extension: undefined | string
diff --git a/api/interfaces/idistance.html b/api/interfaces/idistance.html
index 8baa1af8f8..cd6826b086 100644
--- a/api/interfaces/idistance.html
+++ b/api/interfaces/idistance.html
@@ -104,7 +104,7 @@
distB: undefined | number
@@ -114,7 +114,7 @@
distL: undefined | number
@@ -124,7 +124,7 @@
distR: undefined | number
@@ -134,7 +134,7 @@
distT: undefined | number
diff --git a/api/interfaces/idocgridattributesproperties.html b/api/interfaces/idocgridattributesproperties.html
index 5d4f719c23..ef3fe69418 100644
--- a/api/interfaces/idocgridattributesproperties.html
+++ b/api/interfaces/idocgridattributesproperties.html
@@ -93,7 +93,7 @@
linePitch: undefined | number
diff --git a/api/interfaces/idocpropertiesattributes.html b/api/interfaces/idocpropertiesattributes.html
index e6cdaa152f..0feca51a2b 100644
--- a/api/interfaces/idocpropertiesattributes.html
+++ b/api/interfaces/idocpropertiesattributes.html
@@ -95,7 +95,7 @@
descr: undefined | string
@@ -105,7 +105,7 @@
id: undefined | number
@@ -115,7 +115,7 @@
name: undefined | string
diff --git a/api/interfaces/idocumentattributesproperties.html b/api/interfaces/idocumentattributesproperties.html
index 4fac6260cb..ae9828e10f 100644
--- a/api/interfaces/idocumentattributesproperties.html
+++ b/api/interfaces/idocumentattributesproperties.html
@@ -115,7 +115,7 @@
Ignorable: undefined | string
@@ -125,7 +125,7 @@
cp: undefined | string
@@ -135,7 +135,7 @@
dc: undefined | string
@@ -145,7 +145,7 @@
dcmitype: undefined | string
@@ -155,7 +155,7 @@
dcterms: undefined | string
@@ -165,7 +165,7 @@
m: undefined | string
@@ -175,7 +175,7 @@
mc: undefined | string
@@ -185,7 +185,7 @@
o: undefined | string
@@ -195,7 +195,7 @@
r: undefined | string
@@ -205,7 +205,7 @@
type: undefined | string
@@ -215,7 +215,7 @@
v: undefined | string
@@ -225,7 +225,7 @@
w: undefined | string
@@ -235,7 +235,7 @@
w10: undefined | string
@@ -245,7 +245,7 @@
w14: undefined | string
@@ -255,7 +255,7 @@
w15: undefined | string
@@ -265,7 +265,7 @@
wne: undefined | string
@@ -275,7 +275,7 @@
wp: undefined | string
@@ -285,7 +285,7 @@
wp14: undefined | string
@@ -295,7 +295,7 @@
wpc: undefined | string
@@ -305,7 +305,7 @@
wpg: undefined | string
@@ -315,7 +315,7 @@
wpi: undefined | string
@@ -325,7 +325,7 @@
wps: undefined | string
@@ -335,7 +335,7 @@
xsi: undefined | string
diff --git a/api/interfaces/idocumentfooter.html b/api/interfaces/idocumentfooter.html
index 95865582ea..50fca50880 100644
--- a/api/interfaces/idocumentfooter.html
+++ b/api/interfaces/idocumentfooter.html
@@ -94,7 +94,7 @@
footer: FooterWrapper
@@ -104,7 +104,7 @@
type: FooterReferenceType
diff --git a/api/interfaces/idocumentheader.html b/api/interfaces/idocumentheader.html
index 3aea9d30bc..d2a3d72568 100644
--- a/api/interfaces/idocumentheader.html
+++ b/api/interfaces/idocumentheader.html
@@ -94,7 +94,7 @@
header: HeaderWrapper
@@ -104,7 +104,7 @@
type: HeaderReferenceType
diff --git a/api/interfaces/idocumenttemplate.html b/api/interfaces/idocumenttemplate.html
index b3584fb101..49f3f52f07 100644
--- a/api/interfaces/idocumenttemplate.html
+++ b/api/interfaces/idocumenttemplate.html
@@ -97,7 +97,7 @@
currentRelationshipId: number
@@ -107,7 +107,7 @@
footers: IDocumentFooter[]
@@ -117,7 +117,7 @@
headers: IDocumentHeader[]
@@ -127,7 +127,7 @@
styles: Styles
@@ -137,7 +137,7 @@
titlePageIsDefined: boolean
diff --git a/api/interfaces/idrawingoptions.html b/api/interfaces/idrawingoptions.html
index b726c26a73..101416109e 100644
--- a/api/interfaces/idrawingoptions.html
+++ b/api/interfaces/idrawingoptions.html
@@ -95,7 +95,7 @@
floating: IFloating
@@ -105,7 +105,7 @@
position: PlacementPosition
@@ -115,7 +115,7 @@
textWrapping: ITextWrapping
diff --git a/api/interfaces/ieffectextentattributes.html b/api/interfaces/ieffectextentattributes.html
index f997186782..0180b1a925 100644
--- a/api/interfaces/ieffectextentattributes.html
+++ b/api/interfaces/ieffectextentattributes.html
@@ -96,7 +96,7 @@
b: undefined | number
@@ -106,7 +106,7 @@
l: undefined | number
@@ -116,7 +116,7 @@
r: undefined | number
@@ -126,7 +126,7 @@
t: undefined | number
diff --git a/api/interfaces/iextentattributes.html b/api/interfaces/iextentattributes.html
index c8ee96a4ea..9d5d76a3f4 100644
--- a/api/interfaces/iextentattributes.html
+++ b/api/interfaces/iextentattributes.html
@@ -94,7 +94,7 @@
cx: undefined | number
@@ -104,7 +104,7 @@
cy: undefined | number
diff --git a/api/interfaces/iextentsattributes.html b/api/interfaces/iextentsattributes.html
index 68a412117b..f9b4612601 100644
--- a/api/interfaces/iextentsattributes.html
+++ b/api/interfaces/iextentsattributes.html
@@ -94,7 +94,7 @@
cx: undefined | number
@@ -104,7 +104,7 @@
cy: undefined | number
diff --git a/api/interfaces/ifileproperties.html b/api/interfaces/ifileproperties.html
index e649b530be..3f10d35466 100644
--- a/api/interfaces/ifileproperties.html
+++ b/api/interfaces/ifileproperties.html
@@ -93,7 +93,7 @@
template: IDocumentTemplate
diff --git a/api/interfaces/ifloating.html b/api/interfaces/ifloating.html
index f3bb395ff8..9245c9432e 100644
--- a/api/interfaces/ifloating.html
+++ b/api/interfaces/ifloating.html
@@ -98,7 +98,7 @@
allowOverlap: undefined | true | false
@@ -108,7 +108,7 @@
behindDocument: undefined | true | false
@@ -118,7 +118,7 @@
horizontalPosition: IHorizontalPositionOptions
@@ -128,7 +128,7 @@
layoutInCell: undefined | true | false
@@ -138,7 +138,7 @@
lockAnchor: undefined | true | false
@@ -148,7 +148,7 @@
verticalPosition: IVerticalPositionOptions
diff --git a/api/interfaces/ifooterattributesproperties.html b/api/interfaces/ifooterattributesproperties.html
index 536f76e770..afb06af35e 100644
--- a/api/interfaces/ifooterattributesproperties.html
+++ b/api/interfaces/ifooterattributesproperties.html
@@ -114,7 +114,7 @@
cp: undefined | string
@@ -124,7 +124,7 @@
dc: undefined | string
@@ -134,7 +134,7 @@
dcmitype: undefined | string
@@ -144,7 +144,7 @@
dcterms: undefined | string
@@ -154,7 +154,7 @@
m: undefined | string
@@ -164,7 +164,7 @@
mc: undefined | string
@@ -174,7 +174,7 @@
o: undefined | string
@@ -184,7 +184,7 @@
r: undefined | string
@@ -194,7 +194,7 @@
type: undefined | string
@@ -204,7 +204,7 @@
v: undefined | string
@@ -214,7 +214,7 @@
w: undefined | string
@@ -224,7 +224,7 @@
w10: undefined | string
@@ -234,7 +234,7 @@
w14: undefined | string
@@ -244,7 +244,7 @@
w15: undefined | string
@@ -254,7 +254,7 @@
wne: undefined | string
@@ -264,7 +264,7 @@
wp: undefined | string
@@ -274,7 +274,7 @@
wp14: undefined | string
@@ -284,7 +284,7 @@
wpc: undefined | string
@@ -294,7 +294,7 @@
wpg: undefined | string
@@ -304,7 +304,7 @@
wpi: undefined | string
@@ -314,7 +314,7 @@
wps: undefined | string
@@ -324,7 +324,7 @@
xsi: undefined | string
diff --git a/api/interfaces/ifooteroptions.html b/api/interfaces/ifooteroptions.html
index db53275cd9..7e0916ebcd 100644
--- a/api/interfaces/ifooteroptions.html
+++ b/api/interfaces/ifooteroptions.html
@@ -94,7 +94,7 @@
footerId: undefined | number
@@ -104,7 +104,7 @@
footerType: FooterReferenceType
diff --git a/api/interfaces/ifooterreferenceattributes.html b/api/interfaces/ifooterreferenceattributes.html
index a464680589..baa42a82aa 100644
--- a/api/interfaces/ifooterreferenceattributes.html
+++ b/api/interfaces/ifooterreferenceattributes.html
@@ -94,7 +94,7 @@
id: string
@@ -104,7 +104,7 @@
type: string
diff --git a/api/interfaces/ifootnoteattributesproperties.html b/api/interfaces/ifootnoteattributesproperties.html
index 4cdb6886b1..a09fb856e9 100644
--- a/api/interfaces/ifootnoteattributesproperties.html
+++ b/api/interfaces/ifootnoteattributesproperties.html
@@ -94,7 +94,7 @@
id: number
@@ -104,7 +104,7 @@
type: undefined | string
diff --git a/api/interfaces/ifootnotereferencerunattributesproperties.html b/api/interfaces/ifootnotereferencerunattributesproperties.html
index bd3d78663d..5e7c13b85b 100644
--- a/api/interfaces/ifootnotereferencerunattributesproperties.html
+++ b/api/interfaces/ifootnotereferencerunattributesproperties.html
@@ -93,7 +93,7 @@
id: number
diff --git a/api/interfaces/ifootnotesattributesproperties.html b/api/interfaces/ifootnotesattributesproperties.html
index c0e53a7f1c..8a60419cfb 100644
--- a/api/interfaces/ifootnotesattributesproperties.html
+++ b/api/interfaces/ifootnotesattributesproperties.html
@@ -109,7 +109,7 @@
Ignorable: undefined | string
@@ -119,7 +119,7 @@
m: undefined | string
@@ -129,7 +129,7 @@
mc: undefined | string
@@ -139,7 +139,7 @@
o: undefined | string
@@ -149,7 +149,7 @@
r: undefined | string
@@ -159,7 +159,7 @@
v: undefined | string
@@ -169,7 +169,7 @@
w: undefined | string
@@ -179,7 +179,7 @@
w10: undefined | string
@@ -189,7 +189,7 @@
w14: undefined | string
@@ -199,7 +199,7 @@
w15: undefined | string
@@ -209,7 +209,7 @@
wne: undefined | string
@@ -219,7 +219,7 @@
wp: undefined | string
@@ -229,7 +229,7 @@
wp14: undefined | string
@@ -239,7 +239,7 @@
wpc: undefined | string
@@ -249,7 +249,7 @@
wpg: undefined | string
@@ -259,7 +259,7 @@
wpi: undefined | string
@@ -269,7 +269,7 @@
wps: undefined | string
diff --git a/api/interfaces/igraphicdataattributes.html b/api/interfaces/igraphicdataattributes.html
index 1ea1447499..ad7e7fb46b 100644
--- a/api/interfaces/igraphicdataattributes.html
+++ b/api/interfaces/igraphicdataattributes.html
@@ -93,7 +93,7 @@
uri: undefined | string
diff --git a/api/interfaces/igraphicframelockattributes.html b/api/interfaces/igraphicframelockattributes.html
index ad8c713529..1bd34ee8af 100644
--- a/api/interfaces/igraphicframelockattributes.html
+++ b/api/interfaces/igraphicframelockattributes.html
@@ -94,7 +94,7 @@
noChangeAspect: undefined | number
@@ -104,7 +104,7 @@
xmlns: undefined | string
diff --git a/api/interfaces/iheaderattributesproperties.html b/api/interfaces/iheaderattributesproperties.html
index 3d834547bd..dbaa58e439 100644
--- a/api/interfaces/iheaderattributesproperties.html
+++ b/api/interfaces/iheaderattributesproperties.html
@@ -125,7 +125,7 @@
cp: undefined | string
@@ -135,7 +135,7 @@
cx: undefined | string
@@ -145,7 +145,7 @@
cx1: undefined | string
@@ -155,7 +155,7 @@
cx2: undefined | string
@@ -165,7 +165,7 @@
cx3: undefined | string
@@ -175,7 +175,7 @@
cx4: undefined | string
@@ -185,7 +185,7 @@
cx5: undefined | string
@@ -195,7 +195,7 @@
cx6: undefined | string
@@ -205,7 +205,7 @@
cx7: undefined | string
@@ -215,7 +215,7 @@
cx8: undefined | string
@@ -225,7 +225,7 @@
dc: undefined | string
@@ -235,7 +235,7 @@
dcmitype: undefined | string
@@ -245,7 +245,7 @@
dcterms: undefined | string
@@ -255,7 +255,7 @@
m: undefined | string
@@ -265,7 +265,7 @@
mc: undefined | string
@@ -275,7 +275,7 @@
o: undefined | string
@@ -285,7 +285,7 @@
r: undefined | string
@@ -295,7 +295,7 @@
type: undefined | string
@@ -305,7 +305,7 @@
v: undefined | string
@@ -315,7 +315,7 @@
w: undefined | string
@@ -325,7 +325,7 @@
w10: undefined | string
@@ -335,7 +335,7 @@
w14: undefined | string
@@ -345,7 +345,7 @@
w15: undefined | string
@@ -355,7 +355,7 @@
w16cid: string
@@ -365,7 +365,7 @@
w16se: string
@@ -375,7 +375,7 @@
wne: undefined | string
@@ -385,7 +385,7 @@
wp: undefined | string
@@ -395,7 +395,7 @@
wp14: undefined | string
@@ -405,7 +405,7 @@
wpc: undefined | string
@@ -415,7 +415,7 @@
wpg: undefined | string
@@ -425,7 +425,7 @@
wpi: undefined | string
@@ -435,7 +435,7 @@
wps: undefined | string
@@ -445,7 +445,7 @@
xsi: undefined | string
diff --git a/api/interfaces/iheaderfootergroup.html b/api/interfaces/iheaderfootergroup.html
index e07ef96cd9..3923f083a9 100644
--- a/api/interfaces/iheaderfootergroup.html
+++ b/api/interfaces/iheaderfootergroup.html
@@ -103,7 +103,7 @@
default: T
@@ -113,7 +113,7 @@
even: T
@@ -123,7 +123,7 @@
first: T
diff --git a/api/interfaces/iheaderoptions.html b/api/interfaces/iheaderoptions.html
index 4ee7d6b9e4..64c88b6efa 100644
--- a/api/interfaces/iheaderoptions.html
+++ b/api/interfaces/iheaderoptions.html
@@ -94,7 +94,7 @@
headerId: undefined | number
@@ -104,7 +104,7 @@
headerType: HeaderReferenceType
diff --git a/api/interfaces/iheaderreferenceattributes.html b/api/interfaces/iheaderreferenceattributes.html
index 74cd3fea3a..78633ffa8f 100644
--- a/api/interfaces/iheaderreferenceattributes.html
+++ b/api/interfaces/iheaderreferenceattributes.html
@@ -95,7 +95,7 @@
id: string
@@ -105,7 +105,7 @@
type: string
@@ -115,7 +115,7 @@
value: string
diff --git a/api/interfaces/ihorizontalpositionoptions.html b/api/interfaces/ihorizontalpositionoptions.html
index 329b1e69b3..f68227e972 100644
--- a/api/interfaces/ihorizontalpositionoptions.html
+++ b/api/interfaces/ihorizontalpositionoptions.html
@@ -95,7 +95,7 @@
align: HorizontalPositionAlign
@@ -105,7 +105,7 @@
offset: undefined | number
@@ -115,7 +115,7 @@
relative: HorizontalPositionRelativeFrom
diff --git a/api/interfaces/ihyperlinkattributesproperties.html b/api/interfaces/ihyperlinkattributesproperties.html
index 6da689a782..9129b2df39 100644
--- a/api/interfaces/ihyperlinkattributesproperties.html
+++ b/api/interfaces/ihyperlinkattributesproperties.html
@@ -95,7 +95,7 @@
anchor: undefined | string
@@ -105,7 +105,7 @@
history: number
@@ -115,7 +115,7 @@
id: undefined | string
diff --git a/api/interfaces/iindentattributesproperties.html b/api/interfaces/iindentattributesproperties.html
index 340d0d73e1..36f7413515 100644
--- a/api/interfaces/iindentattributesproperties.html
+++ b/api/interfaces/iindentattributesproperties.html
@@ -97,7 +97,7 @@
end: undefined | number
@@ -107,7 +107,7 @@
firstLine: undefined | number
@@ -117,7 +117,7 @@
hanging: undefined | number
@@ -127,7 +127,7 @@
left: undefined | number
@@ -137,7 +137,7 @@
start: undefined | number
diff --git a/api/interfaces/iinlineattributes.html b/api/interfaces/iinlineattributes.html
index b4b44dc919..47d3aa7220 100644
--- a/api/interfaces/iinlineattributes.html
+++ b/api/interfaces/iinlineattributes.html
@@ -102,7 +102,7 @@
@@ -113,7 +113,7 @@
@@ -124,7 +124,7 @@
@@ -135,7 +135,7 @@
diff --git a/api/interfaces/imediadata.html b/api/interfaces/imediadata.html
index 59c2e2d990..3fdcdbec8f 100644
--- a/api/interfaces/imediadata.html
+++ b/api/interfaces/imediadata.html
@@ -96,7 +96,7 @@
dimensions: IMediaDataDimensions
@@ -106,7 +106,7 @@
fileName: string
@@ -116,7 +116,7 @@
path: undefined | string
@@ -126,7 +126,7 @@
stream: Buffer | Uint8Array | ArrayBuffer
diff --git a/api/interfaces/imediadatadimensions.html b/api/interfaces/imediadatadimensions.html
index 1ee1147964..501111d444 100644
--- a/api/interfaces/imediadatadimensions.html
+++ b/api/interfaces/imediadatadimensions.html
@@ -94,7 +94,7 @@
emus: object
@@ -109,7 +109,7 @@
pixels: object
diff --git a/api/interfaces/inonvisualpropertiesattributes.html b/api/interfaces/inonvisualpropertiesattributes.html
index 55d12a76af..35e71f164b 100644
--- a/api/interfaces/inonvisualpropertiesattributes.html
+++ b/api/interfaces/inonvisualpropertiesattributes.html
@@ -95,7 +95,7 @@
descr: undefined | string
@@ -105,7 +105,7 @@
id: undefined | number
@@ -115,7 +115,7 @@
name: undefined | string
diff --git a/api/interfaces/ioffsetattributes.html b/api/interfaces/ioffsetattributes.html
index a142241e9e..fde7b89168 100644
--- a/api/interfaces/ioffsetattributes.html
+++ b/api/interfaces/ioffsetattributes.html
@@ -94,7 +94,7 @@
x: undefined | number
@@ -104,7 +104,7 @@
y: undefined | number
diff --git a/api/interfaces/ioverrideattributes.html b/api/interfaces/ioverrideattributes.html
index c982f782b4..b4cb811b87 100644
--- a/api/interfaces/ioverrideattributes.html
+++ b/api/interfaces/ioverrideattributes.html
@@ -94,7 +94,7 @@
contentType: string
@@ -104,7 +104,7 @@
partName: undefined | string
diff --git a/api/interfaces/ipageborderattributes.html b/api/interfaces/ipageborderattributes.html
index 8ff9b06678..f2e2a2035e 100644
--- a/api/interfaces/ipageborderattributes.html
+++ b/api/interfaces/ipageborderattributes.html
@@ -95,7 +95,7 @@
display: PageBorderDisplay
@@ -105,7 +105,7 @@
offsetFrom: PageBorderOffsetFrom
@@ -115,7 +115,7 @@
zOrder: PageBorderZOrder
diff --git a/api/interfaces/ipageborderconfiguration.html b/api/interfaces/ipageborderconfiguration.html
index b600909845..b691dccb30 100644
--- a/api/interfaces/ipageborderconfiguration.html
+++ b/api/interfaces/ipageborderconfiguration.html
@@ -96,7 +96,7 @@
color: undefined | string
@@ -106,7 +106,7 @@
size: undefined | number
@@ -116,7 +116,7 @@
space: undefined | number
@@ -126,7 +126,7 @@
style: BorderStyle
diff --git a/api/interfaces/ipagebordersoptions.html b/api/interfaces/ipagebordersoptions.html
index 5e99f763f5..ddee6863a4 100644
--- a/api/interfaces/ipagebordersoptions.html
+++ b/api/interfaces/ipagebordersoptions.html
@@ -97,7 +97,7 @@
pageBorderBottom: IPageBorderConfiguration
@@ -107,7 +107,7 @@
pageBorderLeft: IPageBorderConfiguration
@@ -117,7 +117,7 @@
pageBorderRight: IPageBorderConfiguration
@@ -127,7 +127,7 @@
pageBorderTop: IPageBorderConfiguration
@@ -137,7 +137,7 @@
pageBorders: IPageBorderAttributes
diff --git a/api/interfaces/ipagemarginattributes.html b/api/interfaces/ipagemarginattributes.html
index 2048b5fd47..b213b5ee1d 100644
--- a/api/interfaces/ipagemarginattributes.html
+++ b/api/interfaces/ipagemarginattributes.html
@@ -100,7 +100,7 @@
bottom: undefined | number
@@ -110,7 +110,7 @@
footer: undefined | number
@@ -120,7 +120,7 @@
gutter: undefined | number
@@ -130,7 +130,7 @@
header: undefined | number
@@ -140,7 +140,7 @@
left: undefined | number
@@ -150,7 +150,7 @@
mirror: undefined | true | false
@@ -160,7 +160,7 @@
right: undefined | number
@@ -170,7 +170,7 @@
top: undefined | number
diff --git a/api/interfaces/ipagenumbertypeattributes.html b/api/interfaces/ipagenumbertypeattributes.html
index db2c3d93ee..3d5c5dbfbd 100644
--- a/api/interfaces/ipagenumbertypeattributes.html
+++ b/api/interfaces/ipagenumbertypeattributes.html
@@ -94,7 +94,7 @@
pageNumberFormatType: PageNumberFormat
@@ -104,7 +104,7 @@
pageNumberStart: undefined | number
diff --git a/api/interfaces/ipagesizeattributes.html b/api/interfaces/ipagesizeattributes.html
index 965f5490c4..488dd79668 100644
--- a/api/interfaces/ipagesizeattributes.html
+++ b/api/interfaces/ipagesizeattributes.html
@@ -95,7 +95,7 @@
height: undefined | number
@@ -105,7 +105,7 @@
orientation: PageOrientation
@@ -115,7 +115,7 @@
width: undefined | number
diff --git a/api/interfaces/ipicattributes.html b/api/interfaces/ipicattributes.html
index ed39e506a0..a15aec1468 100644
--- a/api/interfaces/ipicattributes.html
+++ b/api/interfaces/ipicattributes.html
@@ -93,7 +93,7 @@
xmlns: undefined | string
diff --git a/api/interfaces/ipiclocksattributes.html b/api/interfaces/ipiclocksattributes.html
index 7faa329571..c92f7d8d2c 100644
--- a/api/interfaces/ipiclocksattributes.html
+++ b/api/interfaces/ipiclocksattributes.html
@@ -94,7 +94,7 @@
noChangeArrowheads: undefined | number
@@ -104,7 +104,7 @@
noChangeAspect: undefined | number
diff --git a/api/interfaces/ipresetgeometryattributes.html b/api/interfaces/ipresetgeometryattributes.html
index 2eb7255fe0..0719fd5935 100644
--- a/api/interfaces/ipresetgeometryattributes.html
+++ b/api/interfaces/ipresetgeometryattributes.html
@@ -93,7 +93,7 @@
prst: undefined | string
diff --git a/api/interfaces/ipropertiesoptions.html b/api/interfaces/ipropertiesoptions.html
index 00b84de0c7..5b83596ffe 100644
--- a/api/interfaces/ipropertiesoptions.html
+++ b/api/interfaces/ipropertiesoptions.html
@@ -100,7 +100,7 @@
creator: undefined | string
@@ -110,7 +110,7 @@
description: undefined | string
@@ -120,7 +120,7 @@
externalStyles: undefined | string
@@ -130,7 +130,7 @@
keywords: undefined | string
@@ -140,7 +140,7 @@
lastModifiedBy: undefined | string
@@ -150,7 +150,7 @@
revision: undefined | string
@@ -160,7 +160,7 @@
subject: undefined | string
@@ -170,7 +170,7 @@
title: undefined | string
diff --git a/api/interfaces/irelationshipattributesproperties.html b/api/interfaces/irelationshipattributesproperties.html
index 746e7f7796..0c511fa8a4 100644
--- a/api/interfaces/irelationshipattributesproperties.html
+++ b/api/interfaces/irelationshipattributesproperties.html
@@ -96,7 +96,7 @@
id: string
@@ -106,7 +106,7 @@
target: string
@@ -116,7 +116,7 @@
targetMode: undefined | string
@@ -126,7 +126,7 @@
type: string
diff --git a/api/interfaces/irelationshipsattributesproperties.html b/api/interfaces/irelationshipsattributesproperties.html
index 2b7e01e2e8..4c2d420c53 100644
--- a/api/interfaces/irelationshipsattributesproperties.html
+++ b/api/interfaces/irelationshipsattributesproperties.html
@@ -93,7 +93,7 @@
xmlns: string
diff --git a/api/interfaces/isettingsattributesproperties.html b/api/interfaces/isettingsattributesproperties.html
index 7255693a3f..da7bedf107 100644
--- a/api/interfaces/isettingsattributesproperties.html
+++ b/api/interfaces/isettingsattributesproperties.html
@@ -109,7 +109,7 @@
Ignorable: undefined | string
@@ -119,7 +119,7 @@
m: undefined | string
@@ -129,7 +129,7 @@
mc: undefined | string
@@ -139,7 +139,7 @@
o: undefined | string
@@ -149,7 +149,7 @@
r: undefined | string
@@ -159,7 +159,7 @@
v: undefined | string
@@ -169,7 +169,7 @@
w: undefined | string
@@ -179,7 +179,7 @@
w10: undefined | string
@@ -189,7 +189,7 @@
w14: undefined | string
@@ -199,7 +199,7 @@
w15: undefined | string
@@ -209,7 +209,7 @@
wne: undefined | string
@@ -219,7 +219,7 @@
wp: undefined | string
@@ -229,7 +229,7 @@
wp14: undefined | string
@@ -239,7 +239,7 @@
wpc: undefined | string
@@ -249,7 +249,7 @@
wpg: undefined | string
@@ -259,7 +259,7 @@
wpi: undefined | string
@@ -269,7 +269,7 @@
wps: undefined | string
diff --git a/api/interfaces/ishapepropertiesattributes.html b/api/interfaces/ishapepropertiesattributes.html
index 44116529f8..0d59372017 100644
--- a/api/interfaces/ishapepropertiesattributes.html
+++ b/api/interfaces/ishapepropertiesattributes.html
@@ -93,7 +93,7 @@
bwMode: undefined | string
diff --git a/api/interfaces/ispacingproperties.html b/api/interfaces/ispacingproperties.html
index 25acec2dbf..1635f1640d 100644
--- a/api/interfaces/ispacingproperties.html
+++ b/api/interfaces/ispacingproperties.html
@@ -96,7 +96,7 @@
after: undefined | number
@@ -106,7 +106,7 @@
before: undefined | number
@@ -116,7 +116,7 @@
line: undefined | number
@@ -126,7 +126,7 @@
lineRule: undefined | string
diff --git a/api/interfaces/istyleattributes.html b/api/interfaces/istyleattributes.html
index ac0e6af66d..d9174b46f0 100644
--- a/api/interfaces/istyleattributes.html
+++ b/api/interfaces/istyleattributes.html
@@ -96,7 +96,7 @@
customStyle: undefined | string
@@ -106,7 +106,7 @@
default: undefined | true | false
@@ -116,7 +116,7 @@
styleId: undefined | string
@@ -126,7 +126,7 @@
type: undefined | string
diff --git a/api/interfaces/itablecellshadingattributesproperties.html b/api/interfaces/itablecellshadingattributesproperties.html
index 0ed529c272..96e7123536 100644
--- a/api/interfaces/itablecellshadingattributesproperties.html
+++ b/api/interfaces/itablecellshadingattributesproperties.html
@@ -95,7 +95,7 @@
color: undefined | string
@@ -105,7 +105,7 @@
fill: undefined | string
@@ -115,7 +115,7 @@
val: undefined | string
diff --git a/api/interfaces/itablefloatoptions.html b/api/interfaces/itablefloatoptions.html
index 5895f91175..1fd59decf7 100644
--- a/api/interfaces/itablefloatoptions.html
+++ b/api/interfaces/itablefloatoptions.html
@@ -102,7 +102,7 @@
absoluteHorizontalPosition: undefined | number
@@ -121,7 +121,7 @@
absoluteVerticalPosition: undefined | number
@@ -140,7 +140,7 @@
bottomFromText: undefined | number
@@ -156,7 +156,7 @@
horizontalAnchor: TableAnchorType
@@ -176,7 +176,7 @@
leftFromText: undefined | number
@@ -192,7 +192,7 @@
relativeHorizontalPosition: RelativeHorizontalPosition
@@ -214,7 +214,7 @@
relativeVerticalPosition: RelativeVerticalPosition
@@ -236,7 +236,7 @@
rightFromText: undefined | number
@@ -252,7 +252,7 @@
topFromText: undefined | number
@@ -268,7 +268,7 @@
verticalAnchor: TableAnchorType
diff --git a/api/interfaces/itableofcontentsoptions.html b/api/interfaces/itableofcontentsoptions.html
index 7e341952cf..c2d917f614 100644
--- a/api/interfaces/itableofcontentsoptions.html
+++ b/api/interfaces/itableofcontentsoptions.html
@@ -119,7 +119,7 @@
captionLabel: undefined | string
@@ -136,7 +136,7 @@
captionLabelIncludingNumbers: undefined | string
@@ -154,7 +154,7 @@
entriesFromBookmark: undefined | string
@@ -170,7 +170,7 @@
entryAndPageNumberSeparator: undefined | string
@@ -186,7 +186,7 @@
headingStyleRange: undefined | string
@@ -205,7 +205,7 @@
hideTabAndPageNumbersInWebView: undefined | true | false
@@ -220,7 +220,7 @@
hyperlink: undefined | true | false
@@ -235,7 +235,7 @@
pageNumbersEntryLevelsRange: undefined | string
@@ -252,7 +252,7 @@
preserveNewLineInEntries: undefined | true | false
@@ -267,7 +267,7 @@
preserveTabInEntries: undefined | true | false
@@ -282,7 +282,7 @@
seqFieldIdentifierForPrefix: undefined | string
@@ -299,7 +299,7 @@
sequenceAndPageNumbersSeparator: undefined | string
@@ -315,7 +315,7 @@
stylesWithLevels: StyleLevel[]
@@ -333,7 +333,7 @@
tcFieldIdentifier: undefined | string
@@ -349,7 +349,7 @@
tcFieldLevelRange: undefined | string
@@ -367,7 +367,7 @@
useAppliedParagraphOutlineLevel: undefined | true | false
diff --git a/api/interfaces/itextwrapping.html b/api/interfaces/itextwrapping.html
index 6c9f2d7b68..83d07033a2 100644
--- a/api/interfaces/itextwrapping.html
+++ b/api/interfaces/itextwrapping.html
@@ -95,7 +95,7 @@
distanceFromText: IDistance
@@ -105,7 +105,7 @@
textWrapStyle: TextWrapStyle
@@ -115,7 +115,7 @@
wrapTextOption: WrapTextOption
diff --git a/api/interfaces/iupdatefieldsattributesproperties.html b/api/interfaces/iupdatefieldsattributesproperties.html
index 4a2c9f1e42..b2604aafd3 100644
--- a/api/interfaces/iupdatefieldsattributesproperties.html
+++ b/api/interfaces/iupdatefieldsattributesproperties.html
@@ -93,7 +93,7 @@
enabled: boolean
diff --git a/api/interfaces/iverticalpositionoptions.html b/api/interfaces/iverticalpositionoptions.html
index c28bfb2df4..9f8c105b0f 100644
--- a/api/interfaces/iverticalpositionoptions.html
+++ b/api/interfaces/iverticalpositionoptions.html
@@ -95,7 +95,7 @@
align: VerticalPositionAlign
@@ -105,7 +105,7 @@
offset: undefined | number
@@ -115,7 +115,7 @@
relative: VerticalPositionRelativeFrom
diff --git a/api/interfaces/ixmlableobject.html b/api/interfaces/ixmlableobject.html
index 4bb2722586..6085c6ff66 100644
--- a/api/interfaces/ixmlableobject.html
+++ b/api/interfaces/ixmlableobject.html
@@ -127,7 +127,7 @@
_attr: IXmlAttribute