@mescius/wijmo.angular2.grid.sheet 5.20232.939

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.
package/index.d.ts ADDED
@@ -0,0 +1,582 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+ /**
14
+ * {@module wijmo.angular2.grid.sheet}
15
+ * Contains Angular 2 components for the <b>wijmo.grid.sheet</b> module.
16
+ *
17
+ * <b>wijmo.angular2.grid.sheet</b> is an external TypeScript module that can be imported to your code
18
+ * using its ambient module name. For example:
19
+ *
20
+ * <pre>import * as wjSheet from 'wijmo/wijmo.angular2.grid.sheet';
21
+ * &nbsp;
22
+ * &#64;Component({
23
+ * directives: [wjSheet.WjFlexSheet],
24
+ * template: `&lt;wj-flex-sheet&gt;&lt;/wj-flex-sheet&gt;`,
25
+ * selector: 'my-cmp',
26
+ * })
27
+ * export class MyCmp {
28
+ * }</pre>
29
+ *
30
+ */
31
+ /**
32
+ *
33
+ */
34
+ import * as ɵngcc0 from '@angular/core';
35
+ import * as ɵngcc1 from '@angular/common';
36
+ export declare var ___keepComment: any;
37
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy, SimpleChange } from '@angular/core';
38
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2.directivebase';
39
+ import * as wjcGridSheet from '@grapecity/wijmo.grid.sheet';
40
+ declare var wjFlexSheetMeta: IWjComponentMeta;
41
+ export { wjFlexSheetMeta };
42
+ /**
43
+ * Angular 2 component for the {@link wijmo.grid.sheet.FlexSheet} control.
44
+ *
45
+ * Use the <b>wj-flex-sheet</b> component to add <b>FlexSheet</b> controls to your
46
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
47
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
48
+ *
49
+ * The <b>WjFlexSheet</b> component is derived from the <b>FlexSheet</b> control and
50
+ * inherits all its properties, events and methods.
51
+ *
52
+ * The <b>wj-flex-sheet</b> component may contain a {@link wijmo.angular2.grid.sheet.WjSheet} child component.
53
+ */
54
+ export declare class WjFlexSheet extends wjcGridSheet.FlexSheet implements OnInit, OnDestroy, AfterViewInit {
55
+ static readonly meta: IWjComponentMetadata;
56
+ private _wjBehaviour;
57
+ /**
58
+ * Indicates whether the component has been initialized by Angular.
59
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
60
+ */
61
+ isInitialized: boolean;
62
+ /**
63
+ * This event is triggered after the component has been initialized by Angular, that is
64
+ * all bound properties have been assigned and child components (if any) have been initialized.
65
+ */
66
+ initialized: EventEmitter<any>;
67
+ /**
68
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
69
+ * Default value is ''.
70
+ */
71
+ wjModelProperty: string;
72
+ /**
73
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
74
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
75
+ */
76
+ asyncBindings: boolean;
77
+ /**
78
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
79
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
80
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
81
+ */
82
+ gotFocusNg: EventEmitter<any>;
83
+ /**
84
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
85
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
86
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
87
+ */
88
+ lostFocusNg: EventEmitter<any>;
89
+ /**
90
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
91
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
92
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
93
+ */
94
+ refreshingNg: EventEmitter<any>;
95
+ /**
96
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
97
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
98
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
99
+ */
100
+ refreshedNg: EventEmitter<any>;
101
+ /**
102
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
103
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
104
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
105
+ */
106
+ invalidInputNg: EventEmitter<any>;
107
+ /**
108
+ * Angular (EventEmitter) version of the Wijmo <b>beginningEdit</b> event for programmatic access.
109
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
110
+ * In template bindings use the conventional <b>beginningEdit</b> Wijmo event name.
111
+ */
112
+ beginningEditNg: EventEmitter<any>;
113
+ /**
114
+ * Angular (EventEmitter) version of the Wijmo <b>cellEditEnded</b> event for programmatic access.
115
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
116
+ * In template bindings use the conventional <b>cellEditEnded</b> Wijmo event name.
117
+ */
118
+ cellEditEndedNg: EventEmitter<any>;
119
+ /**
120
+ * Angular (EventEmitter) version of the Wijmo <b>cellEditEnding</b> event for programmatic access.
121
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
122
+ * In template bindings use the conventional <b>cellEditEnding</b> Wijmo event name.
123
+ */
124
+ cellEditEndingNg: EventEmitter<any>;
125
+ /**
126
+ * Angular (EventEmitter) version of the Wijmo <b>prepareCellForEdit</b> event for programmatic access.
127
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
128
+ * In template bindings use the conventional <b>prepareCellForEdit</b> Wijmo event name.
129
+ */
130
+ prepareCellForEditNg: EventEmitter<any>;
131
+ /**
132
+ * Angular (EventEmitter) version of the Wijmo <b>formatItem</b> event for programmatic access.
133
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
134
+ * In template bindings use the conventional <b>formatItem</b> Wijmo event name.
135
+ */
136
+ formatItemNg: EventEmitter<any>;
137
+ /**
138
+ * Angular (EventEmitter) version of the Wijmo <b>resizingColumn</b> event for programmatic access.
139
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
140
+ * In template bindings use the conventional <b>resizingColumn</b> Wijmo event name.
141
+ */
142
+ resizingColumnNg: EventEmitter<any>;
143
+ /**
144
+ * Angular (EventEmitter) version of the Wijmo <b>resizedColumn</b> event for programmatic access.
145
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
146
+ * In template bindings use the conventional <b>resizedColumn</b> Wijmo event name.
147
+ */
148
+ resizedColumnNg: EventEmitter<any>;
149
+ /**
150
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizingColumn</b> event for programmatic access.
151
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
152
+ * In template bindings use the conventional <b>autoSizingColumn</b> Wijmo event name.
153
+ */
154
+ autoSizingColumnNg: EventEmitter<any>;
155
+ /**
156
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizedColumn</b> event for programmatic access.
157
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
158
+ * In template bindings use the conventional <b>autoSizedColumn</b> Wijmo event name.
159
+ */
160
+ autoSizedColumnNg: EventEmitter<any>;
161
+ /**
162
+ * Angular (EventEmitter) version of the Wijmo <b>draggingColumn</b> event for programmatic access.
163
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
164
+ * In template bindings use the conventional <b>draggingColumn</b> Wijmo event name.
165
+ */
166
+ draggingColumnNg: EventEmitter<any>;
167
+ /**
168
+ * Angular (EventEmitter) version of the Wijmo <b>draggingColumnOver</b> event for programmatic access.
169
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
170
+ * In template bindings use the conventional <b>draggingColumnOver</b> Wijmo event name.
171
+ */
172
+ draggingColumnOverNg: EventEmitter<any>;
173
+ /**
174
+ * Angular (EventEmitter) version of the Wijmo <b>draggedColumn</b> event for programmatic access.
175
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
176
+ * In template bindings use the conventional <b>draggedColumn</b> Wijmo event name.
177
+ */
178
+ draggedColumnNg: EventEmitter<any>;
179
+ /**
180
+ * Angular (EventEmitter) version of the Wijmo <b>sortingColumn</b> event for programmatic access.
181
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
182
+ * In template bindings use the conventional <b>sortingColumn</b> Wijmo event name.
183
+ */
184
+ sortingColumnNg: EventEmitter<any>;
185
+ /**
186
+ * Angular (EventEmitter) version of the Wijmo <b>sortedColumn</b> event for programmatic access.
187
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
188
+ * In template bindings use the conventional <b>sortedColumn</b> Wijmo event name.
189
+ */
190
+ sortedColumnNg: EventEmitter<any>;
191
+ /**
192
+ * Angular (EventEmitter) version of the Wijmo <b>pinningColumn</b> event for programmatic access.
193
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
194
+ * In template bindings use the conventional <b>pinningColumn</b> Wijmo event name.
195
+ */
196
+ pinningColumnNg: EventEmitter<any>;
197
+ /**
198
+ * Angular (EventEmitter) version of the Wijmo <b>pinnedColumn</b> event for programmatic access.
199
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
200
+ * In template bindings use the conventional <b>pinnedColumn</b> Wijmo event name.
201
+ */
202
+ pinnedColumnNg: EventEmitter<any>;
203
+ /**
204
+ * Angular (EventEmitter) version of the Wijmo <b>resizingRow</b> event for programmatic access.
205
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
206
+ * In template bindings use the conventional <b>resizingRow</b> Wijmo event name.
207
+ */
208
+ resizingRowNg: EventEmitter<any>;
209
+ /**
210
+ * Angular (EventEmitter) version of the Wijmo <b>resizedRow</b> event for programmatic access.
211
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
212
+ * In template bindings use the conventional <b>resizedRow</b> Wijmo event name.
213
+ */
214
+ resizedRowNg: EventEmitter<any>;
215
+ /**
216
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizingRow</b> event for programmatic access.
217
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
218
+ * In template bindings use the conventional <b>autoSizingRow</b> Wijmo event name.
219
+ */
220
+ autoSizingRowNg: EventEmitter<any>;
221
+ /**
222
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizedRow</b> event for programmatic access.
223
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
224
+ * In template bindings use the conventional <b>autoSizedRow</b> Wijmo event name.
225
+ */
226
+ autoSizedRowNg: EventEmitter<any>;
227
+ /**
228
+ * Angular (EventEmitter) version of the Wijmo <b>draggingRow</b> event for programmatic access.
229
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
230
+ * In template bindings use the conventional <b>draggingRow</b> Wijmo event name.
231
+ */
232
+ draggingRowNg: EventEmitter<any>;
233
+ /**
234
+ * Angular (EventEmitter) version of the Wijmo <b>draggingRowOver</b> event for programmatic access.
235
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
236
+ * In template bindings use the conventional <b>draggingRowOver</b> Wijmo event name.
237
+ */
238
+ draggingRowOverNg: EventEmitter<any>;
239
+ /**
240
+ * Angular (EventEmitter) version of the Wijmo <b>draggedRow</b> event for programmatic access.
241
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
242
+ * In template bindings use the conventional <b>draggedRow</b> Wijmo event name.
243
+ */
244
+ draggedRowNg: EventEmitter<any>;
245
+ /**
246
+ * Angular (EventEmitter) version of the Wijmo <b>deletingRow</b> event for programmatic access.
247
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
248
+ * In template bindings use the conventional <b>deletingRow</b> Wijmo event name.
249
+ */
250
+ deletingRowNg: EventEmitter<any>;
251
+ /**
252
+ * Angular (EventEmitter) version of the Wijmo <b>deletedRow</b> event for programmatic access.
253
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
254
+ * In template bindings use the conventional <b>deletedRow</b> Wijmo event name.
255
+ */
256
+ deletedRowNg: EventEmitter<any>;
257
+ /**
258
+ * Angular (EventEmitter) version of the Wijmo <b>loadingRows</b> event for programmatic access.
259
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
260
+ * In template bindings use the conventional <b>loadingRows</b> Wijmo event name.
261
+ */
262
+ loadingRowsNg: EventEmitter<any>;
263
+ /**
264
+ * Angular (EventEmitter) version of the Wijmo <b>loadedRows</b> event for programmatic access.
265
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
266
+ * In template bindings use the conventional <b>loadedRows</b> Wijmo event name.
267
+ */
268
+ loadedRowsNg: EventEmitter<any>;
269
+ /**
270
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditStarting</b> event for programmatic access.
271
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
272
+ * In template bindings use the conventional <b>rowEditStarting</b> Wijmo event name.
273
+ */
274
+ rowEditStartingNg: EventEmitter<any>;
275
+ /**
276
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditStarted</b> event for programmatic access.
277
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
278
+ * In template bindings use the conventional <b>rowEditStarted</b> Wijmo event name.
279
+ */
280
+ rowEditStartedNg: EventEmitter<any>;
281
+ /**
282
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditEnding</b> event for programmatic access.
283
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
284
+ * In template bindings use the conventional <b>rowEditEnding</b> Wijmo event name.
285
+ */
286
+ rowEditEndingNg: EventEmitter<any>;
287
+ /**
288
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditEnded</b> event for programmatic access.
289
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
290
+ * In template bindings use the conventional <b>rowEditEnded</b> Wijmo event name.
291
+ */
292
+ rowEditEndedNg: EventEmitter<any>;
293
+ /**
294
+ * Angular (EventEmitter) version of the Wijmo <b>rowAdded</b> event for programmatic access.
295
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
296
+ * In template bindings use the conventional <b>rowAdded</b> Wijmo event name.
297
+ */
298
+ rowAddedNg: EventEmitter<any>;
299
+ /**
300
+ * Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanging</b> event for programmatic access.
301
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
302
+ * In template bindings use the conventional <b>groupCollapsedChanging</b> Wijmo event name.
303
+ */
304
+ groupCollapsedChangingNg: EventEmitter<any>;
305
+ /**
306
+ * Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanged</b> event for programmatic access.
307
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
308
+ * In template bindings use the conventional <b>groupCollapsedChanged</b> Wijmo event name.
309
+ */
310
+ groupCollapsedChangedNg: EventEmitter<any>;
311
+ /**
312
+ * Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanging</b> event for programmatic access.
313
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
314
+ * In template bindings use the conventional <b>columnGroupCollapsedChanging</b> Wijmo event name.
315
+ */
316
+ columnGroupCollapsedChangingNg: EventEmitter<any>;
317
+ /**
318
+ * Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanged</b> event for programmatic access.
319
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
320
+ * In template bindings use the conventional <b>columnGroupCollapsedChanged</b> Wijmo event name.
321
+ */
322
+ columnGroupCollapsedChangedNg: EventEmitter<any>;
323
+ /**
324
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
325
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
326
+ * In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
327
+ */
328
+ itemsSourceChangingNg: EventEmitter<any>;
329
+ /**
330
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
331
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
332
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
333
+ */
334
+ itemsSourceChangedNg: EventEmitter<any>;
335
+ /**
336
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanging</b> event for programmatic access.
337
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
338
+ * In template bindings use the conventional <b>selectionChanging</b> Wijmo event name.
339
+ */
340
+ selectionChangingNg: EventEmitter<any>;
341
+ /**
342
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
343
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
344
+ * In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
345
+ */
346
+ selectionChangedNg: EventEmitter<any>;
347
+ /**
348
+ * Angular (EventEmitter) version of the Wijmo <b>scrollPositionChanged</b> event for programmatic access.
349
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
350
+ * In template bindings use the conventional <b>scrollPositionChanged</b> Wijmo event name.
351
+ */
352
+ scrollPositionChangedNg: EventEmitter<any>;
353
+ /**
354
+ * Angular (EventEmitter) version of the Wijmo <b>updatingView</b> event for programmatic access.
355
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
356
+ * In template bindings use the conventional <b>updatingView</b> Wijmo event name.
357
+ */
358
+ updatingViewNg: EventEmitter<any>;
359
+ /**
360
+ * Angular (EventEmitter) version of the Wijmo <b>updatedView</b> event for programmatic access.
361
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
362
+ * In template bindings use the conventional <b>updatedView</b> Wijmo event name.
363
+ */
364
+ updatedViewNg: EventEmitter<any>;
365
+ /**
366
+ * Angular (EventEmitter) version of the Wijmo <b>updatingLayout</b> event for programmatic access.
367
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
368
+ * In template bindings use the conventional <b>updatingLayout</b> Wijmo event name.
369
+ */
370
+ updatingLayoutNg: EventEmitter<any>;
371
+ /**
372
+ * Angular (EventEmitter) version of the Wijmo <b>updatedLayout</b> event for programmatic access.
373
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
374
+ * In template bindings use the conventional <b>updatedLayout</b> Wijmo event name.
375
+ */
376
+ updatedLayoutNg: EventEmitter<any>;
377
+ /**
378
+ * Angular (EventEmitter) version of the Wijmo <b>pasting</b> event for programmatic access.
379
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
380
+ * In template bindings use the conventional <b>pasting</b> Wijmo event name.
381
+ */
382
+ pastingNg: EventEmitter<any>;
383
+ /**
384
+ * Angular (EventEmitter) version of the Wijmo <b>pasted</b> event for programmatic access.
385
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
386
+ * In template bindings use the conventional <b>pasted</b> Wijmo event name.
387
+ */
388
+ pastedNg: EventEmitter<any>;
389
+ /**
390
+ * Angular (EventEmitter) version of the Wijmo <b>pastingCell</b> event for programmatic access.
391
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
392
+ * In template bindings use the conventional <b>pastingCell</b> Wijmo event name.
393
+ */
394
+ pastingCellNg: EventEmitter<any>;
395
+ /**
396
+ * Angular (EventEmitter) version of the Wijmo <b>pastedCell</b> event for programmatic access.
397
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
398
+ * In template bindings use the conventional <b>pastedCell</b> Wijmo event name.
399
+ */
400
+ pastedCellNg: EventEmitter<any>;
401
+ /**
402
+ * Angular (EventEmitter) version of the Wijmo <b>copying</b> event for programmatic access.
403
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
404
+ * In template bindings use the conventional <b>copying</b> Wijmo event name.
405
+ */
406
+ copyingNg: EventEmitter<any>;
407
+ /**
408
+ * Angular (EventEmitter) version of the Wijmo <b>copied</b> event for programmatic access.
409
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
410
+ * In template bindings use the conventional <b>copied</b> Wijmo event name.
411
+ */
412
+ copiedNg: EventEmitter<any>;
413
+ /**
414
+ * Angular (EventEmitter) version of the Wijmo <b>selectedSheetChanged</b> event for programmatic access.
415
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
416
+ * In template bindings use the conventional <b>selectedSheetChanged</b> Wijmo event name.
417
+ */
418
+ selectedSheetChangedNg: EventEmitter<any>;
419
+ /**
420
+ * This event is used to implement two-way binding to the <b>selectedSheetIndex</b> property.
421
+ * It's triggered when the property value changes, with the event argument holding the new property value.
422
+ * You can bind handlers to this event in templates using the <b>selectedSheetIndexChange</b> event name.
423
+ */
424
+ selectedSheetIndexChangePC: EventEmitter<any>;
425
+ /**
426
+ * Angular (EventEmitter) version of the Wijmo <b>draggingRowColumn</b> event for programmatic access.
427
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
428
+ * In template bindings use the conventional <b>draggingRowColumn</b> Wijmo event name.
429
+ */
430
+ draggingRowColumnNg: EventEmitter<any>;
431
+ /**
432
+ * Angular (EventEmitter) version of the Wijmo <b>droppingRowColumn</b> event for programmatic access.
433
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
434
+ * In template bindings use the conventional <b>droppingRowColumn</b> Wijmo event name.
435
+ */
436
+ droppingRowColumnNg: EventEmitter<any>;
437
+ /**
438
+ * Angular (EventEmitter) version of the Wijmo <b>beginDroppingRowColumn</b> event for programmatic access.
439
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
440
+ * In template bindings use the conventional <b>beginDroppingRowColumn</b> Wijmo event name.
441
+ */
442
+ beginDroppingRowColumnNg: EventEmitter<any>;
443
+ /**
444
+ * Angular (EventEmitter) version of the Wijmo <b>endDroppingRowColumn</b> event for programmatic access.
445
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
446
+ * In template bindings use the conventional <b>endDroppingRowColumn</b> Wijmo event name.
447
+ */
448
+ endDroppingRowColumnNg: EventEmitter<any>;
449
+ /**
450
+ * Angular (EventEmitter) version of the Wijmo <b>loaded</b> event for programmatic access.
451
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
452
+ * In template bindings use the conventional <b>loaded</b> Wijmo event name.
453
+ */
454
+ loadedNg: EventEmitter<any>;
455
+ /**
456
+ * Angular (EventEmitter) version of the Wijmo <b>unknownFunction</b> event for programmatic access.
457
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
458
+ * In template bindings use the conventional <b>unknownFunction</b> Wijmo event name.
459
+ */
460
+ unknownFunctionNg: EventEmitter<any>;
461
+ /**
462
+ * Angular (EventEmitter) version of the Wijmo <b>sheetCleared</b> event for programmatic access.
463
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
464
+ * In template bindings use the conventional <b>sheetCleared</b> Wijmo event name.
465
+ */
466
+ sheetClearedNg: EventEmitter<any>;
467
+ /**
468
+ * Angular (EventEmitter) version of the Wijmo <b>prepareChangingRow</b> event for programmatic access.
469
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
470
+ * In template bindings use the conventional <b>prepareChangingRow</b> Wijmo event name.
471
+ */
472
+ prepareChangingRowNg: EventEmitter<any>;
473
+ /**
474
+ * Angular (EventEmitter) version of the Wijmo <b>prepareChangingColumn</b> event for programmatic access.
475
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
476
+ * In template bindings use the conventional <b>prepareChangingColumn</b> Wijmo event name.
477
+ */
478
+ prepareChangingColumnNg: EventEmitter<any>;
479
+ /**
480
+ * Angular (EventEmitter) version of the Wijmo <b>rowChanged</b> event for programmatic access.
481
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
482
+ * In template bindings use the conventional <b>rowChanged</b> Wijmo event name.
483
+ */
484
+ rowChangedNg: EventEmitter<any>;
485
+ /**
486
+ * Angular (EventEmitter) version of the Wijmo <b>columnChanged</b> event for programmatic access.
487
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
488
+ * In template bindings use the conventional <b>columnChanged</b> Wijmo event name.
489
+ */
490
+ columnChangedNg: EventEmitter<any>;
491
+ /**
492
+ * Angular (EventEmitter) version of the Wijmo <b>autoFilling</b> event for programmatic access.
493
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
494
+ * In template bindings use the conventional <b>autoFilling</b> Wijmo event name.
495
+ */
496
+ autoFillingNg: EventEmitter<any>;
497
+ /**
498
+ * Angular (EventEmitter) version of the Wijmo <b>autoFilled</b> event for programmatic access.
499
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
500
+ * In template bindings use the conventional <b>autoFilled</b> Wijmo event name.
501
+ */
502
+ autoFilledNg: EventEmitter<any>;
503
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
504
+ /**
505
+ * If you create a custom component inherited from a Wijmo component, you can override this
506
+ * method and perform necessary initializations that you usually do in a class constructor.
507
+ * This method is called in the last line of a Wijmo component constructor and allows you
508
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
509
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
510
+ */
511
+ created(): void;
512
+ ngOnInit(): void;
513
+ ngAfterViewInit(): void;
514
+ ngOnDestroy(): void;
515
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
516
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexSheet, [null, null, { optional: true; skipSelf: true; }]>;
517
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexSheet, "wj-flex-sheet", never, { "asyncBindings": "asyncBindings"; "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "newRowAtTop": "newRowAtTop"; "allowAddNew": "allowAddNew"; "allowDelete": "allowDelete"; "allowDragging": "allowDragging"; "allowMerging": "allowMerging"; "allowResizing": "allowResizing"; "allowSorting": "allowSorting"; "allowPinning": "allowPinning"; "autoScroll": "autoScroll"; "autoRowHeights": "autoRowHeights"; "autoSizeMode": "autoSizeMode"; "autoGenerateColumns": "autoGenerateColumns"; "autoSearch": "autoSearch"; "caseSensitiveSearch": "caseSensitiveSearch"; "quickAutoSize": "quickAutoSize"; "bigCheckboxes": "bigCheckboxes"; "childItemsPath": "childItemsPath"; "groupHeaderFormat": "groupHeaderFormat"; "headersVisibility": "headersVisibility"; "showSelectedHeaders": "showSelectedHeaders"; "showMarquee": "showMarquee"; "showPlaceholders": "showPlaceholders"; "itemFormatter": "itemFormatter"; "isReadOnly": "isReadOnly"; "imeEnabled": "imeEnabled"; "mergeManager": "mergeManager"; "selectionMode": "selectionMode"; "showGroups": "showGroups"; "showSort": "showSort"; "showDropDown": "showDropDown"; "showAlternatingRows": "showAlternatingRows"; "showErrors": "showErrors"; "alternatingRowStep": "alternatingRowStep"; "itemValidator": "itemValidator"; "validateEdits": "validateEdits"; "treeIndent": "treeIndent"; "itemsSource": "itemsSource"; "autoClipboard": "autoClipboard"; "expandSelectionOnCopyPaste": "expandSelectionOnCopyPaste"; "frozenRows": "frozenRows"; "frozenColumns": "frozenColumns"; "cloneFrozenCells": "cloneFrozenCells"; "deferResizing": "deferResizing"; "sortRowIndex": "sortRowIndex"; "editColumnIndex": "editColumnIndex"; "stickyHeaders": "stickyHeaders"; "preserveSelectedState": "preserveSelectedState"; "preserveOutlineState": "preserveOutlineState"; "preserveWhiteSpace": "preserveWhiteSpace"; "keyActionTab": "keyActionTab"; "keyActionEnter": "keyActionEnter"; "rowHeaderPath": "rowHeaderPath"; "virtualizationThreshold": "virtualizationThreshold"; "anchorCursor": "anchorCursor"; "lazyRender": "lazyRender"; "refreshOnEdit": "refreshOnEdit"; "copyHeaders": "copyHeaders"; "columnGroups": "columnGroups"; "allowAutoFill": "allowAutoFill"; "isTabHolderVisible": "isTabHolderVisible"; "showFilterIcons": "showFilterIcons"; "enableDragDrop": "enableDragDrop"; "enableFormulas": "enableFormulas"; "selectedSheetIndex": "selectedSheetIndex"; "commitEmptyEdits": "commitEmptyEdits"; "headersFocusability": "headersFocusability"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "beginningEditNg": "beginningEdit"; "cellEditEndedNg": "cellEditEnded"; "cellEditEndingNg": "cellEditEnding"; "prepareCellForEditNg": "prepareCellForEdit"; "formatItemNg": "formatItem"; "resizingColumnNg": "resizingColumn"; "resizedColumnNg": "resizedColumn"; "autoSizingColumnNg": "autoSizingColumn"; "autoSizedColumnNg": "autoSizedColumn"; "draggingColumnNg": "draggingColumn"; "draggingColumnOverNg": "draggingColumnOver"; "draggedColumnNg": "draggedColumn"; "sortingColumnNg": "sortingColumn"; "sortedColumnNg": "sortedColumn"; "pinningColumnNg": "pinningColumn"; "pinnedColumnNg": "pinnedColumn"; "resizingRowNg": "resizingRow"; "resizedRowNg": "resizedRow"; "autoSizingRowNg": "autoSizingRow"; "autoSizedRowNg": "autoSizedRow"; "draggingRowNg": "draggingRow"; "draggingRowOverNg": "draggingRowOver"; "draggedRowNg": "draggedRow"; "deletingRowNg": "deletingRow"; "deletedRowNg": "deletedRow"; "loadingRowsNg": "loadingRows"; "loadedRowsNg": "loadedRows"; "rowEditStartingNg": "rowEditStarting"; "rowEditStartedNg": "rowEditStarted"; "rowEditEndingNg": "rowEditEnding"; "rowEditEndedNg": "rowEditEnded"; "rowAddedNg": "rowAdded"; "groupCollapsedChangingNg": "groupCollapsedChanging"; "groupCollapsedChangedNg": "groupCollapsedChanged"; "columnGroupCollapsedChangingNg": "columnGroupCollapsedChanging"; "columnGroupCollapsedChangedNg": "columnGroupCollapsedChanged"; "itemsSourceChangingNg": "itemsSourceChanging"; "itemsSourceChangedNg": "itemsSourceChanged"; "selectionChangingNg": "selectionChanging"; "selectionChangedNg": "selectionChanged"; "scrollPositionChangedNg": "scrollPositionChanged"; "updatingViewNg": "updatingView"; "updatedViewNg": "updatedView"; "updatingLayoutNg": "updatingLayout"; "updatedLayoutNg": "updatedLayout"; "pastingNg": "pasting"; "pastedNg": "pasted"; "pastingCellNg": "pastingCell"; "pastedCellNg": "pastedCell"; "copyingNg": "copying"; "copiedNg": "copied"; "selectedSheetChangedNg": "selectedSheetChanged"; "selectedSheetIndexChangePC": "selectedSheetIndexChange"; "draggingRowColumnNg": "draggingRowColumn"; "droppingRowColumnNg": "droppingRowColumn"; "beginDroppingRowColumnNg": "beginDroppingRowColumn"; "endDroppingRowColumnNg": "endDroppingRowColumn"; "loadedNg": "loaded"; "unknownFunctionNg": "unknownFunction"; "sheetClearedNg": "sheetCleared"; "prepareChangingRowNg": "prepareChangingRow"; "prepareChangingColumnNg": "prepareChangingColumn"; "rowChangedNg": "rowChanged"; "columnChangedNg": "columnChanged"; "autoFillingNg": "autoFilling"; "autoFilledNg": "autoFilled"; }, never, ["*"], false, never>;
518
+ }
519
+ declare var wjSheetMeta: IWjComponentMeta;
520
+ export { wjSheetMeta };
521
+ /**
522
+ * Angular 2 component for the {@link wijmo.grid.sheet.Sheet} class.
523
+ *
524
+ * The <b>wj-sheet</b> component must be
525
+ * contained in a {@link wijmo.angular2.grid.sheet.WjFlexSheet} component.
526
+ *
527
+ * Use the <b>wj-sheet</b> component to add <b>Sheet</b> controls to your
528
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
529
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
530
+ *
531
+ * The <b>WjSheet</b> component is derived from the <b>Sheet</b> class and
532
+ * inherits all its properties, events and methods.
533
+ */
534
+ export declare class WjSheet extends wjcGridSheet.Sheet implements OnInit, OnDestroy, AfterViewInit {
535
+ boundRowCount: number;
536
+ boundColumnCount: number;
537
+ static readonly meta: IWjComponentMetadata;
538
+ private _wjBehaviour;
539
+ /**
540
+ * Indicates whether the component has been initialized by Angular.
541
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
542
+ */
543
+ isInitialized: boolean;
544
+ /**
545
+ * This event is triggered after the component has been initialized by Angular, that is
546
+ * all bound properties have been assigned and child components (if any) have been initialized.
547
+ */
548
+ initialized: EventEmitter<any>;
549
+ /**
550
+ * Gets or sets a name of a property that this component is assigned to.
551
+ * Default value is 'sheets'.
552
+ */
553
+ wjProperty: string;
554
+ /**
555
+ * Angular (EventEmitter) version of the Wijmo <b>nameChanged</b> event for programmatic access.
556
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
557
+ * In template bindings use the conventional <b>nameChanged</b> Wijmo event name.
558
+ */
559
+ nameChangedNg: EventEmitter<any>;
560
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
561
+ /**
562
+ * If you create a custom component inherited from a Wijmo component, you can override this
563
+ * method and perform necessary initializations that you usually do in a class constructor.
564
+ * This method is called in the last line of a Wijmo component constructor and allows you
565
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
566
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
567
+ */
568
+ created(): void;
569
+ ngOnInit(): void;
570
+ ngAfterViewInit(): void;
571
+ ngOnDestroy(): void;
572
+ ngOnChanges(changes: {
573
+ [key: string]: SimpleChange;
574
+ }): any;
575
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjSheet, [null, null, { optional: true; skipSelf: true; }]>;
576
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjSheet, "wj-sheet", never, { "wjProperty": "wjProperty"; "name": "name"; "itemsSource": "itemsSource"; "visible": "visible"; "rowCount": "rowCount"; "columnCount": "columnCount"; }, { "initialized": "initialized"; "nameChangedNg": "nameChanged"; }, never, never, false, never>;
577
+ }
578
+ export declare class WjGridSheetModule {
579
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjGridSheetModule, never>;
580
+ static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<WjGridSheetModule, [typeof WjFlexSheet, typeof WjSheet], [typeof ɵngcc1.CommonModule], [typeof WjFlexSheet, typeof WjSheet]>;
581
+ static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<WjGridSheetModule>;
582
+ }