This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtable-formatting.tsx
More file actions
212 lines (209 loc) · 104 KB
/
table-formatting.tsx
File metadata and controls
212 lines (209 loc) · 104 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import { SampleBase } from '../common/sample-base';
import {
DocumentEditorComponent, DocumentEditor, RequestNavigateEventArgs, ViewChangeEventArgs,
Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, ImageResizer, EditorHistory,
ContextMenu, OptionsPane, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog,
PageSetupDialog, StyleDialog, ListDialog, ParagraphDialog, BulletsAndNumberingDialog, FontDialog,
TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, StylesDialog
} from '@syncfusion/ej2-react-documenteditor';
import { TitleBar } from './title-bar';
import { ToolBar } from './tool-bar';
import { StatusBar } from './status-bar';
import { TextProperties } from './text-properties-pane';
import { TableProperties } from './table-properties-pane';
import { ImageProperties } from './image-properties-pane';
import { DocumentLoader } from './document-loader';
import { HeaderFooterProperties } from './header-footer-pane';
import { TocProperties } from './table-of-contents-pane';
import { PropertiesPane } from './properties-pane';
import { TemplateLoader } from './template-loader';
import './default.component.css';
DocumentEditorComponent.Inject(Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, ImageResizer, EditorHistory, ContextMenu, OptionsPane, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, StyleDialog, ListDialog, ParagraphDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, StylesDialog);
// tslint:disable:max-line-length
export class TableFormatView extends SampleBase<{}, {}> {
public documenteditor: DocumentEditorComponent;
public containerPanel: HTMLElement;
public tocProperties: TocProperties;
public headerFooter: HeaderFooterProperties;
public fontProperties: TextProperties;
public imageProperties: ImageProperties;
public tableProperties: TableProperties;
public propertiesPane: PropertiesPane;
public toolbar: ToolBar;
public titleBar: TitleBar;
public statusBar: StatusBar;
public rendereComplete(): void {
this.containerPanel = document.getElementById('documenteditor_container_body');
this.updateContainerSize();
this.documenteditor.pageOutline = '#E0E0E0';
this.documenteditor.acceptTab = true;
this.documenteditor.resize();
let tocProperties: TocProperties = new TocProperties(this.documenteditor);
let headerFooter: HeaderFooterProperties = new HeaderFooterProperties(this.documenteditor);
this.fontProperties = new TextProperties(this.documenteditor, 'textProperty');
let imageProperties: ImageProperties = new ImageProperties(this.documenteditor);
let tableProperties: TableProperties = new TableProperties(this.documenteditor, imageProperties, this.fontProperties);
// tslint:disable-next-line:max-line-length
let propertiesPane: PropertiesPane = new PropertiesPane(this.documenteditor, this.fontProperties, tableProperties, headerFooter, imageProperties, tocProperties);
//Initializes document editor toolbar and events.
// tslint:disable-next-line:max-line-length
this.toolbar = new ToolBar(this.documenteditor, document.getElementById('documenteditor_toolbar'), propertiesPane);
this.toolbar.documentLoader = new DocumentLoader(this.documenteditor);
this.toolbar.templateLoader = new TemplateLoader();
if (!this.toolbar.isReadOnly) {
this.toolbar.updateUndoRedoBtn();
}
this.titleBar = new TitleBar(document.getElementById('documenteditor_titlebar'), this.documenteditor, true);
this.statusBar = new StatusBar(document.getElementById('documenteditor_statusbar'), this.documenteditor);
this.onLoadDefault();
this.documenteditor.selectionChange = () => {
setTimeout(() => { this.onSelectionChange(); }, 20);
};
this.documenteditor.documentChange = (): void => {
this.toolbar.updateUndoRedoBtn();
this.toolbar.isContentChange = false;
this.applyPageCountAndDocumentTitle();
this.fontProperties.updateStyles();
};
this.documenteditor.contentChange = (): void => {
this.toolbar.isContentChange = true;
if (!this.toolbar.isReadOnly) {
this.toolbar.updateUndoRedoBtn();
}
//Set page count
this.statusBar.updatePageCount();
};
window.addEventListener('resize', (): void => { this.onWindowResize(); });
if (!this.toolbar.isReadOnly) {
this.toolbar.updateUndoRedoBtn();
}
this.updateContainerSize();
this.documenteditor.resize();
this.applyPageCountAndDocumentTitle();
this.showPropertiesPaneOnInitial();
this.documenteditor.requestNavigate = (args: RequestNavigateEventArgs) => {
if (args.linkType !== 'Bookmark') {
let link: string = args.navigationLink;
if (args.localReference.length > 0) {
link += '#' + args.localReference;
}
window.open(link);
args.isHandled = true;
}
};
this.documenteditor.zoomFactorChange = (): void => {
this.statusBar.updateZoomContent();
};
this.documenteditor.viewChange = (e: ViewChangeEventArgs): void => {
this.statusBar.updatePageNumberOnViewChange(e);
};
}
render() {
return (<div>
<div className="control-section">
<div className="col-lg-12 col-sm-12 col-md-12 center">
Click the button to view the sample
</div>
<div className="col-lg-12 col-sm-12 col-md-12 center">
<a className="e-btn" id="newTab" onClick={this.newTabClick.bind(this)} target="_blank">Open in new tab</a>
</div>
<div id="wrapper">
<title>Essential JS 2 for React - DocumentEditor</title>
<div id="panel">
<div id='documenteditor_titlebar'></div>
<div id='documenteditor_toolbar'>
</div>
<div id="documenteditor_container_body" style={{ 'display': 'flex', 'position': 'relative' }}>
<DocumentEditorComponent id="container" ref={(scope) => { this.documenteditor = scope; }} style={{ 'width': '100%', 'height': '100%' }}
isReadOnly={false} enablePrint={true}
enableSelection={true} enableEditor={true} enableEditorHistory={true}
enableContextMenu={true} enableSearch={true} enableOptionsPane={true}
enableBookmarkDialog={true} enableBordersAndShadingDialog={true} enableFontDialog={true} enableTableDialog={true} enableParagraphDialog={true}
enableHyperlinkDialog={true} enableImageResizer={true} enableListDialog={true}
enablePageSetupDialog={true} enableSfdtExport={true}
enableStyleDialog={true} enableTableOfContentsDialog={true}
enableTableOptionsDialog={true} enableTablePropertiesDialog={true}
enableTextExport={true} enableWordExport={true} />
</div>
<div id="documenteditor_statusbar">
</div>
</div>
<div className="overlay" id="popup-overlay" style={{ display: 'block;' }}>
</div>
<div id='waiting-popup'>
<svg className="circular" height="40" width="40">
<circle className="circle-path" cx="25" cy="25" r="20" fill="none" stroke-width="6" stroke-miterlimit="10" />
</svg>
</div>
</div>
</div>
<div id="action-description">
<p>This example demonstrates table formatting options in document editor such as cell margins, cell spacing, horizontal merge, vertical merge, border styles, background color, and more.</p>
</div>
<div id="description">
<div>
<p>In this example, you can find all the table formatting features.</p>
<ul>
<li>Cell margins and cell spacing..</li>
<li>Horizontal and vertical cell merge.</li>
<li>Borders and shading.</li>
</ul>
<p style={{ 'display': 'block' }}> More information about the document editor features can be found in this <a target="_blank" href="https://ej2.syncfusion.com/react/documentation/document-editor/">documentation section.</a>
</p>
</div>
</div>
<script>{
window.onbeforeunload = function () {
return 'Want to save your changes?';
}
}
</script>
</div>);
}
newTabClick = (): void => {
document.getElementById('newTab').setAttribute('href', location.href.split('#')[0] + 'document-editor/table-formatting/index.html#fabric');
}
applyPageCountAndDocumentTitle = (): void => {
//Sets Document name.
this.titleBar.updateDocumentTitle();
this.statusBar.updatePageCount();
}
updateContainerSize = (): void => {
let titleBarDiv: HTMLElement = document.getElementById('documenteditor_titlebar');
let statusBarDiv: HTMLElement = document.getElementById('documenteditor_statusbar');
let toolBarDiv: HTMLElement = document.getElementById('documenteditor_toolbar');
if (this.containerPanel && titleBarDiv && statusBarDiv && toolBarDiv) {
this.containerPanel.style.height = (window.innerHeight -
(titleBarDiv.offsetHeight + toolBarDiv.offsetHeight + statusBarDiv.offsetHeight)) + 'px';
}
}
showPropertiesPaneOnInitial = (): void => {
this.toolbar.showPropertiesPaneOnSelection();
}
onSelectionChange = (): void => {
if (this.documenteditor.selection) {
this.statusBar.startPage = this.documenteditor.selection.startPage;
this.statusBar.updatePageNumber();
this.toolbar.showPropertiesPaneOnSelection();
}
}
onLoadDefault = (): void => {
// tslint:disable
let defaultDocument: object = { "sections": [{ "blocks": [{ "rows": [{ "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 8.6000003814697266, "heightType": "AtLeast", "borders": { "left": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "right": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "top": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "characterFormat": { "bold": true }, "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Bill To:", "characterFormat": { "bold": true } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 4, "preferredWidth": 78.0, "preferredWidthType": "Point", "verticalAlignment": "Center", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Hanari" }, { "text": " Carnes" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 78.0, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }, { "blocks": [{ "characterFormat": { "bold": true }, "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Ship To:", "characterFormat": { "bold": true } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 4, "preferredWidth": 78.0, "preferredWidthType": "Point", "verticalAlignment": "Center", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Hanari" }, { "text": " Carnes" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 95.75, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }, { "blocks": [{ "paragraphFormat": { "rightIndent": 32.099998474121094, "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Invoice No:", "characterFormat": { "bold": true } }, { "text": "10250" }] }, { "paragraphFormat": { "rightIndent": 32.099998474121094, "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Date:", "characterFormat": { "bold": true } }, { "text": "7/12/1996" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 4, "preferredWidth": 138.25, "preferredWidthType": "Point", "verticalAlignment": "Center", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 0.0, "heightType": "AtLeast", "borders": { "left": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "right": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "top": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Rua" }, { "text": " do " }, { "text": "Paço" }, { "text": ", 67" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 78.0, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Rua" }, { "text": " do " }, { "text": "Paço" }, { "text": ", 67" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 95.75, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 0.0, "heightType": "AtLeast", "borders": { "left": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "right": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "top": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Rio de Janeiro" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 78.0, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Rio de Janeiro" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 95.75, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 0.0, "heightType": "AtLeast", "borders": { "left": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "right": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "top": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Brazil" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 78.0, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Brazil" }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 95.75, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }] }], "title": null, "description": null, "tableFormat": { "allowAutoFit": true, "leftMargin": 0.5, "rightMargin": 0.5, "leftIndent": 0.0, "tableAlignment": "Left", "preferredWidth": 468.0, "preferredWidthType": "Point", "borders": { "left": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "right": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "top": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#000000FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#FFFFFFFF" } } }, { "paragraphFormat": { "styleName": "Normal" }, "inlines": [] }, { "paragraphFormat": { "styleName": "Normal" }, "inlines": [] }, { "paragraphFormat": { "styleName": "Normal" }, "inlines": [] }, { "rows": [{ "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 19.5, "heightType": "Exactly", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Ship Name", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 109.69999694824219, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Ship Address", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 86.6500015258789, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Freight", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 50.349998474121094, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Shipped Date", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 76.8499984741211, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Ship City", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 56.549999237060547, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Ship Country", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 86.5999984741211, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 32.25, "heightType": "Exactly", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Hanari", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }, { "text": " Carnes", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 109.69999694824219, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Rua", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }, { "text": " do ", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }, { "text": "Paço", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }, { "text": ", 67", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 86.6500015258789, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "$65.83", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 50.349998474121094, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "7/12/1996", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 76.8499984741211, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Rio de Janeiro", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 56.549999237060547, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Brazil", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 86.5999984741211, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }] }], "title": null, "description": null, "tableFormat": { "allowAutoFit": false, "leftMargin": 5.0, "rightMargin": 5.0, "leftIndent": 0.0, "tableAlignment": "Left", "preferredWidthType": "Auto", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } } }, { "paragraphFormat": { "styleName": "Normal" }, "inlines": [] }, { "rows": [{ "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 19.5, "heightType": "Exactly", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "ID", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 8.880000114440918, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Product Name", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 38.540000915527344, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Quantity", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Unit Price", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Discount", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "Price", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#FFFFFFFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 14.0, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone", "backgroundColor": "#4B88BAFF" } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 19.5, "heightType": "Exactly", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "41", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 8.880000114440918, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Jack's New England Clam Chowder", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 38.540000915527344, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "10", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "$7.70", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "0.00%", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "$77.00", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 14.0, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 19.5, "heightType": "Exactly", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "51", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 8.880000114440918, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Manjimup", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }, { "text": " Dried Apples", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 38.540000915527344, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "35", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "$42.40", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "15.00%", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "name": "_GoBack", "bookmarkType": 0 }, { "name": "_GoBack", "bookmarkType": 1 }, { "text": "$1,484.00", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 14.0, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 19.5, "heightType": "Exactly", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "textAlignment": "Center", "styleName": "Normal" }, "inlines": [{ "text": "65", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 8.880000114440918, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [{ "text": "Louisiana Fiery Hot Pepper Sauce", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 38.540000915527344, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "15", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "$16.80", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "15.00%", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 12.859999656677246, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "$252.00", "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 14.0, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 19.5, "heightType": "Exactly", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" }, "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "Total", "characterFormat": { "bold": true, "fontSize": 10.0, "fontFamily": "Arial", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 5, "rowSpan": 1, "preferredWidth": 86.0, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }, { "blocks": [{ "characterFormat": { "fontSize": 10.0, "fontFamily": "Segoe UI", "fontColor": "#000000FF" }, "paragraphFormat": { "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "$1,813.00", "characterFormat": { "fontSize": 10.0, "fontFamily": "Arial", "fontColor": "#000000FF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 14.0, "preferredWidthType": "Percent", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "right": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "top": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "bottom": { "lineStyle": "Single", "lineWidth": 1.25, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#D3D3D3FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } }, "shading": { "texture": "TextureNone" } } }] }], "title": null, "description": null, "tableFormat": { "allowAutoFit": true, "leftMargin": 5.0, "rightMargin": 5.0, "leftIndent": 0.0, "tableAlignment": "Left", "preferredWidth": 100.0, "preferredWidthType": "Percent", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } } }, { "paragraphFormat": { "styleName": "Normal" }, "inlines": [] }], "headersFooters": { "header": { "blocks": [{ "rows": [{ "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 0.0, "heightType": "AtLeast", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "styleName": "Header" }, "inlines": [{ "text": "Northwind Traders", "characterFormat": { "bold": true, "fontSize": 18.0, "fontFamily": "Segoe UI", "fontColor": "#4B88BAFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 233.75, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#A5A5A5FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } } }, { "blocks": [{ "paragraphFormat": { "textAlignment": "Right", "styleName": "Header" }, "inlines": [{ "text": "Invoice", "characterFormat": { "bold": true, "fontSize": 18.0, "fontFamily": "Segoe UI", "fontColor": "#4B88BAFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 233.75, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "bottom": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#A5A5A5FF" }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } } }] }, { "rowFormat": { "allowBreakAcrossPages": true, "isHeader": false, "height": 0.0, "heightType": "AtLeast", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } }, "cells": [{ "blocks": [{ "paragraphFormat": { "styleName": "Normal" }, "inlines": [] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 233.75, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#A5A5A5FF" }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } } }, { "blocks": [{ "characterFormat": { "bold": true }, "paragraphFormat": { "beforeSpacing": 6.0, "textAlignment": "Right", "styleName": "Normal" }, "inlines": [{ "text": "July 1996", "characterFormat": { "fontFamily": "Segoe UI", "fontColor": "#4B88BAFF" } }] }], "cellFormat": { "columnSpan": 1, "rowSpan": 1, "preferredWidth": 233.75, "preferredWidthType": "Point", "verticalAlignment": "Top", "isSamePaddingAsTable": true, "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "top": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false, "color": "#A5A5A5FF" }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "horizontal": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } } }] }], "title": null, "description": null, "tableFormat": { "allowAutoFit": true, "leftIndent": 0.0, "tableAlignment": "Left", "preferredWidthType": "Auto", "borders": { "left": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "right": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "top": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "bottom": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "vertical": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": true }, "horizontal": { "lineStyle": "Single", "lineWidth": 0.5, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalDown": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false }, "diagonalUp": { "lineStyle": "None", "lineWidth": 0.0, "shadow": false, "space": 0.0, "hasNoneStyle": false } } } }, { "paragraphFormat": { "styleName": "Header" }, "inlines": [] }] } }, "sectionFormat": { "headerDistance": 36.0, "footerDistance": 36.0, "pageWidth": 612.0, "pageHeight": 792.0, "leftMargin": 72.0, "rightMargin": 72.0, "topMargin": 72.0, "bottomMargin": 72.0, "differentFirstPage": false, "differentOddAndEvenPages": false } }], "characterFormat": { "fontSize": 11.0, "fontFamily": "Calibri" }, "paragraphFormat": { "afterSpacing": 8.0, "lineSpacing": 1.0791666507720947, "lineSpacingType": "Multiple" }, "background": { "color": "#FFFFFFFF" }, "styles": [{ "type": "Paragraph", "name": "Normal", "next": "Normal" }, { "type": "Character", "name": "Default Paragraph Font" }, { "type": "Paragraph", "name": "Notes", "basedOn": "Normal", "next": "Normal", "characterFormat": { "bold": true }, "paragraphFormat": { "afterSpacing": 6.0, "lineSpacing": 1.0, "lineSpacingType": "Multiple" } }, { "type": "Paragraph", "name": "Header", "basedOn": "Normal", "next": "Normal", "link": "Header Char", "paragraphFormat": { "afterSpacing": 0.0, "lineSpacing": 1.0, "lineSpacingType": "Multiple", "tabs": [{ "tabJustification": "Center", "position": 234.0, "tabLeader": "None", "deletePosition": 0.0 }, { "tabJustification": "Right", "position": 468.0, "tabLeader": "None", "deletePosition": 0.0 }] } }, { "type": "Character", "name": "Header Char", "basedOn": "Default Paragraph Font" }, { "type": "Paragraph", "name": "Footer", "basedOn": "Normal", "link": "Footer Char", "paragraphFormat": { "afterSpacing": 0.0, "lineSpacing": 1.0, "lineSpacingType": "Multiple", "tabs": [{ "tabJustification": "Center", "position": 234.0, "tabLeader": "None", "deletePosition": 0.0 }, { "tabJustification": "Right", "position": 468.0, "tabLeader": "None", "deletePosition": 0.0 }] } }, { "type": "Character", "name": "Footer Char", "basedOn": "Default Paragraph Font" }] };
// tslint:enable
let waitingPopUp: HTMLElement = document.getElementById('waiting-popup');
let popupOverlay: HTMLElement = document.getElementById('popup-overlay');
waitingPopUp.style.display = 'block';
this.documenteditor.open(JSON.stringify(defaultDocument));
this.documenteditor.documentName = 'Table Formatting';
waitingPopUp.style.display = 'none';
popupOverlay.style.display = 'none';
this.documenteditor.focusIn();
this.fontProperties.updateStyles();
}
onWindowResize = (): void => {
this.updateContainerSize();
}
}