summaryrefslogtreecommitdiffstats
path: root/REFLECTION
blob: 5c7744f382046d77fcfe889f9813021115ce5ced (plain)
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
Extension [ <persistent> extension #107 xlswriter version 1.4.0 ] {

  - Functions {
    Function [ <internal:xlswriter> function xlswriter_get_version ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:xlswriter> function xlswriter_get_author ] {

      - Parameters [0] {
      }
    }
  }

  - Classes [5] {
    Class [ <internal:xlswriter> class Vtiful\Kernel\Exception extends Exception implements Throwable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ <default> protected $message ]
        Property [ <default> protected $code ]
        Property [ <default> protected $file ]
        Property [ <default> protected $line ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> $message ]
            Parameter #1 [ <optional> $code ]
            Parameter #2 [ <optional> $previous ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {
        }
      }
    }

    Class [ <internal:xlswriter> class Vtiful\Kernel\Excel ] {

      - Constants [53] {
        Constant [ public int SKIP_NONE ] { 0 }
        Constant [ public int SKIP_EMPTY_ROW ] { 1 }
        Constant [ public int SKIP_HIDDEN_ROW ] { 8 }
        Constant [ public int SKIP_EMPTY_CELLS ] { 2 }
        Constant [ public int SKIP_EMPTY_VALUE ] { 256 }
        Constant [ public int GRIDLINES_HIDE_ALL ] { 0 }
        Constant [ public int GRIDLINES_SHOW_ALL ] { 3 }
        Constant [ public int GRIDLINES_SHOW_PRINT ] { 2 }
        Constant [ public int GRIDLINES_SHOW_SCREEN ] { 1 }
        Constant [ public int PAPER_DEFAULT ] { 0 }
        Constant [ public int PAPER_LETTER ] { 1 }
        Constant [ public int PAPER_LETTER_SMALL ] { 2 }
        Constant [ public int PAPER_TABLOID ] { 3 }
        Constant [ public int PAPER_LEDGER ] { 4 }
        Constant [ public int PAPER_LEGAL ] { 5 }
        Constant [ public int PAPER_STATEMENT ] { 6 }
        Constant [ public int PAPER_EXECUTIVE ] { 7 }
        Constant [ public int PAPER_A3 ] { 8 }
        Constant [ public int PAPER_A4 ] { 9 }
        Constant [ public int PAPER_A4_SMALL ] { 10 }
        Constant [ public int PAPER_A5 ] { 11 }
        Constant [ public int PAPER_B4 ] { 12 }
        Constant [ public int PAPER_B5 ] { 13 }
        Constant [ public int PAPER_FOLIO ] { 14 }
        Constant [ public int PAPER_QUARTO ] { 15 }
        Constant [ public int PAPER_NOTE ] { 18 }
        Constant [ public int PAPER_ENVELOPE_9 ] { 19 }
        Constant [ public int PAPER_ENVELOPE_10 ] { 20 }
        Constant [ public int PAPER_ENVELOPE_11 ] { 21 }
        Constant [ public int PAPER_ENVELOPE_12 ] { 22 }
        Constant [ public int PAPER_ENVELOPE_14 ] { 23 }
        Constant [ public int PAPER_C_SIZE_SHEET ] { 24 }
        Constant [ public int PAPER_D_SIZE_SHEET ] { 25 }
        Constant [ public int PAPER_E_SIZE_SHEET ] { 26 }
        Constant [ public int PAPER_ENVELOPE_DL ] { 27 }
        Constant [ public int PAPER_ENVELOPE_C3 ] { 28 }
        Constant [ public int PAPER_ENVELOPE_C4 ] { 29 }
        Constant [ public int PAPER_ENVELOPE_C5 ] { 30 }
        Constant [ public int PAPER_ENVELOPE_C6 ] { 31 }
        Constant [ public int PAPER_ENVELOPE_C65 ] { 32 }
        Constant [ public int PAPER_ENVELOPE_B4 ] { 33 }
        Constant [ public int PAPER_ENVELOPE_B5 ] { 34 }
        Constant [ public int PAPER_ENVELOPE_B6 ] { 35 }
        Constant [ public int PAPER_ENVELOPE_1 ] { 36 }
        Constant [ public int PAPER_MONARCH ] { 37 }
        Constant [ public int PAPER_ENVELOPE_2 ] { 38 }
        Constant [ public int PAPER_FANFOLD ] { 39 }
        Constant [ public int PAPER_GERMAN_STD_FANFOLD ] { 40 }
        Constant [ public int PAPER_GERMAN_LEGAL_FANFOLD ] { 41 }
        Constant [ public int TYPE_INT ] { 2 }
        Constant [ public int TYPE_DOUBLE ] { 4 }
        Constant [ public int TYPE_STRING ] { 1 }
        Constant [ public int TYPE_TIMESTAMP ] { 8 }
      }

      - Static properties [0] {
      }

      - Static methods [3] {
        Method [ <internal:xlswriter> static public method columnIndexFromString ] {

          - Parameters [1] {
            Parameter #0 [ <required> $index ]
          }
        }

        Method [ <internal:xlswriter> static public method stringFromColumnIndex ] {

          - Parameters [1] {
            Parameter #0 [ <required> $index ]
          }
        }

        Method [ <internal:xlswriter> static public method timestampFromDateDouble ] {

          - Parameters [1] {
            Parameter #0 [ <required> $index ]
          }
        }
      }

      - Properties [3] {
        Property [ <default> private $config ]
        Property [ <default> private $fileName ]
        Property [ <default> private $read_row_type ]
      }

      - Methods [47] {
        Method [ <internal:xlswriter, ctor> public method __construct ] {

          - Parameters [1] {
            Parameter #0 [ <required> $config ]
          }
        }

        Method [ <internal:xlswriter> public method close ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method fileName ] {

          - Parameters [2] {
            Parameter #0 [ <required> $file_name ]
            Parameter #1 [ <optional> $sheet_name ]
          }
        }

        Method [ <internal:xlswriter> public method addSheet ] {

          - Parameters [1] {
            Parameter #0 [ <required> $sheet_name ]
          }
        }

        Method [ <internal:xlswriter> public method existSheet ] {

          - Parameters [1] {
            Parameter #0 [ <required> $sheet_name ]
          }
        }

        Method [ <internal:xlswriter> public method checkoutSheet ] {

          - Parameters [1] {
            Parameter #0 [ <required> $sheet_name ]
          }
        }

        Method [ <internal:xlswriter> public method activateSheet ] {

          - Parameters [1] {
            Parameter #0 [ <required> $sheet_name ]
          }
        }

        Method [ <internal:xlswriter> public method constMemory ] {

          - Parameters [2] {
            Parameter #0 [ <required> $file_name ]
            Parameter #1 [ <optional> $sheet_name ]
          }
        }

        Method [ <internal:xlswriter> public method header ] {

          - Parameters [2] {
            Parameter #0 [ <required> $header ]
            Parameter #1 [ <optional> $format_handle ]
          }
        }

        Method [ <internal:xlswriter> public method data ] {

          - Parameters [1] {
            Parameter #0 [ <required> $data ]
          }
        }

        Method [ <internal:xlswriter> public method output ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method getHandle ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method autoFilter ] {

          - Parameters [1] {
            Parameter #0 [ <required> $range ]
          }
        }

        Method [ <internal:xlswriter> public method insertText ] {

          - Parameters [5] {
            Parameter #0 [ <required> $row ]
            Parameter #1 [ <required> $column ]
            Parameter #2 [ <required> $data ]
            Parameter #3 [ <optional> $format ]
            Parameter #4 [ <optional> $format_handle ]
          }
        }

        Method [ <internal:xlswriter> public method insertDate ] {

          - Parameters [5] {
            Parameter #0 [ <required> $row ]
            Parameter #1 [ <required> $column ]
            Parameter #2 [ <required> $timestamp ]
            Parameter #3 [ <optional> $format ]
            Parameter #4 [ <optional> $format_handle ]
          }
        }

        Method [ <internal:xlswriter> public method insertChart ] {

          - Parameters [3] {
            Parameter #0 [ <required> $row ]
            Parameter #1 [ <required> $column ]
            Parameter #2 [ <required> $chart_resource ]
          }
        }

        Method [ <internal:xlswriter> public method insertUrl ] {

          - Parameters [6] {
            Parameter #0 [ <required> $row ]
            Parameter #1 [ <required> $column ]
            Parameter #2 [ <required> $url ]
            Parameter #3 [ <optional> $text ]
            Parameter #4 [ <optional> $tool_tip ]
            Parameter #5 [ <optional> $format ]
          }
        }

        Method [ <internal:xlswriter> public method insertImage ] {

          - Parameters [5] {
            Parameter #0 [ <required> $row ]
            Parameter #1 [ <required> $column ]
            Parameter #2 [ <required> $image ]
            Parameter #3 [ <optional> $width ]
            Parameter #4 [ <optional> $height ]
          }
        }

        Method [ <internal:xlswriter> public method insertFormula ] {

          - Parameters [4] {
            Parameter #0 [ <required> $row ]
            Parameter #1 [ <required> $column ]
            Parameter #2 [ <required> $formula ]
            Parameter #3 [ <optional> $format_handle ]
          }
        }

        Method [ <internal:xlswriter> public method insertComment ] {

          - Parameters [3] {
            Parameter #0 [ <required> $row ]
            Parameter #1 [ <required> $column ]
            Parameter #2 [ <required> $comment ]
          }
        }

        Method [ <internal:xlswriter> public method showComment ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method mergeCells ] {

          - Parameters [3] {
            Parameter #0 [ <required> $range ]
            Parameter #1 [ <required> $data ]
            Parameter #2 [ <optional> $format_handle ]
          }
        }

        Method [ <internal:xlswriter> public method setColumn ] {

          - Parameters [3] {
            Parameter #0 [ <required> $format_handle ]
            Parameter #1 [ <required> $range ]
            Parameter #2 [ <required> $width ]
          }
        }

        Method [ <internal:xlswriter> public method setRow ] {

          - Parameters [3] {
            Parameter #0 [ <required> $format_handle ]
            Parameter #1 [ <required> $range ]
            Parameter #2 [ <required> $height ]
          }
        }

        Method [ <internal:xlswriter> public method defaultFormat ] {

          - Parameters [1] {
            Parameter #0 [ <required> $format_handle ]
          }
        }

        Method [ <internal:xlswriter> public method freezePanes ] {

          - Parameters [2] {
            Parameter #0 [ <required> $row ]
            Parameter #1 [ <required> $column ]
          }
        }

        Method [ <internal:xlswriter> public method protection ] {

          - Parameters [1] {
            Parameter #0 [ <optional> $password ]
          }
        }

        Method [ <internal:xlswriter> public method validation ] {

          - Parameters [2] {
            Parameter #0 [ <required> $range ]
            Parameter #1 [ <required> $validation_resource ]
          }
        }

        Method [ <internal:xlswriter> public method zoom ] {

          - Parameters [1] {
            Parameter #0 [ <required> $scale ]
          }
        }

        Method [ <internal:xlswriter> public method gridline ] {

          - Parameters [1] {
            Parameter #0 [ <required> $option ]
          }
        }

        Method [ <internal:xlswriter> public method setPaper ] {

          - Parameters [1] {
            Parameter #0 [ <required> $paper ]
          }
        }

        Method [ <internal:xlswriter> public method setMargins ] {

          - Parameters [4] {
            Parameter #0 [ <required> $left ]
            Parameter #1 [ <required> $right ]
            Parameter #2 [ <required> $top ]
            Parameter #3 [ <required> $bottom ]
          }
        }

        Method [ <internal:xlswriter> public method setPortrait ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method setLandscape ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method setCurrentSheetHide ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method setCurrentSheetIsFirst ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method openFile ] {

          - Parameters [1] {
            Parameter #0 [ <required> $zs_file_name ]
          }
        }

        Method [ <internal:xlswriter> public method openSheet ] {

          - Parameters [2] {
            Parameter #0 [ <optional> $zs_sheet_name ]
            Parameter #1 [ <optional> $zl_flag ]
          }
        }

        Method [ <internal:xlswriter> public method putCSV ] {

          - Parameters [4] {
            Parameter #0 [ <required> $fp ]
            Parameter #1 [ <optional> $delimiter_str ]
            Parameter #2 [ <optional> $enclosure_str ]
            Parameter #3 [ <optional> $escape_str ]
          }
        }

        Method [ <internal:xlswriter> public method putCSVCallback ] {

          - Parameters [5] {
            Parameter #0 [ <required> $callback ]
            Parameter #1 [ <required> $fp ]
            Parameter #2 [ <optional> $delimiter_str ]
            Parameter #3 [ <optional> $enclosure_str ]
            Parameter #4 [ <optional> $escape_str ]
          }
        }

        Method [ <internal:xlswriter> public method sheetList ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method setType ] {

          - Parameters [1] {
            Parameter #0 [ <required> $zv_type_t ]
          }
        }

        Method [ <internal:xlswriter> public method setGlobalType ] {

          - Parameters [1] {
            Parameter #0 [ <required> $zv_type_t ]
          }
        }

        Method [ <internal:xlswriter> public method setSkipRows ] {

          - Parameters [1] {
            Parameter #0 [ <required> $zv_skip_t ]
          }
        }

        Method [ <internal:xlswriter> public method getSheetData ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method nextRow ] {

          - Parameters [1] {
            Parameter #0 [ <optional> $zv_type_t ]
          }
        }

        Method [ <internal:xlswriter> public method nextCellCallback ] {

          - Parameters [2] {
            Parameter #0 [ <required> $fci ]
            Parameter #1 [ <optional> $sheet_name ]
          }
        }
      }
    }

    Class [ <internal:xlswriter> class Vtiful\Kernel\Format ] {

      - Constants [65] {
        Constant [ public int UNDERLINE_SINGLE ] { 1 }
        Constant [ public int UNDERLINE_DOUBLE  ] { 2 }
        Constant [ public int UNDERLINE_SINGLE_ACCOUNTING ] { 3 }
        Constant [ public int UNDERLINE_DOUBLE_ACCOUNTING ] { 4 }
        Constant [ public int FORMAT_ALIGN_LEFT ] { 1 }
        Constant [ public int FORMAT_ALIGN_CENTER ] { 2 }
        Constant [ public int FORMAT_ALIGN_RIGHT ] { 3 }
        Constant [ public int FORMAT_ALIGN_FILL ] { 4 }
        Constant [ public int FORMAT_ALIGN_JUSTIFY ] { 5 }
        Constant [ public int FORMAT_ALIGN_CENTER_ACROSS ] { 6 }
        Constant [ public int FORMAT_ALIGN_DISTRIBUTED ] { 7 }
        Constant [ public int FORMAT_ALIGN_VERTICAL_TOP ] { 8 }
        Constant [ public int FORMAT_ALIGN_VERTICAL_BOTTOM ] { 9 }
        Constant [ public int FORMAT_ALIGN_VERTICAL_CENTER ] { 10 }
        Constant [ public int FORMAT_ALIGN_VERTICAL_JUSTIFY ] { 11 }
        Constant [ public int FORMAT_ALIGN_VERTICAL_DISTRIBUTED ] { 12 }
        Constant [ public int COLOR_BLACK ] { 16777216 }
        Constant [ public int COLOR_BLUE ] { 255 }
        Constant [ public int COLOR_BROWN ] { 8388608 }
        Constant [ public int COLOR_CYAN ] { 65535 }
        Constant [ public int COLOR_GRAY ] { 8421504 }
        Constant [ public int COLOR_GREEN ] { 32768 }
        Constant [ public int COLOR_LIME ] { 65280 }
        Constant [ public int COLOR_MAGENTA ] { 16711935 }
        Constant [ public int COLOR_NAVY ] { 128 }
        Constant [ public int COLOR_ORANGE ] { 16737792 }
        Constant [ public int COLOR_PINK ] { 16711935 }
        Constant [ public int COLOR_PURPLE ] { 8388736 }
        Constant [ public int COLOR_RED ] { 16711680 }
        Constant [ public int COLOR_SILVER ] { 12632256 }
        Constant [ public int COLOR_WHITE ] { 16777215 }
        Constant [ public int COLOR_YELLOW ] { 16776960 }
        Constant [ public int PATTERN_NONE ] { 0 }
        Constant [ public int PATTERN_SOLID ] { 1 }
        Constant [ public int PATTERN_MEDIUM_GRAY ] { 2 }
        Constant [ public int PATTERN_DARK_GRAY ] { 3 }
        Constant [ public int PATTERN_LIGHT_GRAY ] { 4 }
        Constant [ public int PATTERN_DARK_HORIZONTAL ] { 5 }
        Constant [ public int PATTERN_DARK_VERTICAL ] { 6 }
        Constant [ public int PATTERN_DARK_DOWN ] { 7 }
        Constant [ public int PATTERN_DARK_UP ] { 8 }
        Constant [ public int PATTERN_DARK_GRID ] { 9 }
        Constant [ public int PATTERN_DARK_TRELLIS ] { 10 }
        Constant [ public int PATTERN_LIGHT_HORIZONTAL ] { 11 }
        Constant [ public int PATTERN_LIGHT_VERTICAL ] { 12 }
        Constant [ public int PATTERN_LIGHT_DOWN ] { 13 }
        Constant [ public int PATTERN_LIGHT_UP ] { 14 }
        Constant [ public int PATTERN_LIGHT_GRID ] { 15 }
        Constant [ public int PATTERN_LIGHT_TRELLIS ] { 16 }
        Constant [ public int PATTERN_GRAY_125 ] { 17 }
        Constant [ public int PATTERN_GRAY_0625 ] { 18 }
        Constant [ public int BORDER_NONE ] { 0 }
        Constant [ public int BORDER_THIN ] { 1 }
        Constant [ public int BORDER_MEDIUM ] { 2 }
        Constant [ public int BORDER_DASHED ] { 3 }
        Constant [ public int BORDER_DOTTED ] { 4 }
        Constant [ public int BORDER_THICK ] { 5 }
        Constant [ public int BORDER_DOUBLE ] { 6 }
        Constant [ public int BORDER_HAIR ] { 7 }
        Constant [ public int BORDER_MEDIUM_DASHED ] { 8 }
        Constant [ public int BORDER_DASH_DOT ] { 9 }
        Constant [ public int BORDER_MEDIUM_DASH_DOT ] { 10 }
        Constant [ public int BORDER_DASH_DOT_DOT ] { 11 }
        Constant [ public int BORDER_MEDIUM_DASH_DOT_DOT ] { 12 }
        Constant [ public int BORDER_SLANT_DASH_DOT ] { 13 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [15] {
        Method [ <internal:xlswriter, ctor> public method __construct ] {

          - Parameters [1] {
            Parameter #0 [ <required> $handle ]
          }
        }

        Method [ <internal:xlswriter> public method wrap ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method bold ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method italic ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method border ] {

          - Parameters [1] {
            Parameter #0 [ <required> $style ]
          }
        }

        Method [ <internal:xlswriter> public method align ] {

          - Parameters [1] {
            Parameter #0 [ <required> ...$style ]
          }
        }

        Method [ <internal:xlswriter> public method number ] {

          - Parameters [1] {
            Parameter #0 [ <required> $format ]
          }
        }

        Method [ <internal:xlswriter> public method fontColor ] {

          - Parameters [1] {
            Parameter #0 [ <required> $color ]
          }
        }

        Method [ <internal:xlswriter> public method font ] {

          - Parameters [1] {
            Parameter #0 [ <required> $font ]
          }
        }

        Method [ <internal:xlswriter> public method fontSize ] {

          - Parameters [1] {
            Parameter #0 [ <required> $size ]
          }
        }

        Method [ <internal:xlswriter> public method strikeout ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method underline ] {

          - Parameters [1] {
            Parameter #0 [ <required> $style ]
          }
        }

        Method [ <internal:xlswriter> public method unlocked ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method toResource ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method background ] {

          - Parameters [2] {
            Parameter #0 [ <required> $pattern ]
            Parameter #1 [ <required> $color ]
          }
        }
      }
    }

    Class [ <internal:xlswriter> class Vtiful\Kernel\Chart ] {

      - Constants [29] {
        Constant [ public int CHART_BAR ] { 4 }
        Constant [ public int CHART_BAR_STACKED ] { 5 }
        Constant [ public int CHART_BAR_STACKED_PERCENT ] { 6 }
        Constant [ public int CHART_AREA ] { 1 }
        Constant [ public int CHART_AREA_STACKED ] { 2 }
        Constant [ public int CHART_AREA_STACKED_PERCENT ] { 3 }
        Constant [ public int CHART_LINE ] { 11 }
        Constant [ public int CHART_COLUMN ] { 7 }
        Constant [ public int CHART_COLUMN_STACKED ] { 8 }
        Constant [ public int CHART_COLUMN_STACKED_PERCENT ] { 9 }
        Constant [ public int CHART_DOUGHNUT ] { 10 }
        Constant [ public int CHART_PIE ] { 14 }
        Constant [ public int CHART_SCATTER ] { 15 }
        Constant [ public int CHART_SCATTER_STRAIGHT ] { 16 }
        Constant [ public int CHART_SCATTER_STRAIGHT_WITH_MARKERS ] { 17 }
        Constant [ public int CHART_SCATTER_SMOOTH ] { 18 }
        Constant [ public int CHART_SCATTER_SMOOTH_WITH_MARKERS ] { 19 }
        Constant [ public int CHART_RADAR ] { 20 }
        Constant [ public int CHART_RADAR_WITH_MARKERS ] { 21 }
        Constant [ public int CHART_RADAR_FILLED ] { 22 }
        Constant [ public int CHART_LEGEND_NONE ] { 0 }
        Constant [ public int CHART_LEGEND_RIGHT ] { 1 }
        Constant [ public int CHART_LEGEND_LEFT ] { 2 }
        Constant [ public int CHART_LEGEND_TOP ] { 3 }
        Constant [ public int CHART_LEGEND_BOTTOM ] { 4 }
        Constant [ public int CHART_LEGEND_OVERLAY_RIGHT ] { 6 }
        Constant [ public int CHART_LEGEND_OVERLAY_LEFT ] { 7 }
        Constant [ public int CHART_LINE_STACKED ] { 12 }
        Constant [ public int CHART_LINE_STACKED_PERCENT ] { 13 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [9] {
        Method [ <internal:xlswriter, ctor> public method __construct ] {

          - Parameters [2] {
            Parameter #0 [ <required> $handle ]
            Parameter #1 [ <required> $type ]
          }
        }

        Method [ <internal:xlswriter> public method series ] {

          - Parameters [2] {
            Parameter #0 [ <required> $value ]
            Parameter #1 [ <optional> $categories ]
          }
        }

        Method [ <internal:xlswriter> public method seriesName ] {

          - Parameters [1] {
            Parameter #0 [ <required> $value ]
          }
        }

        Method [ <internal:xlswriter> public method style ] {

          - Parameters [1] {
            Parameter #0 [ <required> $style ]
          }
        }

        Method [ <internal:xlswriter> public method axisNameY ] {

          - Parameters [1] {
            Parameter #0 [ <required> $name ]
          }
        }

        Method [ <internal:xlswriter> public method axisNameX ] {

          - Parameters [1] {
            Parameter #0 [ <required> $name ]
          }
        }

        Method [ <internal:xlswriter> public method title ] {

          - Parameters [1] {
            Parameter #0 [ <required> $title ]
          }
        }

        Method [ <internal:xlswriter> public method legendSetPosition ] {

          - Parameters [1] {
            Parameter #0 [ <required> $type ]
          }
        }

        Method [ <internal:xlswriter> public method toResource ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:xlswriter> class Vtiful\Kernel\Validation ] {

      - Constants [27] {
        Constant [ public int TYPE_INTEGER ] { 1 }
        Constant [ public int TYPE_INTEGER_FORMULA ] { 2 }
        Constant [ public int TYPE_DECIMAL ] { 3 }
        Constant [ public int TYPE_DECIMAL_FORMULA ] { 4 }
        Constant [ public int TYPE_LIST ] { 5 }
        Constant [ public int TYPE_LIST_FORMULA ] { 6 }
        Constant [ public int TYPE_DATE ] { 7 }
        Constant [ public int TYPE_DATE_FORMULA ] { 8 }
        Constant [ public int TYPE_DATE_NUMBER ] { 9 }
        Constant [ public int TYPE_TIME ] { 10 }
        Constant [ public int TYPE_TIME_FORMULA ] { 11 }
        Constant [ public int TYPE_TIME_NUMBER ] { 12 }
        Constant [ public int TYPE_LENGTH ] { 13 }
        Constant [ public int TYPE_LENGTH_FORMULA ] { 14 }
        Constant [ public int TYPE_CUSTOM_FORMULA ] { 15 }
        Constant [ public int TYPE_ANY ] { 16 }
        Constant [ public int CRITERIA_BETWEEN ] { 1 }
        Constant [ public int CRITERIA_NOT_BETWEEN ] { 2 }
        Constant [ public int CRITERIA_EQUAL_TO ] { 3 }
        Constant [ public int CRITERIA_NOT_EQUAL_TO ] { 4 }
        Constant [ public int CRITERIA_GREATER_THAN ] { 5 }
        Constant [ public int CRITERIA_LESS_THAN ] { 6 }
        Constant [ public int CRITERIA_GREATER_THAN_OR_EQUAL_TO ] { 7 }
        Constant [ public int CRITERIA_LESS_THAN_OR_EQUAL_TO ] { 8 }
        Constant [ public int ERROR_TYPE_STOP ] { 0 }
        Constant [ public int ERROR_TYPE_WARNING ] { 1 }
        Constant [ public int ERROR_TYPE_INFORMATION ] { 2 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [23] {
        Method [ <internal:xlswriter, ctor> public method __construct ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:xlswriter> public method validationType ] {

          - Parameters [1] {
            Parameter #0 [ <required> $type ]
          }
        }

        Method [ <internal:xlswriter> public method criteriaType ] {

          - Parameters [1] {
            Parameter #0 [ <required> $type ]
          }
        }

        Method [ <internal:xlswriter> public method ignoreBlank ] {

          - Parameters [1] {
            Parameter #0 [ <required> $ignore_blank ]
          }
        }

        Method [ <internal:xlswriter> public method showInput ] {

          - Parameters [1] {
            Parameter #0 [ <required> $show_input ]
          }
        }

        Method [ <internal:xlswriter> public method showError ] {

          - Parameters [1] {
            Parameter #0 [ <required> $show_error ]
          }
        }

        Method [ <internal:xlswriter> public method errorType ] {

          - Parameters [1] {
            Parameter #0 [ <required> $error_type ]
          }
        }

        Method [ <internal:xlswriter> public method dropdown ] {

          - Parameters [1] {
            Parameter #0 [ <required> $dropdown ]
          }
        }

        Method [ <internal:xlswriter> public method valueNumber ] {

          - Parameters [1] {
            Parameter #0 [ <required> $value_number ]
          }
        }

        Method [ <internal:xlswriter> public method valueFormula ] {

          - Parameters [1] {
            Parameter #0 [ <required> $value_formula ]
          }
        }

        Method [ <internal:xlswriter> public method valueList ] {

          - Parameters [1] {
            Parameter #0 [ <required> $value_list ]
          }
        }

        Method [ <internal:xlswriter> public method valueDatetime ] {

          - Parameters [1] {
            Parameter #0 [ <required> $timestamp ]
          }
        }

        Method [ <internal:xlswriter> public method minimumNumber ] {

          - Parameters [1] {
            Parameter #0 [ <required> $minimum_number ]
          }
        }

        Method [ <internal:xlswriter> public method minimumFormula ] {

          - Parameters [1] {
            Parameter #0 [ <required> $minimum_formula ]
          }
        }

        Method [ <internal:xlswriter> public method minimumDatetime ] {

          - Parameters [1] {
            Parameter #0 [ <required> $timestamp ]
          }
        }

        Method [ <internal:xlswriter> public method maximumNumber ] {

          - Parameters [1] {
            Parameter #0 [ <required> $maximum_number ]
          }
        }

        Method [ <internal:xlswriter> public method maximumFormula ] {

          - Parameters [1] {
            Parameter #0 [ <required> $maximum_formula ]
          }
        }

        Method [ <internal:xlswriter> public method maximumDatetime ] {

          - Parameters [1] {
            Parameter #0 [ <required> $maximum_datetime ]
          }
        }

        Method [ <internal:xlswriter> public method inputTitle ] {

          - Parameters [1] {
            Parameter #0 [ <required> $input_title ]
          }
        }

        Method [ <internal:xlswriter> public method inputMessage ] {

          - Parameters [1] {
            Parameter #0 [ <required> $input_message ]
          }
        }

        Method [ <internal:xlswriter> public method errorTitle ] {

          - Parameters [1] {
            Parameter #0 [ <required> $error_titile ]
          }
        }

        Method [ <internal:xlswriter> public method errorMessage ] {

          - Parameters [1] {
            Parameter #0 [ <required> $error_message ]
          }
        }

        Method [ <internal:xlswriter> public method toResource ] {

          - Parameters [0] {
          }
        }
      }
    }
  }
}