elementindex_PHPExcel.html
108 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
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
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
<html>
<head>
<title>Package PHPExcel Element Index</title>
<link rel="stylesheet" type="text/css" href="media/style.css">
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%">
<tr>
<td class="header_top">PHPExcel</td>
</tr>
<tr><td class="header_line"><img src="media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
<tr>
<td class="header_menu">
[ <a href="classtrees_PHPExcel.html" class="menu">class tree: PHPExcel</a> ]
[ <a href="elementindex_PHPExcel.html" class="menu">index: PHPExcel</a> ]
[ <a href="elementindex.html" class="menu">all elements</a> ]
</td>
</tr>
<tr><td class="header_line"><img src="media/empty.png" width="1" height="1" border="0" alt="" /></td></tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="200" class="menu">
<div id="todolist">
<p><a href="todolist.html">Todo List</a></p>
</div>
<b>Packages:</b><br />
<a href="li_PHPExcel.html">PHPExcel</a><br />
<a href="li_PHPExcel_CachedObjectStorage.html">PHPExcel_CachedObjectStorage</a><br />
<a href="li_PHPExcel_Calculation.html">PHPExcel_Calculation</a><br />
<a href="li_PHPExcel_Cell.html">PHPExcel_Cell</a><br />
<a href="li_PHPExcel_Reader.html">PHPExcel_Reader</a><br />
<a href="li_PHPExcel_Reader_Excel5.html">PHPExcel_Reader_Excel5</a><br />
<a href="li_PHPExcel_Reader_Excel2007.html">PHPExcel_Reader_Excel2007</a><br />
<a href="li_PHPExcel_RichText.html">PHPExcel_RichText</a><br />
<a href="li_PHPExcel_Settings.html">PHPExcel_Settings</a><br />
<a href="li_PHPExcel_Shared.html">PHPExcel_Shared</a><br />
<a href="li_PHPExcel_Shared_Escher.html">PHPExcel_Shared_Escher</a><br />
<a href="li_JAMA.html">JAMA</a><br />
<a href="li_Math_Stats.html">Math_Stats</a><br />
<a href="li_PHPExcel_Shared_OLE.html">PHPExcel_Shared_OLE</a><br />
<a href="li_com-tecnick-tcpdf.html">com-tecnick-tcpdf</a><br />
<a href="li_PHPExcel_Shared_Best_Fit.html">PHPExcel_Shared_Best_Fit</a><br />
<a href="li_PHPExcel_Shared_ZipArchive.html">PHPExcel_Shared_ZipArchive</a><br />
<a href="li_PHPExcel_Style.html">PHPExcel_Style</a><br />
<a href="li_PHPExcel_Worksheet.html">PHPExcel_Worksheet</a><br />
<a href="li_PHPExcel_Worksheet_Drawing.html">PHPExcel_Worksheet_Drawing</a><br />
<a href="li_PHPExcel_Writer.html">PHPExcel_Writer</a><br />
<a href="li_PHPExcel_Writer_Excel5.html">PHPExcel_Writer_Excel5</a><br />
<a href="li_PHPExcel_Writer_Excel2007.html">PHPExcel_Writer_Excel2007</a><br />
<br /><br />
<b>Files:</b><br />
<div class="package">
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---almohanad.php.html"> almohanad.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0-chinese-simplified.php.html"> arialunicid0-chinese-simplified.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0-chinese-traditional.php.html"> arialunicid0-chinese-traditional.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0-japanese.php.html"> arialunicid0-japanese.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0-korean.php.html"> arialunicid0-korean.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0.php.html"> arialunicid0.php
</a><br>
<a href="PHPExcel/_PHPExcel---Autoloader.php.html"> Autoloader.php
</a><br>
<a href="PHPExcel/_PHPExcel---CachedObjectStorageFactory.php.html"> CachedObjectStorageFactory.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---chinese.php.html"> chinese.php
</a><br>
<a href="PHPExcel/_PHPExcel---Comment.php.html"> Comment.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---courier.php.html"> courier.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---includes---credits.php.html"> credits.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusans.php.html"> dejavusans.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansb.php.html"> dejavusansb.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansbi.php.html"> dejavusansbi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusanscondensed.php.html"> dejavusanscondensed.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusanscondensedb.php.html"> dejavusanscondensedb.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusanscondensedbi.php.html"> dejavusanscondensedbi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusanscondensedi.php.html"> dejavusanscondensedi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansi.php.html"> dejavusansi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansmono.php.html"> dejavusansmono.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansmonob.php.html"> dejavusansmonob.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansmonobi.php.html"> dejavusansmonobi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansmonoi.php.html"> dejavusansmonoi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserif.php.html"> dejavuserif.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifb.php.html"> dejavuserifb.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifbi.php.html"> dejavuserifbi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifcondensed.php.html"> dejavuserifcondensed.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifcondensedb.php.html"> dejavuserifcondensedb.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifcondensedbi.php.html"> dejavuserifcondensedbi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifcondensedi.php.html"> dejavuserifcondensedi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifi.php.html"> dejavuserifi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---docs.php.html"> docs.php
</a><br>
<a href="PHPExcel/_PHPExcel---DocumentProperties.php.html"> DocumentProperties.php
</a><br>
<a href="PHPExcel/_PHPExcel---DocumentSecurity.php.html"> DocumentSecurity.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---download.php.html"> download.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---example.php.html"> example.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---includes---footer.php.html"> footer.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freemono.php.html"> freemono.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freemonob.php.html"> freemonob.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freemonobi.php.html"> freemonobi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freemonoi.php.html"> freemonoi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freesans.php.html"> freesans.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freesansb.php.html"> freesansb.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freesansbi.php.html"> freesansbi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freesansi.php.html"> freesansi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freeserif.php.html"> freeserif.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freeserifb.php.html"> freeserifb.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freeserifbi.php.html"> freeserifbi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freeserifi.php.html"> freeserifi.php
</a><br>
<a href="PHPExcel/_PHPExcel---HashTable.php.html"> HashTable.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---includes---header.php.html"> header.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---helvetica.php.html"> helvetica.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---helveticab.php.html"> helveticab.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---helveticabi.php.html"> helveticabi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---helveticai.php.html"> helveticai.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---hysmyeongjostdmedium.php.html"> hysmyeongjostdmedium.php
</a><br>
<a href="PHPExcel/_PHPExcel---IComparable.php.html"> IComparable.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---index.php.html"> index.php
</a><br>
<a href="PHPExcel/_PHPExcel---IOFactory.php.html"> IOFactory.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---kozgopromedium.php.html"> kozgopromedium.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---kozminproregular.php.html"> kozminproregular.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---LagrangeInterpolation.php.html"> LagrangeInterpolation.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---LagrangeInterpolation2.php.html"> LagrangeInterpolation2.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---LevenbergMarquardt.php.html"> LevenbergMarquardt.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---LMQuadTest.php.html"> LMQuadTest.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---msungstdlight.php.html"> msungstdlight.php
</a><br>
<a href="PHPExcel/_PHPExcel---NamedRange.php.html"> NamedRange.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---includes---navbar.php.html"> navbar.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---package.php.html"> package.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html"> pclzip.lib.php
</a><br>
<a href="PHPExcel/_PHPExcel.php.html"> PHPExcel.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---polyfit.php.html"> polyfit.php
</a><br>
<a href="PHPExcel/_PHPExcel---ReferenceHelper.php.html"> ReferenceHelper.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---stsongstdlight.php.html"> stsongstdlight.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---symbol.php.html"> symbol.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---test.php.html"> test.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---tests---TestMatrix.php.html"> TestMatrix.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---tile.php.html"> tile.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---times.php.html"> times.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---timesb.php.html"> timesb.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---timesbi.php.html"> timesbi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---timesi.php.html"> timesi.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---trend---trendClass.php.html"> trendClass.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---uni2cid_ac15.php.html"> uni2cid_ac15.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---uni2cid_ag15.php.html"> uni2cid_ag15.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---uni2cid_aj16.php.html"> uni2cid_aj16.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---uni2cid_ak12.php.html"> uni2cid_ak12.php
</a><br>
<a href="PHPExcel/_PHPExcel---WorksheetIterator.php.html"> WorksheetIterator.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---zapfdingbats.php.html"> zapfdingbats.php
</a><br>
<a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---zarbold.php.html"> zarbold.php
</a><br>
</div><br />
<b>Interfaces:</b><br />
<div class="package">
<a href="PHPExcel/PHPExcel_IComparable.html">PHPExcel_IComparable</a><br />
</div>
<b>Classes:</b><br />
<div class="package">
<a href="PHPExcel/LagrangeInterpolation.html">LagrangeInterpolation</a><br />
<a href="PHPExcel/LevenbergMarquardt.html">LevenbergMarquardt</a><br />
<a href="PHPExcel/LMQuadTest.html">LMQuadTest</a><br />
<a href="PHPExcel/PclZip.html">PclZip</a><br />
<a href="PHPExcel/PHPExcel.html">PHPExcel</a><br />
<a href="PHPExcel/PHPExcel_Autoloader.html">PHPExcel_Autoloader</a><br />
<a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html">PHPExcel_CachedObjectStorageFactory</a><br />
<a href="PHPExcel/PHPExcel_Comment.html">PHPExcel_Comment</a><br />
<a href="PHPExcel/PHPExcel_DocumentProperties.html">PHPExcel_DocumentProperties</a><br />
<a href="PHPExcel/PHPExcel_DocumentSecurity.html">PHPExcel_DocumentSecurity</a><br />
<a href="PHPExcel/PHPExcel_HashTable.html">PHPExcel_HashTable</a><br />
<a href="PHPExcel/PHPExcel_IOFactory.html">PHPExcel_IOFactory</a><br />
<a href="PHPExcel/PHPExcel_NamedRange.html">PHPExcel_NamedRange</a><br />
<a href="PHPExcel/PHPExcel_ReferenceHelper.html">PHPExcel_ReferenceHelper</a><br />
<a href="PHPExcel/PHPExcel_WorksheetIterator.html">PHPExcel_WorksheetIterator</a><br />
<a href="PHPExcel/TestMatrix.html">TestMatrix</a><br />
<a href="PHPExcel/trendClass.html">trendClass</a><br />
</div>
</td>
<td>
<table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top">
<a name="top"></a>
<h1>Element index for package PHPExcel</h1>
[ <a href="elementindex_PHPExcel.html#a">a</a> ]
[ <a href="elementindex_PHPExcel.html#c">c</a> ]
[ <a href="elementindex_PHPExcel.html#d">d</a> ]
[ <a href="elementindex_PHPExcel.html#e">e</a> ]
[ <a href="elementindex_PHPExcel.html#f">f</a> ]
[ <a href="elementindex_PHPExcel.html#g">g</a> ]
[ <a href="elementindex_PHPExcel.html#h">h</a> ]
[ <a href="elementindex_PHPExcel.html#i">i</a> ]
[ <a href="elementindex_PHPExcel.html#k">k</a> ]
[ <a href="elementindex_PHPExcel.html#l">l</a> ]
[ <a href="elementindex_PHPExcel.html#m">m</a> ]
[ <a href="elementindex_PHPExcel.html#n">n</a> ]
[ <a href="elementindex_PHPExcel.html#p">p</a> ]
[ <a href="elementindex_PHPExcel.html#r">r</a> ]
[ <a href="elementindex_PHPExcel.html#s">s</a> ]
[ <a href="elementindex_PHPExcel.html#t">t</a> ]
[ <a href="elementindex_PHPExcel.html#u">u</a> ]
[ <a href="elementindex_PHPExcel.html#v">v</a> ]
[ <a href="elementindex_PHPExcel.html#w">w</a> ]
[ <a href="elementindex_PHPExcel.html#z">z</a> ]
[ <a href="elementindex_PHPExcel.html#_">_</a> ]
<hr />
<a name="_"></a>
<div>
<h2>_</h2>
<dl>
<dt><b>$_items</b></dt>
<dd>in file HashTable.php, variable <a href="PHPExcel/PHPExcel_HashTable.html#var$_items">PHPExcel_HashTable::$_items</a><br> HashTable elements</dd>
<dt><b>$_keyMap</b></dt>
<dd>in file HashTable.php, variable <a href="PHPExcel/PHPExcel_HashTable.html#var$_keyMap">PHPExcel_HashTable::$_keyMap</a><br> HashTable key map</dd>
<dt><b>__clone</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#method__clone">PHPExcel_HashTable::__clone()</a><br> Implement PHP __clone to create a deep clone, not just a shallow copy.</dd>
<dt><b>__clone</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#method__clone">PHPExcel::__clone()</a><br> Implement PHP __clone to create a deep clone, not just a shallow copy.</dd>
<dt><b>__clone</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#method__clone">PHPExcel_NamedRange::__clone()</a><br> Implement PHP __clone to create a deep clone, not just a shallow copy.</dd>
<dt><b>__clone</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#method__clone">PHPExcel_DocumentSecurity::__clone()</a><br> Implement PHP __clone to create a deep clone, not just a shallow copy.</dd>
<dt><b>__clone</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#method__clone">PHPExcel_DocumentProperties::__clone()</a><br> Implement PHP __clone to create a deep clone, not just a shallow copy.</dd>
<dt><b>__clone</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#method__clone">PHPExcel_Comment::__clone()</a><br> Implement PHP __clone to create a deep clone, not just a shallow copy.</dd>
<dt><b>__clone</b></dt>
<dd>in file ReferenceHelper.php, method <a href="PHPExcel/PHPExcel_ReferenceHelper.html#method__clone">PHPExcel_ReferenceHelper::__clone()</a><br> __clone implementation. Cloning should not be allowed in a Singleton!</dd>
<dt><b>__construct</b></dt>
<dd>in file WorksheetIterator.php, method <a href="PHPExcel/PHPExcel_WorksheetIterator.html#method__construct">PHPExcel_WorksheetIterator::__construct()</a><br> Create a new worksheet iterator</dd>
<dt><b>__construct</b></dt>
<dd>in file ReferenceHelper.php, method <a href="PHPExcel/PHPExcel_ReferenceHelper.html#method__construct">PHPExcel_ReferenceHelper::__construct()</a><br> Create a new PHPExcel_ReferenceHelper</dd>
<dt><b>__construct</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#method__construct">PHPExcel::__construct()</a><br> Create a new PHPExcel with one Worksheet</dd>
<dt><b>__construct</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#method__construct">PHPExcel_HashTable::__construct()</a><br> Create a new PHPExcel_HashTable</dd>
<dt><b>__construct</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#method__construct">PHPExcel_DocumentProperties::__construct()</a><br> Create a new PHPExcel_DocumentProperties</dd>
<dt><b>__construct</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#method__construct">PHPExcel_NamedRange::__construct()</a><br> Create a new NamedRange</dd>
<dt><b>__construct</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#method__construct">PHPExcel_DocumentSecurity::__construct()</a><br> Create a new PHPExcel_DocumentSecurity</dd>
<dt><b>__construct</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#method__construct">PHPExcel_Comment::__construct()</a><br> Create a new PHPExcel_Comment</dd>
<dt><b>__destruct</b></dt>
<dd>in file WorksheetIterator.php, method <a href="PHPExcel/PHPExcel_WorksheetIterator.html#method__destruct">PHPExcel_WorksheetIterator::__destruct()</a><br> Destructor</dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="a"></a>
<div>
<h2>a</h2>
<dl>
<dt><b>add</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodadd">PclZip::add()</a></dd>
<dt><b>add</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodadd">PHPExcel_HashTable::add()</a><br> Add HashTable item</dd>
<dt><b>addCellStyleXf</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodaddCellStyleXf">PHPExcel::addCellStyleXf()</a><br> Add a cellStyleXf to the workbook</dd>
<dt><b>addCellXf</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodaddCellXf">PHPExcel::addCellXf()</a><br> Add a cellXf to the workbook</dd>
<dt><b>addExternalSheet</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodaddExternalSheet">PHPExcel::addExternalSheet()</a><br> Add external sheet</dd>
<dt><b>addFromSource</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodaddFromSource">PHPExcel_HashTable::addFromSource()</a><br> Add HashTable items from source</dd>
<dt><b>addNamedRange</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodaddNamedRange">PHPExcel::addNamedRange()</a><br> Add named range</dd>
<dt><b>addSearchLocation</b></dt>
<dd>in file IOFactory.php, method <a href="PHPExcel/PHPExcel_IOFactory.html#methodaddSearchLocation">PHPExcel_IOFactory::addSearchLocation()</a><br> Add search location</dd>
<dt><b>addSheet</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodaddSheet">PHPExcel::addSheet()</a><br> Add sheet</dd>
<dt><b>Autoloader.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Autoloader.php.html">Autoloader.php</a></dd>
<dt><b>almohanad.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---almohanad.php.html">almohanad.php</a></dd>
<dt><b>arialunicid0-chinese-simplified.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0-chinese-simplified.php.html">arialunicid0-chinese-simplified.php</a></dd>
<dt><b>arialunicid0-chinese-traditional.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0-chinese-traditional.php.html">arialunicid0-chinese-traditional.php</a></dd>
<dt><b>arialunicid0-japanese.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0-japanese.php.html">arialunicid0-japanese.php</a></dd>
<dt><b>arialunicid0-korean.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0-korean.php.html">arialunicid0-korean.php</a></dd>
<dt><b>arialunicid0.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---arialunicid0.php.html">arialunicid0.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="c"></a>
<div>
<h2>c</h2>
<dl>
<dt><b>cache_in_memory</b></dt>
<dd>in file CachedObjectStorageFactory.php, class constant <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#constcache_in_memory">PHPExcel_CachedObjectStorageFactory::cache_in_memory</a></dd>
<dt><b>cache_in_memory_gzip</b></dt>
<dd>in file CachedObjectStorageFactory.php, class constant <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#constcache_in_memory_gzip">PHPExcel_CachedObjectStorageFactory::cache_in_memory_gzip</a></dd>
<dt><b>cache_in_memory_serialized</b></dt>
<dd>in file CachedObjectStorageFactory.php, class constant <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#constcache_in_memory_serialized">PHPExcel_CachedObjectStorageFactory::cache_in_memory_serialized</a></dd>
<dt><b>cache_to_apc</b></dt>
<dd>in file CachedObjectStorageFactory.php, class constant <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#constcache_to_apc">PHPExcel_CachedObjectStorageFactory::cache_to_apc</a></dd>
<dt><b>cache_to_discISAM</b></dt>
<dd>in file CachedObjectStorageFactory.php, class constant <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#constcache_to_discISAM">PHPExcel_CachedObjectStorageFactory::cache_to_discISAM</a></dd>
<dt><b>cache_to_memcache</b></dt>
<dd>in file CachedObjectStorageFactory.php, class constant <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#constcache_to_memcache">PHPExcel_CachedObjectStorageFactory::cache_to_memcache</a></dd>
<dt><b>cache_to_phpTemp</b></dt>
<dd>in file CachedObjectStorageFactory.php, class constant <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#constcache_to_phpTemp">PHPExcel_CachedObjectStorageFactory::cache_to_phpTemp</a></dd>
<dt><b>cache_to_wincache</b></dt>
<dd>in file CachedObjectStorageFactory.php, class constant <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#constcache_to_wincache">PHPExcel_CachedObjectStorageFactory::cache_to_wincache</a></dd>
<dt><b>calculate</b></dt>
<dd>in file trendClass.php, method <a href="PHPExcel/trendClass.html#methodcalculate">trendClass::calculate()</a></dd>
<dt><b>checkArrays</b></dt>
<dd>in file TestMatrix.php, method <a href="PHPExcel/TestMatrix.html#methodcheckArrays">TestMatrix::checkArrays()</a><br> Check norm of difference of "arrays".</dd>
<dt><b>checkMatrices</b></dt>
<dd>in file TestMatrix.php, method <a href="PHPExcel/TestMatrix.html#methodcheckMatrices">TestMatrix::checkMatrices()</a><br> Check norm of difference of "matrices".</dd>
<dt><b>checkScalars</b></dt>
<dd>in file TestMatrix.php, method <a href="PHPExcel/TestMatrix.html#methodcheckScalars">TestMatrix::checkScalars()</a><br> Check magnitude of difference of "scalars".</dd>
<dt><b>checkVectors</b></dt>
<dd>in file TestMatrix.php, method <a href="PHPExcel/TestMatrix.html#methodcheckVectors">TestMatrix::checkVectors()</a><br> Check norm of difference of "vectors".</dd>
<dt><b>chiSquared</b></dt>
<dd>in file LevenbergMarquardt.php, method <a href="PHPExcel/LevenbergMarquardt.html#methodchiSquared">LevenbergMarquardt::chiSquared()</a><br> Calculate the current sum-squared-error</dd>
<dt><b>clear</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodclear">PHPExcel_HashTable::clear()</a><br> Clear HashTable</dd>
<dt><b>convertProperty</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodconvertProperty">PHPExcel_DocumentProperties::convertProperty()</a></dd>
<dt><b>convertPropertyType</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodconvertPropertyType">PHPExcel_DocumentProperties::convertPropertyType()</a></dd>
<dt><b>copy</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodcopy">PHPExcel::copy()</a><br> Copy workbook (!= clone!)</dd>
<dt><b>count</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodcount">PHPExcel_HashTable::count()</a><br> Count</dd>
<dt><b>create</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodcreate">PclZip::create()</a></dd>
<dt><b>createReader</b></dt>
<dd>in file IOFactory.php, method <a href="PHPExcel/PHPExcel_IOFactory.html#methodcreateReader">PHPExcel_IOFactory::createReader()</a><br> Create PHPExcel_Reader_IReader</dd>
<dt><b>createReaderForFile</b></dt>
<dd>in file IOFactory.php, method <a href="PHPExcel/PHPExcel_IOFactory.html#methodcreateReaderForFile">PHPExcel_IOFactory::createReaderForFile()</a><br> Create PHPExcel_Reader_IReader for file using automatic PHPExcel_Reader_IReader resolution</dd>
<dt><b>createSheet</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodcreateSheet">PHPExcel::createSheet()</a><br> Create sheet and add it to this workbook</dd>
<dt><b>createWriter</b></dt>
<dd>in file IOFactory.php, method <a href="PHPExcel/PHPExcel_IOFactory.html#methodcreateWriter">PHPExcel_IOFactory::createWriter()</a><br> Create PHPExcel_Writer_IWriter</dd>
<dt><b>current</b></dt>
<dd>in file WorksheetIterator.php, method <a href="PHPExcel/PHPExcel_WorksheetIterator.html#methodcurrent">PHPExcel_WorksheetIterator::current()</a><br> Current PHPExcel_Worksheet</dd>
<dt><b>CachedObjectStorageFactory.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---CachedObjectStorageFactory.php.html">CachedObjectStorageFactory.php</a></dd>
<dt><b>Comment.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Comment.php.html">Comment.php</a></dd>
<dt><b>credits.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---includes---credits.php.html">credits.php</a></dd>
<dt><b>chinese.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---chinese.php.html">chinese.php</a></dd>
<dt><b>courier.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---courier.php.html">courier.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="d"></a>
<div>
<h2>d</h2>
<dl>
<dt><b>delete</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methoddelete">PclZip::delete()</a></dd>
<dt><b>deleteByIndex</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methoddeleteByIndex">PclZip::deleteByIndex()</a></dd>
<dt><b>disconnectWorksheets</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methoddisconnectWorksheets">PHPExcel::disconnectWorksheets()</a></dd>
<dt><b>duplicate</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodduplicate">PclZip::duplicate()</a></dd>
<dt><b>DocumentProperties.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---DocumentProperties.php.html">DocumentProperties.php</a></dd>
<dt><b>DocumentSecurity.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---DocumentSecurity.php.html">DocumentSecurity.php</a></dd>
<dt><b>docs.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---docs.php.html">docs.php</a></dd>
<dt><b>download.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---download.php.html">download.php</a></dd>
<dt><b>dejavusans.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusans.php.html">dejavusans.php</a></dd>
<dt><b>dejavusansb.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansb.php.html">dejavusansb.php</a></dd>
<dt><b>dejavusansbi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansbi.php.html">dejavusansbi.php</a></dd>
<dt><b>dejavusanscondensed.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusanscondensed.php.html">dejavusanscondensed.php</a></dd>
<dt><b>dejavusanscondensedb.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusanscondensedb.php.html">dejavusanscondensedb.php</a></dd>
<dt><b>dejavusanscondensedbi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusanscondensedbi.php.html">dejavusanscondensedbi.php</a></dd>
<dt><b>dejavusanscondensedi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusanscondensedi.php.html">dejavusanscondensedi.php</a></dd>
<dt><b>dejavusansi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansi.php.html">dejavusansi.php</a></dd>
<dt><b>dejavusansmono.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansmono.php.html">dejavusansmono.php</a></dd>
<dt><b>dejavusansmonob.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansmonob.php.html">dejavusansmonob.php</a></dd>
<dt><b>dejavusansmonobi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansmonobi.php.html">dejavusansmonobi.php</a></dd>
<dt><b>dejavusansmonoi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavusansmonoi.php.html">dejavusansmonoi.php</a></dd>
<dt><b>dejavuserif.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserif.php.html">dejavuserif.php</a></dd>
<dt><b>dejavuserifb.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifb.php.html">dejavuserifb.php</a></dd>
<dt><b>dejavuserifbi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifbi.php.html">dejavuserifbi.php</a></dd>
<dt><b>dejavuserifcondensed.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifcondensed.php.html">dejavuserifcondensed.php</a></dd>
<dt><b>dejavuserifcondensedb.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifcondensedb.php.html">dejavuserifcondensedb.php</a></dd>
<dt><b>dejavuserifcondensedbi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifcondensedbi.php.html">dejavuserifcondensedbi.php</a></dd>
<dt><b>dejavuserifcondensedi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifcondensedi.php.html">dejavuserifcondensedi.php</a></dd>
<dt><b>dejavuserifi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---dejavuserifi.php.html">dejavuserifi.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="e"></a>
<div>
<h2>e</h2>
<dl>
<dt><b>$error_code</b></dt>
<dd>in file pclzip.lib.php, variable <a href="PHPExcel/PclZip.html#var$error_code">PclZip::$error_code</a></dd>
<dt><b>$error_string</b></dt>
<dd>in file pclzip.lib.php, variable <a href="PHPExcel/PclZip.html#var$error_string">PclZip::$error_string</a></dd>
<dt><b>errorCode</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methoderrorCode">PclZip::errorCode()</a></dd>
<dt><b>errorInfo</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methoderrorInfo">PclZip::errorInfo()</a></dd>
<dt><b>errorName</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methoderrorName">PclZip::errorName()</a></dd>
<dt><b>extract</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodextract">PclZip::extract()</a></dd>
<dt><b>extractByIndex</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodextractByIndex">PclZip::extractByIndex()</a></dd>
<dt><b>example.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---example.php.html">example.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="f"></a>
<div>
<h2>f</h2>
<dl>
<dt><b>findPolynomialFactors</b></dt>
<dd>in file LagrangeInterpolation.php, method <a href="PHPExcel/LagrangeInterpolation.html#methodfindPolynomialFactors">LagrangeInterpolation::findPolynomialFactors()</a></dd>
<dt><b>footer.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---includes---footer.php.html">footer.php</a></dd>
<dt><b>freemono.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freemono.php.html">freemono.php</a></dd>
<dt><b>freemonob.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freemonob.php.html">freemonob.php</a></dd>
<dt><b>freemonobi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freemonobi.php.html">freemonobi.php</a></dd>
<dt><b>freemonoi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freemonoi.php.html">freemonoi.php</a></dd>
<dt><b>freesans.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freesans.php.html">freesans.php</a></dd>
<dt><b>freesansb.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freesansb.php.html">freesansb.php</a></dd>
<dt><b>freesansbi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freesansbi.php.html">freesansbi.php</a></dd>
<dt><b>freesansi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freesansi.php.html">freesansi.php</a></dd>
<dt><b>freeserif.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freeserif.php.html">freeserif.php</a></dd>
<dt><b>freeserifb.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freeserifb.php.html">freeserifb.php</a></dd>
<dt><b>freeserifbi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freeserifbi.php.html">freeserifbi.php</a></dd>
<dt><b>freeserifi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---freeserifi.php.html">freeserifi.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="g"></a>
<div>
<h2>g</h2>
<dl>
<dt><b>garbageCollect</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgarbageCollect">PHPExcel::garbageCollect()</a><br> Eliminate all unneeded cellXf and afterwards update the xfIndex for all cells</dd>
<dt><b>getActiveSheet</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetActiveSheet">PHPExcel::getActiveSheet()</a><br> Get active sheet</dd>
<dt><b>getActiveSheetIndex</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetActiveSheetIndex">PHPExcel::getActiveSheetIndex()</a><br> Get active sheet index</dd>
<dt><b>getAlignment</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetAlignment">PHPExcel_Comment::getAlignment()</a><br> Get Alignment</dd>
<dt><b>getAllSheets</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetAllSheets">PHPExcel::getAllSheets()</a><br> Get all sheets</dd>
<dt><b>getAuthor</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetAuthor">PHPExcel_Comment::getAuthor()</a><br> Get Author</dd>
<dt><b>getByHashCode</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodgetByHashCode">PHPExcel_HashTable::getByHashCode()</a><br> Get by hashcode</dd>
<dt><b>getByIndex</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodgetByIndex">PHPExcel_HashTable::getByIndex()</a><br> Get by index</dd>
<dt><b>getCacheStorageClass</b></dt>
<dd>in file CachedObjectStorageFactory.php, method <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#methodgetCacheStorageClass">PHPExcel_CachedObjectStorageFactory::getCacheStorageClass()</a></dd>
<dt><b>getCacheStorageMethod</b></dt>
<dd>in file CachedObjectStorageFactory.php, method <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#methodgetCacheStorageMethod">PHPExcel_CachedObjectStorageFactory::getCacheStorageMethod()</a></dd>
<dt><b>getCacheStorageMethods</b></dt>
<dd>in file CachedObjectStorageFactory.php, method <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#methodgetCacheStorageMethods">PHPExcel_CachedObjectStorageFactory::getCacheStorageMethods()</a></dd>
<dt><b>getCategory</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetCategory">PHPExcel_DocumentProperties::getCategory()</a><br> Get Category</dd>
<dt><b>getCellStyleXfByHashCode</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetCellStyleXfByHashCode">PHPExcel::getCellStyleXfByHashCode()</a><br> Get cellStyleXf by hash code</dd>
<dt><b>getCellStyleXfByIndex</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetCellStyleXfByIndex">PHPExcel::getCellStyleXfByIndex()</a><br> Get cellStyleXf by index</dd>
<dt><b>getCellStyleXfCollection</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetCellStyleXfCollection">PHPExcel::getCellStyleXfCollection()</a><br> Get the workbook collection of cellStyleXfs</dd>
<dt><b>getCellXfByHashCode</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetCellXfByHashCode">PHPExcel::getCellXfByHashCode()</a><br> Get cellXf by hash code</dd>
<dt><b>getCellXfByIndex</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetCellXfByIndex">PHPExcel::getCellXfByIndex()</a><br> Get cellXf by index</dd>
<dt><b>getCellXfCollection</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetCellXfCollection">PHPExcel::getCellXfCollection()</a><br> Get the workbook collection of cellXfs</dd>
<dt><b>getCellXfSupervisor</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetCellXfSupervisor">PHPExcel::getCellXfSupervisor()</a><br> Get the cellXf supervisor</dd>
<dt><b>getCompany</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetCompany">PHPExcel_DocumentProperties::getCompany()</a><br> Get Company</dd>
<dt><b>getCreated</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetCreated">PHPExcel_DocumentProperties::getCreated()</a><br> Get Created</dd>
<dt><b>getCreator</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetCreator">PHPExcel_DocumentProperties::getCreator()</a><br> Get Creator</dd>
<dt><b>getCustomProperties</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetCustomProperties">PHPExcel_DocumentProperties::getCustomProperties()</a><br> Get a List of Custom Property Names</dd>
<dt><b>getCustomPropertyType</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetCustomPropertyType">PHPExcel_DocumentProperties::getCustomPropertyType()</a><br> Get a Custom Property Type</dd>
<dt><b>getCustomPropertyValue</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetCustomPropertyValue">PHPExcel_DocumentProperties::getCustomPropertyValue()</a><br> Get a Custom Property Value</dd>
<dt><b>getDefaultStyle</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetDefaultStyle">PHPExcel::getDefaultStyle()</a><br> Get default style</dd>
<dt><b>getDescription</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetDescription">PHPExcel_DocumentProperties::getDescription()</a><br> Get Description</dd>
<dt><b>getFillColor</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetFillColor">PHPExcel_Comment::getFillColor()</a><br> Get fill color</dd>
<dt><b>getHashCode</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetHashCode">PHPExcel_Comment::getHashCode()</a><br> Get hash code</dd>
<dt><b>getHashCode</b></dt>
<dd>in file IComparable.php, method <a href="PHPExcel/PHPExcel_IComparable.html#methodgetHashCode">PHPExcel_IComparable::getHashCode()</a><br> Get hash code</dd>
<dt><b>getHeight</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetHeight">PHPExcel_Comment::getHeight()</a><br> Get comment height (CSS style, i.e. XXpx or YYpt)</dd>
<dt><b>getIndex</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetIndex">PHPExcel::getIndex()</a><br> Get index for sheet</dd>
<dt><b>getIndexForHashCode</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodgetIndexForHashCode">PHPExcel_HashTable::getIndexForHashCode()</a><br> Get index for hash code</dd>
<dt><b>getInstance</b></dt>
<dd>in file ReferenceHelper.php, method <a href="PHPExcel/PHPExcel_ReferenceHelper.html#methodgetInstance">PHPExcel_ReferenceHelper::getInstance()</a><br> Get an instance of this class</dd>
<dt><b>getInstance</b></dt>
<dd>in file CachedObjectStorageFactory.php, method <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#methodgetInstance">PHPExcel_CachedObjectStorageFactory::getInstance()</a></dd>
<dt><b>getKeywords</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetKeywords">PHPExcel_DocumentProperties::getKeywords()</a><br> Get Keywords</dd>
<dt><b>getLastModifiedBy</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetLastModifiedBy">PHPExcel_DocumentProperties::getLastModifiedBy()</a><br> Get Last Modified By</dd>
<dt><b>getLocalOnly</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodgetLocalOnly">PHPExcel_NamedRange::getLocalOnly()</a><br> Get localOnly</dd>
<dt><b>getLockRevision</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodgetLockRevision">PHPExcel_DocumentSecurity::getLockRevision()</a><br> Get LockRevision</dd>
<dt><b>getLockStructure</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodgetLockStructure">PHPExcel_DocumentSecurity::getLockStructure()</a><br> Get LockStructure</dd>
<dt><b>getLockWindows</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodgetLockWindows">PHPExcel_DocumentSecurity::getLockWindows()</a><br> Get LockWindows</dd>
<dt><b>getManager</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetManager">PHPExcel_DocumentProperties::getManager()</a><br> Get Manager</dd>
<dt><b>getMarginLeft</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetMarginLeft">PHPExcel_Comment::getMarginLeft()</a><br> Get left margin (CSS style, i.e. XXpx or YYpt)</dd>
<dt><b>getMarginTop</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetMarginTop">PHPExcel_Comment::getMarginTop()</a><br> Get top margin (CSS style, i.e. XXpx or YYpt)</dd>
<dt><b>getModified</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetModified">PHPExcel_DocumentProperties::getModified()</a><br> Get Modified</dd>
<dt><b>getName</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodgetName">PHPExcel_NamedRange::getName()</a><br> Get name</dd>
<dt><b>getNamedRange</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetNamedRange">PHPExcel::getNamedRange()</a><br> Get named range</dd>
<dt><b>getNamedRanges</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetNamedRanges">PHPExcel::getNamedRanges()</a><br> Get named ranges</dd>
<dt><b>getProperties</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetProperties">PHPExcel::getProperties()</a><br> Get properties</dd>
<dt><b>getRange</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodgetRange">PHPExcel_NamedRange::getRange()</a><br> Get range</dd>
<dt><b>getRevisionsPassword</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodgetRevisionsPassword">PHPExcel_DocumentSecurity::getRevisionsPassword()</a><br> Get RevisionsPassword (hashed)</dd>
<dt><b>getScope</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodgetScope">PHPExcel_NamedRange::getScope()</a><br> Get scope</dd>
<dt><b>getSearchLocations</b></dt>
<dd>in file IOFactory.php, method <a href="PHPExcel/PHPExcel_IOFactory.html#methodgetSearchLocations">PHPExcel_IOFactory::getSearchLocations()</a><br> Get search locations</dd>
<dt><b>getSecurity</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetSecurity">PHPExcel::getSecurity()</a><br> Get security</dd>
<dt><b>getSheet</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetSheet">PHPExcel::getSheet()</a><br> Get sheet by index</dd>
<dt><b>getSheetByName</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetSheetByName">PHPExcel::getSheetByName()</a><br> Get sheet by name</dd>
<dt><b>getSheetCount</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetSheetCount">PHPExcel::getSheetCount()</a><br> Get sheet count</dd>
<dt><b>getSheetNames</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetSheetNames">PHPExcel::getSheetNames()</a><br> Get sheet names</dd>
<dt><b>getSubject</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetSubject">PHPExcel_DocumentProperties::getSubject()</a><br> Get Subject</dd>
<dt><b>getText</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetText">PHPExcel_Comment::getText()</a><br> Get Rich text comment</dd>
<dt><b>getTitle</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodgetTitle">PHPExcel_DocumentProperties::getTitle()</a><br> Get Title</dd>
<dt><b>getVisible</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetVisible">PHPExcel_Comment::getVisible()</a><br> Is the comment visible by default?</dd>
<dt><b>getWidth</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodgetWidth">PHPExcel_Comment::getWidth()</a><br> Get comment width (CSS style, i.e. XXpx or YYpt)</dd>
<dt><b>getWorkbookPassword</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodgetWorkbookPassword">PHPExcel_DocumentSecurity::getWorkbookPassword()</a><br> Get WorkbookPassword (hashed)</dd>
<dt><b>getWorksheet</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodgetWorksheet">PHPExcel_NamedRange::getWorksheet()</a><br> Get worksheet</dd>
<dt><b>getWorksheetIterator</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodgetWorksheetIterator">PHPExcel::getWorksheetIterator()</a><br> Get worksheet iterator</dd>
<dt><b>grad</b></dt>
<dd>in file LMQuadTest.php, method <a href="PHPExcel/LMQuadTest.html#methodgrad">LMQuadTest::grad()</a><br> z = (p-o)'S'S(p-o) dz/dp = 2S'S(p-o)</dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="h"></a>
<div>
<h2>h</h2>
<dl>
<dt><b>HashTable.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---HashTable.php.html">HashTable.php</a></dd>
<dt><b>header.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---includes---header.php.html">header.php</a></dd>
<dt><b>helvetica.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---helvetica.php.html">helvetica.php</a></dd>
<dt><b>helveticab.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---helveticab.php.html">helveticab.php</a></dd>
<dt><b>helveticabi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---helveticabi.php.html">helveticabi.php</a></dd>
<dt><b>helveticai.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---helveticai.php.html">helveticai.php</a></dd>
<dt><b>hysmyeongjostdmedium.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---hysmyeongjostdmedium.php.html">hysmyeongjostdmedium.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="i"></a>
<div>
<h2>i</h2>
<dl>
<dt><b>identify</b></dt>
<dd>in file IOFactory.php, method <a href="PHPExcel/PHPExcel_IOFactory.html#methodidentify">PHPExcel_IOFactory::identify()</a><br> Identify file type using automatic PHPExcel_Reader_IReader resolution</dd>
<dt><b>initial</b></dt>
<dd>in file LMQuadTest.php, method <a href="PHPExcel/LMQuadTest.html#methodinitial">LMQuadTest::initial()</a></dd>
<dt><b>initialize</b></dt>
<dd>in file CachedObjectStorageFactory.php, method <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html#methodinitialize">PHPExcel_CachedObjectStorageFactory::initialize()</a></dd>
<dt><b>insertNewBefore</b></dt>
<dd>in file ReferenceHelper.php, method <a href="PHPExcel/PHPExcel_ReferenceHelper.html#methodinsertNewBefore">PHPExcel_ReferenceHelper::insertNewBefore()</a><br> Insert a new column, updating all possible related data</dd>
<dt><b>isCustomPropertySet</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodisCustomPropertySet">PHPExcel_DocumentProperties::isCustomPropertySet()</a><br> Check if a Custom Property is defined</dd>
<dt><b>isSecurityEnabled</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodisSecurityEnabled">PHPExcel_DocumentSecurity::isSecurityEnabled()</a><br> Is some sort of dcument security enabled?</dd>
<dt><b>IComparable.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---IComparable.php.html">IComparable.php</a></dd>
<dt><b>IOFactory.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---IOFactory.php.html">IOFactory.php</a></dd>
<dt><b>index.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---index.php.html">index.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="k"></a>
<div>
<h2>k</h2>
<dl>
<dt><b>key</b></dt>
<dd>in file WorksheetIterator.php, method <a href="PHPExcel/PHPExcel_WorksheetIterator.html#methodkey">PHPExcel_WorksheetIterator::key()</a><br> Current key</dd>
<dt><b>kozgopromedium.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---kozgopromedium.php.html">kozgopromedium.php</a></dd>
<dt><b>kozminproregular.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---kozminproregular.php.html">kozminproregular.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="l"></a>
<div>
<h2>l</h2>
<dl>
<dt><b>LagrangeInterpolation</b></dt>
<dd>in file LagrangeInterpolation.php, class <a href="PHPExcel/LagrangeInterpolation.html">LagrangeInterpolation</a><br> Given n points (x0,y0)...(xn-1,yn-1), the following methid computes the polynomial factors of the n-1't degree polynomial passing through the n points.</dd>
<dt><b>LevenbergMarquardt</b></dt>
<dd>in file LevenbergMarquardt.php, class <a href="PHPExcel/LevenbergMarquardt.html">LevenbergMarquardt</a></dd>
<dt><b>listContent</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodlistContent">PclZip::listContent()</a></dd>
<dt><b>LMQuadTest</b></dt>
<dd>in file LMQuadTest.php, class <a href="PHPExcel/LMQuadTest.html">LMQuadTest</a><br> quadratic (p-o)'S'S(p-o)</dd>
<dt><b>Load</b></dt>
<dd>in file Autoloader.php, method <a href="PHPExcel/PHPExcel_Autoloader.html#methodLoad">PHPExcel_Autoloader::Load()</a></dd>
<dt><b>load</b></dt>
<dd>in file IOFactory.php, method <a href="PHPExcel/PHPExcel_IOFactory.html#methodload">PHPExcel_IOFactory::load()</a><br> Loads PHPExcel from file using automatic PHPExcel_Reader_IReader resolution</dd>
<dt><b>LagrangeInterpolation.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---LagrangeInterpolation.php.html">LagrangeInterpolation.php</a></dd>
<dt><b>LagrangeInterpolation2.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---LagrangeInterpolation2.php.html">LagrangeInterpolation2.php</a></dd>
<dt><b>LevenbergMarquardt.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---LevenbergMarquardt.php.html">LevenbergMarquardt.php</a></dd>
<dt><b>LMQuadTest.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---LMQuadTest.php.html">LMQuadTest.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="m"></a>
<div>
<h2>m</h2>
<dl>
<dt><b>$magic_quotes_status</b></dt>
<dd>in file pclzip.lib.php, variable <a href="PHPExcel/PclZip.html#var$magic_quotes_status">PclZip::$magic_quotes_status</a></dd>
<dt><b>merge</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodmerge">PclZip::merge()</a></dd>
<dt><b>msungstdlight.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---msungstdlight.php.html">msungstdlight.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="n"></a>
<div>
<h2>n</h2>
<dl>
<dt><b>next</b></dt>
<dd>in file WorksheetIterator.php, method <a href="PHPExcel/PHPExcel_WorksheetIterator.html#methodnext">PHPExcel_WorksheetIterator::next()</a><br> Next value</dd>
<dt><b>NamedRange.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---NamedRange.php.html">NamedRange.php</a></dd>
<dt><b>navbar.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---includes---navbar.php.html">navbar.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="p"></a>
<div>
<h2>p</h2>
<dl>
<dt><b>PclZip</b></dt>
<dd>in file pclzip.lib.php, class <a href="PHPExcel/PclZip.html">PclZip</a></dd>
<dt><b>PclZip</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodPclZip">PclZip::PclZip()</a></dd>
<dt><b>PclZipUtilCopyBlock</b></dt>
<dd>in file pclzip.lib.php, function <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#functionPclZipUtilCopyBlock">PclZipUtilCopyBlock()</a></dd>
<dt><b>PclZipUtilOptionText</b></dt>
<dd>in file pclzip.lib.php, function <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#functionPclZipUtilOptionText">PclZipUtilOptionText()</a></dd>
<dt><b>PclZipUtilPathInclusion</b></dt>
<dd>in file pclzip.lib.php, function <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#functionPclZipUtilPathInclusion">PclZipUtilPathInclusion()</a></dd>
<dt><b>PclZipUtilPathReduction</b></dt>
<dd>in file pclzip.lib.php, function <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#functionPclZipUtilPathReduction">PclZipUtilPathReduction()</a></dd>
<dt><b>PclZipUtilRename</b></dt>
<dd>in file pclzip.lib.php, function <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#functionPclZipUtilRename">PclZipUtilRename()</a></dd>
<dt><b>PclZipUtilTranslateWinPath</b></dt>
<dd>in file pclzip.lib.php, function <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#functionPclZipUtilTranslateWinPath">PclZipUtilTranslateWinPath()</a></dd>
<dt><b>PCLZIP_ATT_FILE_COMMENT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ATT_FILE_COMMENT">PCLZIP_ATT_FILE_COMMENT</a></dd>
<dt><b>PCLZIP_ATT_FILE_CONTENT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ATT_FILE_CONTENT">PCLZIP_ATT_FILE_CONTENT</a></dd>
<dt><b>PCLZIP_ATT_FILE_MTIME</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ATT_FILE_MTIME">PCLZIP_ATT_FILE_MTIME</a></dd>
<dt><b>PCLZIP_ATT_FILE_NAME</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ATT_FILE_NAME">PCLZIP_ATT_FILE_NAME</a></dd>
<dt><b>PCLZIP_ATT_FILE_NEW_FULL_NAME</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ATT_FILE_NEW_FULL_NAME">PCLZIP_ATT_FILE_NEW_FULL_NAME</a></dd>
<dt><b>PCLZIP_ATT_FILE_NEW_SHORT_NAME</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ATT_FILE_NEW_SHORT_NAME">PCLZIP_ATT_FILE_NEW_SHORT_NAME</a></dd>
<dt><b>PCLZIP_CB_POST_ADD</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_CB_POST_ADD">PCLZIP_CB_POST_ADD</a></dd>
<dt><b>PCLZIP_CB_POST_EXTRACT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_CB_POST_EXTRACT">PCLZIP_CB_POST_EXTRACT</a></dd>
<dt><b>PCLZIP_CB_PRE_ADD</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_CB_PRE_ADD">PCLZIP_CB_PRE_ADD</a></dd>
<dt><b>PCLZIP_CB_PRE_EXTRACT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_CB_PRE_EXTRACT">PCLZIP_CB_PRE_EXTRACT</a></dd>
<dt><b>PCLZIP_ERROR_EXTERNAL</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERROR_EXTERNAL">PCLZIP_ERROR_EXTERNAL</a></dd>
<dt><b>PCLZIP_ERR_ALREADY_A_DIRECTORY</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_ALREADY_A_DIRECTORY">PCLZIP_ERR_ALREADY_A_DIRECTORY</a></dd>
<dt><b>PCLZIP_ERR_BAD_CHECKSUM</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_BAD_CHECKSUM">PCLZIP_ERR_BAD_CHECKSUM</a></dd>
<dt><b>PCLZIP_ERR_BAD_EXTENSION</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_BAD_EXTENSION">PCLZIP_ERR_BAD_EXTENSION</a></dd>
<dt><b>PCLZIP_ERR_BAD_EXTRACTED_FILE</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_BAD_EXTRACTED_FILE">PCLZIP_ERR_BAD_EXTRACTED_FILE</a></dd>
<dt><b>PCLZIP_ERR_BAD_FORMAT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_BAD_FORMAT">PCLZIP_ERR_BAD_FORMAT</a></dd>
<dt><b>PCLZIP_ERR_DELETE_FILE_FAIL</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_DELETE_FILE_FAIL">PCLZIP_ERR_DELETE_FILE_FAIL</a></dd>
<dt><b>PCLZIP_ERR_DIRECTORY_RESTRICTION</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_DIRECTORY_RESTRICTION">PCLZIP_ERR_DIRECTORY_RESTRICTION</a></dd>
<dt><b>PCLZIP_ERR_DIR_CREATE_FAIL</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_DIR_CREATE_FAIL">PCLZIP_ERR_DIR_CREATE_FAIL</a></dd>
<dt><b>PCLZIP_ERR_FILENAME_TOO_LONG</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_FILENAME_TOO_LONG">PCLZIP_ERR_FILENAME_TOO_LONG</a></dd>
<dt><b>PCLZIP_ERR_INVALID_ARCHIVE_ZIP</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_INVALID_ARCHIVE_ZIP">PCLZIP_ERR_INVALID_ARCHIVE_ZIP</a></dd>
<dt><b>PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_INVALID_ATTRIBUTE_VALUE">PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE</a></dd>
<dt><b>PCLZIP_ERR_INVALID_OPTION_VALUE</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_INVALID_OPTION_VALUE">PCLZIP_ERR_INVALID_OPTION_VALUE</a></dd>
<dt><b>PCLZIP_ERR_INVALID_PARAMETER</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_INVALID_PARAMETER">PCLZIP_ERR_INVALID_PARAMETER</a></dd>
<dt><b>PCLZIP_ERR_INVALID_ZIP</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_INVALID_ZIP">PCLZIP_ERR_INVALID_ZIP</a></dd>
<dt><b>PCLZIP_ERR_MISSING_FILE</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_MISSING_FILE">PCLZIP_ERR_MISSING_FILE</a></dd>
<dt><b>PCLZIP_ERR_MISSING_OPTION_VALUE</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_MISSING_OPTION_VALUE">PCLZIP_ERR_MISSING_OPTION_VALUE</a></dd>
<dt><b>PCLZIP_ERR_NO_ERROR</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_NO_ERROR">PCLZIP_ERR_NO_ERROR</a></dd>
<dt><b>PCLZIP_ERR_READ_OPEN_FAIL</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_READ_OPEN_FAIL">PCLZIP_ERR_READ_OPEN_FAIL</a></dd>
<dt><b>PCLZIP_ERR_RENAME_FILE_FAIL</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_RENAME_FILE_FAIL">PCLZIP_ERR_RENAME_FILE_FAIL</a></dd>
<dt><b>PCLZIP_ERR_UNSUPPORTED_COMPRESSION</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_UNSUPPORTED_COMPRESSION">PCLZIP_ERR_UNSUPPORTED_COMPRESSION</a></dd>
<dt><b>PCLZIP_ERR_UNSUPPORTED_ENCRYPTION</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_UNSUPPORTED_ENCRYPTION">PCLZIP_ERR_UNSUPPORTED_ENCRYPTION</a></dd>
<dt><b>PCLZIP_ERR_USER_ABORTED</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_USER_ABORTED">PCLZIP_ERR_USER_ABORTED</a></dd>
<dt><b>PCLZIP_ERR_WRITE_OPEN_FAIL</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_ERR_WRITE_OPEN_FAIL">PCLZIP_ERR_WRITE_OPEN_FAIL</a></dd>
<dt><b>PCLZIP_OPT_ADD_COMMENT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_ADD_COMMENT">PCLZIP_OPT_ADD_COMMENT</a></dd>
<dt><b>PCLZIP_OPT_ADD_PATH</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_ADD_PATH">PCLZIP_OPT_ADD_PATH</a></dd>
<dt><b>PCLZIP_OPT_ADD_TEMP_FILE_OFF</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_ADD_TEMP_FILE_OFF">PCLZIP_OPT_ADD_TEMP_FILE_OFF</a></dd>
<dt><b>PCLZIP_OPT_ADD_TEMP_FILE_ON</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_ADD_TEMP_FILE_ON">PCLZIP_OPT_ADD_TEMP_FILE_ON</a></dd>
<dt><b>PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD">PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD</a></dd>
<dt><b>PCLZIP_OPT_BY_EREG</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_BY_EREG">PCLZIP_OPT_BY_EREG</a></dd>
<dt><b>PCLZIP_OPT_BY_INDEX</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_BY_INDEX">PCLZIP_OPT_BY_INDEX</a></dd>
<dt><b>PCLZIP_OPT_BY_NAME</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_BY_NAME">PCLZIP_OPT_BY_NAME</a></dd>
<dt><b>PCLZIP_OPT_BY_PREG</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_BY_PREG">PCLZIP_OPT_BY_PREG</a></dd>
<dt><b>PCLZIP_OPT_COMMENT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_COMMENT">PCLZIP_OPT_COMMENT</a></dd>
<dt><b>PCLZIP_OPT_EXTRACT_AS_STRING</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_EXTRACT_AS_STRING">PCLZIP_OPT_EXTRACT_AS_STRING</a></dd>
<dt><b>PCLZIP_OPT_EXTRACT_DIR_RESTRICTION</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_EXTRACT_DIR_RESTRICTION">PCLZIP_OPT_EXTRACT_DIR_RESTRICTION</a></dd>
<dt><b>PCLZIP_OPT_EXTRACT_IN_OUTPUT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_EXTRACT_IN_OUTPUT">PCLZIP_OPT_EXTRACT_IN_OUTPUT</a></dd>
<dt><b>PCLZIP_OPT_NO_COMPRESSION</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_NO_COMPRESSION">PCLZIP_OPT_NO_COMPRESSION</a></dd>
<dt><b>PCLZIP_OPT_PATH</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_PATH">PCLZIP_OPT_PATH</a></dd>
<dt><b>PCLZIP_OPT_PREPEND_COMMENT</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_PREPEND_COMMENT">PCLZIP_OPT_PREPEND_COMMENT</a></dd>
<dt><b>PCLZIP_OPT_REMOVE_ALL_PATH</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_REMOVE_ALL_PATH">PCLZIP_OPT_REMOVE_ALL_PATH</a></dd>
<dt><b>PCLZIP_OPT_REMOVE_PATH</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_REMOVE_PATH">PCLZIP_OPT_REMOVE_PATH</a></dd>
<dt><b>PCLZIP_OPT_REPLACE_NEWER</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_REPLACE_NEWER">PCLZIP_OPT_REPLACE_NEWER</a></dd>
<dt><b>PCLZIP_OPT_SET_CHMOD</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_SET_CHMOD">PCLZIP_OPT_SET_CHMOD</a></dd>
<dt><b>PCLZIP_OPT_STOP_ON_ERROR</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_STOP_ON_ERROR">PCLZIP_OPT_STOP_ON_ERROR</a></dd>
<dt><b>PCLZIP_OPT_TEMP_FILE_OFF</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_TEMP_FILE_OFF">PCLZIP_OPT_TEMP_FILE_OFF</a></dd>
<dt><b>PCLZIP_OPT_TEMP_FILE_ON</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_TEMP_FILE_ON">PCLZIP_OPT_TEMP_FILE_ON</a></dd>
<dt><b>PCLZIP_OPT_TEMP_FILE_THRESHOLD</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_OPT_TEMP_FILE_THRESHOLD">PCLZIP_OPT_TEMP_FILE_THRESHOLD</a></dd>
<dt><b>PCLZIP_READ_BLOCK_SIZE</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_READ_BLOCK_SIZE">PCLZIP_READ_BLOCK_SIZE</a></dd>
<dt><b>PCLZIP_SEPARATOR</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_SEPARATOR">PCLZIP_SEPARATOR</a></dd>
<dt><b>PCLZIP_TEMPORARY_DIR</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_TEMPORARY_DIR">PCLZIP_TEMPORARY_DIR</a></dd>
<dt><b>PCLZIP_TEMPORARY_FILE_RATIO</b></dt>
<dd>in file pclzip.lib.php, constant <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html#definePCLZIP_TEMPORARY_FILE_RATIO">PCLZIP_TEMPORARY_FILE_RATIO</a></dd>
<dt><b>PHPExcel</b></dt>
<dd>in file PHPExcel.php, class <a href="PHPExcel/PHPExcel.html">PHPExcel</a><br> PHPExcel</dd>
<dt><b>package.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---package.php.html">package.php</a></dd>
<dt><b>polyfit.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---polyfit.php.html">polyfit.php</a></dd>
<dt><b>pclzip.lib.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PCLZip---pclzip.lib.php.html">pclzip.lib.php</a></dd>
<dt><b>PHPExcel.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel.php.html">PHPExcel.php</a></dd>
<dt><b>PHPExcel_Autoloader</b></dt>
<dd>in file Autoloader.php, class <a href="PHPExcel/PHPExcel_Autoloader.html">PHPExcel_Autoloader</a><br> PHPExcel</dd>
<dt><b>PHPExcel_CachedObjectStorageFactory</b></dt>
<dd>in file CachedObjectStorageFactory.php, class <a href="PHPExcel/PHPExcel_CachedObjectStorageFactory.html">PHPExcel_CachedObjectStorageFactory</a></dd>
<dt><b>PHPExcel_Comment</b></dt>
<dd>in file Comment.php, class <a href="PHPExcel/PHPExcel_Comment.html">PHPExcel_Comment</a><br> PHPExcel_Comment</dd>
<dt><b>PHPExcel_DocumentProperties</b></dt>
<dd>in file DocumentProperties.php, class <a href="PHPExcel/PHPExcel_DocumentProperties.html">PHPExcel_DocumentProperties</a><br> PHPExcel_DocumentProperties</dd>
<dt><b>PHPExcel_DocumentSecurity</b></dt>
<dd>in file DocumentSecurity.php, class <a href="PHPExcel/PHPExcel_DocumentSecurity.html">PHPExcel_DocumentSecurity</a><br> PHPExcel_DocumentSecurity</dd>
<dt><b>PHPExcel_HashTable</b></dt>
<dd>in file HashTable.php, class <a href="PHPExcel/PHPExcel_HashTable.html">PHPExcel_HashTable</a><br> PHPExcel_HashTable</dd>
<dt><b>PHPExcel_IComparable</b></dt>
<dd>in file IComparable.php, class <a href="PHPExcel/PHPExcel_IComparable.html">PHPExcel_IComparable</a><br> PHPExcel_IComparable</dd>
<dt><b>PHPExcel_IOFactory</b></dt>
<dd>in file IOFactory.php, class <a href="PHPExcel/PHPExcel_IOFactory.html">PHPExcel_IOFactory</a><br> PHPExcel_IOFactory</dd>
<dt><b>PHPExcel_NamedRange</b></dt>
<dd>in file NamedRange.php, class <a href="PHPExcel/PHPExcel_NamedRange.html">PHPExcel_NamedRange</a><br> PHPExcel_NamedRange</dd>
<dt><b>PHPExcel_ReferenceHelper</b></dt>
<dd>in file ReferenceHelper.php, class <a href="PHPExcel/PHPExcel_ReferenceHelper.html">PHPExcel_ReferenceHelper</a><br> PHPExcel_ReferenceHelper (Singleton)</dd>
<dt><b>PHPEXCEL_ROOT</b></dt>
<dd>in file PHPExcel.php, constant <a href="PHPExcel/_PHPExcel.php.html#definePHPEXCEL_ROOT">PHPEXCEL_ROOT</a><br> PHPExcel root directory</dd>
<dt><b>PHPExcel_WorksheetIterator</b></dt>
<dd>in file WorksheetIterator.php, class <a href="PHPExcel/PHPExcel_WorksheetIterator.html">PHPExcel_WorksheetIterator</a><br> PHPExcel_WorksheetIterator</dd>
<dt><b>polyfit</b></dt>
<dd>in file polyfit.php, function <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---polyfit.php.html#functionpolyfit">polyfit()</a></dd>
<dt><b>printpoly</b></dt>
<dd>in file polyfit.php, function <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---polyfit.php.html#functionprintpoly">printpoly()</a></dd>
<dt><b>privAdd</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivAdd">PclZip::privAdd()</a></dd>
<dt><b>privAddFile</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivAddFile">PclZip::privAddFile()</a></dd>
<dt><b>privAddFileList</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivAddFileList">PclZip::privAddFileList()</a></dd>
<dt><b>privAddFileUsingTempFile</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivAddFileUsingTempFile">PclZip::privAddFileUsingTempFile()</a></dd>
<dt><b>privAddList</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivAddList">PclZip::privAddList()</a></dd>
<dt><b>privCalculateStoredFilename</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivCalculateStoredFilename">PclZip::privCalculateStoredFilename()</a></dd>
<dt><b>privCheckFileHeaders</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivCheckFileHeaders">PclZip::privCheckFileHeaders()</a></dd>
<dt><b>privCheckFormat</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivCheckFormat">PclZip::privCheckFormat()</a></dd>
<dt><b>privCloseFd</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivCloseFd">PclZip::privCloseFd()</a></dd>
<dt><b>privConvertHeader2FileInfo</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivConvertHeader2FileInfo">PclZip::privConvertHeader2FileInfo()</a></dd>
<dt><b>privCreate</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivCreate">PclZip::privCreate()</a></dd>
<dt><b>privDeleteByRule</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivDeleteByRule">PclZip::privDeleteByRule()</a></dd>
<dt><b>privDirCheck</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivDirCheck">PclZip::privDirCheck()</a></dd>
<dt><b>privDisableMagicQuotes</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivDisableMagicQuotes">PclZip::privDisableMagicQuotes()</a></dd>
<dt><b>privDuplicate</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivDuplicate">PclZip::privDuplicate()</a></dd>
<dt><b>privErrorLog</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivErrorLog">PclZip::privErrorLog()</a></dd>
<dt><b>privErrorReset</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivErrorReset">PclZip::privErrorReset()</a></dd>
<dt><b>privExtractByRule</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivExtractByRule">PclZip::privExtractByRule()</a></dd>
<dt><b>privExtractFile</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivExtractFile">PclZip::privExtractFile()</a></dd>
<dt><b>privExtractFileAsString</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivExtractFileAsString">PclZip::privExtractFileAsString()</a></dd>
<dt><b>privExtractFileInOutput</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivExtractFileInOutput">PclZip::privExtractFileInOutput()</a></dd>
<dt><b>privExtractFileUsingTempFile</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivExtractFileUsingTempFile">PclZip::privExtractFileUsingTempFile()</a></dd>
<dt><b>privFileDescrExpand</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivFileDescrExpand">PclZip::privFileDescrExpand()</a></dd>
<dt><b>privFileDescrParseAtt</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivFileDescrParseAtt">PclZip::privFileDescrParseAtt()</a></dd>
<dt><b>privList</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivList">PclZip::privList()</a></dd>
<dt><b>privMerge</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivMerge">PclZip::privMerge()</a></dd>
<dt><b>privOpenFd</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivOpenFd">PclZip::privOpenFd()</a></dd>
<dt><b>privOptionDefaultThreshold</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivOptionDefaultThreshold">PclZip::privOptionDefaultThreshold()</a></dd>
<dt><b>privParseOptions</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivParseOptions">PclZip::privParseOptions()</a></dd>
<dt><b>privReadCentralFileHeader</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivReadCentralFileHeader">PclZip::privReadCentralFileHeader()</a></dd>
<dt><b>privReadEndCentralDir</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivReadEndCentralDir">PclZip::privReadEndCentralDir()</a></dd>
<dt><b>privReadFileHeader</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivReadFileHeader">PclZip::privReadFileHeader()</a></dd>
<dt><b>privSwapBackMagicQuotes</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivSwapBackMagicQuotes">PclZip::privSwapBackMagicQuotes()</a></dd>
<dt><b>privWriteCentralFileHeader</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivWriteCentralFileHeader">PclZip::privWriteCentralFileHeader()</a></dd>
<dt><b>privWriteCentralHeader</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivWriteCentralHeader">PclZip::privWriteCentralHeader()</a></dd>
<dt><b>privWriteFileHeader</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodprivWriteFileHeader">PclZip::privWriteFileHeader()</a></dd>
<dt><b>properties</b></dt>
<dd>in file pclzip.lib.php, method <a href="PHPExcel/PclZip.html#methodproperties">PclZip::properties()</a></dd>
<dt><b>PROPERTY_TYPE_BOOLEAN</b></dt>
<dd>in file DocumentProperties.php, class constant <a href="PHPExcel/PHPExcel_DocumentProperties.html#constPROPERTY_TYPE_BOOLEAN">PHPExcel_DocumentProperties::PROPERTY_TYPE_BOOLEAN</a><br> constants</dd>
<dt><b>PROPERTY_TYPE_DATE</b></dt>
<dd>in file DocumentProperties.php, class constant <a href="PHPExcel/PHPExcel_DocumentProperties.html#constPROPERTY_TYPE_DATE">PHPExcel_DocumentProperties::PROPERTY_TYPE_DATE</a></dd>
<dt><b>PROPERTY_TYPE_FLOAT</b></dt>
<dd>in file DocumentProperties.php, class constant <a href="PHPExcel/PHPExcel_DocumentProperties.html#constPROPERTY_TYPE_FLOAT">PHPExcel_DocumentProperties::PROPERTY_TYPE_FLOAT</a></dd>
<dt><b>PROPERTY_TYPE_INTEGER</b></dt>
<dd>in file DocumentProperties.php, class constant <a href="PHPExcel/PHPExcel_DocumentProperties.html#constPROPERTY_TYPE_INTEGER">PHPExcel_DocumentProperties::PROPERTY_TYPE_INTEGER</a></dd>
<dt><b>PROPERTY_TYPE_STRING</b></dt>
<dd>in file DocumentProperties.php, class constant <a href="PHPExcel/PHPExcel_DocumentProperties.html#constPROPERTY_TYPE_STRING">PHPExcel_DocumentProperties::PROPERTY_TYPE_STRING</a></dd>
<dt><b>PROPERTY_TYPE_UNKNOWN</b></dt>
<dd>in file DocumentProperties.php, class constant <a href="PHPExcel/PHPExcel_DocumentProperties.html#constPROPERTY_TYPE_UNKNOWN">PHPExcel_DocumentProperties::PROPERTY_TYPE_UNKNOWN</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="r"></a>
<div>
<h2>r</h2>
<dl>
<dt><b>ReferenceHelper.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---ReferenceHelper.php.html">ReferenceHelper.php</a></dd>
<dt><b>REFHELPER_REGEXP_CELLRANGE</b></dt>
<dd>in file ReferenceHelper.php, class constant <a href="PHPExcel/PHPExcel_ReferenceHelper.html#constREFHELPER_REGEXP_CELLRANGE">PHPExcel_ReferenceHelper::REFHELPER_REGEXP_CELLRANGE</a></dd>
<dt><b>REFHELPER_REGEXP_CELLREF</b></dt>
<dd>in file ReferenceHelper.php, class constant <a href="PHPExcel/PHPExcel_ReferenceHelper.html#constREFHELPER_REGEXP_CELLREF">PHPExcel_ReferenceHelper::REFHELPER_REGEXP_CELLREF</a><br> Regular Expressions</dd>
<dt><b>REFHELPER_REGEXP_COLRANGE</b></dt>
<dd>in file ReferenceHelper.php, class constant <a href="PHPExcel/PHPExcel_ReferenceHelper.html#constREFHELPER_REGEXP_COLRANGE">PHPExcel_ReferenceHelper::REFHELPER_REGEXP_COLRANGE</a></dd>
<dt><b>REFHELPER_REGEXP_ROWRANGE</b></dt>
<dd>in file ReferenceHelper.php, class constant <a href="PHPExcel/PHPExcel_ReferenceHelper.html#constREFHELPER_REGEXP_ROWRANGE">PHPExcel_ReferenceHelper::REFHELPER_REGEXP_ROWRANGE</a></dd>
<dt><b>Register</b></dt>
<dd>in file Autoloader.php, method <a href="PHPExcel/PHPExcel_Autoloader.html#methodRegister">PHPExcel_Autoloader::Register()</a></dd>
<dt><b>remove</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodremove">PHPExcel_HashTable::remove()</a><br> Remove HashTable item</dd>
<dt><b>removeCellStyleXfByIndex</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodremoveCellStyleXfByIndex">PHPExcel::removeCellStyleXfByIndex()</a><br> Remove cellStyleXf by index</dd>
<dt><b>removeCellXfByIndex</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodremoveCellXfByIndex">PHPExcel::removeCellXfByIndex()</a><br> Remove cellXf by index. It is ensured that all cells get their xf index updated.</dd>
<dt><b>removeNamedRange</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodremoveNamedRange">PHPExcel::removeNamedRange()</a><br> Remove named range</dd>
<dt><b>removeSheetByIndex</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodremoveSheetByIndex">PHPExcel::removeSheetByIndex()</a><br> Remove sheet by index</dd>
<dt><b>resolveRange</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodresolveRange">PHPExcel_NamedRange::resolveRange()</a><br> Resolve a named range to a regular cell range</dd>
<dt><b>rewind</b></dt>
<dd>in file WorksheetIterator.php, method <a href="PHPExcel/PHPExcel_WorksheetIterator.html#methodrewind">PHPExcel_WorksheetIterator::rewind()</a><br> Rewind iterator</dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="s"></a>
<div>
<h2>s</h2>
<dl>
<dt><b>stsongstdlight.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---stsongstdlight.php.html">stsongstdlight.php</a></dd>
<dt><b>symbol.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---symbol.php.html">symbol.php</a></dd>
<dt><b>setActiveSheetIndex</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodsetActiveSheetIndex">PHPExcel::setActiveSheetIndex()</a><br> Set active sheet index</dd>
<dt><b>setActiveSheetIndexByName</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodsetActiveSheetIndexByName">PHPExcel::setActiveSheetIndexByName()</a><br> Set active sheet index by name</dd>
<dt><b>setAlignment</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodsetAlignment">PHPExcel_Comment::setAlignment()</a><br> Set Alignment</dd>
<dt><b>setAuthor</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodsetAuthor">PHPExcel_Comment::setAuthor()</a><br> Set Author</dd>
<dt><b>setCategory</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetCategory">PHPExcel_DocumentProperties::setCategory()</a><br> Set Category</dd>
<dt><b>setCompany</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetCompany">PHPExcel_DocumentProperties::setCompany()</a><br> Set Company</dd>
<dt><b>setCreated</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetCreated">PHPExcel_DocumentProperties::setCreated()</a><br> Set Created</dd>
<dt><b>setCreator</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetCreator">PHPExcel_DocumentProperties::setCreator()</a><br> Set Creator</dd>
<dt><b>setCustomProperty</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetCustomProperty">PHPExcel_DocumentProperties::setCustomProperty()</a><br> Set a Custom Property</dd>
<dt><b>setDescription</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetDescription">PHPExcel_DocumentProperties::setDescription()</a><br> Set Description</dd>
<dt><b>setHeight</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodsetHeight">PHPExcel_Comment::setHeight()</a><br> Set comment height (CSS style, i.e. XXpx or YYpt)</dd>
<dt><b>setIndexByName</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodsetIndexByName">PHPExcel::setIndexByName()</a><br> Set index for sheet by sheet name.</dd>
<dt><b>setKeywords</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetKeywords">PHPExcel_DocumentProperties::setKeywords()</a><br> Set Keywords</dd>
<dt><b>setLastModifiedBy</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetLastModifiedBy">PHPExcel_DocumentProperties::setLastModifiedBy()</a><br> Set Last Modified By</dd>
<dt><b>setLocalOnly</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodsetLocalOnly">PHPExcel_NamedRange::setLocalOnly()</a><br> Set localOnly</dd>
<dt><b>setLockRevision</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodsetLockRevision">PHPExcel_DocumentSecurity::setLockRevision()</a><br> Set LockRevision</dd>
<dt><b>setLockStructure</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodsetLockStructure">PHPExcel_DocumentSecurity::setLockStructure()</a><br> Set LockStructure</dd>
<dt><b>setLockWindows</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodsetLockWindows">PHPExcel_DocumentSecurity::setLockWindows()</a><br> Set LockWindows</dd>
<dt><b>setManager</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetManager">PHPExcel_DocumentProperties::setManager()</a><br> Set Manager</dd>
<dt><b>setMarginLeft</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodsetMarginLeft">PHPExcel_Comment::setMarginLeft()</a><br> Set left margin (CSS style, i.e. XXpx or YYpt)</dd>
<dt><b>setMarginTop</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodsetMarginTop">PHPExcel_Comment::setMarginTop()</a><br> Set top margin (CSS style, i.e. XXpx or YYpt)</dd>
<dt><b>setModified</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetModified">PHPExcel_DocumentProperties::setModified()</a><br> Set Modified</dd>
<dt><b>setName</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodsetName">PHPExcel_NamedRange::setName()</a><br> Set name</dd>
<dt><b>setProperties</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodsetProperties">PHPExcel::setProperties()</a><br> Set properties</dd>
<dt><b>setRange</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodsetRange">PHPExcel_NamedRange::setRange()</a><br> Set range</dd>
<dt><b>setRevisionsPassword</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodsetRevisionsPassword">PHPExcel_DocumentSecurity::setRevisionsPassword()</a><br> Set RevisionsPassword</dd>
<dt><b>setScope</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodsetScope">PHPExcel_NamedRange::setScope()</a><br> Set scope</dd>
<dt><b>setSearchLocations</b></dt>
<dd>in file IOFactory.php, method <a href="PHPExcel/PHPExcel_IOFactory.html#methodsetSearchLocations">PHPExcel_IOFactory::setSearchLocations()</a><br> Set search locations</dd>
<dt><b>setSecurity</b></dt>
<dd>in file PHPExcel.php, method <a href="PHPExcel/PHPExcel.html#methodsetSecurity">PHPExcel::setSecurity()</a><br> Set security</dd>
<dt><b>setSubject</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetSubject">PHPExcel_DocumentProperties::setSubject()</a><br> Set Subject</dd>
<dt><b>setText</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodsetText">PHPExcel_Comment::setText()</a><br> Set Rich text comment</dd>
<dt><b>setTitle</b></dt>
<dd>in file DocumentProperties.php, method <a href="PHPExcel/PHPExcel_DocumentProperties.html#methodsetTitle">PHPExcel_DocumentProperties::setTitle()</a><br> Set Title</dd>
<dt><b>setVisible</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodsetVisible">PHPExcel_Comment::setVisible()</a><br> Set comment default visibility</dd>
<dt><b>setWidth</b></dt>
<dd>in file Comment.php, method <a href="PHPExcel/PHPExcel_Comment.html#methodsetWidth">PHPExcel_Comment::setWidth()</a><br> Set comment width (CSS style, i.e. XXpx or YYpt)</dd>
<dt><b>setWorkbookPassword</b></dt>
<dd>in file DocumentSecurity.php, method <a href="PHPExcel/PHPExcel_DocumentSecurity.html#methodsetWorkbookPassword">PHPExcel_DocumentSecurity::setWorkbookPassword()</a><br> Set WorkbookPassword</dd>
<dt><b>setWorksheet</b></dt>
<dd>in file NamedRange.php, method <a href="PHPExcel/PHPExcel_NamedRange.html#methodsetWorksheet">PHPExcel_NamedRange::setWorksheet()</a><br> Set worksheet</dd>
<dt><b>solve</b></dt>
<dd>in file LevenbergMarquardt.php, method <a href="PHPExcel/LevenbergMarquardt.html#methodsolve">LevenbergMarquardt::solve()</a><br> Minimize E = sum {(y[k] - f(x[k],a)) / s[k]}^2 The individual errors are optionally scaled by s[k].</dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="t"></a>
<div>
<h2>t</h2>
<dl>
<dt><b>test.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---docs---test.php.html">test.php</a></dd>
<dt><b>tile.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---tile.php.html">tile.php</a></dd>
<dt><b>TestMatrix.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---JAMA---tests---TestMatrix.php.html">TestMatrix.php</a></dd>
<dt><b>times.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---times.php.html">times.php</a></dd>
<dt><b>timesb.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---timesb.php.html">timesb.php</a></dd>
<dt><b>timesbi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---timesbi.php.html">timesbi.php</a></dd>
<dt><b>timesi.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---timesi.php.html">timesi.php</a></dd>
<dt><b>trendClass.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---trend---trendClass.php.html">trendClass.php</a></dd>
<dt><b>testdata</b></dt>
<dd>in file LMQuadTest.php, method <a href="PHPExcel/LMQuadTest.html#methodtestdata">LMQuadTest::testdata()</a></dd>
<dt><b>TestMatrix</b></dt>
<dd>in file TestMatrix.php, class <a href="PHPExcel/TestMatrix.html">TestMatrix</a></dd>
<dt><b>TestMatrix</b></dt>
<dd>in file TestMatrix.php, method <a href="PHPExcel/TestMatrix.html#methodTestMatrix">TestMatrix::TestMatrix()</a></dd>
<dt><b>tile</b></dt>
<dd>in file tile.php, function <a href="PHPExcel/_PHPExcel---Shared---JAMA---examples---tile.php.html#functiontile">tile()</a><br> Tiling of matrix X in [rowWise by colWise] dimension. Tiling creates a larger matrix than the original data X. Example, if X is to be tiled in a [3 x 4] manner, then:</dd>
<dt><b>toArray</b></dt>
<dd>in file HashTable.php, method <a href="PHPExcel/PHPExcel_HashTable.html#methodtoArray">PHPExcel_HashTable::toArray()</a><br> HashTable to array</dd>
<dt><b>trendClass</b></dt>
<dd>in file trendClass.php, class <a href="PHPExcel/trendClass.html">trendClass</a></dd>
<dt><b>TREND_BEST_FIT</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_BEST_FIT">trendClass::TREND_BEST_FIT</a></dd>
<dt><b>TREND_BEST_FIT_NO_POLY</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_BEST_FIT_NO_POLY">trendClass::TREND_BEST_FIT_NO_POLY</a></dd>
<dt><b>TREND_EXPONENTIAL</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_EXPONENTIAL">trendClass::TREND_EXPONENTIAL</a></dd>
<dt><b>TREND_LINEAR</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_LINEAR">trendClass::TREND_LINEAR</a></dd>
<dt><b>TREND_LOGARITHMIC</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_LOGARITHMIC">trendClass::TREND_LOGARITHMIC</a></dd>
<dt><b>TREND_POLYNOMIAL_2</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_POLYNOMIAL_2">trendClass::TREND_POLYNOMIAL_2</a></dd>
<dt><b>TREND_POLYNOMIAL_3</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_POLYNOMIAL_3">trendClass::TREND_POLYNOMIAL_3</a></dd>
<dt><b>TREND_POLYNOMIAL_4</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_POLYNOMIAL_4">trendClass::TREND_POLYNOMIAL_4</a></dd>
<dt><b>TREND_POLYNOMIAL_5</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_POLYNOMIAL_5">trendClass::TREND_POLYNOMIAL_5</a></dd>
<dt><b>TREND_POLYNOMIAL_6</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_POLYNOMIAL_6">trendClass::TREND_POLYNOMIAL_6</a></dd>
<dt><b>TREND_POWER</b></dt>
<dd>in file trendClass.php, class constant <a href="PHPExcel/trendClass.html#constTREND_POWER">trendClass::TREND_POWER</a></dd>
<dt><b>try_failure</b></dt>
<dd>in file TestMatrix.php, method <a href="PHPExcel/TestMatrix.html#methodtry_failure">TestMatrix::try_failure()</a><br> Print appropriate messages for unsuccessful outcome try</dd>
<dt><b>try_success</b></dt>
<dd>in file TestMatrix.php, method <a href="PHPExcel/TestMatrix.html#methodtry_success">TestMatrix::try_success()</a><br> Print appropriate messages for successful outcome try</dd>
<dt><b>try_warning</b></dt>
<dd>in file TestMatrix.php, method <a href="PHPExcel/TestMatrix.html#methodtry_warning">TestMatrix::try_warning()</a><br> Print appropriate messages for unsuccessful outcome try</dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="u"></a>
<div>
<h2>u</h2>
<dl>
<dt><b>uni2cid_ac15.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---uni2cid_ac15.php.html">uni2cid_ac15.php</a></dd>
<dt><b>uni2cid_ag15.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---uni2cid_ag15.php.html">uni2cid_ag15.php</a></dd>
<dt><b>uni2cid_aj16.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---uni2cid_aj16.php.html">uni2cid_aj16.php</a></dd>
<dt><b>uni2cid_ak12.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---uni2cid_ak12.php.html">uni2cid_ak12.php</a></dd>
<dt><b>updateCellReference</b></dt>
<dd>in file ReferenceHelper.php, method <a href="PHPExcel/PHPExcel_ReferenceHelper.html#methodupdateCellReference">PHPExcel_ReferenceHelper::updateCellReference()</a><br> Update cell reference</dd>
<dt><b>updateFormulaReferences</b></dt>
<dd>in file ReferenceHelper.php, method <a href="PHPExcel/PHPExcel_ReferenceHelper.html#methodupdateFormulaReferences">PHPExcel_ReferenceHelper::updateFormulaReferences()</a><br> Update references within formulas</dd>
<dt><b>updateNamedFormulas</b></dt>
<dd>in file ReferenceHelper.php, method <a href="PHPExcel/PHPExcel_ReferenceHelper.html#methodupdateNamedFormulas">PHPExcel_ReferenceHelper::updateNamedFormulas()</a><br> Update named formulas (i.e. containing worksheet references / named ranges)</dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="v"></a>
<div>
<h2>v</h2>
<dl>
<dt><b>val</b></dt>
<dd>in file LMQuadTest.php, method <a href="PHPExcel/LMQuadTest.html#methodval">LMQuadTest::val()</a></dd>
<dt><b>valid</b></dt>
<dd>in file WorksheetIterator.php, method <a href="PHPExcel/PHPExcel_WorksheetIterator.html#methodvalid">PHPExcel_WorksheetIterator::valid()</a><br> More PHPExcel_Worksheet instances available?</dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="w"></a>
<div>
<h2>w</h2>
<dl>
<dt><b>WorksheetIterator.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---WorksheetIterator.php.html">WorksheetIterator.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<hr />
<a name="z"></a>
<div>
<h2>z</h2>
<dl>
<dt><b>$zipname</b></dt>
<dd>in file pclzip.lib.php, variable <a href="PHPExcel/PclZip.html#var$zipname">PclZip::$zipname</a></dd>
<dt><b>$zip_fd</b></dt>
<dd>in file pclzip.lib.php, variable <a href="PHPExcel/PclZip.html#var$zip_fd">PclZip::$zip_fd</a></dd>
<dt><b>zapfdingbats.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---zapfdingbats.php.html">zapfdingbats.php</a></dd>
<dt><b>zarbold.php</b></dt>
<dd>procedural page <a href="PHPExcel/_PHPExcel---Shared---PDF---fonts---zarbold.php.html">zarbold.php</a></dd>
</dl>
</div>
<a href="elementindex_PHPExcel.html#top">top</a><br>
<div class="credit">
<hr />
Documentation generated on Sun, 27 Feb 2011 16:26:38 -0800 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
</div>
</td></tr></table>
</td>
</tr>
</table>
</body>
</html>