File: index-all.html

package info (click to toggle)
jexcelapi 2.6.8-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 6,336 kB
  • ctags: 9,077
  • sloc: java: 41,536; xml: 107; lisp: 9; makefile: 8; sh: 8
file content (2957 lines) | stat: -rw-r--r-- 239,724 bytes parent folder | download
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
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_02) on Thu May 29 21:39:18 BST 2008 -->
<TITLE>
Index
</TITLE>


<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">

<SCRIPT type="text/javascript">
function windowTitle()
{
    parent.document.title="Index";
}
</SCRIPT>

</HEAD>

<BODY BGCOLOR="white" onload="windowTitle();">


<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>

</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->

<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_Q_">Q</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_X_">X</A> <A HREF="#_Y_">Y</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#A2"><B>A2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A2 420mm  594mm
<DT><A HREF="jxl/format/PaperSize.html#A3"><B>A3</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A3 297mm x 420mm
<DT><A HREF="jxl/format/PaperSize.html#A3_EXTRA"><B>A3_EXTRA</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A3 Extra 322mm  445mm
<DT><A HREF="jxl/format/PaperSize.html#A3_EXTRA_TRANSVERSE"><B>A3_EXTRA_TRANSVERSE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A3 Extra Transverse 322mm  445mm
<DT><A HREF="jxl/format/PaperSize.html#A3_ROTATED"><B>A3_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A3 Rotated 420mm  297mm
<DT><A HREF="jxl/format/PaperSize.html#A3_TRANSVERSE"><B>A3_TRANSVERSE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A3 Transverse 297mm  420mm
<DT><A HREF="jxl/format/PaperSize.html#A4"><B>A4</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A4 210mm x 297mm
<DT><A HREF="jxl/format/PaperSize.html#A4_EXTRA"><B>A4_EXTRA</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A4 Extra 235mm  322mm
<DT><A HREF="jxl/format/PaperSize.html#A4_PLUS"><B>A4_PLUS</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A4 Plus 210mm  330mm
<DT><A HREF="jxl/format/PaperSize.html#A4_ROTATED"><B>A4_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A4 Rotated 297mm  210mm
<DT><A HREF="jxl/format/PaperSize.html#A4_SMALL"><B>A4_SMALL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A4 Small 210mm x 297 mm
<DT><A HREF="jxl/format/PaperSize.html#A4_TRANSVERSE"><B>A4_TRANSVERSE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A4 Transverse 210mm  297mm
<DT><A HREF="jxl/format/PaperSize.html#A5"><B>A5</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A5 148mm x 210mm
<DT><A HREF="jxl/format/PaperSize.html#A5_EXTRA"><B>A5_EXTRA</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A5 Extra 174mm  235mm
<DT><A HREF="jxl/format/PaperSize.html#A5_ROTATED"><B>A5_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A5 Rotated 210mm  148mm
<DT><A HREF="jxl/format/PaperSize.html#A5_TRANSVERSE"><B>A5_TRANSVERSE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A5 Transverse 148mm  210mm
<DT><A HREF="jxl/format/PaperSize.html#A6"><B>A6</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A6 105mm  148mm
<DT><A HREF="jxl/format/PaperSize.html#A6_ROTATED"><B>A6_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>A6 Rotated 148mm  105mm
<DT><A HREF="jxl/write/NumberFormats.html#ACCOUNTING_FLOAT"><B>ACCOUNTING_FLOAT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for an integer which is presented in accounting format
 (ie.
<DT><A HREF="jxl/write/NumberFormats.html#ACCOUNTING_INTEGER"><B>ACCOUNTING_INTEGER</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for an integer which is presented in accounting format
 (ie.
<DT><A HREF="jxl/write/NumberFormats.html#ACCOUNTING_RED_FLOAT"><B>ACCOUNTING_RED_FLOAT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>As ACCOUNTING_FLOAT except that deficits appear coloured red
<DT><A HREF="jxl/write/NumberFormats.html#ACCOUNTING_RED_INTEGER"><B>ACCOUNTING_RED_INTEGER</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>As ACCOUNTING_INTEGER except that deficits appear coloured red
<DT><A HREF="jxl/format/Border.html#ALL"><B>ALL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Border.html" title="class in jxl.format">Border</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#AQUA"><B>AQUA</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#ARIAL"><B>ARIAL</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/write/WritableFont.html#ARIAL"><B>ARIAL</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Objects created with this font name will be rendered within Excel as ARIAL
 fonts
<DT><A HREF="jxl/write/WritableWorkbook.html#ARIAL_10_PT"><B>ARIAL_10_PT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>The default font for Cell formats
<DT><A HREF="jxl/format/Colour.html#AUTOMATIC"><B>AUTOMATIC</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Alignment.html" title="class in jxl.format"><B>Alignment</B></A> - class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>.<DD>Enumeration class which contains the various alignments for data within a 
 cell<DT><A HREF="jxl/write/Alignment.html" title="class in jxl.write"><B>Alignment</B></A> - class jxl.write.<A HREF="jxl/write/Alignment.html" title="class in jxl.write">Alignment</A>.<DD><B>Deprecated.</B>&nbsp;<I>Repackaged as jxl.Alignment.  This version is retained
 for backwards compatibility</I><DT><A HREF="jxl/write/WritableSheet.html#addCell(jxl.write.WritableCell)"><B>addCell(WritableCell)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Adds a cell to this sheet
 The RowsExceededException may be caught if client code wishes to
 explicitly trap the case where too many rows have been written
 to the current sheet.
<DT><A HREF="jxl/write/WritableSheet.html#addColumnPageBreak(int)"><B>addColumnPageBreak(int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Forces a page break at the specified column
<DT><A HREF="jxl/write/WritableSheet.html#addHyperlink(jxl.write.WritableHyperlink)"><B>addHyperlink(WritableHyperlink)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Adds the specified hyperlink.
<DT><A HREF="jxl/write/WritableSheet.html#addImage(jxl.write.WritableImage)"><B>addImage(WritableImage)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Adds an image to the sheet
<DT><A HREF="jxl/write/WritableWorkbook.html#addNameArea(java.lang.String, jxl.write.WritableSheet, int, int, int, int)"><B>addNameArea(String, WritableSheet, int, int, int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Add new named area to this workbook with the given information.
<DT><A HREF="jxl/write/WritableSheet.html#addRowPageBreak(int)"><B>addRowPageBreak(int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Forces a page break at the specified row
<DT><A HREF="jxl/HeaderFooter.Contents.html#append(java.lang.String)"><B>append(String)</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Appends the text to the string buffer
<DT><A HREF="jxl/HeaderFooter.Contents.html#appendDate()"><B>appendDate()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Appends the current date
<DT><A HREF="jxl/HeaderFooter.Contents.html#appendPageNumber()"><B>appendPageNumber()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Appends the page number
<DT><A HREF="jxl/HeaderFooter.Contents.html#appendTime()"><B>appendTime()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Appends the current time
<DT><A HREF="jxl/HeaderFooter.Contents.html#appendTotalPages()"><B>appendTotalPages()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Appends the total number of pages
<DT><A HREF="jxl/HeaderFooter.Contents.html#appendWorkSheetName()"><B>appendWorkSheetName()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Appends the worksheet name
<DT><A HREF="jxl/HeaderFooter.Contents.html#appendWorkbookName()"><B>appendWorkbookName()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Appends the workbook name
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#B4"><B>B4</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B4 (JIS) 257mm x 364mm
<DT><A HREF="jxl/format/PaperSize.html#B4_ISO"><B>B4_ISO</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B4 (ISO) 250mm  353mm
<DT><A HREF="jxl/format/PaperSize.html#B4_ISO_2"><B>B4_ISO_2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B4 (ISO) 250mm  353mm
<DT><A HREF="jxl/format/PaperSize.html#B4_ROTATED"><B>B4_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B4 (JIS) Rotated 364mm  257mm
<DT><A HREF="jxl/format/PaperSize.html#B5"><B>B5</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B5 (JIS) 182mm x 257mm
<DT><A HREF="jxl/format/PaperSize.html#B5_EXTRA"><B>B5_EXTRA</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B5 (ISO) Extra 201mm  276mm
<DT><A HREF="jxl/format/PaperSize.html#B5_ISO"><B>B5_ISO</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B5 (ISO) 176mm  250mm
<DT><A HREF="jxl/format/PaperSize.html#B5_ROTATED"><B>B5_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B5 (JIS) Rotated 257mm  182mm
<DT><A HREF="jxl/format/PaperSize.html#B5_TRANSVERSE"><B>B5_TRANSVERSE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B5 (JIS) Transverse 182mm  257mm
<DT><A HREF="jxl/format/PaperSize.html#B6"><B>B6</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B6 (JIS) 128mm  182mm
<DT><A HREF="jxl/format/PaperSize.html#B6_ISO"><B>B6_ISO</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B6 (ISO) 125mm  176mm
<DT><A HREF="jxl/format/PaperSize.html#B6_ROTATED"><B>B6_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>B6 (JIS) Rotated 182mm  128mm
<DT><A HREF="jxl/write/WritableCellFeatures.html#BETWEEN"><B>BETWEEN</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#BLACK"><B>BLACK</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#BLUE"><B>BLUE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#BLUE2"><B>BLUE2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#BLUE_GREY"><B>BLUE_GREY</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BoldStyle.html#BOLD"><B>BOLD</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BoldStyle.html" title="class in jxl.format">BoldStyle</A>
<DD>Emboldened style
<DT><A HREF="jxl/write/Font.html#BOLD"><B>BOLD</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/write/WritableFont.html#BOLD"><B>BOLD</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Indicates that this font should be presented in a BOLD style
<DT><A HREF="jxl/CellType.html#BOOLEAN"><B>BOOLEAN</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/CellType.html#BOOLEAN_FORMULA"><B>BOOLEAN_FORMULA</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Border.html#BOTTOM"><B>BOTTOM</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Border.html" title="class in jxl.format">Border</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/VerticalAlignment.html#BOTTOM"><B>BOTTOM</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format">VerticalAlignment</A>
<DD>Cells with this specified vertical alignment will have their data
 aligned at the bottom
<DT><A HREF="jxl/format/Colour.html#BRIGHT_GREEN"><B>BRIGHT_GREEN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#BROWN"><B>BROWN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Blank.html" title="class in jxl.write"><B>Blank</B></A> - class jxl.write.<A HREF="jxl/write/Blank.html" title="class in jxl.write">Blank</A>.<DD>A blank cell.<DT><A HREF="jxl/write/Blank.html#Blank(int, int)"><B>Blank(int, int)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Blank.html" title="class in jxl.write">Blank</A>
<DD>Creates a cell which, when added to the sheet, will be presented at the
 specified column and row co-ordinates
<DT><A HREF="jxl/write/Blank.html#Blank(int, int, jxl.format.CellFormat)"><B>Blank(int, int, CellFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Blank.html" title="class in jxl.write">Blank</A>
<DD>Creates a cell which, when added to the sheet, will be presented at the
 specified column and row co-ordinates
 in the manner specified by the CellFormat parameter
<DT><A HREF="jxl/write/Blank.html#Blank(jxl.Cell)"><B>Blank(Cell)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Blank.html" title="class in jxl.write">Blank</A>
<DD>Constructor used internally by the application when making a writable
 copy of a spreadsheet being read in
<DT><A HREF="jxl/format/BoldStyle.html" title="class in jxl.format"><B>BoldStyle</B></A> - class jxl.format.<A HREF="jxl/format/BoldStyle.html" title="class in jxl.format">BoldStyle</A>.<DD>Enumeration class containing the various bold styles for data<DT><A HREF="jxl/write/BoldStyle.html" title="class in jxl.write"><B>BoldStyle</B></A> - class jxl.write.<A HREF="jxl/write/BoldStyle.html" title="class in jxl.write">BoldStyle</A>.<DD>Enumeration class containing the various bold styles for data<DT><A HREF="jxl/write/Boolean.html" title="class in jxl.write"><B>Boolean</B></A> - class jxl.write.<A HREF="jxl/write/Boolean.html" title="class in jxl.write">Boolean</A>.<DD>A cell, created by user applications, which contains a boolean (or
 in some cases an error) value<DT><A HREF="jxl/write/Boolean.html#Boolean(int, int, boolean)"><B>Boolean(int, int, boolean)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Boolean.html" title="class in jxl.write">Boolean</A>
<DD>Constructs a boolean value, which, when added to a spreadsheet, will
 display the specified value at the column/row position indicated.
<DT><A HREF="jxl/write/Boolean.html#Boolean(int, int, boolean, jxl.format.CellFormat)"><B>Boolean(int, int, boolean, CellFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Boolean.html" title="class in jxl.write">Boolean</A>
<DD>Constructs a boolean, which, when added to a spreadsheet, will display the
 specified value at the column/row position with the specified CellFormat.
<DT><A HREF="jxl/write/Boolean.html#Boolean(jxl.BooleanCell)"><B>Boolean(BooleanCell)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Boolean.html" title="class in jxl.write">Boolean</A>
<DD>Constructor used internally by the application when making a writable
 copy of a spreadsheet that has been read in
<DT><A HREF="jxl/BooleanCell.html" title="interface in jxl"><B>BooleanCell</B></A> - interface jxl.<A HREF="jxl/BooleanCell.html" title="interface in jxl">BooleanCell</A>.<DD>This type represents the Microsoft concept of a Boolean.<DT><A HREF="jxl/BooleanFormulaCell.html" title="interface in jxl"><B>BooleanFormulaCell</B></A> - interface jxl.<A HREF="jxl/BooleanFormulaCell.html" title="interface in jxl">BooleanFormulaCell</A>.<DD>A mixin interface for numerical formulas, which combines the interfaces
 for formulas and for numbers<DT><A HREF="jxl/format/Border.html" title="class in jxl.format"><B>Border</B></A> - class jxl.format.<A HREF="jxl/format/Border.html" title="class in jxl.format">Border</A>.<DD>The location of a border<DT><A HREF="jxl/write/Border.html" title="class in jxl.write"><B>Border</B></A> - class jxl.write.<A HREF="jxl/write/Border.html" title="class in jxl.write">Border</A>.<DD><B>Deprecated.</B>&nbsp;<I>repackaged as jxl.format.Border</I><DT><A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format"><B>BorderLineStyle</B></A> - class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>.<DD>The border line style<DT><A HREF="jxl/write/BorderLineStyle.html" title="class in jxl.write"><B>BorderLineStyle</B></A> - class jxl.write.<A HREF="jxl/write/BorderLineStyle.html" title="class in jxl.write">BorderLineStyle</A>.<DD><B>Deprecated.</B>&nbsp;<I>Repackaged as jxl.format.BorderLineStyle</I></DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#C"><B>C</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>C 17" x 22"
<DT><A HREF="jxl/format/Alignment.html#CENTRE"><B>CENTRE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>Data in cells with this alignment will be centred
<DT><A HREF="jxl/format/VerticalAlignment.html#CENTRE"><B>CENTRE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format">VerticalAlignment</A>
<DD>Cells with this specified vertical alignment will have their data
 aligned centrally
<DT><A HREF="jxl/write/NumberFormat.html#COMPLEX_FORMAT"><B>COMPLEX_FORMAT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Pass in to the constructor to bypass the format validation
<DT><A HREF="jxl/format/Colour.html#CORAL"><B>CORAL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/WritableFont.html#COURIER"><B>COURIER</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Objects created with this font name will be rendered within Excel as
 COURIER fonts
<DT><A HREF="jxl/demo/CSV.html" title="class in jxl.demo"><B>CSV</B></A> - class jxl.demo.<A HREF="jxl/demo/CSV.html" title="class in jxl.demo">CSV</A>.<DD>Simple demo class which uses the api to present the contents
 of an excel 97 spreadsheet as comma separated values, using a workbook
 and output stream of your choice<DT><A HREF="jxl/demo/CSV.html#CSV(jxl.Workbook, java.io.OutputStream, java.lang.String, boolean)"><B>CSV(Workbook, OutputStream, String, boolean)</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/CSV.html" title="class in jxl.demo">CSV</A>
<DD>Constructor
<DT><A HREF="jxl/write/NumberFormat.html#CURRENCY_DOLLAR"><B>CURRENCY_DOLLAR</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for the US Dollar sign
<DT><A HREF="jxl/write/NumberFormat.html#CURRENCY_EURO_PREFIX"><B>CURRENCY_EURO_PREFIX</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for the Euro currency symbol where it precedes
 the format
<DT><A HREF="jxl/write/NumberFormat.html#CURRENCY_EURO_SUFFIX"><B>CURRENCY_EURO_SUFFIX</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for the Euro currency symbol where it precedes
 the format
<DT><A HREF="jxl/write/NumberFormat.html#CURRENCY_JAPANESE_YEN"><B>CURRENCY_JAPANESE_YEN</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for the Japanese Yen sign
<DT><A HREF="jxl/write/NumberFormat.html#CURRENCY_POUND"><B>CURRENCY_POUND</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for the UK pound sign
<DT><A HREF="jxl/Cell.html" title="interface in jxl"><B>Cell</B></A> - interface jxl.<A HREF="jxl/Cell.html" title="interface in jxl">Cell</A>.<DD>Represents an individual Cell within a Sheet.<DT><A HREF="jxl/CellFeatures.html" title="class in jxl"><B>CellFeatures</B></A> - class jxl.<A HREF="jxl/CellFeatures.html" title="class in jxl">CellFeatures</A>.<DD>Container for any additional cell features<DT><A HREF="jxl/CellFeatures.html#CellFeatures()"><B>CellFeatures()</B></A> - 
Constructor for class jxl.<A HREF="jxl/CellFeatures.html" title="class in jxl">CellFeatures</A>
<DD>Constructor
<DT><A HREF="jxl/CellFormat.html" title="interface in jxl"><B>CellFormat</B></A> - interface jxl.<A HREF="jxl/CellFormat.html" title="interface in jxl">CellFormat</A>.<DD><B>Deprecated.</B>&nbsp;<I>Repackaged as jxl.format.CellFormat</I><DT><A HREF="jxl/format/CellFormat.html" title="interface in jxl.format"><B>CellFormat</B></A> - interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>.<DD>Interface for cell formats<DT><A HREF="jxl/CellReferenceHelper.html" title="class in jxl"><B>CellReferenceHelper</B></A> - class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>.<DD>Exposes some cell reference helper methods to the public interface.<DT><A HREF="jxl/CellType.html" title="class in jxl"><B>CellType</B></A> - class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>.<DD>An enumeration type listing the available content types for a cell<DT><A HREF="jxl/CellView.html" title="class in jxl"><B>CellView</B></A> - class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>.<DD>This is a bean which client applications may use to get/set various
 properties for a row or column on a spreadsheet<DT><A HREF="jxl/CellView.html#CellView()"><B>CellView()</B></A> - 
Constructor for class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Default constructor
<DT><A HREF="jxl/CellView.html#CellView(jxl.CellView)"><B>CellView(CellView)</B></A> - 
Constructor for class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Copy constructor
<DT><A HREF="jxl/format/Colour.html" title="class in jxl.format"><B>Colour</B></A> - class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>.<DD>Enumeration class which contains the various colours available within
 the standard Excel colour palette<DT><A HREF="jxl/write/Colour.html" title="class in jxl.write"><B>Colour</B></A> - class jxl.write.<A HREF="jxl/write/Colour.html" title="class in jxl.write">Colour</A>.<DD><B>Deprecated.</B>&nbsp;<I>This has been repackaged as jxl.format.Colour</I><DT><A HREF="jxl/HeaderFooter.Contents.html#clear()"><B>clear()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Clears the contents of this portion
<DT><A HREF="jxl/HeaderFooter.html#clear()"><B>clear()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>
<DD>Clears the contents of the header/footer
<DT><A HREF="jxl/Workbook.html#close()"><B>close()</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Closes this workbook, and frees makes any memory allocated available
 for garbage collection
<DT><A HREF="jxl/write/WritableWorkbook.html#close()"><B>close()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Closes this workbook, and makes any memory allocated available
 for garbage collection.
<DT><A HREF="jxl/write/WritableWorkbook.html#copy(jxl.Workbook)"><B>copy(Workbook)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD><B>Deprecated.</B>&nbsp;<I>Copying now occurs implicitly as part of the overloaded
   factory method Workbook.createWorkbood</I>
<DT><A HREF="jxl/write/WritableWorkbook.html#copySheet(int, java.lang.String, int)"><B>copySheet(int, String, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Copy sheet within the same workbook.
<DT><A HREF="jxl/write/WritableWorkbook.html#copySheet(java.lang.String, java.lang.String, int)"><B>copySheet(String, String, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Copies the specified sheet and places it at the index
 specified by the parameter
<DT><A HREF="jxl/write/Blank.html#copyTo(int, int)"><B>copyTo(int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/Blank.html" title="class in jxl.write">Blank</A>
<DD>Implementation of the deep copy function
<DT><A HREF="jxl/write/Boolean.html#copyTo(int, int)"><B>copyTo(int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/Boolean.html" title="class in jxl.write">Boolean</A>
<DD>Implementation of the deep copy function
<DT><A HREF="jxl/write/DateTime.html#copyTo(int, int)"><B>copyTo(int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Implementation of the deep copy function
<DT><A HREF="jxl/write/Formula.html#copyTo(int, int)"><B>copyTo(int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/Formula.html" title="class in jxl.write">Formula</A>
<DD>Implementation of the deep copy function
<DT><A HREF="jxl/write/Label.html#copyTo(int, int)"><B>copyTo(int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/Label.html" title="class in jxl.write">Label</A>
<DD>Implementation of the deep copy function
<DT><A HREF="jxl/write/Number.html#copyTo(int, int)"><B>copyTo(int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/Number.html" title="class in jxl.write">Number</A>
<DD>Implementation of the deep copy function
<DT><A HREF="jxl/write/WritableCell.html#copyTo(int, int)"><B>copyTo(int, int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableCell.html" title="interface in jxl.write">WritableCell</A>
<DD>A deep copy.
<DT><A HREF="jxl/write/WritableFont.html#createFont(java.lang.String)"><B>createFont(String)</B></A> - 
Static method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Factory method which creates the specified font name.
<DT><A HREF="jxl/write/WritableWorkbook.html#createSheet(java.lang.String, int)"><B>createSheet(String, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Creates, and returns a worksheet at the specified position
 with the specified name
 If the index specified is less than or equal to zero, the new sheet
 is created at the beginning of the workbook.
<DT><A HREF="jxl/Workbook.html#createWorkbook(java.io.File)"><B>createWorkbook(File)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Creates a writable workbook with the given file name
<DT><A HREF="jxl/Workbook.html#createWorkbook(java.io.File, jxl.WorkbookSettings)"><B>createWorkbook(File, WorkbookSettings)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Creates a writable workbook with the given file name
<DT><A HREF="jxl/Workbook.html#createWorkbook(java.io.File, jxl.Workbook)"><B>createWorkbook(File, Workbook)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Creates a writable workbook with the given filename as a copy of
 the workbook passed in.
<DT><A HREF="jxl/Workbook.html#createWorkbook(java.io.File, jxl.Workbook, jxl.WorkbookSettings)"><B>createWorkbook(File, Workbook, WorkbookSettings)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Creates a writable workbook with the given filename as a copy of
 the workbook passed in.
<DT><A HREF="jxl/Workbook.html#createWorkbook(java.io.OutputStream, jxl.Workbook)"><B>createWorkbook(OutputStream, Workbook)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Creates a writable workbook as a copy of
 the workbook passed in.
<DT><A HREF="jxl/Workbook.html#createWorkbook(java.io.OutputStream, jxl.Workbook, jxl.WorkbookSettings)"><B>createWorkbook(OutputStream, Workbook, WorkbookSettings)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Creates a writable workbook as a copy of
 the workbook passed in.
<DT><A HREF="jxl/Workbook.html#createWorkbook(java.io.OutputStream)"><B>createWorkbook(OutputStream)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Creates a writable workbook.
<DT><A HREF="jxl/Workbook.html#createWorkbook(java.io.OutputStream, jxl.WorkbookSettings)"><B>createWorkbook(OutputStream, WorkbookSettings)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Creates a writable workbook.
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#D"><B>D</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>D 22" x 34"
<DT><A HREF="jxl/format/Colour.html#DARK_BLUE"><B>DARK_BLUE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#DARK_BLUE2"><B>DARK_BLUE2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#DARK_GREEN"><B>DARK_GREEN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#DARK_PURPLE"><B>DARK_PURPLE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#DARK_RED"><B>DARK_RED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#DARK_RED2"><B>DARK_RED2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#DARK_TEAL"><B>DARK_TEAL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#DARK_YELLOW"><B>DARK_YELLOW</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#DASHED"><B>DASHED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#DASH_DOT"><B>DASH_DOT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#DASH_DOT_DOT"><B>DASH_DOT_DOT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/CellType.html#DATE"><B>DATE</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/CellType.html#DATE_FORMULA"><B>DATE_FORMULA</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/DateFormats.html#DEFAULT"><B>DEFAULT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>The default format.
<DT><A HREF="jxl/write/NumberFormats.html#DEFAULT"><B>DEFAULT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>The default format.
<DT><A HREF="jxl/format/Colour.html#DEFAULT_BACKGROUND"><B>DEFAULT_BACKGROUND</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#DEFAULT_BACKGROUND1"><B>DEFAULT_BACKGROUND1</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/SheetSettings.html#DEFAULT_DEFAULT_ROW_HEIGHT"><B>DEFAULT_DEFAULT_ROW_HEIGHT</B></A> - 
Static variable in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>The default value for the default row height
<DT><A HREF="jxl/write/WritableFont.html#DEFAULT_POINT_SIZE"><B>DEFAULT_POINT_SIZE</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>The default point size for all Fonts
<DT><A HREF="jxl/format/BorderLineStyle.html#DOTTED"><B>DOTTED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#DOUBLE"><B>DOUBLE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/UnderlineStyle.html#DOUBLE"><B>DOUBLE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#DOUBLE"><B>DOUBLE</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/format/UnderlineStyle.html#DOUBLE_ACCOUNTING"><B>DOUBLE_ACCOUNTING</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#DOUBLE_ACCOUNTING"><B>DOUBLE_ACCOUNTING</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#DOUBLE_JAPANESE_POSTCARD"><B>DOUBLE_JAPANESE_POSTCARD</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Dbl.
<DT><A HREF="jxl/format/PaperSize.html#DOUBLE_JAPANESE_POSTCARD_ROTATED"><B>DOUBLE_JAPANESE_POSTCARD_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Dbl.
<DT><A HREF="jxl/format/PageOrder.html#DOWN_THEN_RIGHT"><B>DOWN_THEN_RIGHT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PageOrder.html" title="class in jxl.format">PageOrder</A>
<DD>Top to Down then Right.
<DT><A HREF="jxl/DateCell.html" title="interface in jxl"><B>DateCell</B></A> - interface jxl.<A HREF="jxl/DateCell.html" title="interface in jxl">DateCell</A>.<DD>A date cell<DT><A HREF="jxl/write/DateFormat.html" title="class in jxl.write"><B>DateFormat</B></A> - class jxl.write.<A HREF="jxl/write/DateFormat.html" title="class in jxl.write">DateFormat</A>.<DD>A custom user defined number format which may be instantiated within user
 applications in order to present date and time values in the  appropriate
 format.<DT><A HREF="jxl/write/DateFormat.html#DateFormat(java.lang.String)"><B>DateFormat(String)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/DateFormat.html" title="class in jxl.write">DateFormat</A>
<DD>Constructor.
<DT><A HREF="jxl/write/DateFormats.html" title="class in jxl.write"><B>DateFormats</B></A> - class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>.<DD>Static class which contains Excels predefined Date formats<DT><A HREF="jxl/write/DateFormats.html#DateFormats()"><B>DateFormats()</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>&nbsp;
<DT><A HREF="jxl/DateFormulaCell.html" title="interface in jxl"><B>DateFormulaCell</B></A> - interface jxl.<A HREF="jxl/DateFormulaCell.html" title="interface in jxl">DateFormulaCell</A>.<DD>A mixin interface for date formulas, which combines the interfaces
 for formulas and for dates<DT><A HREF="jxl/write/DateTime.html" title="class in jxl.write"><B>DateTime</B></A> - class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>.<DD>A Date which may be created on the fly by a user application and added to a
 spreadsheet

 NOTE:  By default, all dates will have local timezone information added to
 their UTC value.<DT><A HREF="jxl/write/DateTime.html#DateTime(int, int, java.util.Date)"><B>DateTime(int, int, Date)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Constructor
<DT><A HREF="jxl/write/DateTime.html#DateTime(int, int, java.util.Date, jxl.write.biff.DateRecord.GMTDate)"><B>DateTime(int, int, Date, DateRecord.GMTDate)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Constructor, which adjusts the specified date to take timezone
 considerations into account
<DT><A HREF="jxl/write/DateTime.html#DateTime(int, int, java.util.Date, jxl.format.CellFormat)"><B>DateTime(int, int, Date, CellFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Constructor which takes the format for this cell
<DT><A HREF="jxl/write/DateTime.html#DateTime(int, int, java.util.Date, jxl.format.CellFormat, jxl.write.biff.DateRecord.GMTDate)"><B>DateTime(int, int, Date, CellFormat, DateRecord.GMTDate)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Constructor, which adjusts the specified date to take timezone
 considerations into account
<DT><A HREF="jxl/write/DateTime.html#DateTime(int, int, java.util.Date, jxl.format.CellFormat, boolean)"><B>DateTime(int, int, Date, CellFormat, boolean)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Constructor which takes the format for the cell and an indicator
 as to whether this cell is a full date time or purely just a time
 eg.
<DT><A HREF="jxl/write/DateTime.html#DateTime(jxl.DateCell)"><B>DateTime(DateCell)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>A constructor called by the worksheet when creating a writable version
 of a spreadsheet that has been read in
<DT><A HREF="jxl/demo/Demo.html" title="class in jxl.demo"><B>Demo</B></A> - class jxl.demo.<A HREF="jxl/demo/Demo.html" title="class in jxl.demo">Demo</A>.<DD>The main demo class which interprets the command line switches in order
 to determine how to call the demo programs
 The demo program uses stdout as its default output stream<DT><A HREF="jxl/demo/Demo.html#Demo()"><B>Demo()</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/Demo.html" title="class in jxl.demo">Demo</A>
<DD>&nbsp;
<DT><A HREF="jxl/CellView.html#depUsed()"><B>depUsed()</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Accessor for the depUsed attribute
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#E"><B>E</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>E 34" x 44"
<DT><A HREF="jxl/CellType.html#EMPTY"><B>EMPTY</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_10"><B>ENVELOPE_10</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope #10 4 1/8" x 9.5"
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_11"><B>ENVELOPE_11</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope #11 4.5" x 10 3/8"
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_12"><B>ENVELOPE_12</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope #12 4.75" x 11"
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_14"><B>ENVELOPE_14</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope #14 5" x 11.5"
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_6_75"><B>ENVELOPE_6_75</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>6.75 Envelope 3 5/8"  6.5"
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_9"><B>ENVELOPE_9</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope #9 3 7/8" x 8 7/8"
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_C3"><B>ENVELOPE_C3</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope C3 324mm  458mm
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_C4"><B>ENVELOPE_C4</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope C4 229mm  324mm
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_C5"><B>ENVELOPE_C5</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope C5 162mm  229mm
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_C6"><B>ENVELOPE_C6</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope C6 114mm  162mm
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_C6_C5"><B>ENVELOPE_C6_C5</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope C6/C5 114mm  229mm
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_DL"><B>ENVELOPE_DL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope DL 110mm  220mm
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_INVITE"><B>ENVELOPE_INVITE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope Invite 220mm  220mm
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_ITALY"><B>ENVELOPE_ITALY</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope Italy 110mm  230mm
<DT><A HREF="jxl/format/PaperSize.html#ENVELOPE_MONARCH"><B>ENVELOPE_MONARCH</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Envelope Monarch 3 7/8"  7.5"
<DT><A HREF="jxl/write/WritableCellFeatures.html#EQUAL"><B>EQUAL</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>&nbsp;
<DT><A HREF="jxl/CellType.html#ERROR"><B>ERROR</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#EXECUTIVE"><B>EXECUTIVE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Executive 7.25" x 10.5"
<DT><A HREF="jxl/write/NumberFormats.html#EXPONENTIAL"><B>EXPONENTIAL</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for exponential or scientific notation
 Equivalent to a DecimalFormat "0.00E00"
<DT><A HREF="jxl/ErrorCell.html" title="interface in jxl"><B>ErrorCell</B></A> - interface jxl.<A HREF="jxl/ErrorCell.html" title="interface in jxl">ErrorCell</A>.<DD>This type represents a cell which contains an error.<DT><A HREF="jxl/ErrorFormulaCell.html" title="interface in jxl"><B>ErrorFormulaCell</B></A> - interface jxl.<A HREF="jxl/ErrorFormulaCell.html" title="interface in jxl">ErrorFormulaCell</A>.<DD>A mixin interface for numerical formulas, which combines the interfaces
 for formulas and for numbers<DT><A HREF="jxl/demo/Escher.html" title="class in jxl.demo"><B>Escher</B></A> - class jxl.demo.<A HREF="jxl/demo/Escher.html" title="class in jxl.demo">Escher</A>.<DD>Displays the escher data<DT><A HREF="jxl/demo/Escher.html#Escher(jxl.Workbook, java.io.OutputStream, java.lang.String)"><B>Escher(Workbook, OutputStream, String)</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/Escher.html" title="class in jxl.demo">Escher</A>
<DD>Constructor
<DT><A HREF="jxl/demo/EscherDrawingGroup.html" title="class in jxl.demo"><B>EscherDrawingGroup</B></A> - class jxl.demo.<A HREF="jxl/demo/EscherDrawingGroup.html" title="class in jxl.demo">EscherDrawingGroup</A>.<DD>Displays the escher data<DT><A HREF="jxl/demo/EscherDrawingGroup.html#EscherDrawingGroup(jxl.Workbook, java.io.OutputStream, java.lang.String)"><B>EscherDrawingGroup(Workbook, OutputStream, String)</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/EscherDrawingGroup.html" title="class in jxl.demo">EscherDrawingGroup</A>
<DD>Constructor
<DT><A HREF="jxl/HeaderFooter.Contents.html#empty()"><B>empty()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Queries if the contents are empty
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="jxl/format/Alignment.html#FILL"><B>FILL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>Data in cells with this alignment will fill the cell
<DT><A HREF="jxl/write/NumberFormats.html#FLOAT"><B>FLOAT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for a float.
<DT><A HREF="jxl/format/PaperSize.html#FOLIO"><B>FOLIO</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Folio 8.5" x 13"
<DT><A HREF="jxl/write/DateFormats.html#FORMAT1"><B>FORMAT1</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>The default format.
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT1"><B>FORMAT1</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to a DecimalFormat "#,##0;(#,##0)"
<DT><A HREF="jxl/write/DateFormats.html#FORMAT10"><B>FORMAT10</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "mm:ss"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT10"><B>FORMAT10</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to DecimalFormat "##0.0E0"
<DT><A HREF="jxl/write/DateFormats.html#FORMAT11"><B>FORMAT11</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "H:mm:ss"
<DT><A HREF="jxl/write/DateFormats.html#FORMAT12"><B>FORMAT12</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "mm:ss.S"
<DT><A HREF="jxl/write/DateFormats.html#FORMAT2"><B>FORMAT2</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "d-MMM-yy"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT2"><B>FORMAT2</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to FORMAT1 except deficits are coloured red
<DT><A HREF="jxl/write/DateFormats.html#FORMAT3"><B>FORMAT3</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "d-MMM"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT3"><B>FORMAT3</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to DecimalFormat "#,##0.00;(#,##0.00)"
<DT><A HREF="jxl/write/DateFormats.html#FORMAT4"><B>FORMAT4</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "MMM-yy"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT4"><B>FORMAT4</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to FORMAT3 except deficits are coloured red
<DT><A HREF="jxl/write/DateFormats.html#FORMAT5"><B>FORMAT5</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "h:mm a"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT5"><B>FORMAT5</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to DecimalFormat "#,##0;(#,##0)"
<DT><A HREF="jxl/write/DateFormats.html#FORMAT6"><B>FORMAT6</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "h:mm:ss a"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT6"><B>FORMAT6</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to FORMAT5 except deficits are coloured red
<DT><A HREF="jxl/write/DateFormats.html#FORMAT7"><B>FORMAT7</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "H:mm"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT7"><B>FORMAT7</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to DecimalFormat "#,##0.00;(#,##0.00)"
<DT><A HREF="jxl/write/DateFormats.html#FORMAT8"><B>FORMAT8</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "H:mm:ss"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT8"><B>FORMAT8</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to FORMAT7 except deficits are coloured red
<DT><A HREF="jxl/write/DateFormats.html#FORMAT9"><B>FORMAT9</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateFormats.html" title="class in jxl.write">DateFormats</A>
<DD>Equivalent to a date format of "M/d/yy H:mm"
<DT><A HREF="jxl/write/NumberFormats.html#FORMAT9"><B>FORMAT9</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Equivalent to FORMAT7
<DT><A HREF="jxl/CellType.html#FORMULA_ERROR"><B>FORMULA_ERROR</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/NumberFormat.html#FRACTIONS_EIGHTHS"><B>FRACTIONS_EIGHTHS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for fractions as eighths
<DT><A HREF="jxl/write/NumberFormat.html#FRACTION_HALVES"><B>FRACTION_HALVES</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for fractions as halves
<DT><A HREF="jxl/write/NumberFormat.html#FRACTION_HUNDREDTHS"><B>FRACTION_HUNDREDTHS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for fractions as hundredths
<DT><A HREF="jxl/write/NumberFormats.html#FRACTION_ONE_DIGIT"><B>FRACTION_ONE_DIGIT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for one digit fractions
<DT><A HREF="jxl/write/NumberFormat.html#FRACTION_QUARTERS"><B>FRACTION_QUARTERS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for fractions as quarter
<DT><A HREF="jxl/write/NumberFormat.html#FRACTION_SIXTEENTHS"><B>FRACTION_SIXTEENTHS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for fractions as sixteenths
<DT><A HREF="jxl/write/NumberFormat.html#FRACTION_TENTHS"><B>FRACTION_TENTHS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for fractions as tenths
<DT><A HREF="jxl/write/NumberFormat.html#FRACTION_THREE_DIGITS"><B>FRACTION_THREE_DIGITS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constant format string for three digit fractions
<DT><A HREF="jxl/write/NumberFormats.html#FRACTION_TWO_DIGITS"><B>FRACTION_TWO_DIGITS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for two digit fractions
<DT><A HREF="jxl/demo/Features.html" title="class in jxl.demo"><B>Features</B></A> - class jxl.demo.<A HREF="jxl/demo/Features.html" title="class in jxl.demo">Features</A>.<DD>Goes through each cell in the workbook, and if the cell has any features
 associated with, it prints out the cell contents and the features<DT><A HREF="jxl/demo/Features.html#Features(jxl.Workbook, java.io.OutputStream, java.lang.String)"><B>Features(Workbook, OutputStream, String)</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/Features.html" title="class in jxl.demo">Features</A>
<DD>Constructor
<DT><A HREF="jxl/format/Font.html" title="interface in jxl.format"><B>Font</B></A> - interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>.<DD>Interface which exposes the user font display information to the user<DT><A HREF="jxl/write/Font.html" title="class in jxl.write"><B>Font</B></A> - class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>.<DD><B>Deprecated.</B>&nbsp;<I>Renamed to writable font</I><DT><A HREF="jxl/write/Font.html#Font(jxl.write.WritableFont.FontName)"><B>Font(WritableFont.FontName)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use jxl.write.WritableFont</I>
<DT><A HREF="jxl/write/Font.html#Font(jxl.write.WritableFont.FontName, int)"><B>Font(WritableFont.FontName, int)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I>use jxl.write.WritableFont</I>
<DT><A HREF="jxl/write/Font.html#Font(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle)"><B>Font(WritableFont.FontName, int, WritableFont.BoldStyle)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I>use jxl.write.WritableFont</I>
<DT><A HREF="jxl/write/Font.html#Font(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle, boolean)"><B>Font(WritableFont.FontName, int, WritableFont.BoldStyle, boolean)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I>use jxl.write.WritableFont</I>
<DT><A HREF="jxl/write/Font.html#Font(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle, boolean, jxl.format.UnderlineStyle)"><B>Font(WritableFont.FontName, int, WritableFont.BoldStyle, boolean, UnderlineStyle)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I>use jxl.write.WritableFont</I>
<DT><A HREF="jxl/write/Font.html#Font(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle, boolean, jxl.format.UnderlineStyle, jxl.format.Colour)"><B>Font(WritableFont.FontName, int, WritableFont.BoldStyle, boolean, UnderlineStyle, Colour)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I>use jxl.write.WritableFont</I>
<DT><A HREF="jxl/write/Font.html#Font(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle, boolean, jxl.format.UnderlineStyle, jxl.format.Colour, jxl.format.ScriptStyle)"><B>Font(WritableFont.FontName, int, WritableFont.BoldStyle, boolean, UnderlineStyle, Colour, ScriptStyle)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I>use jxl.write.WritableFont</I>
<DT><A HREF="jxl/format/Format.html" title="interface in jxl.format"><B>Format</B></A> - interface jxl.format.<A HREF="jxl/format/Format.html" title="interface in jxl.format">Format</A>.<DD>Exposes the cell formatting information<DT><A HREF="jxl/write/Formula.html" title="class in jxl.write"><B>Formula</B></A> - class jxl.write.<A HREF="jxl/write/Formula.html" title="class in jxl.write">Formula</A>.<DD>A cell, created by user applications, which contains a numerical value<DT><A HREF="jxl/write/Formula.html#Formula(int, int, java.lang.String)"><B>Formula(int, int, String)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Formula.html" title="class in jxl.write">Formula</A>
<DD>Constructs the formula
<DT><A HREF="jxl/write/Formula.html#Formula(int, int, java.lang.String, jxl.format.CellFormat)"><B>Formula(int, int, String, CellFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Formula.html" title="class in jxl.write">Formula</A>
<DD>Constructs a formula
<DT><A HREF="jxl/FormulaCell.html" title="interface in jxl"><B>FormulaCell</B></A> - interface jxl.<A HREF="jxl/FormulaCell.html" title="interface in jxl">FormulaCell</A>.<DD>Interface for formulas which allow clients to read the Excel formula<DT><A HREF="jxl/demo/Formulas.html" title="class in jxl.demo"><B>Formulas</B></A> - class jxl.demo.<A HREF="jxl/demo/Formulas.html" title="class in jxl.demo">Formulas</A>.<DD>Goes through each cell in the workbook, and if the contents of that
 cell is a formula, it prints out the last calculated value and
 the formula string<DT><A HREF="jxl/demo/Formulas.html#Formulas(jxl.Workbook, java.io.OutputStream, java.lang.String)"><B>Formulas(Workbook, OutputStream, String)</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/Formulas.html" title="class in jxl.demo">Formulas</A>
<DD>Constructor
<DT><A HREF="jxl/Workbook.html#findByName(java.lang.String)"><B>findByName(String)</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Gets the named range from this workbook.
<DT><A HREF="jxl/write/WritableWorkbook.html#findByName(java.lang.String)"><B>findByName(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Gets the named range from this workbook.
<DT><A HREF="jxl/Sheet.html#findCell(java.lang.String)"><B>findCell(String)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets the cell whose contents match the string passed in.
<DT><A HREF="jxl/Workbook.html#findCellByName(java.lang.String)"><B>findCellByName(String)</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Gets the named cell from this workbook.
<DT><A HREF="jxl/write/WritableWorkbook.html#findCellByName(java.lang.String)"><B>findCellByName(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Gets the named cell from this workbook.
<DT><A HREF="jxl/Sheet.html#findLabelCell(java.lang.String)"><B>findLabelCell(String)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets the cell whose contents match the string passed in.
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="jxl/format/Alignment.html#GENERAL"><B>GENERAL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>The standard alignment
<DT><A HREF="jxl/format/PaperSize.html#GERMAN_FANFOLD"><B>GERMAN_FANFOLD</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>German Std.
<DT><A HREF="jxl/format/PaperSize.html#GERMAN_LEGAL_FANFOLD"><B>GERMAN_LEGAL_FANFOLD</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>German Legal Fanfold 8.5"  13"
<DT><A HREF="jxl/write/DateTime.html#GMT"><B>GMT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Instance variable for dummy variable overload
<DT><A HREF="jxl/format/Colour.html#GOLD"><B>GOLD</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#GRAY_25"><B>GRAY_25</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#GRAY_25"><B>GRAY_25</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#GRAY_50"><B>GRAY_50</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#GRAY_50"><B>GRAY_50</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#GRAY_75"><B>GRAY_75</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#GRAY_80"><B>GRAY_80</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/WritableCellFeatures.html#GREATER_EQUAL"><B>GREATER_EQUAL</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/WritableCellFeatures.html#GREATER_THAN"><B>GREATER_THAN</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#GREEN"><B>GREEN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#GREY_25_PERCENT"><B>GREY_25_PERCENT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#GREY_40_PERCENT"><B>GREY_40_PERCENT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#GREY_50_PERCENT"><B>GREY_50_PERCENT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#GREY_80_PERCENT"><B>GREY_80_PERCENT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Alignment.html#getAlignment(int)"><B>getAlignment(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>Gets the alignment from the value
<DT><A HREF="jxl/format/CellFormat.html#getAlignment()"><B>getAlignment()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the horizontal cell alignment
<DT><A HREF="jxl/format/VerticalAlignment.html#getAlignment(int)"><B>getAlignment(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format">VerticalAlignment</A>
<DD>Gets the alignment from the value
<DT><A HREF="jxl/format/Colour.html#getAllColours()"><B>getAllColours()</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>Returns all available colours - used when generating the default palette
<DT><A HREF="jxl/WorkbookSettings.html#getArrayGrowSize()"><B>getArrayGrowSize()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the array grow size property
<DT><A HREF="jxl/WorkbookSettings.html#getAutoFilterDisabled()"><B>getAutoFilterDisabled()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the autofilter disabled feature
<DT><A HREF="jxl/SheetSettings.html#getAutomaticFormulaCalculation()"><B>getAutomaticFormulaCalculation()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Retrieves the automatic formula calculation flag
<DT><A HREF="jxl/format/CellFormat.html#getBackgroundColour()"><B>getBackgroundColour()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the background colour used by this cell
<DT><A HREF="jxl/format/RGB.html#getBlue()"><B>getBlue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/RGB.html" title="class in jxl.format">RGB</A>
<DD>Accessor for the blue component
<DT><A HREF="jxl/format/Font.html#getBoldWeight()"><B>getBoldWeight()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>
<DD>Gets the bold weight for this font
<DT><A HREF="jxl/format/CellFormat.html#getBorder(jxl.format.Border)"><B>getBorder(Border)</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the line style for the given cell border
 If a border type of ALL or NONE is specified, then a line style of
 NONE is returned
<DT><A HREF="jxl/format/CellFormat.html#getBorderColour(jxl.format.Border)"><B>getBorderColour(Border)</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the colour for the given cell border
 If a border type of ALL or NONE is specified, then a line style of
 NONE is returned
 If the specified cell does not have an associated line style, then
 the colour the line would be is still returned
<DT><A HREF="jxl/format/CellFormat.html#getBorderLine(jxl.format.Border)"><B>getBorderLine(Border)</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the line style for the given cell border
 If a border type of ALL or NONE is specified, then a line style of
 NONE is returned
<DT><A HREF="jxl/SheetSettings.html#getBottomMargin()"><B>getBottomMargin()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the bottom margin
<DT><A HREF="jxl/Range.html#getBottomRight()"><B>getBottomRight()</B></A> - 
Method in interface jxl.<A HREF="jxl/Range.html" title="interface in jxl">Range</A>
<DD>Gets the cell at the bottom right of this range
<DT><A HREF="jxl/Sheet.html#getCell(int, int)"><B>getCell(int, int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Returns the cell specified at this row and at this column.
<DT><A HREF="jxl/Sheet.html#getCell(java.lang.String)"><B>getCell(String)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Returns the cell for the specified location eg.
<DT><A HREF="jxl/Workbook.html#getCell(java.lang.String)"><B>getCell(String)</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Returns the cell for the specified location eg.
<DT><A HREF="jxl/Cell.html#getCellFeatures()"><B>getCellFeatures()</B></A> - 
Method in interface jxl.<A HREF="jxl/Cell.html" title="interface in jxl">Cell</A>
<DD>Gets any special cell features, such as comments (notes) or cell
 validation present for this cell
<DT><A HREF="jxl/Cell.html#getCellFormat()"><B>getCellFormat()</B></A> - 
Method in interface jxl.<A HREF="jxl/Cell.html" title="interface in jxl">Cell</A>
<DD>Gets the cell format which applies to this cell
 Note that for cell with a cell type of EMPTY, which has no formatting
 information, this method will return null.
<DT><A HREF="jxl/CellReferenceHelper.html#getCellReference(int, int, java.lang.StringBuffer)"><B>getCellReference(int, int, StringBuffer)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Appends the cell reference for the column and row passed in to the string
 buffer
<DT><A HREF="jxl/CellReferenceHelper.html#getCellReference(int, boolean, int, boolean, java.lang.StringBuffer)"><B>getCellReference(int, boolean, int, boolean, StringBuffer)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Overloaded method which prepends $ for absolute reference
<DT><A HREF="jxl/CellReferenceHelper.html#getCellReference(int, int)"><B>getCellReference(int, int)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the cell reference for the specified column and row
<DT><A HREF="jxl/CellReferenceHelper.html#getCellReference(int, int, int, jxl.Workbook, java.lang.StringBuffer)"><B>getCellReference(int, int, int, Workbook, StringBuffer)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the fully qualified cell reference given the column, row
 external sheet reference etc
<DT><A HREF="jxl/CellReferenceHelper.html#getCellReference(int, int, int, jxl.write.WritableWorkbook, java.lang.StringBuffer)"><B>getCellReference(int, int, int, WritableWorkbook, StringBuffer)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the fully qualified cell reference given the column, row
 external sheet reference etc
<DT><A HREF="jxl/CellReferenceHelper.html#getCellReference(int, int, boolean, int, boolean, jxl.Workbook, java.lang.StringBuffer)"><B>getCellReference(int, int, boolean, int, boolean, Workbook, StringBuffer)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the fully qualified cell reference given the column, row
 external sheet reference etc
<DT><A HREF="jxl/CellReferenceHelper.html#getCellReference(int, int, int, jxl.Workbook)"><B>getCellReference(int, int, int, Workbook)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the fully qualified cell reference given the column, row
 external sheet reference etc
<DT><A HREF="jxl/CellReferenceHelper.html#getCellReference(int, int, int, jxl.write.WritableWorkbook)"><B>getCellReference(int, int, int, WritableWorkbook)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the fully qualified cell reference given the column, row
 external sheet reference etc
<DT><A HREF="jxl/WorkbookSettings.html#getCellValidationDisabled()"><B>getCellValidationDisabled()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the ignore cell validation
<DT><A HREF="jxl/HeaderFooter.html#getCentre()"><B>getCentre()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>
<DD>Accessor for the contents which in the centre of the page
<DT><A HREF="jxl/WorkbookSettings.html#getCharacterSet()"><B>getCharacterSet()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the character set.
<DT><A HREF="jxl/format/Font.html#getColour()"><B>getColour()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>
<DD>Gets the colour for this font
<DT><A HREF="jxl/Cell.html#getColumn()"><B>getColumn()</B></A> - 
Method in interface jxl.<A HREF="jxl/Cell.html" title="interface in jxl">Cell</A>
<DD>Returns the column number of this cell
<DT><A HREF="jxl/CellReferenceHelper.html#getColumn(java.lang.String)"><B>getColumn(String)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the columnn number of the string cell reference
<DT><A HREF="jxl/Hyperlink.html#getColumn()"><B>getColumn()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Returns the column number of this cell
<DT><A HREF="jxl/Image.html#getColumn()"><B>getColumn()</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Accessor for the image position
<DT><A HREF="jxl/Sheet.html#getColumn(int)"><B>getColumn(int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets all the cells on the specified column
<DT><A HREF="jxl/write/WritableImage.html#getColumn()"><B>getColumn()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image position
<DT><A HREF="jxl/Sheet.html#getColumnFormat(int)"><B>getColumnFormat(int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use getColumnView and the CellView bean instead</I>
<DT><A HREF="jxl/Sheet.html#getColumnPageBreaks()"><B>getColumnPageBreaks()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Accessor for the page breaks on this sheet
<DT><A HREF="jxl/CellReferenceHelper.html#getColumnReference(int)"><B>getColumnReference(int)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the column letter corresponding to the 0-based column number
<DT><A HREF="jxl/Sheet.html#getColumnView(int)"><B>getColumnView(int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets the column width for the specified column
<DT><A HREF="jxl/Sheet.html#getColumnWidth(int)"><B>getColumnWidth(int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use getColumnView instead</I>
<DT><A HREF="jxl/Sheet.html#getColumns()"><B>getColumns()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Returns the number of columns in this sheet
<DT><A HREF="jxl/CellFeatures.html#getComment()"><B>getComment()</B></A> - 
Method in class jxl.<A HREF="jxl/CellFeatures.html" title="class in jxl">CellFeatures</A>
<DD>Accessor for the cell comment
<DT><A HREF="jxl/Cell.html#getContents()"><B>getContents()</B></A> - 
Method in interface jxl.<A HREF="jxl/Cell.html" title="interface in jxl">Cell</A>
<DD>Quick and dirty function to return the contents of this cell as a string.
<DT><A HREF="jxl/SheetSettings.html#getCopies()"><B>getCopies()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the number of copies to print
<DT><A HREF="jxl/CellFeatures.html#getDataValidationList()"><B>getDataValidationList()</B></A> - 
Method in class jxl.<A HREF="jxl/CellFeatures.html" title="class in jxl">CellFeatures</A>
<DD>Gets the data validation list
<DT><A HREF="jxl/DateCell.html#getDate()"><B>getDate()</B></A> - 
Method in interface jxl.<A HREF="jxl/DateCell.html" title="interface in jxl">DateCell</A>
<DD>Gets the date contained in this cell
<DT><A HREF="jxl/DateCell.html#getDateFormat()"><B>getDateFormat()</B></A> - 
Method in interface jxl.<A HREF="jxl/DateCell.html" title="interface in jxl">DateCell</A>
<DD>Gets the DateFormat used to format the cell.
<DT><A HREF="jxl/format/Colour.html#getDefaultBlue()"><B>getDefaultBlue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD><B>Deprecated.</B>&nbsp;<I>use getDefaultRGB instead</I>
<DT><A HREF="jxl/SheetSettings.html#getDefaultColumnWidth()"><B>getDefaultColumnWidth()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the default column width
<DT><A HREF="jxl/format/Colour.html#getDefaultGreen()"><B>getDefaultGreen()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD><B>Deprecated.</B>&nbsp;<I>use getDefaultRGB instead</I>
<DT><A HREF="jxl/SheetSettings.html#getDefaultHeightMargin()"><B>getDefaultHeightMargin()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Gets the default margin height
<DT><A HREF="jxl/format/Colour.html#getDefaultRGB()"><B>getDefaultRGB()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>Returns the default RGB of the colour
<DT><A HREF="jxl/format/Colour.html#getDefaultRed()"><B>getDefaultRed()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD><B>Deprecated.</B>&nbsp;<I>use getDefaultRGB instead</I>
<DT><A HREF="jxl/SheetSettings.html#getDefaultRowHeight()"><B>getDefaultRowHeight()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the default row height
<DT><A HREF="jxl/SheetSettings.html#getDefaultWidthMargin()"><B>getDefaultWidthMargin()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Gets the default margin width
<DT><A HREF="jxl/format/Alignment.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>Gets the string description of this alignment
<DT><A HREF="jxl/format/BoldStyle.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/BoldStyle.html" title="class in jxl.format">BoldStyle</A>
<DD>Gets the string description of the bold style
<DT><A HREF="jxl/format/Border.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Border.html" title="class in jxl.format">Border</A>
<DD>Gets the description
<DT><A HREF="jxl/format/BorderLineStyle.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>Gets the textual description
<DT><A HREF="jxl/format/Colour.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>Gets the string description for display purposes
<DT><A HREF="jxl/format/Orientation.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Gets the textual description
<DT><A HREF="jxl/format/Pattern.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>Gets the textual description
<DT><A HREF="jxl/format/ScriptStyle.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/ScriptStyle.html" title="class in jxl.format">ScriptStyle</A>
<DD>Gets the string description for display purposes
<DT><A HREF="jxl/format/UnderlineStyle.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>
<DD>Gets the string description for display purposes
<DT><A HREF="jxl/format/VerticalAlignment.html#getDescription()"><B>getDescription()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format">VerticalAlignment</A>
<DD>Gets the textual description
<DT><A HREF="jxl/CellView.html#getDimension()"><B>getDimension()</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD><B>Deprecated.</B>&nbsp;<I>use getSize() instead</I>
<DT><A HREF="jxl/SheetSettings.html#getDisplayZeroValues()"><B>getDisplayZeroValues()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the displayZeroValues property
<DT><A HREF="jxl/Sheet.html#getDrawing(int)"><B>getDrawing(int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Accessor for the image
<DT><A HREF="jxl/WorkbookSettings.html#getDrawingsDisabled()"><B>getDrawingsDisabled()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Gets the drawings disabled flag
<DT><A HREF="jxl/WorkbookSettings.html#getEncoding()"><B>getEncoding()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the character encoding
<DT><A HREF="jxl/ErrorCell.html#getErrorCode()"><B>getErrorCode()</B></A> - 
Method in interface jxl.<A HREF="jxl/ErrorCell.html" title="interface in jxl">ErrorCell</A>
<DD>Gets the error code for this cell.
<DT><A HREF="jxl/WorkbookSettings.html#getExcelDisplayLanguage()"><B>getExcelDisplayLanguage()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Returns the two character ISO 3166 mnemonic used by excel for user
 language displayto display
<DT><A HREF="jxl/WorkbookSettings.html#getExcelRegionalSettings()"><B>getExcelRegionalSettings()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Returns the two character ISO 3166 mnemonic used by excel for
 its regional settings
<DT><A HREF="jxl/Hyperlink.html#getFile()"><B>getFile()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Returns the local file eferenced by this Hyperlink
<DT><A HREF="jxl/Range.html#getFirstSheetIndex()"><B>getFirstSheetIndex()</B></A> - 
Method in interface jxl.<A HREF="jxl/Range.html" title="interface in jxl">Range</A>
<DD>Gets the index of the first sheet in the range
<DT><A HREF="jxl/SheetSettings.html#getFitHeight()"><B>getFitHeight()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the fit height
<DT><A HREF="jxl/SheetSettings.html#getFitToPages()"><B>getFitToPages()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the fit width print flag
<DT><A HREF="jxl/SheetSettings.html#getFitWidth()"><B>getFitWidth()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the fit width
<DT><A HREF="jxl/format/CellFormat.html#getFont()"><B>getFont()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the font information used by this format
<DT><A HREF="jxl/SheetSettings.html#getFooter()"><B>getFooter()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the footer
<DT><A HREF="jxl/SheetSettings.html#getFooterMargin()"><B>getFooterMargin()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the footer margin
<DT><A HREF="jxl/CellView.html#getFormat()"><B>getFormat()</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Accessor for the cell format for this group.
<DT><A HREF="jxl/format/CellFormat.html#getFormat()"><B>getFormat()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the format used by this format
<DT><A HREF="jxl/format/Format.html#getFormatString()"><B>getFormatString()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Format.html" title="interface in jxl.format">Format</A>
<DD>Accesses the excel format string which is applied to the cell
 Note that this is the string that excel uses, and not the java 
 equivalent
<DT><A HREF="jxl/FormulaCell.html#getFormula()"><B>getFormula()</B></A> - 
Method in interface jxl.<A HREF="jxl/FormulaCell.html" title="interface in jxl">FormulaCell</A>
<DD>Gets the formula as a string
<DT><A HREF="jxl/WorkbookSettings.html#getFormulaAdjust()"><B>getFormulaAdjust()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the formula adjust disabled
<DT><A HREF="jxl/WorkbookSettings.html#getFunctionNames()"><B>getFunctionNames()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Gets the function names.
<DT><A HREF="jxl/WorkbookSettings.html#getGCDisabled()"><B>getGCDisabled()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the disabling of garbage collection
<DT><A HREF="jxl/format/RGB.html#getGreen()"><B>getGreen()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/RGB.html" title="class in jxl.format">RGB</A>
<DD>Accessor for the green component
<DT><A HREF="jxl/SheetSettings.html#getHeader()"><B>getHeader()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the header
<DT><A HREF="jxl/SheetSettings.html#getHeaderMargin()"><B>getHeaderMargin()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the header margin
<DT><A HREF="jxl/Image.html#getHeight()"><B>getHeight()</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Accessor for the image dimensions
<DT><A HREF="jxl/Image.html#getHeight(common.LengthUnit)"><B>getHeight(LengthUnit)</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Get the height of this image as rendered within Excel
<DT><A HREF="jxl/write/WritableImage.html#getHeight()"><B>getHeight()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image dimensions
<DT><A HREF="jxl/SheetSettings.html#getHorizontalFreeze()"><B>getHorizontalFreeze()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Gets the row at which the pane is frozen horizontally
<DT><A HREF="jxl/SheetSettings.html#getHorizontalPrintResolution()"><B>getHorizontalPrintResolution()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the horizontal print resolution
<DT><A HREF="jxl/Image.html#getHorizontalResolution(common.LengthUnit)"><B>getHorizontalResolution(LengthUnit)</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Gets the horizontal resolution of the image, if that information
 is available.
<DT><A HREF="jxl/Sheet.html#getHyperlinks()"><B>getHyperlinks()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets the hyperlinks on this sheet
<DT><A HREF="jxl/WorkbookSettings.html#getIgnoreBlanks()"><B>getIgnoreBlanks()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the ignore blanks flag
<DT><A HREF="jxl/write/WritableSheet.html#getImage(int)"><B>getImage(int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Accessor for the image
<DT><A HREF="jxl/write/WritableImage.html#getImageAnchor()"><B>getImageAnchor()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the anchor properties
<DT><A HREF="jxl/Image.html#getImageData()"><B>getImageData()</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Accessor for the image data
<DT><A HREF="jxl/write/WritableImage.html#getImageData()"><B>getImageData()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image data
<DT><A HREF="jxl/Image.html#getImageFile()"><B>getImageFile()</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Accessor for the image file
<DT><A HREF="jxl/write/WritableImage.html#getImageFile()"><B>getImageFile()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image file
<DT><A HREF="jxl/Image.html#getImageHeight()"><B>getImageHeight()</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Gets the height of the image.
<DT><A HREF="jxl/Image.html#getImageWidth()"><B>getImageWidth()</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Gets the width of the image.
<DT><A HREF="jxl/format/CellFormat.html#getIndentation()"><B>getIndentation()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the indentation of the cell text
<DT><A HREF="jxl/WorkbookSettings.html#getInitialFileSize()"><B>getInitialFileSize()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the initial file size property
<DT><A HREF="jxl/format/Colour.html#getInternalColour(int)"><B>getInternalColour(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>Gets the internal colour from the value
<DT><A HREF="jxl/Hyperlink.html#getLastColumn()"><B>getLastColumn()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Returns the column number of the bottom right cell
<DT><A HREF="jxl/Hyperlink.html#getLastRow()"><B>getLastRow()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Returns the row number of the bottom right cell
<DT><A HREF="jxl/Range.html#getLastSheetIndex()"><B>getLastSheetIndex()</B></A> - 
Method in interface jxl.<A HREF="jxl/Range.html" title="interface in jxl">Range</A>
<DD>Gets the index of the last sheet in the range
<DT><A HREF="jxl/HeaderFooter.html#getLeft()"><B>getLeft()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>
<DD>Accessor for the contents which appear on the left hand side of the page
<DT><A HREF="jxl/SheetSettings.html#getLeftMargin()"><B>getLeftMargin()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the left margin
<DT><A HREF="jxl/WorkbookSettings.html#getLocale()"><B>getLocale()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Returns the locale used by JExcelAPI to read the spreadsheet
<DT><A HREF="jxl/WorkbookSettings.html#getMergedCellCheckingDisabled()"><B>getMergedCellCheckingDisabled()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor to retrieve the merged cell checking flag
<DT><A HREF="jxl/Sheet.html#getMergedCells()"><B>getMergedCells()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets the cells which have been merged on this sheet
<DT><A HREF="jxl/Sheet.html#getName()"><B>getName()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets the name of this sheet
<DT><A HREF="jxl/format/Font.html#getName()"><B>getName()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>
<DD>Gets the name of this font
<DT><A HREF="jxl/WorkbookSettings.html#getNamesDisabled()"><B>getNamesDisabled()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the disabling of interpretation of named ranges
<DT><A HREF="jxl/SheetSettings.html#getNormalMagnification()"><B>getNormalMagnification()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the nomral view  magnificaton factor.
<DT><A HREF="jxl/NumberCell.html#getNumberFormat()"><B>getNumberFormat()</B></A> - 
Method in interface jxl.<A HREF="jxl/NumberCell.html" title="interface in jxl">NumberCell</A>
<DD>Gets the NumberFormat used to format this cell.
<DT><A HREF="jxl/Sheet.html#getNumberOfImages()"><B>getNumberOfImages()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Accessor for the number of images on the sheet
<DT><A HREF="jxl/write/WritableSheet.html#getNumberOfImages()"><B>getNumberOfImages()</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Accessor for the number of images on the sheet
<DT><A HREF="jxl/Workbook.html#getNumberOfSheets()"><B>getNumberOfSheets()</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Returns the number of sheets in this workbook
<DT><A HREF="jxl/write/WritableWorkbook.html#getNumberOfSheets()"><B>getNumberOfSheets()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Returns the number of sheets in this workbook
<DT><A HREF="jxl/SheetSettings.html#getOrientation()"><B>getOrientation()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the orientation
<DT><A HREF="jxl/format/CellFormat.html#getOrientation()"><B>getOrientation()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the orientation
<DT><A HREF="jxl/format/Orientation.html#getOrientation(int)"><B>getOrientation(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Gets the alignment from the value
<DT><A HREF="jxl/SheetSettings.html#getPageBreakPreviewMagnification()"><B>getPageBreakPreviewMagnification()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the page break preview mangificaton factor.
<DT><A HREF="jxl/SheetSettings.html#getPageBreakPreviewMode()"><B>getPageBreakPreviewMode()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the pageBreakPreview mode
<DT><A HREF="jxl/SheetSettings.html#getPageOrder()"><B>getPageOrder()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the order
<DT><A HREF="jxl/SheetSettings.html#getPageStart()"><B>getPageStart()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the page start
<DT><A HREF="jxl/SheetSettings.html#getPaperSize()"><B>getPaperSize()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the paper size
<DT><A HREF="jxl/format/PaperSize.html#getPaperSize(int)"><B>getPaperSize(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Gets the paper size for a specific value
<DT><A HREF="jxl/SheetSettings.html#getPassword()"><B>getPassword()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the password
<DT><A HREF="jxl/SheetSettings.html#getPasswordHash()"><B>getPasswordHash()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the password hash - used only when copying sheets
<DT><A HREF="jxl/format/CellFormat.html#getPattern()"><B>getPattern()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the pattern used by this cell format
<DT><A HREF="jxl/format/Pattern.html#getPattern(int)"><B>getPattern(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>Gets the pattern from the value
<DT><A HREF="jxl/format/Font.html#getPointSize()"><B>getPointSize()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>
<DD>Gets the point size for this font, if the font hasn't been initialized
<DT><A HREF="jxl/SheetSettings.html#getPrintArea()"><B>getPrintArea()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the print area
<DT><A HREF="jxl/SheetSettings.html#getPrintGridLines()"><B>getPrintGridLines()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the printGridLines property
<DT><A HREF="jxl/SheetSettings.html#getPrintHeaders()"><B>getPrintHeaders()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the printHeaders property
<DT><A HREF="jxl/SheetSettings.html#getPrintTitlesCol()"><B>getPrintTitlesCol()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the print column titles
<DT><A HREF="jxl/SheetSettings.html#getPrintTitlesRow()"><B>getPrintTitlesRow()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the print row titles
<DT><A HREF="jxl/WorkbookSettings.html#getPropertySetsDisabled()"><B>getPropertySetsDisabled()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor to retrieve the property sets disabled flag
<DT><A HREF="jxl/Hyperlink.html#getRange()"><B>getRange()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Gets the range of cells which activate this hyperlink
 The get sheet index methods will all return -1, because the
 cells will all be present on the same sheet
<DT><A HREF="jxl/Workbook.html#getRangeNames()"><B>getRangeNames()</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Gets the named ranges
<DT><A HREF="jxl/write/WritableWorkbook.html#getRangeNames()"><B>getRangeNames()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Gets the named ranges
<DT><A HREF="jxl/WorkbookSettings.html#getRationalizationDisabled()"><B>getRationalizationDisabled()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor to retrieve the rationalization flag
<DT><A HREF="jxl/SheetSettings.html#getRecalculateFormulasBeforeSave()"><B>getRecalculateFormulasBeforeSave()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Retrieves the recalculate formulas before save  flag
<DT><A HREF="jxl/format/RGB.html#getRed()"><B>getRed()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/RGB.html" title="class in jxl.format">RGB</A>
<DD>Accessor for the red component
<DT><A HREF="jxl/HeaderFooter.html#getRight()"><B>getRight()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>
<DD>Accessor for the contents which appear on the right hand side of the page
<DT><A HREF="jxl/SheetSettings.html#getRightMargin()"><B>getRightMargin()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the right margin
<DT><A HREF="jxl/Cell.html#getRow()"><B>getRow()</B></A> - 
Method in interface jxl.<A HREF="jxl/Cell.html" title="interface in jxl">Cell</A>
<DD>Returns the row number of this cell
<DT><A HREF="jxl/CellReferenceHelper.html#getRow(java.lang.String)"><B>getRow(String)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the row number of the cell reference
<DT><A HREF="jxl/Hyperlink.html#getRow()"><B>getRow()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Returns the row number of this cell
<DT><A HREF="jxl/Image.html#getRow()"><B>getRow()</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Accessor for the image position
<DT><A HREF="jxl/Sheet.html#getRow(int)"><B>getRow(int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets all the cells on the specified row
<DT><A HREF="jxl/write/WritableImage.html#getRow()"><B>getRow()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image position
<DT><A HREF="jxl/Sheet.html#getRowHeight(int)"><B>getRowHeight(int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>use getRowView instead</I>
<DT><A HREF="jxl/Sheet.html#getRowPageBreaks()"><B>getRowPageBreaks()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Accessor for the page breaks on this sheet
<DT><A HREF="jxl/Sheet.html#getRowView(int)"><B>getRowView(int)</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets the row height for the specified column
<DT><A HREF="jxl/Sheet.html#getRows()"><B>getRows()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Returns the number of rows in this sheet
<DT><A HREF="jxl/SheetSettings.html#getScaleFactor()"><B>getScaleFactor()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the scale factor
<DT><A HREF="jxl/format/Font.html#getScriptStyle()"><B>getScriptStyle()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>
<DD>Gets the script style
<DT><A HREF="jxl/Sheet.html#getSettings()"><B>getSettings()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD>Gets the settings used on a particular sheet
<DT><A HREF="jxl/CellReferenceHelper.html#getSheet(java.lang.String)"><B>getSheet(String)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Gets the sheet name from the cell reference string
<DT><A HREF="jxl/Workbook.html#getSheet(int)"><B>getSheet(int)</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Gets the specified sheet within this workbook
 As described in the accompanying technical notes, each call
 to getSheet forces a reread of the sheet (for memory reasons).
<DT><A HREF="jxl/Workbook.html#getSheet(java.lang.String)"><B>getSheet(String)</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Gets the sheet with the specified name from within this workbook.
<DT><A HREF="jxl/write/WritableWorkbook.html#getSheet(int)"><B>getSheet(int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Gets the specified sheet within this workbook
<DT><A HREF="jxl/write/WritableWorkbook.html#getSheet(java.lang.String)"><B>getSheet(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Gets the sheet with the specified name from within this workbook
<DT><A HREF="jxl/Workbook.html#getSheetNames()"><B>getSheetNames()</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Gets the sheet names
<DT><A HREF="jxl/write/WritableWorkbook.html#getSheetNames()"><B>getSheetNames()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Gets the sheet names
<DT><A HREF="jxl/Workbook.html#getSheets()"><B>getSheets()</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Gets the sheets within this workbook.
<DT><A HREF="jxl/write/WritableWorkbook.html#getSheets()"><B>getSheets()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Gets the sheets within this workbook.
<DT><A HREF="jxl/SheetSettings.html#getShowGridLines()"><B>getShowGridLines()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the showGridLines property
<DT><A HREF="jxl/CellView.html#getSize()"><B>getSize()</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Gets the width of the column in characters multiplied by 256, or the
 height of the row in 1/20ths of a point
<DT><A HREF="jxl/LabelCell.html#getString()"><B>getString()</B></A> - 
Method in interface jxl.<A HREF="jxl/LabelCell.html" title="interface in jxl">LabelCell</A>
<DD>Gets the label for this cell.
<DT><A HREF="jxl/format/BorderLineStyle.html#getStyle(int)"><B>getStyle(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>Gets the alignment from the value
<DT><A HREF="jxl/format/ScriptStyle.html#getStyle(int)"><B>getStyle(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/ScriptStyle.html" title="class in jxl.format">ScriptStyle</A>
<DD>Gets the ScriptStyle from the value
<DT><A HREF="jxl/format/UnderlineStyle.html#getStyle(int)"><B>getStyle(int)</B></A> - 
Static method in class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>
<DD>Gets the UnderlineStyle from the value
<DT><A HREF="jxl/WorkbookSettings.html#getTemporaryFileDuringWriteDirectory()"><B>getTemporaryFileDuringWriteDirectory()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Used in conjunction with the UseTemporaryFileDuringWrite setting to
 set the target directory for the temporary files.
<DT><A HREF="jxl/Range.html#getTopLeft()"><B>getTopLeft()</B></A> - 
Method in interface jxl.<A HREF="jxl/Range.html" title="interface in jxl">Range</A>
<DD>Gets the cell at the top left of this range
<DT><A HREF="jxl/SheetSettings.html#getTopMargin()"><B>getTopMargin()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the top margin
<DT><A HREF="jxl/Cell.html#getType()"><B>getType()</B></A> - 
Method in interface jxl.<A HREF="jxl/Cell.html" title="interface in jxl">Cell</A>
<DD>Returns the content type of this cell
<DT><A HREF="jxl/Hyperlink.html#getURL()"><B>getURL()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Gets the URL referenced by this Hyperlink
<DT><A HREF="jxl/format/Font.html#getUnderlineStyle()"><B>getUnderlineStyle()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>
<DD>Gets the underline style for this font
<DT><A HREF="jxl/WorkbookSettings.html#getUseTemporaryFileDuringWrite()"><B>getUseTemporaryFileDuringWrite()</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor for the temporary file during write.
<DT><A HREF="jxl/BooleanCell.html#getValue()"><B>getValue()</B></A> - 
Method in interface jxl.<A HREF="jxl/BooleanCell.html" title="interface in jxl">BooleanCell</A>
<DD>Gets the boolean value stored in this cell.
<DT><A HREF="jxl/NumberCell.html#getValue()"><B>getValue()</B></A> - 
Method in interface jxl.<A HREF="jxl/NumberCell.html" title="interface in jxl">NumberCell</A>
<DD>Gets the double contents for this cell.
<DT><A HREF="jxl/format/Alignment.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>Gets the value of this alignment.
<DT><A HREF="jxl/format/BoldStyle.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/BoldStyle.html" title="class in jxl.format">BoldStyle</A>
<DD>Gets the value of the bold weight.
<DT><A HREF="jxl/format/BorderLineStyle.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>Gets the value for this line style
<DT><A HREF="jxl/format/Colour.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>Gets the value of this colour.
<DT><A HREF="jxl/format/Orientation.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Accessor for the binary value
<DT><A HREF="jxl/format/PaperSize.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Accessor for the internal binary value association with this paper size
<DT><A HREF="jxl/format/Pattern.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>Gets the value of this pattern.
<DT><A HREF="jxl/format/ScriptStyle.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/ScriptStyle.html" title="class in jxl.format">ScriptStyle</A>
<DD>Gets the value of this style.
<DT><A HREF="jxl/format/UnderlineStyle.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>
<DD>Gets the value of this style.
<DT><A HREF="jxl/format/VerticalAlignment.html#getValue()"><B>getValue()</B></A> - 
Method in class jxl.format.<A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format">VerticalAlignment</A>
<DD>Accessor for the binary value
<DT><A HREF="jxl/Workbook.html#getVersion()"><B>getVersion()</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Accessor for the software version
<DT><A HREF="jxl/format/CellFormat.html#getVerticalAlignment()"><B>getVerticalAlignment()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the vertical cell alignment
<DT><A HREF="jxl/SheetSettings.html#getVerticalFreeze()"><B>getVerticalFreeze()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Gets the column at which the pane is frozen vertically
<DT><A HREF="jxl/SheetSettings.html#getVerticalPrintResolution()"><B>getVerticalPrintResolution()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the vertical print resolution
<DT><A HREF="jxl/Image.html#getVerticalResolution(common.LengthUnit)"><B>getVerticalResolution(LengthUnit)</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Gets the vertical resolution of the image, if that information
 is available.
<DT><A HREF="jxl/Image.html#getWidth()"><B>getWidth()</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Accessor for the image dimensions
<DT><A HREF="jxl/Image.html#getWidth(common.LengthUnit)"><B>getWidth(LengthUnit)</B></A> - 
Method in interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>
<DD>Get the width of this image as rendered within Excel
<DT><A HREF="jxl/write/WritableImage.html#getWidth()"><B>getWidth()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image dimensions
<DT><A HREF="jxl/Workbook.html#getWorkbook(java.io.File)"><B>getWorkbook(File)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>A factory method which takes in an excel file and reads in the contents.
<DT><A HREF="jxl/Workbook.html#getWorkbook(java.io.File, jxl.WorkbookSettings)"><B>getWorkbook(File, WorkbookSettings)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>A factory method which takes in an excel file and reads in the contents.
<DT><A HREF="jxl/Workbook.html#getWorkbook(java.io.InputStream)"><B>getWorkbook(InputStream)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>A factory method which takes in an excel file and reads in the contents.
<DT><A HREF="jxl/Workbook.html#getWorkbook(java.io.InputStream, jxl.WorkbookSettings)"><B>getWorkbook(InputStream, WorkbookSettings)</B></A> - 
Static method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>A factory method which takes in an excel file and reads in the contents.
<DT><A HREF="jxl/format/CellFormat.html#getWrap()"><B>getWrap()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets whether or not the contents of this cell are wrapped
<DT><A HREF="jxl/write/WritableSheet.html#getWritableCell(int, int)"><B>getWritableCell(int, int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Gets the writable cell from this sheet.
<DT><A HREF="jxl/write/WritableSheet.html#getWritableCell(java.lang.String)"><B>getWritableCell(String)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Returns the cell for the specified location eg.
<DT><A HREF="jxl/write/WritableWorkbook.html#getWritableCell(java.lang.String)"><B>getWritableCell(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Returns the cell for the specified location eg.
<DT><A HREF="jxl/write/WritableCell.html#getWritableCellFeatures()"><B>getWritableCellFeatures()</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableCell.html" title="interface in jxl.write">WritableCell</A>
<DD>Accessor for the cell features
<DT><A HREF="jxl/write/WritableSheet.html#getWritableHyperlinks()"><B>getWritableHyperlinks()</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Gets the writable hyperlinks from this sheet.
<DT><A HREF="jxl/SheetSettings.html#getZoomFactor()"><B>getZoomFactor()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the zoom factor.
</DL>
<HR>
<A NAME="_H_"><!-- --></A><H2>
<B>H</B></H2>
<DL>
<DT><A HREF="jxl/format/BorderLineStyle.html#HAIR"><B>HAIR</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/WritableWorkbook.html#HIDDEN_STYLE"><B>HIDDEN_STYLE</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>A cell format used to hide the cell contents
<DT><A HREF="jxl/format/Orientation.html#HORIZONTAL"><B>HORIZONTAL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Cells with this specified orientation will be horizontal
<DT><A HREF="jxl/write/WritableWorkbook.html#HYPERLINK_FONT"><B>HYPERLINK_FONT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>The font used for hyperlinks
<DT><A HREF="jxl/write/WritableWorkbook.html#HYPERLINK_STYLE"><B>HYPERLINK_STYLE</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>The style used for hyperlinks
<DT><A HREF="jxl/HeaderFooter.html" title="class in jxl"><B>HeaderFooter</B></A> - class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>.<DD>Class which represents an Excel header or footer.<DT><A HREF="jxl/HeaderFooter.html#HeaderFooter()"><B>HeaderFooter()</B></A> - 
Constructor for class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>
<DD>Default constructor.
<DT><A HREF="jxl/HeaderFooter.html#HeaderFooter(jxl.HeaderFooter)"><B>HeaderFooter(HeaderFooter)</B></A> - 
Constructor for class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>
<DD>Copy constructor
<DT><A HREF="jxl/HeaderFooter.html#HeaderFooter(java.lang.String)"><B>HeaderFooter(String)</B></A> - 
Constructor for class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>
<DD>Constructor used when reading workbooks to separate the left, right
 a central part of the strings into their constituent parts
<DT><A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl"><B>HeaderFooter.Contents</B></A> - class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>.<DD>The contents - a simple wrapper around a string buffer<DT><A HREF="jxl/Hyperlink.html" title="interface in jxl"><B>Hyperlink</B></A> - interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>.<DD>Hyperlink information.<DT><A HREF="jxl/format/CellFormat.html#hasBorders()"><B>hasBorders()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Determines if this cell format has any borders at all.
</DL>
<HR>
<A NAME="_I_"><!-- --></A><H2>
<B>I</B></H2>
<DL>
<DT><A HREF="jxl/format/Colour.html#ICE_BLUE"><B>ICE_BLUE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#INDIGO"><B>INDIGO</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/NumberFormats.html#INTEGER"><B>INTEGER</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for an integer number.
<DT><A HREF="jxl/format/Colour.html#IVORY"><B>IVORY</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/Image.html" title="interface in jxl"><B>Image</B></A> - interface jxl.<A HREF="jxl/Image.html" title="interface in jxl">Image</A>.<DD>Accessor functions for an image<DT><A HREF="jxl/write/WritableWorkbook.html#importSheet(java.lang.String, int, jxl.Sheet)"><B>importSheet(String, int, Sheet)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Imports a sheet from a different workbook.
<DT><A HREF="jxl/write/WritableSheet.html#insertColumn(int)"><B>insertColumn(int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Inserts a blank column into this spreadsheet.
<DT><A HREF="jxl/write/WritableSheet.html#insertRow(int)"><B>insertRow(int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Inserts a blank row into this spreadsheet.
<DT><A HREF="jxl/CellView.html#isAutosize()"><B>isAutosize()</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Accessor for the autosize flag
 NOTE:  use of the autosize function is very processor intensive, so
 use with care
<DT><A HREF="jxl/CellReferenceHelper.html#isColumnRelative(java.lang.String)"><B>isColumnRelative(String)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Sees if the column component is relative or not
<DT><A HREF="jxl/Hyperlink.html#isFile()"><B>isFile()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Determines whether this is a hyperlink to a file
<DT><A HREF="jxl/Cell.html#isHidden()"><B>isHidden()</B></A> - 
Method in interface jxl.<A HREF="jxl/Cell.html" title="interface in jxl">Cell</A>
<DD>Indicates whether or not this cell is hidden, by virtue of either
 the entire row or column being collapsed
<DT><A HREF="jxl/CellView.html#isHidden()"><B>isHidden()</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Accessor for the hidden nature of this row/column
<DT><A HREF="jxl/Sheet.html#isHidden()"><B>isHidden()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>in favour of the getSettings() method</I>
<DT><A HREF="jxl/SheetSettings.html#isHidden()"><B>isHidden()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the hidden nature of this sheet
<DT><A HREF="jxl/SheetSettings.html#isHorizontalCentre()"><B>isHorizontalCentre()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the horizontal centre
<DT><A HREF="jxl/format/Font.html#isItalic()"><B>isItalic()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>
<DD>Returns the italic flag
<DT><A HREF="jxl/Hyperlink.html#isLocation()"><B>isLocation()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Determines whether this is a hyperlink to a location in this workbook
<DT><A HREF="jxl/format/CellFormat.html#isLocked()"><B>isLocked()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Accessor for whether a particular cell is locked
<DT><A HREF="jxl/Sheet.html#isProtected()"><B>isProtected()</B></A> - 
Method in interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>in favour of the getSettings() method</I>
<DT><A HREF="jxl/SheetSettings.html#isProtected()"><B>isProtected()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Queries whether this sheet is protected (ie.
<DT><A HREF="jxl/Workbook.html#isProtected()"><B>isProtected()</B></A> - 
Method in class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>
<DD>Determines whether the sheet is protected
<DT><A HREF="jxl/CellReferenceHelper.html#isRowRelative(java.lang.String)"><B>isRowRelative(String)</B></A> - 
Static method in class jxl.<A HREF="jxl/CellReferenceHelper.html" title="class in jxl">CellReferenceHelper</A>
<DD>Sees if the row component is relative or not
<DT><A HREF="jxl/SheetSettings.html#isSelected()"><B>isSelected()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the selected nature of the sheet
<DT><A HREF="jxl/format/CellFormat.html#isShrinkToFit()"><B>isShrinkToFit()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/CellFormat.html" title="interface in jxl.format">CellFormat</A>
<DD>Gets the shrink to fit flag
<DT><A HREF="jxl/format/Font.html#isStruckout()"><B>isStruckout()</B></A> - 
Method in interface jxl.format.<A HREF="jxl/format/Font.html" title="interface in jxl.format">Font</A>
<DD>Returns the strike-out flag
<DT><A HREF="jxl/write/WritableFont.html#isStruckout()"><B>isStruckout()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Accessor for the strike-out flag
<DT><A HREF="jxl/DateCell.html#isTime()"><B>isTime()</B></A> - 
Method in interface jxl.<A HREF="jxl/DateCell.html" title="interface in jxl">DateCell</A>
<DD>Indicates whether the date value contained in this cell refers to a date,
 or merely a time
<DT><A HREF="jxl/Hyperlink.html#isURL()"><B>isURL()</B></A> - 
Method in interface jxl.<A HREF="jxl/Hyperlink.html" title="interface in jxl">Hyperlink</A>
<DD>Determines whether this is a hyperlink to a web resource
<DT><A HREF="jxl/SheetSettings.html#isVerticalCentre()"><B>isVerticalCentre()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the vertical centre
</DL>
<HR>
<A NAME="_J_"><!-- --></A><H2>
<B>J</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#JAPANESE_POSTCARD"><B>JAPANESE_POSTCARD</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Japanese Postcard 100mm  148mm
<DT><A HREF="jxl/format/PaperSize.html#JAPANESE_POSTCARD_ROTATED"><B>JAPANESE_POSTCARD_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Japanese Postcard Rot.
<DT><A HREF="jxl/format/Alignment.html#JUSTIFY"><B>JUSTIFY</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>Data in cells with this alignment will be justified
<DT><A HREF="jxl/format/VerticalAlignment.html#JUSTIFY"><B>JUSTIFY</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format">VerticalAlignment</A>
<DD>Cells with this specified vertical alignment will have their data
 justified
<DT><A HREF="jxl/JXLException.html" title="class in jxl"><B>JXLException</B></A> - exception jxl.<A HREF="jxl/JXLException.html" title="class in jxl">JXLException</A>.<DD>Base exception class for JExcelAPI  exceptions<DT><A HREF="jxl/package-summary.html"><B>jxl</B></A> - package jxl<DD>&nbsp;<DT><A HREF="jxl/demo/package-summary.html"><B>jxl.demo</B></A> - package jxl.demo<DD>&nbsp;<DT><A HREF="jxl/format/package-summary.html"><B>jxl.format</B></A> - package jxl.format<DD>&nbsp;<DT><A HREF="jxl/write/package-summary.html"><B>jxl.write</B></A> - package jxl.write<DD>&nbsp;</DL>
<HR>
<A NAME="_L_"><!-- --></A><H2>
<B>L</B></H2>
<DL>
<DT><A HREF="jxl/CellType.html#LABEL"><B>LABEL</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/PageOrientation.html#LANDSCAPE"><B>LANDSCAPE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PageOrientation.html" title="class in jxl.format">PageOrientation</A>
<DD>Landscape orientation
<DT><A HREF="jxl/format/Colour.html#LAVENDER"><B>LAVENDER</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#LEDGER"><B>LEDGER</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Leger 17" x 11"
<DT><A HREF="jxl/format/Alignment.html#LEFT"><B>LEFT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>Data cells with this alignment will appear at the left hand edge of the 
 cell
<DT><A HREF="jxl/format/Border.html#LEFT"><B>LEFT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Border.html" title="class in jxl.format">Border</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#LEGAL"><B>LEGAL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>US Legal 8.5" x 14"
<DT><A HREF="jxl/format/PaperSize.html#LEGAL_EXTRA"><B>LEGAL_EXTRA</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Legal Extra 9.5"  15"
<DT><A HREF="jxl/write/WritableCellFeatures.html#LESS_EQUAL"><B>LESS_EQUAL</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/WritableCellFeatures.html#LESS_THAN"><B>LESS_THAN</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#LETTER"><B>LETTER</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>US Letter 8.5 x 11"
<DT><A HREF="jxl/format/PaperSize.html#LETTER_EXTRA"><B>LETTER_EXTRA</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Letter Extra 9.5"  12"
<DT><A HREF="jxl/format/PaperSize.html#LETTER_EXTRA_TRANSVERSE"><B>LETTER_EXTRA_TRANSVERSE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Letter Extra Transv.
<DT><A HREF="jxl/format/PaperSize.html#LETTER_PLUS"><B>LETTER_PLUS</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Letter Plus 8.5" x 12 11/16"
<DT><A HREF="jxl/format/PaperSize.html#LETTER_ROTATED"><B>LETTER_ROTATED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Letter Rotated 11"  8.5"
<DT><A HREF="jxl/format/PaperSize.html#LETTER_SMALL"><B>LETTER_SMALL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Letter small 8.5"  11"
<DT><A HREF="jxl/format/PaperSize.html#LETTER_TRANSVERSE"><B>LETTER_TRANSVERSE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Letter Transverse 8.5"  11"
<DT><A HREF="jxl/format/Colour.html#LIGHT_BLUE"><B>LIGHT_BLUE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#LIGHT_GREEN"><B>LIGHT_GREEN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#LIGHT_ORANGE"><B>LIGHT_ORANGE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#LIGHT_TURQUOISE"><B>LIGHT_TURQUOISE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#LIGHT_TURQUOISE2"><B>LIGHT_TURQUOISE2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#LIME"><B>LIME</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Label.html" title="class in jxl.write"><B>Label</B></A> - class jxl.write.<A HREF="jxl/write/Label.html" title="class in jxl.write">Label</A>.<DD>A cell containing text which may be created by user applications<DT><A HREF="jxl/write/Label.html#Label(int, int, java.lang.String)"><B>Label(int, int, String)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Label.html" title="class in jxl.write">Label</A>
<DD>Creates a cell which, when added to the sheet, will be presented at the
 specified column and row co-ordinates and will contain the specified text
<DT><A HREF="jxl/write/Label.html#Label(int, int, java.lang.String, jxl.format.CellFormat)"><B>Label(int, int, String, CellFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Label.html" title="class in jxl.write">Label</A>
<DD>Creates a cell which, when added to the sheet, will be presented at the
 specified column and row co-ordinates and will present the specified text
 in the manner specified by the CellFormat parameter
<DT><A HREF="jxl/write/Label.html#Label(jxl.LabelCell)"><B>Label(LabelCell)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Label.html" title="class in jxl.write">Label</A>
<DD>Constructor used internally by the application when making a writable
 copy of a spreadsheet being read in
<DT><A HREF="jxl/LabelCell.html" title="interface in jxl"><B>LabelCell</B></A> - interface jxl.<A HREF="jxl/LabelCell.html" title="interface in jxl">LabelCell</A>.<DD>A label cell</DL>
<HR>
<A NAME="_M_"><!-- --></A><H2>
<B>M</B></H2>
<DL>
<DT><A HREF="jxl/format/BorderLineStyle.html#MEDIUM"><B>MEDIUM</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#MEDIUM_DASHED"><B>MEDIUM_DASHED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#MEDIUM_DASH_DOT"><B>MEDIUM_DASH_DOT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#MEDIUM_DASH_DOT_DOT"><B>MEDIUM_DASH_DOT_DOT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Orientation.html#MINUS_45"><B>MINUS_45</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Cells with this specified orientation will have their data
 presented with a rotation 45 degrees downwards
<DT><A HREF="jxl/format/Orientation.html#MINUS_90"><B>MINUS_90</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Cells with this specified orientation will have their data
 presented with a rotation of 90 degrees downwards
<DT><A HREF="jxl/write/WritableImage.html#MOVE_AND_SIZE_WITH_CELLS"><B>MOVE_AND_SIZE_WITH_CELLS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Image anchor properties which will move and resize an image
 along with the cells
<DT><A HREF="jxl/write/WritableImage.html#MOVE_WITH_CELLS"><B>MOVE_WITH_CELLS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Image anchor properties which will move an image
 when cells are inserted or deleted
<DT><A HREF="jxl/demo/Demo.html#main(java.lang.String[])"><B>main(String[])</B></A> - 
Static method in class jxl.demo.<A HREF="jxl/demo/Demo.html" title="class in jxl.demo">Demo</A>
<DD>The main method.
<DT><A HREF="jxl/write/WritableSheet.html#mergeCells(int, int, int, int)"><B>mergeCells(int, int, int, int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Merges the specified cells.
<DT><A HREF="jxl/write/WritableWorkbook.html#moveSheet(int, int)"><B>moveSheet(int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Moves the specified sheet within this workbook to another index
 position.
</DL>
<HR>
<A NAME="_N_"><!-- --></A><H2>
<B>N</B></H2>
<DL>
<DT><A HREF="jxl/format/Border.html#NONE"><B>NONE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Border.html" title="class in jxl.format">Border</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#NONE"><B>NONE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#NONE"><B>NONE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BoldStyle.html#NORMAL"><B>NORMAL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BoldStyle.html" title="class in jxl.format">BoldStyle</A>
<DD>Normal style
<DT><A HREF="jxl/format/ScriptStyle.html#NORMAL_SCRIPT"><B>NORMAL_SCRIPT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/ScriptStyle.html" title="class in jxl.format">ScriptStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#NORMAL_SCRIPT"><B>NORMAL_SCRIPT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="jxl/write/WritableWorkbook.html#NORMAL_STYLE"><B>NORMAL_STYLE</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>The default style for cells
<DT><A HREF="jxl/format/PaperSize.html#NOTE"><B>NOTE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>NOTE 8.5" x 11"
<DT><A HREF="jxl/write/WritableCellFeatures.html#NOT_BETWEEN"><B>NOT_BETWEEN</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/WritableCellFeatures.html#NOT_EQUAL"><B>NOT_EQUAL</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#NO_BOLD"><B>NO_BOLD</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/write/WritableFont.html#NO_BOLD"><B>NO_BOLD</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Indicates that this font should not be presented as bold
<DT><A HREF="jxl/write/WritableImage.html#NO_MOVE_OR_SIZE_WITH_CELLS"><B>NO_MOVE_OR_SIZE_WITH_CELLS</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Image anchor properties which will leave an image unaffected when
 other cells are inserted, removed or resized
<DT><A HREF="jxl/format/UnderlineStyle.html#NO_UNDERLINE"><B>NO_UNDERLINE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#NO_UNDERLINE"><B>NO_UNDERLINE</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/CellType.html#NUMBER"><B>NUMBER</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/CellType.html#NUMBER_FORMULA"><B>NUMBER_FORMULA</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Number.html" title="class in jxl.write"><B>Number</B></A> - class jxl.write.<A HREF="jxl/write/Number.html" title="class in jxl.write">Number</A>.<DD>A cell, created by user applications, which contains a numerical value<DT><A HREF="jxl/write/Number.html#Number(int, int, double)"><B>Number(int, int, double)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Number.html" title="class in jxl.write">Number</A>
<DD>Constructs a number, which, when added to a spreadsheet, will display the
 specified value at the column/row position indicated.
<DT><A HREF="jxl/write/Number.html#Number(int, int, double, jxl.format.CellFormat)"><B>Number(int, int, double, CellFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Number.html" title="class in jxl.write">Number</A>
<DD>Constructs a number, which, when added to a spreadsheet, will display the
 specified value at the column/row position with the specified CellFormat.
<DT><A HREF="jxl/write/Number.html#Number(jxl.NumberCell)"><B>Number(NumberCell)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/Number.html" title="class in jxl.write">Number</A>
<DD>Constructor used internally by the application when making a writable
 copy of a spreadsheet that has been read in
<DT><A HREF="jxl/NumberCell.html" title="interface in jxl"><B>NumberCell</B></A> - interface jxl.<A HREF="jxl/NumberCell.html" title="interface in jxl">NumberCell</A>.<DD>A cell which contains a numerical value<DT><A HREF="jxl/write/NumberFormat.html" title="class in jxl.write"><B>NumberFormat</B></A> - class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>.<DD>A custom user defined number format, which may be instantiated within user
 applications in order to present numerical values to the appropriate level
 of accuracy.<DT><A HREF="jxl/write/NumberFormat.html#NumberFormat(java.lang.String)"><B>NumberFormat(String)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constructor, taking in the Java compliant number format
<DT><A HREF="jxl/write/NumberFormat.html#NumberFormat(java.lang.String, jxl.write.biff.NumberFormatRecord.NonValidatingFormat)"><B>NumberFormat(String, NumberFormatRecord.NonValidatingFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/NumberFormat.html" title="class in jxl.write">NumberFormat</A>
<DD>Constructor, taking in the non-Java compliant number format.
<DT><A HREF="jxl/write/NumberFormats.html" title="class in jxl.write"><B>NumberFormats</B></A> - class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>.<DD>Static class which contains the available list of built in Number formats<DT><A HREF="jxl/write/NumberFormats.html#NumberFormats()"><B>NumberFormats()</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>&nbsp;
<DT><A HREF="jxl/NumberFormulaCell.html" title="interface in jxl"><B>NumberFormulaCell</B></A> - interface jxl.<A HREF="jxl/NumberFormulaCell.html" title="interface in jxl">NumberFormulaCell</A>.<DD>A mixin interface for numerical formulas, which combines the interfaces
 for formulas and for numbers</DL>
<HR>
<A NAME="_O_"><!-- --></A><H2>
<B>O</B></H2>
<DL>
<DT><A HREF="jxl/format/Colour.html#OCEAN_BLUE"><B>OCEAN_BLUE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#OLIVE_GREEN"><B>OLIVE_GREEN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#ORANGE"><B>ORANGE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Orientation.html" title="class in jxl.format"><B>Orientation</B></A> - class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>.<DD>Enumeration type which describes the orientation of data within a cell</DL>
<HR>
<A NAME="_P_"><!-- --></A><H2>
<B>P</B></H2>
<DL>
<DT><A HREF="jxl/format/Colour.html#PALETTE_BLACK"><B>PALETTE_BLACK</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#PALE_BLUE"><B>PALE_BLUE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN1"><B>PATTERN1</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN10"><B>PATTERN10</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN11"><B>PATTERN11</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN12"><B>PATTERN12</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN13"><B>PATTERN13</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN14"><B>PATTERN14</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN2"><B>PATTERN2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN3"><B>PATTERN3</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN4"><B>PATTERN4</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN5"><B>PATTERN5</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN6"><B>PATTERN6</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN7"><B>PATTERN7</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN8"><B>PATTERN8</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#PATTERN9"><B>PATTERN9</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/NumberFormats.html#PERCENT_FLOAT"><B>PERCENT_FLOAT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for a float percentage
 Equivalent to a DecimalFormat "0.00%"
<DT><A HREF="jxl/write/NumberFormats.html#PERCENT_INTEGER"><B>PERCENT_INTEGER</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for an integer presented as a percentage
 Equivalent to a DecimalFormat of "0%"
<DT><A HREF="jxl/format/Colour.html#PERIWINKLE"><B>PERIWINKLE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#PINK"><B>PINK</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#PINK2"><B>PINK2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#PLUM"><B>PLUM</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#PLUM2"><B>PLUM2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Orientation.html#PLUS_45"><B>PLUS_45</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Cells with this specified orientation will have their data
 presented with a rotation 45 degrees upwards
<DT><A HREF="jxl/format/Orientation.html#PLUS_90"><B>PLUS_90</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Cells with this specified orientation will have their data
 presented with a rotation of 90 degrees upwards
<DT><A HREF="jxl/format/PageOrientation.html#PORTRAIT"><B>PORTRAIT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PageOrientation.html" title="class in jxl.format">PageOrientation</A>
<DD>Portrait orientation
<DT><A HREF="jxl/format/PageOrder.html" title="class in jxl.format"><B>PageOrder</B></A> - class jxl.format.<A HREF="jxl/format/PageOrder.html" title="class in jxl.format">PageOrder</A>.<DD>Enumeration type which describes the page orientation<DT><A HREF="jxl/format/PageOrientation.html" title="class in jxl.format"><B>PageOrientation</B></A> - class jxl.format.<A HREF="jxl/format/PageOrientation.html" title="class in jxl.format">PageOrientation</A>.<DD>Enumeration type which describes the page orientation<DT><A HREF="jxl/format/PaperSize.html" title="class in jxl.format"><B>PaperSize</B></A> - class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>.<DD>Enumeration type which contains the available excel paper sizes and their
 codes<DT><A HREF="jxl/format/Pattern.html" title="class in jxl.format"><B>Pattern</B></A> - class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>.<DD>Enumeration class which contains the various patterns available within
 the standard Excel pattern palette<DT><A HREF="jxl/write/Pattern.html" title="class in jxl.write"><B>Pattern</B></A> - class jxl.write.<A HREF="jxl/write/Pattern.html" title="class in jxl.write">Pattern</A>.<DD><B>Deprecated.</B>&nbsp;<I>Repackaged as jxl.format.Pattern</I></DL>
<HR>
<A NAME="_Q_"><!-- --></A><H2>
<B>Q</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#QUARTO"><B>QUARTO</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Quarto 215mm x 275mm
</DL>
<HR>
<A NAME="_R_"><!-- --></A><H2>
<B>R</B></H2>
<DL>
<DT><A HREF="jxl/format/Colour.html#RED"><B>RED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/RGB.html" title="class in jxl.format"><B>RGB</B></A> - class jxl.format.<A HREF="jxl/format/RGB.html" title="class in jxl.format">RGB</A>.<DD>A structure which contains the RGB values for a particular colour<DT><A HREF="jxl/format/RGB.html#RGB(int, int, int)"><B>RGB(int, int, int)</B></A> - 
Constructor for class jxl.format.<A HREF="jxl/format/RGB.html" title="class in jxl.format">RGB</A>
<DD>Constructor
<DT><A HREF="jxl/format/Alignment.html#RIGHT"><B>RIGHT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Alignment.html" title="class in jxl.format">Alignment</A>
<DD>Data in cells with this alignment will be right aligned
<DT><A HREF="jxl/format/Border.html#RIGHT"><B>RIGHT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Border.html" title="class in jxl.format">Border</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/PageOrder.html#RIGHT_THEN_DOWN"><B>RIGHT_THEN_DOWN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PageOrder.html" title="class in jxl.format">PageOrder</A>
<DD>Left to Right then Down.
<DT><A HREF="jxl/format/Colour.html#ROSE"><B>ROSE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/Range.html" title="interface in jxl"><B>Range</B></A> - interface jxl.<A HREF="jxl/Range.html" title="interface in jxl">Range</A>.<DD>Represents a 3-D range of cells in a workbook.<DT><A HREF="jxl/demo/ReadWrite.html" title="class in jxl.demo"><B>ReadWrite</B></A> - class jxl.demo.<A HREF="jxl/demo/ReadWrite.html" title="class in jxl.demo">ReadWrite</A>.<DD>Demo class which uses the api to read in a spreadsheet and generate a clone
 of that spreadsheet which contains the same data.<DT><A HREF="jxl/demo/ReadWrite.html#ReadWrite(java.lang.String, java.lang.String)"><B>ReadWrite(String, String)</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/ReadWrite.html" title="class in jxl.demo">ReadWrite</A>
<DD>Constructor
<DT><A HREF="jxl/demo/ReadWrite.html#readWrite()"><B>readWrite()</B></A> - 
Method in class jxl.demo.<A HREF="jxl/demo/ReadWrite.html" title="class in jxl.demo">ReadWrite</A>
<DD>Reads in the inputFile and creates a writable copy of it called outputFile
<DT><A HREF="jxl/write/WritableSheet.html#removeColumn(int)"><B>removeColumn(int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Removes a column from this spreadsheet.
<DT><A HREF="jxl/write/WritableCellFeatures.html#removeComment()"><B>removeComment()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Removes the cell comment, if present
<DT><A HREF="jxl/write/WritableCellFeatures.html#removeDataValidation()"><B>removeDataValidation()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Removes any data validation, if present
<DT><A HREF="jxl/write/WritableSheet.html#removeHyperlink(jxl.write.WritableHyperlink)"><B>removeHyperlink(WritableHyperlink)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Removes the specified hyperlink.
<DT><A HREF="jxl/write/WritableSheet.html#removeHyperlink(jxl.write.WritableHyperlink, boolean)"><B>removeHyperlink(WritableHyperlink, boolean)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Removes the specified hyperlink.
<DT><A HREF="jxl/write/WritableSheet.html#removeImage(jxl.write.WritableImage)"><B>removeImage(WritableImage)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Removes the specified image from the sheet.
<DT><A HREF="jxl/write/WritableWorkbook.html#removeRangeName(java.lang.String)"><B>removeRangeName(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Removes the specified named range from the workbook.
<DT><A HREF="jxl/write/WritableSheet.html#removeRow(int)"><B>removeRow(int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Removes a row from this spreadsheet.
<DT><A HREF="jxl/write/WritableWorkbook.html#removeSheet(int)"><B>removeSheet(int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Removes the sheet at the specified index from this workbook
</DL>
<HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="jxl/format/Colour.html#SEA_GREEN"><B>SEA_GREEN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/UnderlineStyle.html#SINGLE"><B>SINGLE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#SINGLE"><B>SINGLE</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/format/UnderlineStyle.html#SINGLE_ACCOUNTING"><B>SINGLE_ACCOUNTING</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#SINGLE_ACCOUNTING"><B>SINGLE_ACCOUNTING</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#SIZE_10x11"><B>SIZE_10x11</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>1011 10"  11"
<DT><A HREF="jxl/format/PaperSize.html#SIZE_10x14"><B>SIZE_10x14</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>10" x 14"
<DT><A HREF="jxl/format/PaperSize.html#SIZE_10x17"><B>SIZE_10x17</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>11" x 17"
<DT><A HREF="jxl/format/PaperSize.html#SIZE_15x11"><B>SIZE_15x11</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>1511 15"  11"
<DT><A HREF="jxl/format/PaperSize.html#SIZE_9x11"><B>SIZE_9x11</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>911 9"  11"
<DT><A HREF="jxl/format/Colour.html#SKY_BLUE"><B>SKY_BLUE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#SLANTED_DASH_DOT"><B>SLANTED_DASH_DOT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Pattern.html#SOLID"><B>SOLID</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Pattern.html" title="class in jxl.format">Pattern</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Orientation.html#STACKED"><B>STACKED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Cells with this specified orientation will have their text stacked
 downwards, but not rotated
<DT><A HREF="jxl/format/PaperSize.html#STATEMENT"><B>STATEMENT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Statement 5.5" x 8.5"
<DT><A HREF="jxl/CellType.html#STRING_FORMULA"><B>STRING_FORMULA</B></A> - 
Static variable in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/ScriptStyle.html#SUBSCRIPT"><B>SUBSCRIPT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/ScriptStyle.html" title="class in jxl.format">ScriptStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#SUBSCRIPT"><B>SUBSCRIPT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="jxl/format/ScriptStyle.html#SUPERSCRIPT"><B>SUPERSCRIPT</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/ScriptStyle.html" title="class in jxl.format">ScriptStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/Font.html#SUPERSCRIPT"><B>SUPERSCRIPT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#SUPER_A_A4"><B>SUPER_A_A4</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Super A/A4 227mm  356mm
<DT><A HREF="jxl/format/PaperSize.html#SUPER_B_A3"><B>SUPER_B_A3</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Super B/A3 305mm  487mm
<DT><A HREF="jxl/format/ScriptStyle.html" title="class in jxl.format"><B>ScriptStyle</B></A> - class jxl.format.<A HREF="jxl/format/ScriptStyle.html" title="class in jxl.format">ScriptStyle</A>.<DD>Enumeration class which contains the various script styles available 
 within the standard Excel ScriptStyle palette<DT><A HREF="jxl/Sheet.html" title="interface in jxl"><B>Sheet</B></A> - interface jxl.<A HREF="jxl/Sheet.html" title="interface in jxl">Sheet</A>.<DD>Represents a sheet within a workbook.<DT><A HREF="jxl/SheetSettings.html" title="class in jxl"><B>SheetSettings</B></A> - class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>.<DD>This is a bean which client applications may use to get/set various
 properties which are associated with a particular worksheet, such
 as headers and footers, page orientation etc.<DT><A HREF="jxl/SheetSettings.html#SheetSettings(jxl.Sheet)"><B>SheetSettings(Sheet)</B></A> - 
Constructor for class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Default constructor
<DT><A HREF="jxl/SheetSettings.html#SheetSettings(jxl.SheetSettings, jxl.Sheet)"><B>SheetSettings(SheetSettings, Sheet)</B></A> - 
Constructor for class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Copy constructor.
<DT><A HREF="jxl/StringFormulaCell.html" title="interface in jxl"><B>StringFormulaCell</B></A> - interface jxl.<A HREF="jxl/StringFormulaCell.html" title="interface in jxl">StringFormulaCell</A>.<DD>A mixin interface for numerical formulas, which combines the interfaces
 for formulas and for strings<DT><A HREF="jxl/write/WritableCellFormat.html#setAlignment(jxl.format.Alignment)"><B>setAlignment(Alignment)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the horizontal alignment for this format
<DT><A HREF="jxl/WorkbookSettings.html#setArrayGrowSize(int)"><B>setArrayGrowSize(int)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the amount of memory by which to increase the amount of
 memory allocated to storing the workbook data.
<DT><A HREF="jxl/WorkbookSettings.html#setAutoFilterDisabled(boolean)"><B>setAutoFilterDisabled(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the autofilter disabled
<DT><A HREF="jxl/SheetSettings.html#setAutomaticFormulaCalculation(boolean)"><B>setAutomaticFormulaCalculation(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the automatic formula calculation flag
<DT><A HREF="jxl/CellView.html#setAutosize(boolean)"><B>setAutosize(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Sets the autosize flag.
<DT><A HREF="jxl/write/WritableCellFormat.html#setBackground(jxl.format.Colour)"><B>setBackground(Colour)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the background colour for this cell format
<DT><A HREF="jxl/write/WritableCellFormat.html#setBackground(jxl.format.Colour, jxl.format.Pattern)"><B>setBackground(Colour, Pattern)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the background colour and pattern for this cell format
<DT><A HREF="jxl/write/WritableFont.html#setBoldStyle(jxl.write.WritableFont.BoldStyle)"><B>setBoldStyle(WritableFont.BoldStyle)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Sets the bold style for this font, if the font hasn't been initialized
<DT><A HREF="jxl/write/WritableCellFormat.html#setBorder(jxl.format.Border, jxl.format.BorderLineStyle)"><B>setBorder(Border, BorderLineStyle)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the specified border for this format
<DT><A HREF="jxl/write/WritableCellFormat.html#setBorder(jxl.format.Border, jxl.format.BorderLineStyle, jxl.format.Colour)"><B>setBorder(Border, BorderLineStyle, Colour)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the specified border for this format
<DT><A HREF="jxl/SheetSettings.html#setBottomMargin(double)"><B>setBottomMargin(double)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the bottom margin
<DT><A HREF="jxl/write/WritableCell.html#setCellFeatures(jxl.write.WritableCellFeatures)"><B>setCellFeatures(WritableCellFeatures)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableCell.html" title="interface in jxl.write">WritableCell</A>
<DD>Sets the cell features
<DT><A HREF="jxl/write/WritableCell.html#setCellFormat(jxl.format.CellFormat)"><B>setCellFormat(CellFormat)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableCell.html" title="interface in jxl.write">WritableCell</A>
<DD>Sets the cell format for this cell
<DT><A HREF="jxl/WorkbookSettings.html#setCellValidationDisabled(boolean)"><B>setCellValidationDisabled(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the ignore cell validation flag
<DT><A HREF="jxl/WorkbookSettings.html#setCharacterSet(int)"><B>setCharacterSet(int)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the character set.
<DT><A HREF="jxl/write/WritableFont.html#setColour(jxl.format.Colour)"><B>setColour(Colour)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Sets the colour for this font, if the font hasn't been
 initialized
<DT><A HREF="jxl/write/WritableWorkbook.html#setColourRGB(jxl.format.Colour, int, int, int)"><B>setColourRGB(Colour, int, int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Sets the RGB value for the specified colour for this workbook
<DT><A HREF="jxl/write/WritableImage.html#setColumn(double)"><B>setColumn(double)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image position
<DT><A HREF="jxl/write/WritableSheet.html#setColumnGroup(int, int, boolean)"><B>setColumnGroup(int, int, boolean)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets a column grouping
<DT><A HREF="jxl/write/WritableSheet.html#setColumnView(int, int)"><B>setColumnView(int, int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the width of the column on this sheet, in characters.
<DT><A HREF="jxl/write/WritableSheet.html#setColumnView(int, int, jxl.format.CellFormat)"><B>setColumnView(int, int, CellFormat)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use the CellView bean instead</I>
<DT><A HREF="jxl/write/WritableSheet.html#setColumnView(int, jxl.CellView)"><B>setColumnView(int, CellView)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the view for this column
<DT><A HREF="jxl/write/WritableCellFeatures.html#setComment(java.lang.String)"><B>setComment(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Sets the cell comment
<DT><A HREF="jxl/write/WritableCellFeatures.html#setComment(java.lang.String, double, double)"><B>setComment(String, double, double)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Sets the cell comment and sets the size of the text box (in cells)
 in which the comment is displayed
<DT><A HREF="jxl/SheetSettings.html#setCopies(int)"><B>setCopies(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the number of copies
<DT><A HREF="jxl/write/WritableCellFeatures.html#setDataValidationList(java.util.Collection)"><B>setDataValidationList(Collection)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>The list of items to validate for this cell.
<DT><A HREF="jxl/write/WritableCellFeatures.html#setDataValidationRange(int, int, int, int)"><B>setDataValidationRange(int, int, int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>The list  of items to validate for this cell in the form of a cell range.
<DT><A HREF="jxl/write/WritableCellFeatures.html#setDataValidationRange(java.lang.String)"><B>setDataValidationRange(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Sets the data validation based upon a named range
<DT><A HREF="jxl/write/DateTime.html#setDate(java.util.Date)"><B>setDate(Date)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Sets the date for this cell
<DT><A HREF="jxl/write/DateTime.html#setDate(java.util.Date, jxl.write.biff.DateRecord.GMTDate)"><B>setDate(Date, DateRecord.GMTDate)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/DateTime.html" title="class in jxl.write">DateTime</A>
<DD>Sets the date for this cell, performing the necessary timezone adjustments
<DT><A HREF="jxl/SheetSettings.html#setDefaultColumnWidth(int)"><B>setDefaultColumnWidth(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the default column width
<DT><A HREF="jxl/SheetSettings.html#setDefaultRowHeight(int)"><B>setDefaultRowHeight(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the default row height
<DT><A HREF="jxl/write/WritableHyperlink.html#setDescription(java.lang.String)"><B>setDescription(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Sets the description to appear in the hyperlink cell
<DT><A HREF="jxl/CellView.html#setDimension(int)"><B>setDimension(int)</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD><B>Deprecated.</B>&nbsp;<I>use the setSize method instead</I>
<DT><A HREF="jxl/SheetSettings.html#setDisplayZeroValues(boolean)"><B>setDisplayZeroValues(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the displayZeroValues property
<DT><A HREF="jxl/WorkbookSettings.html#setDrawingsDisabled(boolean)"><B>setDrawingsDisabled(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Disables the handling of drawings
<DT><A HREF="jxl/WorkbookSettings.html#setEncoding(java.lang.String)"><B>setEncoding(String)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the encoding for this workbook
<DT><A HREF="jxl/WorkbookSettings.html#setExcelDisplayLanguage(java.lang.String)"><B>setExcelDisplayLanguage(String)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the language in which the generated file will display
<DT><A HREF="jxl/WorkbookSettings.html#setExcelRegionalSettings(java.lang.String)"><B>setExcelRegionalSettings(String)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the regional settings for the generated excel file
<DT><A HREF="jxl/write/WritableHyperlink.html#setFile(java.io.File)"><B>setFile(File)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Sets the file activated by this hyperlink
<DT><A HREF="jxl/SheetSettings.html#setFitHeight(int)"><B>setFitHeight(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the number of pages vertically that this sheet will be printed into
<DT><A HREF="jxl/SheetSettings.html#setFitToPages(boolean)"><B>setFitToPages(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the fit to pages flag
<DT><A HREF="jxl/SheetSettings.html#setFitWidth(int)"><B>setFitWidth(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the number of pages widthwise which this sheet should be
 printed into
<DT><A HREF="jxl/HeaderFooter.Contents.html#setFontName(java.lang.String)"><B>setFontName(String)</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Sets the font of text subsequently appended to this
 object..
<DT><A HREF="jxl/HeaderFooter.Contents.html#setFontSize(int)"><B>setFontSize(int)</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Sets the font size of text subsequently appended to this
 object.
<DT><A HREF="jxl/SheetSettings.html#setFooter(jxl.HeaderFooter)"><B>setFooter(HeaderFooter)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the footer
<DT><A HREF="jxl/write/WritableSheet.html#setFooter(java.lang.String, java.lang.String, java.lang.String)"><B>setFooter(String, String, String)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>use the SheetSettings bean</I>
<DT><A HREF="jxl/SheetSettings.html#setFooterMargin(double)"><B>setFooterMargin(double)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the margin for any page footer
<DT><A HREF="jxl/CellView.html#setFormat(jxl.format.CellFormat)"><B>setFormat(CellFormat)</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Sets the cell format for this group of cells
<DT><A HREF="jxl/WorkbookSettings.html#setFormulaAdjust(boolean)"><B>setFormulaAdjust(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Setter for the formula adjust disabled property
<DT><A HREF="jxl/WorkbookSettings.html#setGCDisabled(boolean)"><B>setGCDisabled(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the garbage collection disabled
<DT><A HREF="jxl/SheetSettings.html#setHeader(jxl.HeaderFooter)"><B>setHeader(HeaderFooter)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the header
<DT><A HREF="jxl/write/WritableSheet.html#setHeader(java.lang.String, java.lang.String, java.lang.String)"><B>setHeader(String, String, String)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>use  the SheetSettings bean</I>
<DT><A HREF="jxl/SheetSettings.html#setHeaderMargin(double)"><B>setHeaderMargin(double)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the margin for any page headers
<DT><A HREF="jxl/write/WritableImage.html#setHeight(double)"><B>setHeight(double)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image dimensions
 Note that the actual size of the rendered image will depend on the
 height of the rows it spans
<DT><A HREF="jxl/CellView.html#setHidden(boolean)"><B>setHidden(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Sets the hidden status of this row/column
<DT><A HREF="jxl/SheetSettings.html#setHidden(boolean)"><B>setHidden(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the hidden status of this worksheet
<DT><A HREF="jxl/write/WritableSheet.html#setHidden(boolean)"><B>setHidden(boolean)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>use the SheetSettings bean instead</I>
<DT><A HREF="jxl/SheetSettings.html#setHorizontalCentre(boolean)"><B>setHorizontalCentre(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the horizontal centre
<DT><A HREF="jxl/SheetSettings.html#setHorizontalFreeze(int)"><B>setHorizontalFreeze(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the row at which the pane is frozen horizontally
<DT><A HREF="jxl/SheetSettings.html#setHorizontalPrintResolution(int)"><B>setHorizontalPrintResolution(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the horizontal print resolution
<DT><A HREF="jxl/WorkbookSettings.html#setIgnoreBlanks(boolean)"><B>setIgnoreBlanks(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the ignore blanks flag
<DT><A HREF="jxl/write/WritableImage.html#setImageAnchor(jxl.biff.drawing.Drawing.ImageAnchorProperties)"><B>setImageAnchor(Drawing.ImageAnchorProperties)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the anchor properties
<DT><A HREF="jxl/write/WritableCellFormat.html#setIndentation(int)"><B>setIndentation(int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the indentation of the cell text
<DT><A HREF="jxl/WorkbookSettings.html#setInitialFileSize(int)"><B>setInitialFileSize(int)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the initial amount of memory allocated to store the workbook data
 when reading a worksheet.
<DT><A HREF="jxl/write/WritableFont.html#setItalic(boolean)"><B>setItalic(boolean)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Sets the italic indicator for this font, if the font hasn't been
 initialized
<DT><A HREF="jxl/SheetSettings.html#setLeftMargin(double)"><B>setLeftMargin(double)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the left margin
<DT><A HREF="jxl/WorkbookSettings.html#setLocale(java.util.Locale)"><B>setLocale(Locale)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets the locale used by JExcelApi to generate the spreadsheet.
<DT><A HREF="jxl/write/WritableHyperlink.html#setLocation(java.lang.String, jxl.write.WritableSheet, int, int, int, int)"><B>setLocation(String, WritableSheet, int, int, int, int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Sets the location of the cells to be linked to within this workbook
<DT><A HREF="jxl/write/WritableCellFormat.html#setLocked(boolean)"><B>setLocked(boolean)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets whether or not this XF record locks the cell.
<DT><A HREF="jxl/WorkbookSettings.html#setMergedCellChecking(boolean)"><B>setMergedCellChecking(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor to set the merged cell checking
<DT><A HREF="jxl/write/WritableSheet.html#setName(java.lang.String)"><B>setName(String)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the name of this sheet
<DT><A HREF="jxl/WorkbookSettings.html#setNamesDisabled(boolean)"><B>setNamesDisabled(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Disables the handling of names
<DT><A HREF="jxl/SheetSettings.html#setNormalMagnification(int)"><B>setNormalMagnification(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the normal magnificaton factor.
<DT><A HREF="jxl/write/WritableCellFeatures.html#setNumberValidation(double, jxl.biff.BaseCellFeatures.ValidationCondition)"><B>setNumberValidation(double, BaseCellFeatures.ValidationCondition)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Sets the numeric value against which to validate
<DT><A HREF="jxl/write/WritableCellFeatures.html#setNumberValidation(double, double, jxl.biff.BaseCellFeatures.ValidationCondition)"><B>setNumberValidation(double, double, BaseCellFeatures.ValidationCondition)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Sets the numeric range against which to validate the data
<DT><A HREF="jxl/SheetSettings.html#setOrientation(jxl.format.PageOrientation)"><B>setOrientation(PageOrientation)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the paper orientation for printing this sheet
<DT><A HREF="jxl/write/WritableCellFormat.html#setOrientation(jxl.format.Orientation)"><B>setOrientation(Orientation)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the text orientation for this format
<DT><A HREF="jxl/write/WritableWorkbook.html#setOutputFile(java.io.File)"><B>setOutputFile(File)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Sets a new output file.
<DT><A HREF="jxl/SheetSettings.html#setPageBreakPreviewMagnification(int)"><B>setPageBreakPreviewMagnification(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the page break preview magnificaton factor.
<DT><A HREF="jxl/SheetSettings.html#setPageBreakPreviewMode(boolean)"><B>setPageBreakPreviewMode(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the pageBreakPreviewMode  property
<DT><A HREF="jxl/SheetSettings.html#setPageOrder(jxl.format.PageOrder)"><B>setPageOrder(PageOrder)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the page order for printing this sheet
<DT><A HREF="jxl/write/WritableSheet.html#setPageSetup(jxl.format.PageOrientation)"><B>setPageSetup(PageOrientation)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the page setup details
<DT><A HREF="jxl/write/WritableSheet.html#setPageSetup(jxl.format.PageOrientation, double, double)"><B>setPageSetup(PageOrientation, double, double)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the page setup details
<DT><A HREF="jxl/write/WritableSheet.html#setPageSetup(jxl.format.PageOrientation, jxl.format.PaperSize, double, double)"><B>setPageSetup(PageOrientation, PaperSize, double, double)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the page setup details
<DT><A HREF="jxl/SheetSettings.html#setPageStart(int)"><B>setPageStart(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the page number at which to commence printing
<DT><A HREF="jxl/SheetSettings.html#setPaperSize(jxl.format.PaperSize)"><B>setPaperSize(PaperSize)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the paper size to be used when printing this sheet
<DT><A HREF="jxl/SheetSettings.html#setPassword(java.lang.String)"><B>setPassword(String)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the password for this sheet
<DT><A HREF="jxl/SheetSettings.html#setPasswordHash(int)"><B>setPasswordHash(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Accessor for the password hash - used only when copying sheets
<DT><A HREF="jxl/write/WritableFont.html#setPointSize(int)"><B>setPointSize(int)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Sets the point size for this font, if the font hasn't been initialized
<DT><A HREF="jxl/SheetSettings.html#setPrintArea(int, int, int, int)"><B>setPrintArea(int, int, int, int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the print area for this sheet
<DT><A HREF="jxl/SheetSettings.html#setPrintGridLines(boolean)"><B>setPrintGridLines(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the printGridLines property
<DT><A HREF="jxl/SheetSettings.html#setPrintHeaders(boolean)"><B>setPrintHeaders(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the printHeaders property
<DT><A HREF="jxl/SheetSettings.html#setPrintTitles(int, int, int, int)"><B>setPrintTitles(int, int, int, int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets both of the print titles for this sheet
<DT><A HREF="jxl/SheetSettings.html#setPrintTitlesCol(int, int)"><B>setPrintTitlesCol(int, int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the print column titles for this sheet
<DT><A HREF="jxl/SheetSettings.html#setPrintTitlesRow(int, int)"><B>setPrintTitlesRow(int, int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the print row titles for this sheet
<DT><A HREF="jxl/WorkbookSettings.html#setPropertySets(boolean)"><B>setPropertySets(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets whether or not to enable any property sets (such as macros)
 to be copied along with the workbook
 Leaving this feature enabled will result in the JXL process using
 more memory
<DT><A HREF="jxl/SheetSettings.html#setProtected(boolean)"><B>setProtected(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the protected (ie.
<DT><A HREF="jxl/write/WritableSheet.html#setProtected(boolean)"><B>setProtected(boolean)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD><B>Deprecated.</B>&nbsp;<I>use the SheetSettings bean instead</I>
<DT><A HREF="jxl/write/WritableWorkbook.html#setProtected(boolean)"><B>setProtected(boolean)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Indicates whether or not this workbook is protected
<DT><A HREF="jxl/WorkbookSettings.html#setRationalization(boolean)"><B>setRationalization(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets whether or not to rationalize the cell formats before
 writing out the sheet.
<DT><A HREF="jxl/SheetSettings.html#setRecalculateFormulasBeforeSave(boolean)"><B>setRecalculateFormulasBeforeSave(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the recalculate formulas when the sheet is saved flag
<DT><A HREF="jxl/SheetSettings.html#setRightMargin(double)"><B>setRightMargin(double)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the right margin
<DT><A HREF="jxl/write/WritableImage.html#setRow(double)"><B>setRow(double)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image position
<DT><A HREF="jxl/write/WritableSheet.html#setRowGroup(int, int, boolean)"><B>setRowGroup(int, int, boolean)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets a row grouping
<DT><A HREF="jxl/write/WritableSheet.html#setRowView(int, int)"><B>setRowView(int, int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the height of the specified row, as well as its collapse status
<DT><A HREF="jxl/write/WritableSheet.html#setRowView(int, boolean)"><B>setRowView(int, boolean)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the properties of the specified row
<DT><A HREF="jxl/write/WritableSheet.html#setRowView(int, int, boolean)"><B>setRowView(int, int, boolean)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the height of the specified row, as well as its collapse status
<DT><A HREF="jxl/write/WritableSheet.html#setRowView(int, jxl.CellView)"><B>setRowView(int, CellView)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Sets the view for this column
<DT><A HREF="jxl/SheetSettings.html#setScaleFactor(int)"><B>setScaleFactor(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the scale factor for this sheet to be used when printing.
<DT><A HREF="jxl/write/WritableFont.html#setScriptStyle(jxl.format.ScriptStyle)"><B>setScriptStyle(ScriptStyle)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Sets the script style (eg.
<DT><A HREF="jxl/SheetSettings.html#setSelected()"><B>setSelected()</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD><B>Deprecated.</B>&nbsp;<I>use overloaded version which takes a boolean</I>
<DT><A HREF="jxl/SheetSettings.html#setSelected(boolean)"><B>setSelected(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets this sheet to be when it is opened in excel
<DT><A HREF="jxl/SheetSettings.html#setShowGridLines(boolean)"><B>setShowGridLines(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the showGridLines property
<DT><A HREF="jxl/write/WritableCellFormat.html#setShrinkToFit(boolean)"><B>setShrinkToFit(boolean)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the shrink to fit flag
<DT><A HREF="jxl/CellView.html#setSize(int)"><B>setSize(int)</B></A> - 
Method in class jxl.<A HREF="jxl/CellView.html" title="class in jxl">CellView</A>
<DD>Sets the dimension for this view
<DT><A HREF="jxl/write/Label.html#setString(java.lang.String)"><B>setString(String)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/Label.html" title="class in jxl.write">Label</A>
<DD>Sets the string contents of this cell
<DT><A HREF="jxl/write/WritableFont.html#setStruckout(boolean)"><B>setStruckout(boolean)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Sets Accessor for the strike-out flag
<DT><A HREF="jxl/WorkbookSettings.html#setSuppressWarnings(boolean)"><B>setSuppressWarnings(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Accessor to set the suppress warnings flag.
<DT><A HREF="jxl/WorkbookSettings.html#setTemporaryFileDuringWriteDirectory(java.io.File)"><B>setTemporaryFileDuringWriteDirectory(File)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Used in conjunction with the UseTemporaryFileDuringWrite setting to
 set the target directory for the temporary files.
<DT><A HREF="jxl/SheetSettings.html#setTopMargin(double)"><B>setTopMargin(double)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the top margin
<DT><A HREF="jxl/write/WritableHyperlink.html#setURL(java.net.URL)"><B>setURL(URL)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Sets the URL of this hyperlink
<DT><A HREF="jxl/write/WritableFont.html#setUnderlineStyle(jxl.format.UnderlineStyle)"><B>setUnderlineStyle(UnderlineStyle)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Sets the underline style for this font, if the font hasn't been
 initialized
<DT><A HREF="jxl/WorkbookSettings.html#setUseTemporaryFileDuringWrite(boolean)"><B>setUseTemporaryFileDuringWrite(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Sets whether a temporary file is used during the generation of
 the workbook.
<DT><A HREF="jxl/write/Boolean.html#setValue(boolean)"><B>setValue(boolean)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/Boolean.html" title="class in jxl.write">Boolean</A>
<DD>Sets the boolean value for this cell
<DT><A HREF="jxl/write/Number.html#setValue(double)"><B>setValue(double)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/Number.html" title="class in jxl.write">Number</A>
<DD>Sets the numerical value for this cell
<DT><A HREF="jxl/write/WritableCellFormat.html#setVerticalAlignment(jxl.format.VerticalAlignment)"><B>setVerticalAlignment(VerticalAlignment)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the vertical alignment for this format
<DT><A HREF="jxl/SheetSettings.html#setVerticalCentre(boolean)"><B>setVerticalCentre(boolean)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the vertical centre
<DT><A HREF="jxl/SheetSettings.html#setVerticalFreeze(int)"><B>setVerticalFreeze(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the row at which the pane is frozen vertically
<DT><A HREF="jxl/SheetSettings.html#setVerticalPrintResolution(int)"><B>setVerticalPrintResolution(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the vertical print reslution
<DT><A HREF="jxl/write/WritableImage.html#setWidth(double)"><B>setWidth(double)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Accessor for the image dimensions
 Note that the actual size of the rendered image will depend on the
 width of the columns it spans
<DT><A HREF="jxl/write/WritableCellFormat.html#setWrap(boolean)"><B>setWrap(boolean)</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>Sets the wrap indicator for this format.
<DT><A HREF="jxl/SheetSettings.html#setZoomFactor(int)"><B>setZoomFactor(int)</B></A> - 
Method in class jxl.<A HREF="jxl/SheetSettings.html" title="class in jxl">SheetSettings</A>
<DD>Sets the zoom factor.
</DL>
<HR>
<A NAME="_T_"><!-- --></A><H2>
<B>T</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#TABLOID"><B>TABLOID</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Tabloid 11" x 17"
<DT><A HREF="jxl/format/PaperSize.html#TABLOID_EXTRA"><B>TABLOID_EXTRA</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>Tabloid Extra 11 11/16"  18"
<DT><A HREF="jxl/write/WritableFont.html#TAHOMA"><B>TAHOMA</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Objects created with this font name will be rendered within Excel as
 TAHOMA fonts
<DT><A HREF="jxl/format/Colour.html#TAN"><B>TAN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#TEAL"><B>TEAL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#TEAL2"><B>TEAL2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/NumberFormats.html#TEXT"><B>TEXT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Forces numbers to be interpreted as text
<DT><A HREF="jxl/format/BorderLineStyle.html#THICK"><B>THICK</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/BorderLineStyle.html#THIN"><B>THIN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/BorderLineStyle.html" title="class in jxl.format">BorderLineStyle</A>
<DD>&nbsp;
<DT><A HREF="jxl/write/NumberFormats.html#THOUSANDS_FLOAT"><B>THOUSANDS_FLOAT</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for a float that has a thousands separator.
<DT><A HREF="jxl/write/NumberFormats.html#THOUSANDS_INTEGER"><B>THOUSANDS_INTEGER</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/NumberFormats.html" title="class in jxl.write">NumberFormats</A>
<DD>Formatting for an integer that has a thousands separator.
<DT><A HREF="jxl/write/Font.html#TIMES"><B>TIMES</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/Font.html" title="class in jxl.write">Font</A>
<DD><B>Deprecated.</B>&nbsp;<I></I>&nbsp;
<DT><A HREF="jxl/write/WritableFont.html#TIMES"><B>TIMES</B></A> - 
Static variable in class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Objects created with this font name will be rendered within Excel as TIMES
 fonts
<DT><A HREF="jxl/format/Border.html#TOP"><B>TOP</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Border.html" title="class in jxl.format">Border</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/VerticalAlignment.html#TOP"><B>TOP</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format">VerticalAlignment</A>
<DD>Cells with this specified vertical alignment will have their data
 aligned at the top
<DT><A HREF="jxl/format/Colour.html#TURQOISE2"><B>TURQOISE2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#TURQUOISE"><B>TURQUOISE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/CellType.html#toString()"><B>toString()</B></A> - 
Method in class jxl.<A HREF="jxl/CellType.html" title="class in jxl">CellType</A>
<DD>Returns a string description of this cell
<DT><A HREF="jxl/HeaderFooter.html#toString()"><B>toString()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.html" title="class in jxl">HeaderFooter</A>
<DD>Retrieves a <code>String</code>ified
 version of this object
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleBold()"><B>toggleBold()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns bold printing on or off.
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleDoubleUnderline()"><B>toggleDoubleUnderline()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns double-underline printing on or off.
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleItalics()"><B>toggleItalics()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns italics printing on or off.
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleOutline()"><B>toggleOutline()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns outline printing on or off (Macintosh only).
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleShadow()"><B>toggleShadow()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns shadow printing on or off (Macintosh only).
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleStrikethrough()"><B>toggleStrikethrough()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns strikethrough printing on or off.
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleSubScript()"><B>toggleSubScript()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns subscript printing on or off.
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleSuperScript()"><B>toggleSuperScript()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns superscript printing on or off.
<DT><A HREF="jxl/HeaderFooter.Contents.html#toggleUnderline()"><B>toggleUnderline()</B></A> - 
Method in class jxl.<A HREF="jxl/HeaderFooter.Contents.html" title="class in jxl">HeaderFooter.Contents</A>
<DD>Turns underline printing on or off.
</DL>
<HR>
<A NAME="_U_"><!-- --></A><H2>
<B>U</B></H2>
<DL>
<DT><A HREF="jxl/format/PaperSize.html#UNDEFINED"><B>UNDEFINED</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>US Letter 8.5 x 11"
<DT><A HREF="jxl/format/Colour.html#UNKNOWN"><B>UNKNOWN</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/PaperSize.html#US_FANFOLD"><B>US_FANFOLD</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/PaperSize.html" title="class in jxl.format">PaperSize</A>
<DD>US Standard Fanfold 14 7/8"  11"
<DT><A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format"><B>UnderlineStyle</B></A> - class jxl.format.<A HREF="jxl/format/UnderlineStyle.html" title="class in jxl.format">UnderlineStyle</A>.<DD>Enumeration class which contains the various underline styles available 
 within the standard Excel UnderlineStyle palette<DT><A HREF="jxl/write/WritableSheet.html#unmergeCells(jxl.Range)"><B>unmergeCells(Range)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Unmerges the specified cells.
<DT><A HREF="jxl/write/WritableSheet.html#unsetColumnGroup(int, int)"><B>unsetColumnGroup(int, int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Unsets a column grouping
<DT><A HREF="jxl/write/WritableSheet.html#unsetRowGroup(int, int)"><B>unsetRowGroup(int, int)</B></A> - 
Method in interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>
<DD>Unsets a row grouping
</DL>
<HR>
<A NAME="_V_"><!-- --></A><H2>
<B>V</B></H2>
<DL>
<DT><A HREF="jxl/format/Orientation.html#VERTICAL"><B>VERTICAL</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Orientation.html" title="class in jxl.format">Orientation</A>
<DD>Cells with this specified orientation have their data
 presented vertically
<DT><A HREF="jxl/format/Colour.html#VERY_LIGHT_YELLOW"><B>VERY_LIGHT_YELLOW</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#VIOLET"><B>VIOLET</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#VIOLET2"><B>VIOLET2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format"><B>VerticalAlignment</B></A> - class jxl.format.<A HREF="jxl/format/VerticalAlignment.html" title="class in jxl.format">VerticalAlignment</A>.<DD>Enumeration type which describes the vertical alignment of data within a cell<DT><A HREF="jxl/write/VerticalAlignment.html" title="class in jxl.write"><B>VerticalAlignment</B></A> - class jxl.write.<A HREF="jxl/write/VerticalAlignment.html" title="class in jxl.write">VerticalAlignment</A>.<DD><B>Deprecated.</B>&nbsp;<I>Repackaged as jxl.format.VerticalAlignment</I></DL>
<HR>
<A NAME="_W_"><!-- --></A><H2>
<B>W</B></H2>
<DL>
<DT><A HREF="jxl/format/Colour.html#WHITE"><B>WHITE</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/Workbook.html" title="class in jxl"><B>Workbook</B></A> - class jxl.<A HREF="jxl/Workbook.html" title="class in jxl">Workbook</A>.<DD>Represents a Workbook.<DT><A HREF="jxl/WorkbookSettings.html" title="class in jxl"><B>WorkbookSettings</B></A> - class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>.<DD>This is a bean which client applications may use to set various advanced
 workbook properties.<DT><A HREF="jxl/WorkbookSettings.html#WorkbookSettings()"><B>WorkbookSettings()</B></A> - 
Constructor for class jxl.<A HREF="jxl/WorkbookSettings.html" title="class in jxl">WorkbookSettings</A>
<DD>Default constructor
<DT><A HREF="jxl/write/WritableCell.html" title="interface in jxl.write"><B>WritableCell</B></A> - interface jxl.write.<A HREF="jxl/write/WritableCell.html" title="interface in jxl.write">WritableCell</A>.<DD>The interface for all writable cells<DT><A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write"><B>WritableCellFeatures</B></A> - class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>.<DD>Container for any additional cell features<DT><A HREF="jxl/write/WritableCellFeatures.html#WritableCellFeatures()"><B>WritableCellFeatures()</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Constructor
<DT><A HREF="jxl/write/WritableCellFeatures.html#WritableCellFeatures(jxl.CellFeatures)"><B>WritableCellFeatures(CellFeatures)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableCellFeatures.html" title="class in jxl.write">WritableCellFeatures</A>
<DD>Copy constructor
<DT><A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write"><B>WritableCellFormat</B></A> - class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>.<DD>A user specified cell format, which may be reused across many cells.<DT><A HREF="jxl/write/WritableCellFormat.html#WritableCellFormat()"><B>WritableCellFormat()</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>A default constructor, which uses the default font and format.
<DT><A HREF="jxl/write/WritableCellFormat.html#WritableCellFormat(jxl.write.WritableFont)"><B>WritableCellFormat(WritableFont)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>A CellFormat which specifies the font for cells with this format
<DT><A HREF="jxl/write/WritableCellFormat.html#WritableCellFormat(jxl.biff.DisplayFormat)"><B>WritableCellFormat(DisplayFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>A constructor which specifies a date/number format for Cells which
 use this format object
<DT><A HREF="jxl/write/WritableCellFormat.html#WritableCellFormat(jxl.write.WritableFont, jxl.biff.DisplayFormat)"><B>WritableCellFormat(WritableFont, DisplayFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>A constructor which specifies the font and date/number format for cells
 which wish to use this format
<DT><A HREF="jxl/write/WritableCellFormat.html#WritableCellFormat(jxl.format.CellFormat)"><B>WritableCellFormat(CellFormat)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableCellFormat.html" title="class in jxl.write">WritableCellFormat</A>
<DD>A public copy constructor which can be used for copy formats between
 different sheets
<DT><A HREF="jxl/write/WritableFont.html" title="class in jxl.write"><B>WritableFont</B></A> - class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>.<DD>A class which is instantiated when the user application wishes to specify
 the font for a particular cell<DT><A HREF="jxl/write/WritableFont.html#WritableFont(jxl.write.WritableFont.FontName)"><B>WritableFont(WritableFont.FontName)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Creates a default font, vanilla font of the specified face and with
 default point size.
<DT><A HREF="jxl/write/WritableFont.html#WritableFont(jxl.format.Font)"><B>WritableFont(Font)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Publicly available copy constructor
<DT><A HREF="jxl/write/WritableFont.html#WritableFont(jxl.write.WritableFont.FontName, int)"><B>WritableFont(WritableFont.FontName, int)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Constructs of font of the specified face and of size given by the
 specified point size
<DT><A HREF="jxl/write/WritableFont.html#WritableFont(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle)"><B>WritableFont(WritableFont.FontName, int, WritableFont.BoldStyle)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Creates a font of the specified face, point size and bold style
<DT><A HREF="jxl/write/WritableFont.html#WritableFont(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle, boolean)"><B>WritableFont(WritableFont.FontName, int, WritableFont.BoldStyle, boolean)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Creates a font of the specified face, point size, bold weight and
 italicised option.
<DT><A HREF="jxl/write/WritableFont.html#WritableFont(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle, boolean, jxl.format.UnderlineStyle)"><B>WritableFont(WritableFont.FontName, int, WritableFont.BoldStyle, boolean, UnderlineStyle)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Creates a font of the specified face, point size, bold weight,
 italicisation and underline style
<DT><A HREF="jxl/write/WritableFont.html#WritableFont(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle, boolean, jxl.format.UnderlineStyle, jxl.format.Colour)"><B>WritableFont(WritableFont.FontName, int, WritableFont.BoldStyle, boolean, UnderlineStyle, Colour)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Creates a font of the specified face, point size, bold style,
 italicisation, underline style and colour
<DT><A HREF="jxl/write/WritableFont.html#WritableFont(jxl.write.WritableFont.FontName, int, jxl.write.WritableFont.BoldStyle, boolean, jxl.format.UnderlineStyle, jxl.format.Colour, jxl.format.ScriptStyle)"><B>WritableFont(WritableFont.FontName, int, WritableFont.BoldStyle, boolean, UnderlineStyle, Colour, ScriptStyle)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableFont.html" title="class in jxl.write">WritableFont</A>
<DD>Creates a font of the specified face, point size, bold style,
 italicisation, underline style, colour, and script
 style (superscript/subscript)
<DT><A HREF="jxl/write/WritableFont.FontName.html" title="class in jxl.write"><B>WritableFont.FontName</B></A> - class jxl.write.<A HREF="jxl/write/WritableFont.FontName.html" title="class in jxl.write">WritableFont.FontName</A>.<DD>Static inner class used for classifying the font names<DT><A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write"><B>WritableHyperlink</B></A> - class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>.<DD>A writable hyperlink.<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(jxl.Hyperlink, jxl.write.WritableSheet)"><B>WritableHyperlink(Hyperlink, WritableSheet)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructor used internally by the worksheet when making a copy
 of worksheet
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, java.net.URL)"><B>WritableHyperlink(int, int, URL)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a URL hyperlink in a single cell
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, int, int, java.net.URL)"><B>WritableHyperlink(int, int, int, int, URL)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a url hyperlink to a range of cells
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, int, int, java.net.URL, java.lang.String)"><B>WritableHyperlink(int, int, int, int, URL, String)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a url hyperlink to a range of cells
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, java.io.File)"><B>WritableHyperlink(int, int, File)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a file hyperlink in a single cell
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, java.io.File, java.lang.String)"><B>WritableHyperlink(int, int, File, String)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a file hyperlink in a single cell
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, int, int, java.io.File)"><B>WritableHyperlink(int, int, int, int, File)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a File hyperlink to a range of cells
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, int, int, java.io.File, java.lang.String)"><B>WritableHyperlink(int, int, int, int, File, String)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a File hyperlink to a range of cells
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, java.lang.String, jxl.write.WritableSheet, int, int)"><B>WritableHyperlink(int, int, String, WritableSheet, int, int)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a hyperlink to some cells within this workbook
<DT><A HREF="jxl/write/WritableHyperlink.html#WritableHyperlink(int, int, int, int, java.lang.String, jxl.write.WritableSheet, int, int, int, int)"><B>WritableHyperlink(int, int, int, int, String, WritableSheet, int, int, int, int)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableHyperlink.html" title="class in jxl.write">WritableHyperlink</A>
<DD>Constructs a hyperlink to some cells within this workbook
<DT><A HREF="jxl/write/WritableImage.html" title="class in jxl.write"><B>WritableImage</B></A> - class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>.<DD>Allows an image to be created, or an existing image to be manipulated
 Note that co-ordinates and dimensions are given in cells, so that if for
 example the width or height of a cell which the image spans is altered,
 the image will have a correspondign distortion<DT><A HREF="jxl/write/WritableImage.html#WritableImage(double, double, double, double, java.io.File)"><B>WritableImage(double, double, double, double, File)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Constructor
<DT><A HREF="jxl/write/WritableImage.html#WritableImage(double, double, double, double, byte[])"><B>WritableImage(double, double, double, double, byte[])</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Constructor
<DT><A HREF="jxl/write/WritableImage.html#WritableImage(jxl.biff.drawing.DrawingGroupObject, jxl.biff.drawing.DrawingGroup)"><B>WritableImage(DrawingGroupObject, DrawingGroup)</B></A> - 
Constructor for class jxl.write.<A HREF="jxl/write/WritableImage.html" title="class in jxl.write">WritableImage</A>
<DD>Constructor, used when copying sheets
<DT><A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write"><B>WritableSheet</B></A> - interface jxl.write.<A HREF="jxl/write/WritableSheet.html" title="interface in jxl.write">WritableSheet</A>.<DD>Interface for a worksheet that may be modified.<DT><A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write"><B>WritableWorkbook</B></A> - class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>.<DD>A writable workbook<DT><A HREF="jxl/demo/Write.html" title="class in jxl.demo"><B>Write</B></A> - class jxl.demo.<A HREF="jxl/demo/Write.html" title="class in jxl.demo">Write</A>.<DD>Demo class which writes a spreadsheet.<DT><A HREF="jxl/demo/Write.html#Write(java.lang.String)"><B>Write(String)</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/Write.html" title="class in jxl.demo">Write</A>
<DD>Constructor
<DT><A HREF="jxl/write/WriteException.html" title="class in jxl.write"><B>WriteException</B></A> - exception jxl.write.<A HREF="jxl/write/WriteException.html" title="class in jxl.write">WriteException</A>.<DD>Exception thrown when using the API to generate an Excel file<DT><A HREF="jxl/demo/Write.html#write()"><B>write()</B></A> - 
Method in class jxl.demo.<A HREF="jxl/demo/Write.html" title="class in jxl.demo">Write</A>
<DD>Uses the JExcelAPI to create a spreadsheet
<DT><A HREF="jxl/write/WritableWorkbook.html#write()"><B>write()</B></A> - 
Method in class jxl.write.<A HREF="jxl/write/WritableWorkbook.html" title="class in jxl.write">WritableWorkbook</A>
<DD>Writes out the data held in this workbook in Excel format
</DL>
<HR>
<A NAME="_X_"><!-- --></A><H2>
<B>X</B></H2>
<DL>
<DT><A HREF="jxl/demo/XML.html" title="class in jxl.demo"><B>XML</B></A> - class jxl.demo.<A HREF="jxl/demo/XML.html" title="class in jxl.demo">XML</A>.<DD>Simple demo class which uses the api to present the contents
 of an excel 97 spreadsheet as an XML document, using a workbook
 and output stream of your choice<DT><A HREF="jxl/demo/XML.html#XML(jxl.Workbook, java.io.OutputStream, java.lang.String, boolean)"><B>XML(Workbook, OutputStream, String, boolean)</B></A> - 
Constructor for class jxl.demo.<A HREF="jxl/demo/XML.html" title="class in jxl.demo">XML</A>
<DD>Constructor
</DL>
<HR>
<A NAME="_Y_"><!-- --></A><H2>
<B>Y</B></H2>
<DL>
<DT><A HREF="jxl/format/Colour.html#YELLOW"><B>YELLOW</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
<DT><A HREF="jxl/format/Colour.html#YELLOW2"><B>YELLOW2</B></A> - 
Static variable in class jxl.format.<A HREF="jxl/format/Colour.html" title="class in jxl.format">Colour</A>
<DD>&nbsp;
</DL>
<HR>
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_Q_">Q</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_X_">X</A> <A HREF="#_Y_">Y</A> 

<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV&nbsp;
&nbsp;NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>

</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->

<HR>

</BODY>
</HTML>