2018-02-21 21:37:01 +00:00
<!doctype html>
< html class = "default no-js" >
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< title > docx< / title >
< meta name = "description" content = "" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< link rel = "stylesheet" href = "assets/css/main.css" >
< / head >
< body >
< header >
< div class = "tsd-page-toolbar" >
< div class = "container" >
< div class = "table-wrap" >
< div class = "table-cell" id = "tsd-search" data-index = "assets/js/search.js" data-base = "." >
< div class = "field" >
< label for = "tsd-search-field" class = "tsd-widget search no-caption" > Search< / label >
< input id = "tsd-search-field" type = "text" / >
< / div >
< ul class = "results" >
< li class = "state loading" > Preparing search index...< / li >
< li class = "state failure" > The search index is not available< / li >
< / ul >
< a href = "index.html" class = "title" > docx< / a >
< / div >
< div class = "table-cell" id = "tsd-widgets" >
< div id = "tsd-filter" >
< a href = "#" class = "tsd-widget options no-caption" data-toggle = "options" > Options< / a >
< div class = "tsd-filter-group" >
< div class = "tsd-select" id = "tsd-filter-visibility" >
< span class = "tsd-select-label" > All< / span >
< ul class = "tsd-select-list" >
< li data-value = "public" > Public< / li >
< li data-value = "protected" > Public/Protected< / li >
< li data-value = "private" class = "selected" > All< / li >
< / ul >
< / div >
< input type = "checkbox" id = "tsd-filter-inherited" checked / >
< label class = "tsd-widget" for = "tsd-filter-inherited" > Inherited< / label >
< input type = "checkbox" id = "tsd-filter-externals" checked / >
< label class = "tsd-widget" for = "tsd-filter-externals" > Externals< / label >
< input type = "checkbox" id = "tsd-filter-only-exported" / >
< label class = "tsd-widget" for = "tsd-filter-only-exported" > Only exported< / label >
< / div >
< / div >
< a href = "#" class = "tsd-widget menu no-caption" data-toggle = "menu" > Menu< / a >
< / div >
< / div >
< / div >
< / div >
< div class = "tsd-page-title" >
< div class = "container" >
< ul class = "tsd-breadcrumb" >
< li >
< a href = "globals.html" > Globals< / a >
< / li >
< / ul >
< h1 > docx< / h1 >
< / div >
< / div >
< / header >
< div class = "container container-main" >
< div class = "row" >
< div class = "col-8 col-content" >
2018-08-04 02:34:48 +00:00
< div class = "tsd-panel tsd-typography" >
< p align = "center" >
< img alt = "clippy the assistant" src = "http://i60.tinypic.com/339pvtt.png" >
< / p >
< p align = "center" >
Generate .docx files with JS/TS very easily, written in TS.
< / p >
< hr >
< p > < a href = "https://npmjs.org/package/docx" > < img src = "https://badge.fury.io/js/docx.svg" alt = "NPM version" > < / a >
< a href = "https://npmjs.org/package/docx" > < img src = "https://img.shields.io/npm/dm/docx.svg" alt = "Downloads per month" > < / a >
< a href = "https://travis-ci.org/dolanmiu/docx" > < img src = "https://travis-ci.org/dolanmiu/docx.svg?branch=master" alt = "Build Status" > < / a >
< a href = "https://david-dm.org/dolanmiu/docx" > < img src = "https://david-dm.org/dolanmiu/docx.svg?theme=shields.io" alt = "Dependency Status" > < / a >
< a href = "https://snyk.io/test/github/dolanmiu/docx" > < img src = "https://snyk.io/test/github/dolanmiu/docx/badge.svg" alt = "Known Vulnerabilities" > < / a >
< a href = "https://gitter.im/docx-lib/Lobby" > < img src = "https://badges.gitter.im/dolanmiu/docx.svg" alt = "Chat on Gitter" > < / a >
< a href = "https://github.com/prettier/prettier" > < img src = "https://img.shields.io/badge/code_style-prettier-ff69b4.svg" alt = "code style: prettier" > < / a >
< a href = "http://makeapullrequest.com" > < img src = "https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt = "PRs Welcome" > < / a > < / p >
< h1 id = "docx" > docx< / h1 >
2018-08-08 00:32:04 +00:00
< p > < img src = "https://thumbs.gfycat.com/ComplexEminentEquine-size_restricted.gif" alt = "drawing" width = "500" / > < / p >
2018-08-04 02:34:48 +00:00
< h2 id = "install" > Install< / h2 >
< pre > < code class = "lang-sh" > $ npm install --save docx
< / code > < / pre >
< h2 id = "demo" > Demo< / h2 >
< p > Press < code > endpoint< / code > on the < code > RunKit< / code > website:< / p >
< p > < img src = "https://user-images.githubusercontent.com/2917613/38582539-f84311b6-3d07-11e8-90db-5885ae02c3c4.png" alt = "RunKit Instructions" > < / p >
< ul >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo1" > https://runkit.com/dolanmiu/docx-demo1< / a > - Simple paragraph and text< / li >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo2" > https://runkit.com/dolanmiu/docx-demo2< / a > - Advanced Paragraphs and text< / li >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo3" > https://runkit.com/dolanmiu/docx-demo3< / a > - Bullet points< / li >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo4" > https://runkit.com/dolanmiu/docx-demo4< / a > - Simple table< / li >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo5" > https://runkit.com/dolanmiu/docx-demo5< / a > - Images< / li >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo6" > https://runkit.com/dolanmiu/docx-demo6< / a > - Margins< / li >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo7" > https://runkit.com/dolanmiu/docx-demo7< / a > - Landscape< / li >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo8/1.0.1" > https://runkit.com/dolanmiu/docx-demo8/1.0.1< / a > - Header and Footer< / li >
< li > < a href = "https://runkit.com/dolanmiu/docx-demo10" > https://runkit.com/dolanmiu/docx-demo10< / a > - < strong > My CV generated with docx< / strong > < / li >
< / ul >
< h4 id = "run-demos-locally-" > Run demos locally:< / h4 >
< pre > < code class = "lang-sh" > $ npm run demo
< / code > < / pre >
< p > This command will run the demo selector app in the < code > demo< / code > folder. It will prompt you to select a demo number, which will run a demo from that folder.< / p >
2018-08-04 03:06:09 +00:00
< h2 id = "how-to" > How to< / h2 >
< p > Please refer to < a href = "https://docx.js.org/" > https://docx.js.org/< / a > for details on how to use this library, examples and much more!< / p >
2018-08-04 02:34:48 +00:00
< h2 id = "examples" > Examples< / h2 >
2018-08-05 03:27:23 +00:00
< p > Check the examples section in the < a href = "https://docx.js.org/#/examples" > documentation< / a > and the < a href = "https://github.com/dolanmiu/docx/tree/master/demo" > demo folder< / a > for examples.< / p >
2018-08-04 02:34:48 +00:00
< h1 id = "contributing" > Contributing< / h1 >
2018-08-04 03:06:09 +00:00
< p > Read the contribution guidelines < a href = "https://docx.js.org/#/contribution-guidelines" > here< / a > .< / p >
2018-08-04 02:34:48 +00:00
< h1 id = "honoured-mentions" > Honoured Mentions< / h1 >
< p > < a href = "https://github.com/felipeochoa" > @felipeochoa< / a > < / p >
< p > < a href = "https://github.com/h4buli" > @h4buli< / a > < / p >
< hr >
< p > Made with 💖< / p >
< / div >
2018-02-21 21:37:01 +00:00
< / div >
< div class = "col-4 col-menu menu-sticky-wrap menu-highlight" >
< nav class = "tsd-navigation primary" >
< ul >
2018-08-04 02:34:48 +00:00
< li class = "globals " >
2018-02-21 21:37:01 +00:00
< a href = "globals.html" > < em > Globals< / em > < / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = "label tsd-is-external" >
< span > Internals< / span >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-02-21 21:48:39 +00:00
< a href = "modules/_export_formatter_.html" > "export/formatter"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_index_.html" > "export/index"< / a >
< / li >
2018-07-01 01:30:59 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_packer_buffer_.html" > "export/packer/buffer"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_packer_buffer_stream_.html" > "export/packer/buffer-< wbr > stream"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_packer_compiler_.html" > "export/packer/compiler"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_packer_express_.html" > "export/packer/express"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_packer_local_.html" > "export/packer/local"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_packer_packer_.html" > "export/packer/packer"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_packer_pdf_convert_wrapper_.html" > "export/packer/pdf-< wbr > convert-< wbr > wrapper"< / a >
< / li >
2018-02-25 15:45:35 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_export_packer_stream_.html" > "export/packer/stream"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_app_properties_app_properties_.html" > "file/app-< wbr > properties/app-< wbr > properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_app_properties_app_properties_attributes_.html" > "file/app-< wbr > properties/app-< wbr > properties-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_content_types_content_types_.html" > "file/content-< wbr > types/content-< wbr > types"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_content_types_content_types_attributes_.html" > "file/content-< wbr > types/content-< wbr > types-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_content_types_default_default_.html" > "file/content-< wbr > types/default/default"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_content_types_default_default_attributes_.html" > "file/content-< wbr > types/default/default-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_content_types_override_override_.html" > "file/content-< wbr > types/override/override"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_content_types_override_override_attributes_.html" > "file/content-< wbr > types/override/override-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_core_properties_components_.html" > "file/core-< wbr > properties/components"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_core_properties_index_.html" > "file/core-< wbr > properties/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_core_properties_properties_.html" > "file/core-< wbr > properties/properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_body_.html" > "file/document/body/body"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_index_.html" > "file/document/body/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_columns_columns_.html" > "file/document/body/section-< wbr > properties/columns/columns"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_columns_columns_attributes_.html" > "file/document/body/section-< wbr > properties/columns/columns-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_doc_grid_doc_grid_.html" > "file/document/body/section-< wbr > properties/doc-< wbr > grid/doc-< wbr > grid"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_doc_grid_doc_grid_attributes_.html" > "file/document/body/section-< wbr > properties/doc-< wbr > grid/doc-< wbr > grid-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_footer_reference_footer_reference_.html" > "file/document/body/section-< wbr > properties/footer-< wbr > reference/footer-< wbr > reference"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_footer_reference_footer_reference_attributes_.html" > "file/document/body/section-< wbr > properties/footer-< wbr > reference/footer-< wbr > reference-< wbr > attributes"< / a >
< / li >
2018-06-30 22:56:07 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_footer_reference_index_.html" > "file/document/body/section-< wbr > properties/footer-< wbr > reference/index"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_header_reference_header_reference_.html" > "file/document/body/section-< wbr > properties/header-< wbr > reference/header-< wbr > reference"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_header_reference_header_reference_attributes_.html" > "file/document/body/section-< wbr > properties/header-< wbr > reference/header-< wbr > reference-< wbr > attributes"< / a >
< / li >
2018-06-30 22:56:07 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_header_reference_index_.html" > "file/document/body/section-< wbr > properties/header-< wbr > reference/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_index_.html" > "file/document/body/section-< wbr > properties/index"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_page_margin_page_margin_.html" > "file/document/body/section-< wbr > properties/page-< wbr > margin/page-< wbr > margin"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_page_margin_page_margin_attributes_.html" > "file/document/body/section-< wbr > properties/page-< wbr > margin/page-< wbr > margin-< wbr > attributes"< / a >
< / li >
2018-06-30 22:56:07 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_page_number_index_.html" > "file/document/body/section-< wbr > properties/page-< wbr > number/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_page_number_page_number_.html" > "file/document/body/section-< wbr > properties/page-< wbr > number/page-< wbr > number"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_page_size_index_.html" > "file/document/body/section-< wbr > properties/page-< wbr > size/index"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_page_size_page_size_.html" > "file/document/body/section-< wbr > properties/page-< wbr > size/page-< wbr > size"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_page_size_page_size_attributes_.html" > "file/document/body/section-< wbr > properties/page-< wbr > size/page-< wbr > size-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_section_properties_.html" > "file/document/body/section-< wbr > properties/section-< wbr > properties"< / a >
< / li >
2018-05-19 11:32:15 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_title_page_title_page_.html" > "file/document/body/section-< wbr > properties/title-< wbr > page/title-< wbr > page"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_body_section_properties_title_page_title_page_attributes_.html" > "file/document/body/section-< wbr > properties/title-< wbr > page/title-< wbr > page-< wbr > attributes"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_document_.html" > "file/document/document"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_document_attributes_.html" > "file/document/document-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_document_index_.html" > "file/document/index"< / a >
< / li >
2018-06-21 23:24:38 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_anchor_anchor_.html" > "file/drawing/anchor/anchor"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_anchor_anchor_attributes_.html" > "file/drawing/anchor/anchor-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_anchor_index_.html" > "file/drawing/anchor/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_doc_properties_doc_properties_.html" > "file/drawing/doc-< wbr > properties/doc-< wbr > properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_doc_properties_doc_properties_attributes_.html" > "file/drawing/doc-< wbr > properties/doc-< wbr > properties-< wbr > attributes"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_drawing_.html" > "file/drawing/drawing"< / a >
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_effect_extent_effect_extent_.html" > "file/drawing/effect-< wbr > extent/effect-< wbr > extent"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_effect_extent_effect_extent_attributes_.html" > "file/drawing/effect-< wbr > extent/effect-< wbr > extent-< wbr > attributes"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_extent_extent_.html" > "file/drawing/extent/extent"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_extent_extent_attributes_.html" > "file/drawing/extent/extent-< wbr > attributes"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_floating_align_.html" > "file/drawing/floating/align"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_floating_floating_position_.html" > "file/drawing/floating/floating-< wbr > position"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_floating_horizontal_position_.html" > "file/drawing/floating/horizontal-< wbr > position"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_floating_index_.html" > "file/drawing/floating/index"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_floating_position_offset_.html" > "file/drawing/floating/position-< wbr > offset"< / a >
2018-02-21 21:37:01 +00:00
< / li >
< li class = " tsd-kind-external-module" >
2018-06-21 23:24:38 +00:00
< a href = "modules/_file_drawing_floating_simple_pos_.html" > "file/drawing/floating/simple-< wbr > pos"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_floating_vertical_position_.html" > "file/drawing/floating/vertical-< wbr > position"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_graphic_frame_graphic_frame_locks_graphic_frame_lock_attributes_.html" > "file/drawing/graphic-< wbr > frame/graphic-< wbr > frame-< wbr > locks/graphic-< wbr > frame-< wbr > lock-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_graphic_frame_graphic_frame_locks_graphic_frame_locks_.html" > "file/drawing/graphic-< wbr > frame/graphic-< wbr > frame-< wbr > locks/graphic-< wbr > frame-< wbr > locks"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_graphic_frame_graphic_frame_properties_.html" > "file/drawing/graphic-< wbr > frame/graphic-< wbr > frame-< wbr > properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_index_.html" > "file/drawing/index"< / a >
2018-02-21 21:37:01 +00:00
< / li >
2018-03-24 19:25:23 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_.html" > "file/drawing/inline/graphic/graphic"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_graphic_data_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/graphic-< wbr > data"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_graphic_data_attribute_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/graphic-< wbr > data-< wbr > attribute"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_index_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_blip_blip_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/blip/blip"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_blip_blip_fill_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/blip/blip-< wbr > fill"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_blip_source_rectangle_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/blip/source-< wbr > rectangle"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_blip_stretch_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/blip/stretch"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_index_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_non_visual_pic_properties_child_non_visual_pic_properties_child_non_visual_pic_properties_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/non-< wbr > visual-< wbr > pic-< wbr > properties/child-< wbr > non-< wbr > visual-< wbr > pic-< wbr > properties/child-< wbr > non-< wbr > visual-< wbr > pic-< wbr > properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_non_visual_pic_properties_child_non_visual_pic_properties_pic_locks_pic_locks_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/non-< wbr > visual-< wbr > pic-< wbr > properties/child-< wbr > non-< wbr > visual-< wbr > pic-< wbr > properties/pic-< wbr > locks/pic-< wbr > locks"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_non_visual_pic_properties_child_non_visual_pic_properties_pic_locks_pic_locks_attributes_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/non-< wbr > visual-< wbr > pic-< wbr > properties/child-< wbr > non-< wbr > visual-< wbr > pic-< wbr > properties/pic-< wbr > locks/pic-< wbr > locks-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_non_visual_pic_properties_non_visual_pic_properties_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/non-< wbr > visual-< wbr > pic-< wbr > properties/non-< wbr > visual-< wbr > pic-< wbr > properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_non_visual_pic_properties_non_visual_properties_non_visual_properties_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/non-< wbr > visual-< wbr > pic-< wbr > properties/non-< wbr > visual-< wbr > properties/non-< wbr > visual-< wbr > properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_non_visual_pic_properties_non_visual_properties_non_visual_properties_attributes_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/non-< wbr > visual-< wbr > pic-< wbr > properties/non-< wbr > visual-< wbr > properties/non-< wbr > visual-< wbr > properties-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_pic_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/pic"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_pic_attributes_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/pic-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_form_extents_extents_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/form/extents/extents"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_form_extents_extents_attributes_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/form/extents/extents-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_form_form_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/form/form"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_form_index_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/form/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_form_offset_off_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/form/offset/off"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_form_offset_off_attributes_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/form/offset/off-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_no_fill_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/no-< wbr > fill"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_outline_no_fill_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/outline/no-< wbr > fill"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_outline_outline_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/outline/outline"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_preset_geometry_adjustment_values_adjustment_values_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/preset-< wbr > geometry/adjustment-< wbr > values/adjustment-< wbr > values"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_preset_geometry_preset_geometry_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/preset-< wbr > geometry/preset-< wbr > geometry"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_preset_geometry_preset_geometry_attributes_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/preset-< wbr > geometry/preset-< wbr > geometry-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_shape_properties_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/shape-< wbr > properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_graphic_data_pic_shape_properties_shape_properties_attributes_.html" > "file/drawing/inline/graphic/graphic-< wbr > data/pic/shape-< wbr > properties/shape-< wbr > properties-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_graphic_index_.html" > "file/drawing/inline/graphic/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_index_.html" > "file/drawing/inline/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_inline_.html" > "file/drawing/inline/inline"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_inline_inline_attributes_.html" > "file/drawing/inline/inline-< wbr > attributes"< / a >
< / li >
2018-06-21 23:24:38 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_text_wrap_index_.html" > "file/drawing/text-< wbr > wrap/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_text_wrap_text_wrapping_.html" > "file/drawing/text-< wbr > wrap/text-< wbr > wrapping"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_text_wrap_wrap_none_.html" > "file/drawing/text-< wbr > wrap/wrap-< wbr > none"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_text_wrap_wrap_square_.html" > "file/drawing/text-< wbr > wrap/wrap-< wbr > square"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_text_wrap_wrap_tight_.html" > "file/drawing/text-< wbr > wrap/wrap-< wbr > tight"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_drawing_text_wrap_wrap_top_and_bottom_.html" > "file/drawing/text-< wbr > wrap/wrap-< wbr > top-< wbr > and-< wbr > bottom"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_file_.html" > "file/file"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footer_wrapper_.html" > "file/footer-< wbr > wrapper"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footer_footer_.html" > "file/footer/footer"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footer_footer_attributes_.html" > "file/footer/footer-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footer_index_.html" > "file/footer/index"< / a >
< / li >
2018-06-30 22:56:07 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_footnote_.html" > "file/footnotes/footnote/footnote"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_footnote_attributes_.html" > "file/footnotes/footnote/footnote-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_run_continuation_seperator_.html" > "file/footnotes/footnote/run/continuation-< wbr > seperator"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_run_continuation_seperator_run_.html" > "file/footnotes/footnote/run/continuation-< wbr > seperator-< wbr > run"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_run_footnote_ref_.html" > "file/footnotes/footnote/run/footnote-< wbr > ref"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_run_footnote_ref_run_.html" > "file/footnotes/footnote/run/footnote-< wbr > ref-< wbr > run"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_run_reference_run_.html" > "file/footnotes/footnote/run/reference-< wbr > run"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_run_seperator_.html" > "file/footnotes/footnote/run/seperator"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnote_run_seperator_run_.html" > "file/footnotes/footnote/run/seperator-< wbr > run"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnotes_.html" > "file/footnotes/footnotes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_footnotes_attributes_.html" > "file/footnotes/footnotes-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_footnotes_index_.html" > "file/footnotes/index"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_header_wrapper_.html" > "file/header-< wbr > wrapper"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_header_header_.html" > "file/header/header"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_header_header_attributes_.html" > "file/header/header-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_header_index_.html" > "file/header/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_index_.html" > "file/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_media_data_.html" > "file/media/data"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_media_index_.html" > "file/media/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_media_media_.html" > "file/media/media"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_numbering_abstract_numbering_.html" > "file/numbering/abstract-< wbr > numbering"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_numbering_index_.html" > "file/numbering/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_numbering_level_.html" > "file/numbering/level"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_numbering_multi_level_type_.html" > "file/numbering/multi-< wbr > level-< wbr > type"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_numbering_num_.html" > "file/numbering/num"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_numbering_numbering_.html" > "file/numbering/numbering"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_alignment_.html" > "file/paragraph/formatting/alignment"< / a >
< / li >
2018-07-26 12:06:04 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_bidi_.html" > "file/paragraph/formatting/bidi"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_border_.html" > "file/paragraph/formatting/border"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_indent_.html" > "file/paragraph/formatting/indent"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_index_.html" > "file/paragraph/formatting/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_keep_.html" > "file/paragraph/formatting/keep"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_page_break_.html" > "file/paragraph/formatting/page-< wbr > break"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_spacing_.html" > "file/paragraph/formatting/spacing"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_style_.html" > "file/paragraph/formatting/style"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_tab_stop_.html" > "file/paragraph/formatting/tab-< wbr > stop"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_formatting_unordered_list_.html" > "file/paragraph/formatting/unordered-< wbr > list"< / a >
< / li >
2018-08-03 01:25:26 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_image_.html" > "file/paragraph/image"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_index_.html" > "file/paragraph/index"< / a >
< / li >
2018-07-24 21:44:17 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_links_bookmark_.html" > "file/paragraph/links/bookmark"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_links_bookmark_attributes_.html" > "file/paragraph/links/bookmark-< wbr > attributes"< / a >
< / li >
2018-05-08 00:18:25 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_links_hyperlink_.html" > "file/paragraph/links/hyperlink"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_links_hyperlink_attributes_.html" > "file/paragraph/links/hyperlink-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_links_index_.html" > "file/paragraph/links/index"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_paragraph_.html" > "file/paragraph/paragraph"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_properties_.html" > "file/paragraph/properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_break_.html" > "file/paragraph/run/break"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_caps_.html" > "file/paragraph/run/caps"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_formatting_.html" > "file/paragraph/run/formatting"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_index_.html" > "file/paragraph/run/index"< / a >
< / li >
2018-05-19 11:32:15 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_page_number_.html" > "file/paragraph/run/page-< wbr > number"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_picture_run_.html" > "file/paragraph/run/picture-< wbr > run"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_properties_.html" > "file/paragraph/run/properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_run_.html" > "file/paragraph/run/run"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_run_components_text_.html" > "file/paragraph/run/run-< wbr > components/text"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_run_fonts_.html" > "file/paragraph/run/run-< wbr > fonts"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_script_.html" > "file/paragraph/run/script"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_style_.html" > "file/paragraph/run/style"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_tab_.html" > "file/paragraph/run/tab"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_text_run_.html" > "file/paragraph/run/text-< wbr > run"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_paragraph_run_underline_.html" > "file/paragraph/run/underline"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_relationships_attributes_.html" > "file/relationships/attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_relationships_index_.html" > "file/relationships/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_relationships_relationship_relationship_.html" > "file/relationships/relationship/relationship"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_relationships_relationship_relationship_attributes_.html" > "file/relationships/relationship/relationship-< wbr > attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_relationships_relationships_.html" > "file/relationships/relationships"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_defaults_index_.html" > "file/styles/defaults/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_defaults_paragraph_properties_.html" > "file/styles/defaults/paragraph-< wbr > properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_defaults_run_properties_.html" > "file/styles/defaults/run-< wbr > properties"< / a >
< / li >
2018-05-16 18:53:57 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_external_styles_factory_.html" > "file/styles/external-< wbr > styles-< wbr > factory"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_factory_.html" > "file/styles/factory"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_index_.html" > "file/styles/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_latent_styles_exceptions_.html" > "file/styles/latent-< wbr > styles/exceptions"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_latent_styles_index_.html" > "file/styles/latent-< wbr > styles/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_sample_index_.html" > "file/styles/sample/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_style_components_.html" > "file/styles/style/components"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_styles_style_index_.html" > "file/styles/style/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_table_grid_.html" > "file/table/grid"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_table_index_.html" > "file/table/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_table_properties_.html" > "file/table/properties"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_table_table_.html" > "file/table/table"< / a >
< / li >
2018-05-16 18:53:57 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_table_table_cell_.html" > "file/table/table-< wbr > cell"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_xml_components_attributes_.html" > "file/xml-< wbr > components/attributes"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_xml_components_base_.html" > "file/xml-< wbr > components/base"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_xml_components_default_attributes_.html" > "file/xml-< wbr > components/default-< wbr > attributes"< / a >
< / li >
2018-05-16 18:53:57 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_xml_components_imported_xml_component_.html" > "file/xml-< wbr > components/imported-< wbr > xml-< wbr > component"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_xml_components_index_.html" > "file/xml-< wbr > components/index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_xml_components_xml_component_.html" > "file/xml-< wbr > components/xml-< wbr > component"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_file_xml_components_xmlable_object_.html" > "file/xml-< wbr > components/xmlable-< wbr > object"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_index_.html" > "index"< / a >
< / li >
< li class = " tsd-kind-external-module" >
< a href = "modules/_tests_utility_.html" > "tests/utility"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = "label tsd-is-external" >
< span > Externals< / span >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_export_formatter_spec_.html" > "export/formatter.spec"< / a >
< / li >
2018-06-30 22:56:07 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
2018-07-01 01:30:59 +00:00
< a href = "modules/_export_packer_buffer_spec_.html" > "export/packer/buffer.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
2018-06-30 22:56:07 +00:00
< a href = "modules/_export_packer_compiler_spec_.html" > "export/packer/compiler.spec"< / a >
< / li >
2018-05-08 19:42:11 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_export_packer_express_spec_.html" > "export/packer/express.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_export_packer_local_spec_.html" > "export/packer/local.spec"< / a >
< / li >
2018-06-30 22:56:07 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_content_types_content_types_spec_.html" > "file/content-< wbr > types/content-< wbr > types.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_core_properties_properties_spec_.html" > "file/core-< wbr > properties/properties.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_document_body_body_spec_.html" > "file/document/body/body.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_document_body_section_properties_page_size_page_size_spec_.html" > "file/document/body/section-< wbr > properties/page-< wbr > size/page-< wbr > size.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_document_body_section_properties_section_properties_spec_.html" > "file/document/body/section-< wbr > properties/section-< wbr > properties.spec"< / a >
< / li >
2018-05-19 11:32:15 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_document_body_section_properties_title_page_title_page_spec_.html" > "file/document/body/section-< wbr > properties/title-< wbr > page/title-< wbr > page.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_document_document_spec_.html" > "file/document/document.spec"< / a >
< / li >
2018-06-21 23:24:38 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_drawing_anchor_anchor_spec_.html" > "file/drawing/anchor/anchor.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_drawing_drawing_spec_.html" > "file/drawing/drawing.spec"< / a >
< / li >
2018-06-21 23:24:38 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_drawing_floating_align_spec_.html" > "file/drawing/floating/align.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_drawing_floating_horizontal_position_spec_.html" > "file/drawing/floating/horizontal-< wbr > position.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_drawing_floating_position_offset_spec_.html" > "file/drawing/floating/position-< wbr > offset.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_drawing_floating_simple_pos_spec_.html" > "file/drawing/floating/simple-< wbr > pos.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_drawing_floating_vertical_position_spec_.html" > "file/drawing/floating/vertical-< wbr > position.spec"< / a >
< / li >
2018-06-30 22:56:07 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_footnotes_footnote_footnote_spec_.html" > "file/footnotes/footnote/footnote.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_numbering_numbering_spec_.html" > "file/numbering/numbering.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_formatting_border_spec_.html" > "file/paragraph/formatting/border.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_formatting_page_break_spec_.html" > "file/paragraph/formatting/page-< wbr > break.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_formatting_spacing_spec_.html" > "file/paragraph/formatting/spacing.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_formatting_style_spec_.html" > "file/paragraph/formatting/style.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_formatting_tab_stop_spec_.html" > "file/paragraph/formatting/tab-< wbr > stop.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_formatting_unordered_list_spec_.html" > "file/paragraph/formatting/unordered-< wbr > list.spec"< / a >
< / li >
2018-08-03 01:25:26 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_image_spec_.html" > "file/paragraph/image.spec"< / a >
< / li >
2018-07-24 21:44:17 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_links_bookmark_spec_.html" > "file/paragraph/links/bookmark.spec"< / a >
< / li >
2018-05-08 00:18:25 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_links_hyperlink_spec_.html" > "file/paragraph/links/hyperlink.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_paragraph_spec_.html" > "file/paragraph/paragraph.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_break_spec_.html" > "file/paragraph/run/break.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_run_components_text_spec_.html" > "file/paragraph/run/run-< wbr > components/text.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_run_fonts_spec_.html" > "file/paragraph/run/run-< wbr > fonts.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_run_spec_.html" > "file/paragraph/run/run.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_script_spec_.html" > "file/paragraph/run/script.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_strike_spec_.html" > "file/paragraph/run/strike.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_tab_spec_.html" > "file/paragraph/run/tab.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_text_run_spec_.html" > "file/paragraph/run/text-< wbr > run.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_paragraph_run_underline_spec_.html" > "file/paragraph/run/underline.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_relationships_relationships_spec_.html" > "file/relationships/relationships.spec"< / a >
< / li >
2018-05-16 18:53:57 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_styles_external_styles_factory_spec_.html" > "file/styles/external-< wbr > styles-< wbr > factory.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_styles_styles_spec_.html" > "file/styles/styles.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_table_grid_spec_.html" > "file/table/grid.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_table_properties_spec_.html" > "file/table/properties.spec"< / a >
< / li >
2018-05-16 18:53:57 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_table_table_cell_spec_.html" > "file/table/table-< wbr > cell.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_table_table_spec_.html" > "file/table/table.spec"< / a >
< / li >
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_xml_components_attribute_spec_.html" > "file/xml-< wbr > components/attribute.spec"< / a >
< / li >
2018-05-16 18:53:57 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_xml_components_imported_xml_component_spec_.html" > "file/xml-< wbr > components/imported-< wbr > xml-< wbr > component.spec"< / a >
< / li >
2018-02-21 21:48:39 +00:00
< li class = " tsd-kind-external-module tsd-is-external" >
< a href = "modules/_file_xml_components_xml_component_spec_.html" > "file/xml-< wbr > components/xml-< wbr > component.spec"< / a >
< / li >
2018-02-21 21:37:01 +00:00
< / ul >
< / nav >
< nav class = "tsd-navigation secondary menu-sticky" >
< ul class = "before-current" >
< / ul >
< / nav >
< / div >
< / div >
< / div >
< footer class = "with-border-bottom" >
< div class = "container" >
< h2 > Legend< / h2 >
< div class = "tsd-legend-group" >
< ul class = "tsd-legend" >
< li class = "tsd-kind-module" > < span class = "tsd-kind-icon" > Module< / span > < / li >
< li class = "tsd-kind-object-literal" > < span class = "tsd-kind-icon" > Object literal< / span > < / li >
< li class = "tsd-kind-variable" > < span class = "tsd-kind-icon" > Variable< / span > < / li >
< li class = "tsd-kind-function" > < span class = "tsd-kind-icon" > Function< / span > < / li >
< li class = "tsd-kind-function tsd-has-type-parameter" > < span class = "tsd-kind-icon" > Function with type parameter< / span > < / li >
< li class = "tsd-kind-index-signature" > < span class = "tsd-kind-icon" > Index signature< / span > < / li >
< li class = "tsd-kind-type-alias" > < span class = "tsd-kind-icon" > Type alias< / span > < / li >
< / ul >
< ul class = "tsd-legend" >
< li class = "tsd-kind-enum" > < span class = "tsd-kind-icon" > Enumeration< / span > < / li >
< li class = "tsd-kind-enum-member" > < span class = "tsd-kind-icon" > Enumeration member< / span > < / li >
< li class = "tsd-kind-property tsd-parent-kind-enum" > < span class = "tsd-kind-icon" > Property< / span > < / li >
< li class = "tsd-kind-method tsd-parent-kind-enum" > < span class = "tsd-kind-icon" > Method< / span > < / li >
< / ul >
< ul class = "tsd-legend" >
< li class = "tsd-kind-interface" > < span class = "tsd-kind-icon" > Interface< / span > < / li >
< li class = "tsd-kind-interface tsd-has-type-parameter" > < span class = "tsd-kind-icon" > Interface with type parameter< / span > < / li >
< li class = "tsd-kind-constructor tsd-parent-kind-interface" > < span class = "tsd-kind-icon" > Constructor< / span > < / li >
< li class = "tsd-kind-property tsd-parent-kind-interface" > < span class = "tsd-kind-icon" > Property< / span > < / li >
< li class = "tsd-kind-method tsd-parent-kind-interface" > < span class = "tsd-kind-icon" > Method< / span > < / li >
< li class = "tsd-kind-index-signature tsd-parent-kind-interface" > < span class = "tsd-kind-icon" > Index signature< / span > < / li >
< / ul >
< ul class = "tsd-legend" >
< li class = "tsd-kind-class" > < span class = "tsd-kind-icon" > Class< / span > < / li >
< li class = "tsd-kind-class tsd-has-type-parameter" > < span class = "tsd-kind-icon" > Class with type parameter< / span > < / li >
< li class = "tsd-kind-constructor tsd-parent-kind-class" > < span class = "tsd-kind-icon" > Constructor< / span > < / li >
< li class = "tsd-kind-property tsd-parent-kind-class" > < span class = "tsd-kind-icon" > Property< / span > < / li >
< li class = "tsd-kind-method tsd-parent-kind-class" > < span class = "tsd-kind-icon" > Method< / span > < / li >
< li class = "tsd-kind-accessor tsd-parent-kind-class" > < span class = "tsd-kind-icon" > Accessor< / span > < / li >
< li class = "tsd-kind-index-signature tsd-parent-kind-class" > < span class = "tsd-kind-icon" > Index signature< / span > < / li >
< / ul >
< ul class = "tsd-legend" >
< li class = "tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited" > < span class = "tsd-kind-icon" > Inherited constructor< / span > < / li >
< li class = "tsd-kind-property tsd-parent-kind-class tsd-is-inherited" > < span class = "tsd-kind-icon" > Inherited property< / span > < / li >
< li class = "tsd-kind-method tsd-parent-kind-class tsd-is-inherited" > < span class = "tsd-kind-icon" > Inherited method< / span > < / li >
< li class = "tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited" > < span class = "tsd-kind-icon" > Inherited accessor< / span > < / li >
< / ul >
< ul class = "tsd-legend" >
< li class = "tsd-kind-property tsd-parent-kind-class tsd-is-protected" > < span class = "tsd-kind-icon" > Protected property< / span > < / li >
< li class = "tsd-kind-method tsd-parent-kind-class tsd-is-protected" > < span class = "tsd-kind-icon" > Protected method< / span > < / li >
< li class = "tsd-kind-accessor tsd-parent-kind-class tsd-is-protected" > < span class = "tsd-kind-icon" > Protected accessor< / span > < / li >
< / ul >
< ul class = "tsd-legend" >
< li class = "tsd-kind-property tsd-parent-kind-class tsd-is-private" > < span class = "tsd-kind-icon" > Private property< / span > < / li >
< li class = "tsd-kind-method tsd-parent-kind-class tsd-is-private" > < span class = "tsd-kind-icon" > Private method< / span > < / li >
< li class = "tsd-kind-accessor tsd-parent-kind-class tsd-is-private" > < span class = "tsd-kind-icon" > Private accessor< / span > < / li >
< / ul >
< ul class = "tsd-legend" >
< li class = "tsd-kind-property tsd-parent-kind-class tsd-is-static" > < span class = "tsd-kind-icon" > Static property< / span > < / li >
< li class = "tsd-kind-call-signature tsd-parent-kind-class tsd-is-static" > < span class = "tsd-kind-icon" > Static method< / span > < / li >
< / ul >
< / div >
< / div >
< / footer >
< div class = "container tsd-generator" >
< p > Generated using < a href = "http://typedoc.org/" target = "_blank" > TypeDoc< / a > < / p >
< / div >
< div class = "overlay" > < / div >
< script src = "assets/js/main.js" > < / script >
< script > if ( location . protocol == 'file:' ) document . write ( '<script src="assets/js/search.js"><' + '/script>' ) ; < / script >
< / body >
< / html >