tdrpa.tdworker 1.2.13.2__py312-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tdrpa/_tdxlwings/__init__.py +193 -0
- tdrpa/_tdxlwings/__pycache__/__init__.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/__init__.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/_win32patch.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/_win32patch.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/_xlwindows.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/_xlwindows.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/apps.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/apps.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/base_classes.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/base_classes.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/com_server.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/com_server.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/constants.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/constants.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/expansion.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/expansion.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/main.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/main.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/udfs.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/udfs.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/utils.cpython-311.pyc +0 -0
- tdrpa/_tdxlwings/__pycache__/utils.cpython-38.pyc +0 -0
- tdrpa/_tdxlwings/_win32patch.py +90 -0
- tdrpa/_tdxlwings/_xlmac.py +2240 -0
- tdrpa/_tdxlwings/_xlwindows.py +2518 -0
- tdrpa/_tdxlwings/addin/Dictionary.cls +474 -0
- tdrpa/_tdxlwings/addin/IWebAuthenticator.cls +71 -0
- tdrpa/_tdxlwings/addin/WebClient.cls +772 -0
- tdrpa/_tdxlwings/addin/WebHelpers.bas +3203 -0
- tdrpa/_tdxlwings/addin/WebRequest.cls +875 -0
- tdrpa/_tdxlwings/addin/WebResponse.cls +453 -0
- tdrpa/_tdxlwings/addin/xlwings.xlam +0 -0
- tdrpa/_tdxlwings/apps.py +35 -0
- tdrpa/_tdxlwings/base_classes.py +1092 -0
- tdrpa/_tdxlwings/cli.py +1306 -0
- tdrpa/_tdxlwings/com_server.py +385 -0
- tdrpa/_tdxlwings/constants.py +3080 -0
- tdrpa/_tdxlwings/conversion/__init__.py +103 -0
- tdrpa/_tdxlwings/conversion/framework.py +147 -0
- tdrpa/_tdxlwings/conversion/numpy_conv.py +34 -0
- tdrpa/_tdxlwings/conversion/pandas_conv.py +184 -0
- tdrpa/_tdxlwings/conversion/standard.py +321 -0
- tdrpa/_tdxlwings/expansion.py +83 -0
- tdrpa/_tdxlwings/ext/__init__.py +3 -0
- tdrpa/_tdxlwings/ext/sql.py +73 -0
- tdrpa/_tdxlwings/html/xlwings-alert.html +71 -0
- tdrpa/_tdxlwings/js/xlwings.js +577 -0
- tdrpa/_tdxlwings/js/xlwings.ts +729 -0
- tdrpa/_tdxlwings/mac_dict.py +6399 -0
- tdrpa/_tdxlwings/main.py +5205 -0
- tdrpa/_tdxlwings/mistune/__init__.py +63 -0
- tdrpa/_tdxlwings/mistune/block_parser.py +366 -0
- tdrpa/_tdxlwings/mistune/inline_parser.py +216 -0
- tdrpa/_tdxlwings/mistune/markdown.py +84 -0
- tdrpa/_tdxlwings/mistune/renderers.py +220 -0
- tdrpa/_tdxlwings/mistune/scanner.py +121 -0
- tdrpa/_tdxlwings/mistune/util.py +41 -0
- tdrpa/_tdxlwings/pro/__init__.py +40 -0
- tdrpa/_tdxlwings/pro/_xlcalamine.py +536 -0
- tdrpa/_tdxlwings/pro/_xlofficejs.py +146 -0
- tdrpa/_tdxlwings/pro/_xlremote.py +1293 -0
- tdrpa/_tdxlwings/pro/custom_functions_code.js +150 -0
- tdrpa/_tdxlwings/pro/embedded_code.py +60 -0
- tdrpa/_tdxlwings/pro/udfs_officejs.py +549 -0
- tdrpa/_tdxlwings/pro/utils.py +199 -0
- tdrpa/_tdxlwings/quickstart.xlsm +0 -0
- tdrpa/_tdxlwings/quickstart_addin.xlam +0 -0
- tdrpa/_tdxlwings/quickstart_addin_ribbon.xlam +0 -0
- tdrpa/_tdxlwings/quickstart_fastapi/main.py +47 -0
- tdrpa/_tdxlwings/quickstart_fastapi/requirements.txt +3 -0
- tdrpa/_tdxlwings/quickstart_standalone.xlsm +0 -0
- tdrpa/_tdxlwings/reports.py +12 -0
- tdrpa/_tdxlwings/rest/__init__.py +1 -0
- tdrpa/_tdxlwings/rest/api.py +368 -0
- tdrpa/_tdxlwings/rest/serializers.py +103 -0
- tdrpa/_tdxlwings/server.py +14 -0
- tdrpa/_tdxlwings/udfs.py +775 -0
- tdrpa/_tdxlwings/utils.py +777 -0
- tdrpa/_tdxlwings/xlwings-0.31.6.applescript +30 -0
- tdrpa/_tdxlwings/xlwings.bas +2061 -0
- tdrpa/_tdxlwings/xlwings_custom_addin.bas +2042 -0
- tdrpa/_tdxlwings/xlwingslib.cp38-win_amd64.pyd +0 -0
- tdrpa/tdworker/__init__.pyi +12 -0
- tdrpa/tdworker/_clip.pyi +50 -0
- tdrpa/tdworker/_excel.pyi +743 -0
- tdrpa/tdworker/_file.pyi +77 -0
- tdrpa/tdworker/_img.pyi +226 -0
- tdrpa/tdworker/_network.pyi +94 -0
- tdrpa/tdworker/_os.pyi +47 -0
- tdrpa/tdworker/_sp.pyi +21 -0
- tdrpa/tdworker/_w.pyi +129 -0
- tdrpa/tdworker/_web.pyi +995 -0
- tdrpa/tdworker/_winE.pyi +228 -0
- tdrpa/tdworker/_winK.pyi +74 -0
- tdrpa/tdworker/_winM.pyi +117 -0
- tdrpa/tdworker.cp312-win_amd64.pyd +0 -0
- tdrpa_tdworker-1.2.13.2.dist-info/METADATA +38 -0
- tdrpa_tdworker-1.2.13.2.dist-info/RECORD +101 -0
- tdrpa_tdworker-1.2.13.2.dist-info/WHEEL +5 -0
- tdrpa_tdworker-1.2.13.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1092 @@
|
|
1
|
+
# TODO: add all classes and use in _mac.py and _windows.py
|
2
|
+
|
3
|
+
|
4
|
+
class Apps:
|
5
|
+
def keys(self):
|
6
|
+
raise NotImplementedError()
|
7
|
+
|
8
|
+
def add(self, spec=None, add_book=None, xl=None, visible=None):
|
9
|
+
raise NotImplementedError()
|
10
|
+
|
11
|
+
@staticmethod
|
12
|
+
def cleanup():
|
13
|
+
raise NotImplementedError()
|
14
|
+
|
15
|
+
def __iter__(self):
|
16
|
+
raise NotImplementedError()
|
17
|
+
|
18
|
+
def __len__(self):
|
19
|
+
raise NotImplementedError()
|
20
|
+
|
21
|
+
def __getitem__(self, pid):
|
22
|
+
raise NotImplementedError()
|
23
|
+
|
24
|
+
|
25
|
+
class App:
|
26
|
+
@property
|
27
|
+
def xl(self):
|
28
|
+
raise NotImplementedError()
|
29
|
+
|
30
|
+
@xl.setter
|
31
|
+
def xl(self, value):
|
32
|
+
raise NotImplementedError()
|
33
|
+
|
34
|
+
@property
|
35
|
+
def api(self):
|
36
|
+
raise NotImplementedError()
|
37
|
+
|
38
|
+
@property
|
39
|
+
def selection(self):
|
40
|
+
raise NotImplementedError()
|
41
|
+
|
42
|
+
def activate(self, steal_focus=False):
|
43
|
+
raise NotImplementedError()
|
44
|
+
|
45
|
+
@property
|
46
|
+
def visible(self):
|
47
|
+
raise NotImplementedError()
|
48
|
+
|
49
|
+
@visible.setter
|
50
|
+
def visible(self, visible):
|
51
|
+
raise NotImplementedError()
|
52
|
+
|
53
|
+
def quit(self):
|
54
|
+
raise NotImplementedError()
|
55
|
+
|
56
|
+
def kill(self):
|
57
|
+
raise NotImplementedError()
|
58
|
+
|
59
|
+
@property
|
60
|
+
def screen_updating(self):
|
61
|
+
raise NotImplementedError()
|
62
|
+
|
63
|
+
@screen_updating.setter
|
64
|
+
def screen_updating(self, value):
|
65
|
+
raise NotImplementedError()
|
66
|
+
|
67
|
+
@property
|
68
|
+
def display_alerts(self):
|
69
|
+
raise NotImplementedError()
|
70
|
+
|
71
|
+
@display_alerts.setter
|
72
|
+
def display_alerts(self, value):
|
73
|
+
raise NotImplementedError()
|
74
|
+
|
75
|
+
@property
|
76
|
+
def enable_events(self):
|
77
|
+
raise NotImplementedError()
|
78
|
+
|
79
|
+
@enable_events.setter
|
80
|
+
def enable_events(self, value):
|
81
|
+
raise NotImplementedError()
|
82
|
+
|
83
|
+
@property
|
84
|
+
def interactive(self):
|
85
|
+
raise NotImplementedError()
|
86
|
+
|
87
|
+
@interactive.setter
|
88
|
+
def interactive(self, value):
|
89
|
+
raise NotImplementedError()
|
90
|
+
|
91
|
+
@property
|
92
|
+
def startup_path(self):
|
93
|
+
raise NotImplementedError()
|
94
|
+
|
95
|
+
@property
|
96
|
+
def calculation(self):
|
97
|
+
raise NotImplementedError()
|
98
|
+
|
99
|
+
@calculation.setter
|
100
|
+
def calculation(self, value):
|
101
|
+
raise NotImplementedError()
|
102
|
+
|
103
|
+
def calculate(self):
|
104
|
+
raise NotImplementedError()
|
105
|
+
|
106
|
+
@property
|
107
|
+
def version(self):
|
108
|
+
raise NotImplementedError()
|
109
|
+
|
110
|
+
@property
|
111
|
+
def books(self):
|
112
|
+
raise NotImplementedError()
|
113
|
+
|
114
|
+
@property
|
115
|
+
def hwnd(self):
|
116
|
+
raise NotImplementedError()
|
117
|
+
|
118
|
+
@property
|
119
|
+
def path(self):
|
120
|
+
raise NotImplementedError()
|
121
|
+
|
122
|
+
@property
|
123
|
+
def pid(self):
|
124
|
+
raise NotImplementedError()
|
125
|
+
|
126
|
+
def run(self, macro, args):
|
127
|
+
raise NotImplementedError()
|
128
|
+
|
129
|
+
@property
|
130
|
+
def status_bar(self):
|
131
|
+
raise NotImplementedError()
|
132
|
+
|
133
|
+
@status_bar.setter
|
134
|
+
def status_bar(self, value):
|
135
|
+
raise NotImplementedError()
|
136
|
+
|
137
|
+
@property
|
138
|
+
def cut_copy_mode(self):
|
139
|
+
raise NotImplementedError()
|
140
|
+
|
141
|
+
@cut_copy_mode.setter
|
142
|
+
def cut_copy_mode(self, value):
|
143
|
+
raise NotImplementedError()
|
144
|
+
|
145
|
+
def alert(self, prompt, title, buttons, mode, callback):
|
146
|
+
raise NotImplementedError()
|
147
|
+
|
148
|
+
|
149
|
+
class Books:
|
150
|
+
@property
|
151
|
+
def api(self):
|
152
|
+
raise NotImplementedError()
|
153
|
+
|
154
|
+
@property
|
155
|
+
def active(self):
|
156
|
+
raise NotImplementedError()
|
157
|
+
|
158
|
+
def __call__(self, name_or_index):
|
159
|
+
raise NotImplementedError()
|
160
|
+
|
161
|
+
def __len__(self):
|
162
|
+
raise NotImplementedError()
|
163
|
+
|
164
|
+
def add(self):
|
165
|
+
raise NotImplementedError()
|
166
|
+
|
167
|
+
def open(
|
168
|
+
self,
|
169
|
+
fullname,
|
170
|
+
update_links=None,
|
171
|
+
read_only=None,
|
172
|
+
format=None,
|
173
|
+
password=None,
|
174
|
+
write_res_password=None,
|
175
|
+
ignore_read_only_recommended=None,
|
176
|
+
origin=None,
|
177
|
+
delimiter=None,
|
178
|
+
editable=None,
|
179
|
+
notify=None,
|
180
|
+
converter=None,
|
181
|
+
add_to_mru=None,
|
182
|
+
local=None,
|
183
|
+
corrupt_load=None,
|
184
|
+
):
|
185
|
+
raise NotImplementedError()
|
186
|
+
|
187
|
+
def __iter__(self):
|
188
|
+
raise NotImplementedError()
|
189
|
+
|
190
|
+
|
191
|
+
class Book:
|
192
|
+
@property
|
193
|
+
def api(self):
|
194
|
+
raise NotImplementedError()
|
195
|
+
|
196
|
+
def json(self):
|
197
|
+
raise NotImplementedError()
|
198
|
+
|
199
|
+
@property
|
200
|
+
def name(self):
|
201
|
+
raise NotImplementedError()
|
202
|
+
|
203
|
+
@property
|
204
|
+
def sheets(self):
|
205
|
+
raise NotImplementedError()
|
206
|
+
|
207
|
+
@property
|
208
|
+
def app(self):
|
209
|
+
raise NotImplementedError()
|
210
|
+
|
211
|
+
def close(self):
|
212
|
+
raise NotImplementedError()
|
213
|
+
|
214
|
+
def save(self, path=None, password=None):
|
215
|
+
raise NotImplementedError()
|
216
|
+
|
217
|
+
@property
|
218
|
+
def fullname(self):
|
219
|
+
raise NotImplementedError()
|
220
|
+
|
221
|
+
@property
|
222
|
+
def names(self):
|
223
|
+
raise NotImplementedError()
|
224
|
+
|
225
|
+
def activate(self):
|
226
|
+
raise NotImplementedError()
|
227
|
+
|
228
|
+
def to_pdf(self, path, quality):
|
229
|
+
raise NotImplementedError()
|
230
|
+
|
231
|
+
|
232
|
+
class Sheets:
|
233
|
+
@property
|
234
|
+
def api(self):
|
235
|
+
raise NotImplementedError()
|
236
|
+
|
237
|
+
@property
|
238
|
+
def active(self):
|
239
|
+
raise NotImplementedError()
|
240
|
+
|
241
|
+
def __call__(self, name_or_index):
|
242
|
+
raise NotImplementedError()
|
243
|
+
|
244
|
+
def __len__(self):
|
245
|
+
raise NotImplementedError()
|
246
|
+
|
247
|
+
def __iter__(self):
|
248
|
+
raise NotImplementedError()
|
249
|
+
|
250
|
+
def add(self, before=None, after=None):
|
251
|
+
raise NotImplementedError()
|
252
|
+
|
253
|
+
|
254
|
+
class Sheet:
|
255
|
+
@property
|
256
|
+
def api(self):
|
257
|
+
raise NotImplementedError()
|
258
|
+
|
259
|
+
@property
|
260
|
+
def name(self):
|
261
|
+
raise NotImplementedError()
|
262
|
+
|
263
|
+
@name.setter
|
264
|
+
def name(self, value):
|
265
|
+
raise NotImplementedError()
|
266
|
+
|
267
|
+
@property
|
268
|
+
def names(self):
|
269
|
+
raise NotImplementedError()
|
270
|
+
|
271
|
+
@property
|
272
|
+
def book(self):
|
273
|
+
raise NotImplementedError()
|
274
|
+
|
275
|
+
@property
|
276
|
+
def index(self):
|
277
|
+
raise NotImplementedError()
|
278
|
+
|
279
|
+
def range(self, arg1, arg2=None):
|
280
|
+
raise NotImplementedError()
|
281
|
+
|
282
|
+
@property
|
283
|
+
def cells(self):
|
284
|
+
raise NotImplementedError()
|
285
|
+
|
286
|
+
def activate(self):
|
287
|
+
raise NotImplementedError()
|
288
|
+
|
289
|
+
def select(self):
|
290
|
+
raise NotImplementedError()
|
291
|
+
|
292
|
+
def clear_contents(self):
|
293
|
+
raise NotImplementedError()
|
294
|
+
|
295
|
+
def clear_formats(self):
|
296
|
+
raise NotImplementedError()
|
297
|
+
|
298
|
+
def clear(self):
|
299
|
+
raise NotImplementedError()
|
300
|
+
|
301
|
+
def autofit(self, axis=None):
|
302
|
+
raise NotImplementedError()
|
303
|
+
|
304
|
+
def delete(self):
|
305
|
+
raise NotImplementedError()
|
306
|
+
|
307
|
+
def copy(self, before, after):
|
308
|
+
raise NotImplementedError()
|
309
|
+
|
310
|
+
@property
|
311
|
+
def charts(self):
|
312
|
+
raise NotImplementedError()
|
313
|
+
|
314
|
+
@property
|
315
|
+
def shapes(self):
|
316
|
+
raise NotImplementedError()
|
317
|
+
|
318
|
+
@property
|
319
|
+
def tables(self):
|
320
|
+
raise NotImplementedError()
|
321
|
+
|
322
|
+
@property
|
323
|
+
def pictures(self):
|
324
|
+
raise NotImplementedError()
|
325
|
+
|
326
|
+
@property
|
327
|
+
def used_range(self):
|
328
|
+
raise NotImplementedError()
|
329
|
+
|
330
|
+
@property
|
331
|
+
def visible(self):
|
332
|
+
raise NotImplementedError()
|
333
|
+
|
334
|
+
@visible.setter
|
335
|
+
def visible(self, value):
|
336
|
+
raise NotImplementedError()
|
337
|
+
|
338
|
+
@property
|
339
|
+
def page_setup(self):
|
340
|
+
raise NotImplementedError()
|
341
|
+
|
342
|
+
def to_html(self, path):
|
343
|
+
raise NotImplementedError()
|
344
|
+
|
345
|
+
|
346
|
+
class Range:
|
347
|
+
@property
|
348
|
+
def coords(self):
|
349
|
+
raise NotImplementedError()
|
350
|
+
|
351
|
+
@property
|
352
|
+
def api(self):
|
353
|
+
raise NotImplementedError()
|
354
|
+
|
355
|
+
def __len__(self):
|
356
|
+
raise NotImplementedError()
|
357
|
+
|
358
|
+
@property
|
359
|
+
def row(self):
|
360
|
+
raise NotImplementedError()
|
361
|
+
|
362
|
+
@property
|
363
|
+
def column(self):
|
364
|
+
raise NotImplementedError()
|
365
|
+
|
366
|
+
@property
|
367
|
+
def shape(self):
|
368
|
+
raise NotImplementedError()
|
369
|
+
|
370
|
+
@property
|
371
|
+
def raw_value(self):
|
372
|
+
raise NotImplementedError()
|
373
|
+
|
374
|
+
@raw_value.setter
|
375
|
+
def raw_value(self, value):
|
376
|
+
raise NotImplementedError()
|
377
|
+
|
378
|
+
def clear_contents(self):
|
379
|
+
raise NotImplementedError()
|
380
|
+
|
381
|
+
def clear_formats(self):
|
382
|
+
raise NotImplementedError()
|
383
|
+
|
384
|
+
def clear(self):
|
385
|
+
raise NotImplementedError()
|
386
|
+
|
387
|
+
def end(self, direction):
|
388
|
+
raise NotImplementedError()
|
389
|
+
|
390
|
+
@property
|
391
|
+
def formula(self):
|
392
|
+
raise NotImplementedError()
|
393
|
+
|
394
|
+
@formula.setter
|
395
|
+
def formula(self, value):
|
396
|
+
raise NotImplementedError()
|
397
|
+
|
398
|
+
@property
|
399
|
+
def formula2(self):
|
400
|
+
raise NotImplementedError()
|
401
|
+
|
402
|
+
@formula2.setter
|
403
|
+
def formula2(self, value):
|
404
|
+
raise NotImplementedError()
|
405
|
+
|
406
|
+
@property
|
407
|
+
def formula_array(self):
|
408
|
+
raise NotImplementedError()
|
409
|
+
|
410
|
+
@formula_array.setter
|
411
|
+
def formula_array(self, value):
|
412
|
+
raise NotImplementedError()
|
413
|
+
|
414
|
+
@property
|
415
|
+
def font(self):
|
416
|
+
raise NotImplementedError()
|
417
|
+
|
418
|
+
@property
|
419
|
+
def column_width(self):
|
420
|
+
raise NotImplementedError()
|
421
|
+
|
422
|
+
@column_width.setter
|
423
|
+
def column_width(self, value):
|
424
|
+
raise NotImplementedError()
|
425
|
+
|
426
|
+
@property
|
427
|
+
def row_height(self):
|
428
|
+
raise NotImplementedError()
|
429
|
+
|
430
|
+
@row_height.setter
|
431
|
+
def row_height(self, value):
|
432
|
+
raise NotImplementedError()
|
433
|
+
|
434
|
+
@property
|
435
|
+
def width(self):
|
436
|
+
raise NotImplementedError()
|
437
|
+
|
438
|
+
@property
|
439
|
+
def height(self):
|
440
|
+
raise NotImplementedError()
|
441
|
+
|
442
|
+
@property
|
443
|
+
def left(self):
|
444
|
+
raise NotImplementedError()
|
445
|
+
|
446
|
+
@property
|
447
|
+
def top(self):
|
448
|
+
raise NotImplementedError()
|
449
|
+
|
450
|
+
@property
|
451
|
+
def has_array(self):
|
452
|
+
raise NotImplementedError()
|
453
|
+
|
454
|
+
@property
|
455
|
+
def number_format(self):
|
456
|
+
raise NotImplementedError()
|
457
|
+
|
458
|
+
@number_format.setter
|
459
|
+
def number_format(self, value):
|
460
|
+
raise NotImplementedError()
|
461
|
+
|
462
|
+
def get_address(self, row_absolute, col_absolute, external):
|
463
|
+
raise NotImplementedError()
|
464
|
+
|
465
|
+
@property
|
466
|
+
def address(self):
|
467
|
+
raise NotImplementedError()
|
468
|
+
|
469
|
+
@property
|
470
|
+
def current_region(self):
|
471
|
+
raise NotImplementedError()
|
472
|
+
|
473
|
+
def autofit(self, axis=None):
|
474
|
+
raise NotImplementedError()
|
475
|
+
|
476
|
+
def insert(self, shift=None, copy_origin=None):
|
477
|
+
raise NotImplementedError()
|
478
|
+
|
479
|
+
def delete(self, shift=None):
|
480
|
+
raise NotImplementedError()
|
481
|
+
|
482
|
+
def copy(self, destination=None):
|
483
|
+
raise NotImplementedError()
|
484
|
+
|
485
|
+
def paste(self, paste=None, operation=None, skip_blanks=False, transpose=False):
|
486
|
+
raise NotImplementedError()
|
487
|
+
|
488
|
+
@property
|
489
|
+
def hyperlink(self):
|
490
|
+
raise NotImplementedError()
|
491
|
+
|
492
|
+
def add_hyperlink(self, address, text_to_display=None, screen_tip=None):
|
493
|
+
raise NotImplementedError()
|
494
|
+
|
495
|
+
@property
|
496
|
+
def color(self):
|
497
|
+
raise NotImplementedError()
|
498
|
+
|
499
|
+
@color.setter
|
500
|
+
def color(self, color_or_rgb):
|
501
|
+
raise NotImplementedError()
|
502
|
+
|
503
|
+
@property
|
504
|
+
def name(self):
|
505
|
+
raise NotImplementedError()
|
506
|
+
|
507
|
+
@name.setter
|
508
|
+
def name(self, value):
|
509
|
+
raise NotImplementedError()
|
510
|
+
|
511
|
+
def __call__(self, arg1, arg2=None):
|
512
|
+
raise NotImplementedError()
|
513
|
+
|
514
|
+
@property
|
515
|
+
def rows(self):
|
516
|
+
raise NotImplementedError()
|
517
|
+
|
518
|
+
@property
|
519
|
+
def columns(self):
|
520
|
+
raise NotImplementedError()
|
521
|
+
|
522
|
+
def select(self):
|
523
|
+
raise NotImplementedError()
|
524
|
+
|
525
|
+
@property
|
526
|
+
def merge_area(self):
|
527
|
+
raise NotImplementedError()
|
528
|
+
|
529
|
+
@property
|
530
|
+
def merge_cells(self):
|
531
|
+
raise NotImplementedError()
|
532
|
+
|
533
|
+
def merge(self, across):
|
534
|
+
raise NotImplementedError()
|
535
|
+
|
536
|
+
def unmerge(self):
|
537
|
+
raise NotImplementedError()
|
538
|
+
|
539
|
+
@property
|
540
|
+
def table(self):
|
541
|
+
raise NotImplementedError()
|
542
|
+
|
543
|
+
@property
|
544
|
+
def characters(self):
|
545
|
+
raise NotImplementedError()
|
546
|
+
|
547
|
+
@property
|
548
|
+
def wrap_text(self):
|
549
|
+
raise NotImplementedError()
|
550
|
+
|
551
|
+
@wrap_text.setter
|
552
|
+
def wrap_text(self, value):
|
553
|
+
raise NotImplementedError()
|
554
|
+
|
555
|
+
@property
|
556
|
+
def note(self):
|
557
|
+
raise NotImplementedError()
|
558
|
+
|
559
|
+
def copy_picture(self, appearance, format):
|
560
|
+
raise NotImplementedError()
|
561
|
+
|
562
|
+
def to_png(self, path):
|
563
|
+
raise NotImplementedError()
|
564
|
+
|
565
|
+
def to_pdf(self, path, quality):
|
566
|
+
raise NotImplementedError()
|
567
|
+
|
568
|
+
def autofill(self, destination, type_):
|
569
|
+
raise NotImplementedError()
|
570
|
+
|
571
|
+
|
572
|
+
class Picture:
|
573
|
+
@property
|
574
|
+
def api(self):
|
575
|
+
raise NotImplementedError()
|
576
|
+
|
577
|
+
@property
|
578
|
+
def name(self):
|
579
|
+
raise NotImplementedError()
|
580
|
+
|
581
|
+
@name.setter
|
582
|
+
def name(self, value):
|
583
|
+
raise NotImplementedError()
|
584
|
+
|
585
|
+
@property
|
586
|
+
def parent(self):
|
587
|
+
raise NotImplementedError()
|
588
|
+
|
589
|
+
@property
|
590
|
+
def left(self):
|
591
|
+
raise NotImplementedError()
|
592
|
+
|
593
|
+
@left.setter
|
594
|
+
def left(self, value):
|
595
|
+
raise NotImplementedError()
|
596
|
+
|
597
|
+
@property
|
598
|
+
def top(self):
|
599
|
+
raise NotImplementedError()
|
600
|
+
|
601
|
+
@top.setter
|
602
|
+
def top(self, value):
|
603
|
+
raise NotImplementedError()
|
604
|
+
|
605
|
+
@property
|
606
|
+
def width(self):
|
607
|
+
raise NotImplementedError()
|
608
|
+
|
609
|
+
@width.setter
|
610
|
+
def width(self, value):
|
611
|
+
raise NotImplementedError()
|
612
|
+
|
613
|
+
@property
|
614
|
+
def height(self):
|
615
|
+
raise NotImplementedError()
|
616
|
+
|
617
|
+
@height.setter
|
618
|
+
def height(self, value):
|
619
|
+
raise NotImplementedError()
|
620
|
+
|
621
|
+
def delete(self):
|
622
|
+
raise NotImplementedError()
|
623
|
+
|
624
|
+
@property
|
625
|
+
def lock_aspect_ratio(self):
|
626
|
+
raise NotImplementedError()
|
627
|
+
|
628
|
+
@lock_aspect_ratio.setter
|
629
|
+
def lock_aspect_ratio(self, value):
|
630
|
+
raise NotImplementedError()
|
631
|
+
|
632
|
+
def index(self):
|
633
|
+
raise NotImplementedError()
|
634
|
+
|
635
|
+
|
636
|
+
class Collection:
|
637
|
+
@property
|
638
|
+
def api(self):
|
639
|
+
raise NotImplementedError()
|
640
|
+
|
641
|
+
@property
|
642
|
+
def parent(self):
|
643
|
+
raise NotImplementedError()
|
644
|
+
|
645
|
+
def __call__(self, key):
|
646
|
+
raise NotImplementedError()
|
647
|
+
|
648
|
+
def __len__(self):
|
649
|
+
raise NotImplementedError()
|
650
|
+
|
651
|
+
def __iter__(self):
|
652
|
+
raise NotImplementedError()
|
653
|
+
|
654
|
+
def __contains__(self, key):
|
655
|
+
raise NotImplementedError()
|
656
|
+
|
657
|
+
|
658
|
+
class Pictures:
|
659
|
+
def add(self, filename, link_to_file, save_with_document, left, top, width, height):
|
660
|
+
raise NotImplementedError()
|
661
|
+
|
662
|
+
|
663
|
+
class Names:
|
664
|
+
# @property
|
665
|
+
# def api(self):
|
666
|
+
# raise NotImplementedError()
|
667
|
+
|
668
|
+
def __call__(self, name_or_index):
|
669
|
+
raise NotImplementedError()
|
670
|
+
|
671
|
+
def contains(self, name_or_index):
|
672
|
+
raise NotImplementedError()
|
673
|
+
|
674
|
+
def __len__(self):
|
675
|
+
raise NotImplementedError()
|
676
|
+
|
677
|
+
def add(self, name, refers_to):
|
678
|
+
raise NotImplementedError()
|
679
|
+
|
680
|
+
|
681
|
+
class Name:
|
682
|
+
# @property
|
683
|
+
# def api(self):
|
684
|
+
# raise NotImplementedError()
|
685
|
+
|
686
|
+
def delete(self):
|
687
|
+
raise NotImplementedError()
|
688
|
+
|
689
|
+
@property
|
690
|
+
def name(self):
|
691
|
+
raise NotImplementedError()
|
692
|
+
|
693
|
+
@name.setter
|
694
|
+
def name(self, value):
|
695
|
+
raise NotImplementedError()
|
696
|
+
|
697
|
+
@property
|
698
|
+
def refers_to(self):
|
699
|
+
raise NotImplementedError()
|
700
|
+
|
701
|
+
@refers_to.setter
|
702
|
+
def refers_to(self, value):
|
703
|
+
raise NotImplementedError()
|
704
|
+
|
705
|
+
@property
|
706
|
+
def refers_to_range(self):
|
707
|
+
raise NotImplementedError()
|
708
|
+
|
709
|
+
|
710
|
+
class Shape:
|
711
|
+
@property
|
712
|
+
def api(self):
|
713
|
+
raise NotImplementedError()
|
714
|
+
|
715
|
+
@property
|
716
|
+
def name(self):
|
717
|
+
raise NotImplementedError()
|
718
|
+
|
719
|
+
@property
|
720
|
+
def parent(self):
|
721
|
+
raise NotImplementedError()
|
722
|
+
|
723
|
+
@property
|
724
|
+
def type(self):
|
725
|
+
raise NotImplementedError()
|
726
|
+
|
727
|
+
@property
|
728
|
+
def left(self):
|
729
|
+
raise NotImplementedError()
|
730
|
+
|
731
|
+
@left.setter
|
732
|
+
def left(self, value):
|
733
|
+
raise NotImplementedError()
|
734
|
+
|
735
|
+
@property
|
736
|
+
def top(self):
|
737
|
+
raise NotImplementedError()
|
738
|
+
|
739
|
+
@top.setter
|
740
|
+
def top(self, value):
|
741
|
+
raise NotImplementedError()
|
742
|
+
|
743
|
+
@property
|
744
|
+
def width(self):
|
745
|
+
raise NotImplementedError()
|
746
|
+
|
747
|
+
@width.setter
|
748
|
+
def width(self, value):
|
749
|
+
raise NotImplementedError()
|
750
|
+
|
751
|
+
@property
|
752
|
+
def height(self):
|
753
|
+
raise NotImplementedError()
|
754
|
+
|
755
|
+
@height.setter
|
756
|
+
def height(self, value):
|
757
|
+
raise NotImplementedError()
|
758
|
+
|
759
|
+
def delete(self):
|
760
|
+
raise NotImplementedError()
|
761
|
+
|
762
|
+
@name.setter
|
763
|
+
def name(self, value):
|
764
|
+
raise NotImplementedError()
|
765
|
+
|
766
|
+
@property
|
767
|
+
def index(self):
|
768
|
+
raise NotImplementedError()
|
769
|
+
|
770
|
+
def activate(self):
|
771
|
+
raise NotImplementedError()
|
772
|
+
|
773
|
+
def scale_height(self, factor, relative_to_original_size, scale):
|
774
|
+
raise NotImplementedError()
|
775
|
+
|
776
|
+
def scale_width(self, factor, relative_to_original_size, scale):
|
777
|
+
raise NotImplementedError()
|
778
|
+
|
779
|
+
@property
|
780
|
+
def text(self):
|
781
|
+
raise NotImplementedError()
|
782
|
+
|
783
|
+
@text.setter
|
784
|
+
def text(self, value):
|
785
|
+
raise NotImplementedError()
|
786
|
+
|
787
|
+
@property
|
788
|
+
def font(self):
|
789
|
+
raise NotImplementedError()
|
790
|
+
|
791
|
+
@property
|
792
|
+
def characters(self):
|
793
|
+
raise NotImplementedError()
|
794
|
+
|
795
|
+
|
796
|
+
class Font:
|
797
|
+
@property
|
798
|
+
def api(self):
|
799
|
+
raise NotImplementedError()
|
800
|
+
|
801
|
+
@property
|
802
|
+
def bold(self):
|
803
|
+
raise NotImplementedError()
|
804
|
+
|
805
|
+
@bold.setter
|
806
|
+
def bold(self, value):
|
807
|
+
raise NotImplementedError()
|
808
|
+
|
809
|
+
@property
|
810
|
+
def italic(self):
|
811
|
+
raise NotImplementedError()
|
812
|
+
|
813
|
+
@italic.setter
|
814
|
+
def italic(self, value):
|
815
|
+
raise NotImplementedError()
|
816
|
+
|
817
|
+
@property
|
818
|
+
def size(self):
|
819
|
+
raise NotImplementedError()
|
820
|
+
|
821
|
+
@size.setter
|
822
|
+
def size(self, value):
|
823
|
+
raise NotImplementedError()
|
824
|
+
|
825
|
+
@property
|
826
|
+
def color(self):
|
827
|
+
raise NotImplementedError()
|
828
|
+
|
829
|
+
@color.setter
|
830
|
+
def color(self, color_or_rgb):
|
831
|
+
raise NotImplementedError()
|
832
|
+
|
833
|
+
@property
|
834
|
+
def name(self):
|
835
|
+
raise NotImplementedError()
|
836
|
+
|
837
|
+
@name.setter
|
838
|
+
def name(self, value):
|
839
|
+
raise NotImplementedError()
|
840
|
+
|
841
|
+
|
842
|
+
class Characters:
|
843
|
+
@property
|
844
|
+
def api(self):
|
845
|
+
raise NotImplementedError()
|
846
|
+
|
847
|
+
@property
|
848
|
+
def text(self):
|
849
|
+
raise NotImplementedError()
|
850
|
+
|
851
|
+
@property
|
852
|
+
def font(self):
|
853
|
+
raise NotImplementedError()
|
854
|
+
|
855
|
+
def __getitem__(self, item):
|
856
|
+
raise NotImplementedError()
|
857
|
+
|
858
|
+
|
859
|
+
class PageSetup:
|
860
|
+
@property
|
861
|
+
def api(self):
|
862
|
+
raise NotImplementedError()
|
863
|
+
|
864
|
+
@property
|
865
|
+
def print_area(self):
|
866
|
+
raise NotImplementedError()
|
867
|
+
|
868
|
+
@print_area.setter
|
869
|
+
def print_area(self, value):
|
870
|
+
raise NotImplementedError()
|
871
|
+
|
872
|
+
|
873
|
+
class Note:
|
874
|
+
@property
|
875
|
+
def api(self):
|
876
|
+
raise NotImplementedError()
|
877
|
+
|
878
|
+
@property
|
879
|
+
def text(self):
|
880
|
+
raise NotImplementedError()
|
881
|
+
|
882
|
+
@text.setter
|
883
|
+
def text(self, value):
|
884
|
+
raise NotImplementedError()
|
885
|
+
|
886
|
+
def delete(self):
|
887
|
+
raise NotImplementedError()
|
888
|
+
|
889
|
+
|
890
|
+
class Table:
|
891
|
+
@property
|
892
|
+
def api(self):
|
893
|
+
raise NotImplementedError()
|
894
|
+
|
895
|
+
@property
|
896
|
+
def name(self):
|
897
|
+
raise NotImplementedError()
|
898
|
+
|
899
|
+
@name.setter
|
900
|
+
def name(self, value):
|
901
|
+
raise NotImplementedError()
|
902
|
+
|
903
|
+
@property
|
904
|
+
def data_body_range(self):
|
905
|
+
raise NotImplementedError()
|
906
|
+
|
907
|
+
@property
|
908
|
+
def display_name(self):
|
909
|
+
# This seems to be equivalent to name and Office Scripts has dropped it
|
910
|
+
raise NotImplementedError()
|
911
|
+
|
912
|
+
@display_name.setter
|
913
|
+
def display_name(self, value):
|
914
|
+
raise NotImplementedError()
|
915
|
+
|
916
|
+
@property
|
917
|
+
def header_row_range(self):
|
918
|
+
raise NotImplementedError()
|
919
|
+
|
920
|
+
@property
|
921
|
+
def insert_row_range(self):
|
922
|
+
raise NotImplementedError()
|
923
|
+
|
924
|
+
@property
|
925
|
+
def parent(self):
|
926
|
+
raise NotImplementedError()
|
927
|
+
|
928
|
+
@property
|
929
|
+
def range(self):
|
930
|
+
raise NotImplementedError()
|
931
|
+
|
932
|
+
@property
|
933
|
+
def show_autofilter(self):
|
934
|
+
raise NotImplementedError()
|
935
|
+
|
936
|
+
@show_autofilter.setter
|
937
|
+
def show_autofilter(self, value):
|
938
|
+
raise NotImplementedError()
|
939
|
+
|
940
|
+
@property
|
941
|
+
def show_headers(self):
|
942
|
+
raise NotImplementedError()
|
943
|
+
|
944
|
+
@show_headers.setter
|
945
|
+
def show_headers(self, value):
|
946
|
+
raise NotImplementedError()
|
947
|
+
|
948
|
+
@property
|
949
|
+
def show_table_style_column_stripes(self):
|
950
|
+
raise NotImplementedError()
|
951
|
+
|
952
|
+
@show_table_style_column_stripes.setter
|
953
|
+
def show_table_style_column_stripes(self, value):
|
954
|
+
raise NotImplementedError()
|
955
|
+
|
956
|
+
@property
|
957
|
+
def show_table_style_first_column(self):
|
958
|
+
raise NotImplementedError()
|
959
|
+
|
960
|
+
@show_table_style_first_column.setter
|
961
|
+
def show_table_style_first_column(self, value):
|
962
|
+
raise NotImplementedError()
|
963
|
+
|
964
|
+
@property
|
965
|
+
def show_table_style_last_column(self):
|
966
|
+
raise NotImplementedError()
|
967
|
+
|
968
|
+
@show_table_style_last_column.setter
|
969
|
+
def show_table_style_last_column(self, value):
|
970
|
+
raise NotImplementedError()
|
971
|
+
|
972
|
+
@property
|
973
|
+
def show_table_style_row_stripes(self):
|
974
|
+
raise NotImplementedError()
|
975
|
+
|
976
|
+
@show_table_style_row_stripes.setter
|
977
|
+
def show_table_style_row_stripes(self, value):
|
978
|
+
raise NotImplementedError()
|
979
|
+
|
980
|
+
@property
|
981
|
+
def show_totals(self):
|
982
|
+
raise NotImplementedError()
|
983
|
+
|
984
|
+
@show_totals.setter
|
985
|
+
def show_totals(self, value):
|
986
|
+
raise NotImplementedError()
|
987
|
+
|
988
|
+
@property
|
989
|
+
def table_style(self):
|
990
|
+
raise NotImplementedError()
|
991
|
+
|
992
|
+
@table_style.setter
|
993
|
+
def table_style(self, value):
|
994
|
+
raise NotImplementedError()
|
995
|
+
|
996
|
+
@property
|
997
|
+
def totals_row_range(self):
|
998
|
+
raise NotImplementedError()
|
999
|
+
|
1000
|
+
def resize(self, range):
|
1001
|
+
raise NotImplementedError()
|
1002
|
+
|
1003
|
+
|
1004
|
+
class Tables:
|
1005
|
+
def add(
|
1006
|
+
self,
|
1007
|
+
source_type=None,
|
1008
|
+
source=None,
|
1009
|
+
link_source=None,
|
1010
|
+
has_headers=None,
|
1011
|
+
destination=None,
|
1012
|
+
table_style_name=None,
|
1013
|
+
):
|
1014
|
+
raise NotImplementedError()
|
1015
|
+
|
1016
|
+
|
1017
|
+
class Chart:
|
1018
|
+
@property
|
1019
|
+
def api(self):
|
1020
|
+
raise NotImplementedError()
|
1021
|
+
|
1022
|
+
@property
|
1023
|
+
def name(self):
|
1024
|
+
raise NotImplementedError()
|
1025
|
+
|
1026
|
+
@name.setter
|
1027
|
+
def name(self, value):
|
1028
|
+
raise NotImplementedError()
|
1029
|
+
|
1030
|
+
@property
|
1031
|
+
def parent(self):
|
1032
|
+
raise NotImplementedError()
|
1033
|
+
|
1034
|
+
def set_source_data(self, rng):
|
1035
|
+
raise NotImplementedError()
|
1036
|
+
|
1037
|
+
@property
|
1038
|
+
def chart_type(self):
|
1039
|
+
raise NotImplementedError()
|
1040
|
+
|
1041
|
+
@chart_type.setter
|
1042
|
+
def chart_type(self, chart_type):
|
1043
|
+
raise NotImplementedError()
|
1044
|
+
|
1045
|
+
@property
|
1046
|
+
def left(self):
|
1047
|
+
raise NotImplementedError()
|
1048
|
+
|
1049
|
+
@left.setter
|
1050
|
+
def left(self, value):
|
1051
|
+
raise NotImplementedError()
|
1052
|
+
|
1053
|
+
@property
|
1054
|
+
def top(self):
|
1055
|
+
raise NotImplementedError()
|
1056
|
+
|
1057
|
+
@top.setter
|
1058
|
+
def top(self, value):
|
1059
|
+
raise NotImplementedError()
|
1060
|
+
|
1061
|
+
@property
|
1062
|
+
def width(self):
|
1063
|
+
raise NotImplementedError()
|
1064
|
+
|
1065
|
+
@width.setter
|
1066
|
+
def width(self, value):
|
1067
|
+
raise NotImplementedError()
|
1068
|
+
|
1069
|
+
@property
|
1070
|
+
def height(self):
|
1071
|
+
raise NotImplementedError()
|
1072
|
+
|
1073
|
+
@height.setter
|
1074
|
+
def height(self, value):
|
1075
|
+
raise NotImplementedError()
|
1076
|
+
|
1077
|
+
def delete(self):
|
1078
|
+
raise NotImplementedError()
|
1079
|
+
|
1080
|
+
def to_png(self, path):
|
1081
|
+
raise NotImplementedError()
|
1082
|
+
|
1083
|
+
def to_pdf(self, path, quality):
|
1084
|
+
raise NotImplementedError()
|
1085
|
+
|
1086
|
+
|
1087
|
+
class Charts:
|
1088
|
+
def _wrap(self, xl):
|
1089
|
+
raise NotImplementedError()
|
1090
|
+
|
1091
|
+
def add(self, left, top, width, height):
|
1092
|
+
raise NotImplementedError()
|