Subversion Repository Public Repository

WilksMergeModule

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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>ClientAutomation</name>
    </assembly>
    <members>
        <member name="T:Laserfiche.ClientAutomation.NamespaceDoc">
            <summary>
            Class library for interacting with the Laserfiche Client.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ClientWindowType">
            <summary>
            Represents the type of the client window (main window or document viewer).
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ClientWindowType.Unknown">
            <summary>
            Unknown window type.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ClientWindowType.Main">
            <summary>
            The main window (the folder tree and entry listing).
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ClientWindowType.DocumentViewer">
            <summary>
            The document viewer window.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.DocumentOpenType">
            <summary>
            The method to use when opening a document.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocumentOpenType.Default">
            <summary>
            Use the default method.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocumentOpenType.DocumentViewer">
            <summary>
            Open the document in the document viewer.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocumentOpenType.Edoc">
            <summary>
            Open the electronic document portion.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocumentOpenType.EdocReadOnly">
            <summary>
            Open the electronic document portion in read-only mode.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocumentOpenType.Metadata">
            <summary>
            Open the metadata dialog.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocumentOpenType.Preview">
            <summary>
            View the document in the preview pane.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.PrintType">
            <summary>
            What portion of a document to print.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.PrintType.Default">
            <summary>
            Use the default method.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.PrintType.Edoc">
            <summary>
            Print the electronic document portion.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.PrintType.Images">
            <summary>
            Print the image pages.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.PrintType.ImagesAndText">
            <summary>
            Print the image and text pages.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.DocViewerPane">
            <summary>
            Which panes to display when opening a document in the document viewer.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocViewerPane.ImagePane">
            <summary>
            The image pane.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocViewerPane.TextPane">
            <summary>
            The text pane.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocViewerPane.MetadataPane">
            <summary>
            The metadata pane.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocViewerPane.ThumbnailPane">
            <summary>
            The thumbnail pane.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocViewerPane.AnnotationPane">
            <summary>
            The annotation list pane.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocViewerPane.EdocPane">
            <summary>
            The electronic document pane (PDF only).
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.DocViewerPane.BusinessProcessPane">
            <summary>
            The business process pane.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.MetadataTab">
            <summary>
            Which metadata tabs to display in the metadata dialog or metadata pane.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.MetadataTab.Fields">
            <summary>
            The template fields tab.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.MetadataTab.Tags">
            <summary>
            The tags tab.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.MetadataTab.Links">
            <summary>
            The links tab.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.MetadataTab.Versions">
            <summary>
            The versions tab.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.MetadataTab.Signatures">
            <summary>
            The digital signatures tab.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ScanMode">
            <summary>
            Whether to open scanning in basic or standard mode.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ScanMode.Default">
            <summary>
            Use the default or prompt the user if no default is saved. 
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ScanMode.Basic">
            <summary>
            Basic mode.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ScanMode.Standard">
            <summary>
            Standard mode.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.InsertAt">
            <summary>
            Where to insert new pages inside an existing document.
            </summary>
            <remarks>
            This can be used with the <c>InsertPagesAt</c> property.  To insert at a
            specific page, specify the 1-based page number instead.
            </remarks>
        </member>
        <member name="F:Laserfiche.ClientAutomation.InsertAt.Start">
            <summary>
            Insert at the beginning.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.InsertAt.End">
            <summary>
            Insert at the end.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.InsertAt.Ask">
            <summary>
            Ask the user where to insert.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.InsertAt.Default">
            <summary>
            Insert at the default location.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ExportType">
            <summary>
            Which part of the document to export.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ExportType.Images">
            <summary>
            Images
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ExportType.Text">
            <summary>
            Text
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ExportType.Edoc">
            <summary>
            Electronic document
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ImageType">
            <summary>
            Which image format to export in.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ImageType.Default">
            <summary>
            Use the default format.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ImageType.TiffG4">
            <summary>
            TIFF Group IV (lossless bitonal only)
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ImageType.TiffJpeg">
            <summary>
            TIFF-JPEG (lossy color and grayscale)
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ImageType.TiffLzw">
            <summary>
            TIFF-LZW (lossless bitonal, color and grayscale)
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ImageType.Jpeg">
            <summary>
            JPEG (lossy color and grayscale)
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ImageType.Png">
            <summary>
            PNG (lossless bitonal, color and grayscale)
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ImageType.Pdf">
            <summary>
            PDF
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ImageType.Bmp">
            <summary>
            Windows BMP (lossless bitonal, color and grayscale)
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.WindowPosition">
            <summary>
            Specifies the position of a new window.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.WindowPosition.MAXIMIZED">
            <summary>
            A <c>WindowPosition</c> instance denoting a maximized window.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.WindowPosition.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
            <summary>
            Initializes a new <c>WindowPosition</c> instance.
            </summary>
            <param name="left">The position in pixels of the left edge of the window.</param>
            <param name="top">The position in pixels of the top edge of the window.</param>
            <param name="right">The position in pixels of the right edge of the window.</param>
            <param name="bottom">The position in pixels of the bottom edge of the window.</param>
            <param name="maximized">Whether the window opens as maximized.</param>
        </member>
        <member name="P:Laserfiche.ClientAutomation.WindowPosition.Left">
            <summary>
            Left edge
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.WindowPosition.Top">
            <summary>
            Top edge
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.WindowPosition.Right">
            <summary>
            Right edge
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.WindowPosition.Bottom">
            <summary>
            Bottom edge
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.WindowPosition.IsMaximized">
            <summary>
            Open maximized
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.LaunchOptions">
            <summary>
            Options for launching a new instance of the client.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.LaunchOptions.#ctor">
            <summary>
            Initializes a new instance of <c>LaunchOptions</c>.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.ShowSplashScreen">
            <summary>
            Display the splash screen. Default: true.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.HiddenWindow">
            <summary>
            Run the client in a hidden window. Default: false.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.ServerName">
            <summary>
            The Laserfiche server to connect to. Nonstandard ports can be specified with the format 'servername:portnum'.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.RepositoryName">
            <summary>
            The Laserfiche repository to login to.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.UserName">
            <summary>
            The Laserfiche user to log in as. Leave blank to use domain authentication.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.Password">
            <summary>
            The password to use for the Laserfiche user.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.InitialFolderId">
            <summary>
            The ID of the folder to open initially.
            </summary>
            <remarks>
            The folder tree will navigate to this folder and it will be made 
            the root folder if makeFolderRoot is set to true.
            </remarks>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.MakeFolderRoot">
            <summary>
            When opening a folder with the InitialFolderId parameter, make that folder
            the root of the folder tree. Default: false.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.LaunchOptions.Position">
            <summary>
            The position of the main window.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.OpenOptions">
            <summary>
            Options for opening a document.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.OpenOptions.#ctor">
            <summary>
            Initializes a new <c>OpenOptions</c> instance
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.OpenOptions.OpenStyle">
            <summary>
            Whether to open the document in the doc viewer, as an edoc, or in the metadata dialog.
            Default: DocumentOpenType.Default.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.OpenOptions.PageNumber">
            <summary>
            The page to display initially in the document viewer.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.OpenOptions.MetadataVisibleTabs">
            <summary>
            The metadata tabs to display.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.OpenOptions.MetadataStartTab">
            <summary>
            The initial metadata tab. Default: MetadataTab.Fields.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.OpenOptions.ReadOnly">
            <summary>
            Open the edoc in read-only mode. Default: false.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.OpenOptions.VisiblePanes">
            <summary>
            The document viewer panes to display.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.OpenOptions.Position">
            <summary>
            The position of the doc viewer window or metadata dialog.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.LeftPane">
            <summary>
            Which pane to display when launching a search
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.LeftPane.None">
            <summary>
            No left pane displayed.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.LeftPane.Search">
            <summary>
            Show the search pane.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.LeftPane.FolderTree">
            <summary>
            Show the folder tree pane.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.SearchOptions">
            <summary>
            Options for performing a search.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.SearchOptions.#ctor">
            <summary>
            Initializes a new <c>SearchOptions</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SearchOptions.Query">
            <summary>
            The search query.
            </summary>
            <remarks>
            For an example search query, peform a search in the client and view the "Advanced"
            section of the search pane.
            </remarks>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SearchOptions.NewWindow">
            <summary>
            Open the search in a new window. Default: true.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SearchOptions.OpenIfOneResult">
            <summary>
            If only one document is returned, open it immediately. Default: false.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SearchOptions.OpenDocumentMode">
            <summary>
            When OpenIfWhenResult is true and only one document is returned, open
            the document with the specified mode. Default: DocumentOpenType.Default,
            which opens using the user's configured default open mode.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SearchOptions.EagerlyRetrieveResults">
            <summary>
            Retrieve the search results automatically. Default: false.
            </summary>
            <remarks>
            This is disabled by default for performance reasons.
            </remarks>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SearchOptions.LeftPaneDisplay">
            <summary>
            Which pane to display when launching the search. Default: LeftPane.SearchPane
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ExportConflictOption">
            <summary>
            How to act when an exported file conflicts with an existing file on disk.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ExportConflictOption.Prompt">
            <summary>
            Prompt the user.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ExportConflictOption.Rename">
            <summary>
            Automatically rename the exported file (e.g. "Document (2)").
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ExportConflictOption.Overwrite">
            <summary>
            Overwrite the existing file.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ExportConflictOption.Skip">
            <summary>
            Skip the file.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ExportOptions">
            <summary>
            Options for exporting a document or folder.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ExportOptions.#ctor">
            <summary>
            Initializes a new <c>ExportOptions</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ExportOptions.DocumentPart">
            <summary>
            Which portion of the document to export. Default: ExportType.Default.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ExportOptions.ImageFormat">
            <summary>
            The image format to use for exported pages. Default: ImageType.Default.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ExportOptions.UseMultiPageFile">
            <summary>
            When exporting multipage documents as tiff/pdf, combine into a single file. Default: true.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ExportOptions.PageNumbers">
            <summary>
            Which pages to export.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ExportOptions.DestinationPath">
            <summary>
            The destination path.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ExportOptions.DoNotPrompt">
            <summary>
            Whether to suppress the file dialog and begin the export immediately. Default: false.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ExportOptions.ConflictOption">
            <summary>
            How to deal with file conflicts. Default: ExportConflictOption.AskUser.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.PrintOptions">
            <summary>
            Options for printing a document.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PrintOptions.#ctor">
            <summary>
            Initializes a new <c>PrintOptions</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.PrinterName">
            <summary>
            The name of the printer to use.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.PageNumbers">
            <summary>
            The pages (1-based) to print. If this is empty, print all pages.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.DocumentPart">
            <summary>
            What to print (images/text/edoc). Default: PrintType.Default.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.DoNotPrompt">
            <summary>
            Print without user interaction. Default: false.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.IncludeRedactions">
            <summary>
            Include redactions on printed pages. Default: true.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.BlackoutRedactions">
            <summary>
            Burn redactions permanently onto printed pages. Default: true.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.IncludeStickyNotes">
            <summary>
            Include sticky notes on printed pages. Default: true.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.IncludeOtherAnnotations">
            <summary>
            Include other annotation types on printed pages. Default: true.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PrintOptions.ApplySearchHighlights">
            <summary>
            Include search hits on printed pages. Default: true.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ScanOptions">
            <summary>
            Options for launching Laserfiche Scanning without launching the client.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ScanOptions.#ctor">
            <summary>
            Initializes a new <c>ScanOptions</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.ConnectionString">
            <summary>
            The serialized connection to use for the Scanning session. This parameter
            overrides the server, repository, username and password parameters.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.ServerName">
            <summary>
            The Laserfiche server to connect to.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.RepositoryName">
            <summary>
            The Laserfiche repository to log in to.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.IsSecureConnection">
            <summary>
            Use SSL/TLS for the repository connection.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.UserName">
            <summary>
            The Laserfiche user to log in as.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.Password">
            <summary>
            The password to use for the Laserfiche user.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.ScanMode">
            <summary>
            Open Scanning in basic or standard mode. Default: ScanMode.Default.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.EntryId">
            <summary>
            The ID of the document to scan into.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.IsDocument">
            <summary>
            Whether the entryid parameter represents a document or a folder.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.InsertPagesAt">
            <summary>
            Where to insert scanned pages.  Specify a 1-based page number for an absolute
            location or a member of the <c>InsertAt</c> enumeration to use a relative location.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.CloseAfterStoring">
            <summary>
            Whether Scanning should close automatically after storing the document pages.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ScanOptions.WaitForExit">
            <summary>
            Whether to block until Scanning has exited.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ClientAutomationException">
            <summary>
            Represents an error raised by the Laserfiche Client Automation types.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientAutomationException.#ctor(System.String)">
            <summary>
            Initializes a new <c>ClientAutomationException</c> instance.
            </summary>
            <param name="message">The error message.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientAutomationException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new <c>ClientAutomationException</c> instance.
            </summary>
            <param name="message">The error message.</param>
            <param name="innerException">The inner or source exception.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientAutomationException.#ctor(System.Int32,System.String)">
            <summary>
            Initializes a new <c>ClientAutomationException</c> instance.
            </summary>
            <param name="errcode">The error code.</param>
            <param name="message">The error message.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientAutomationException.#ctor(System.Int32,System.String,System.Exception)">
            <summary>
            Initializes a new <c>ClientAutomationException</c> instance.
            </summary>
            <param name="errcode">The error code.</param>
            <param name="message">The error message.</param>
            <param name="innerException">The inner or source exception.</param>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ClientAutomationException.ErrorCode">
            <summary>
            The HRESULT or Laserfiche error code.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientAutomationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Sets the System.Runtime.Serialization.SerializationInfo with information about the exception.
            </summary>
            <param name="info">The System.Runtime.Serialization.SerializationInfo that holds the serialized
             object data about the exception being thrown.</param>
            <param name="context">The System.Runtime.Serialization.StreamingContext that contains contextual
             information about the source or destination.</param>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ClientInstance">
            <summary>
            ClientInstance represents a single LF.exe process. This class is used to
            enumerate all open windows and connections for a particular instance.
            </summary>
            <remarks>
            Each instance of LF.exe can have multiple windows and multiple connected repositories.
            </remarks>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ClientInstance.ProcessID">
            <summary>
            The client's process ID (PID).
            </summary>
            <returns>The process ID (PID) for the current client instance</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientInstance.IsVisible">
            <summary>
            Returns true if this client instance is visible.
            </summary>
            <returns>Whether the current window is visible.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientInstance.CATVersion">
            <summary>
            Returns the protocol version supported by the client instance.
            </summary>
            <returns>The protocol version.</returns>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ClientInstance.RepositoryConnections">
            <summary>
            Returns the list of currently connected repositories.
            </summary>
            <returns>The list of currently connected repositories.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientInstance.IsLoggedIn">
            <summary>
            Returns a boolean indicating if the client is logged in to at least one repository.
            </summary>
            <returns>A boolean indicating if the client is logged in to at least one repository.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientInstance.Dispose">
            <summary>
            Frees resources which were acquired and closes the client if there are no other
            connections.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientInstance.GetAllClientWindows">
            <summary>
            Returns a list of all open client windows.
            </summary>
            <returns>A list of all open client windows.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientInstance.Close(System.Boolean)">
            <summary>
            Close the Laserfiche Client process.
            </summary>
            <param name="allowPrompt">Allow asking the user whether they want to continue closing.</param>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ClientManager">
            <summary>
            The main class which finds open Client instances and launches new ones.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.Dispose">
            <summary>
            Frees resources which were acquired.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.Refresh">
            <summary>
            Refreshes the list of client instances this <c>ClientManager</c> instance is aware of
            by querying the system for running clients.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.IsClientOpen">
            <summary>
            Returns true if one or more instances of the client are running and visible.
            </summary>
            <returns>True if one or more instances of the client are running and visible.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.LogIn(Laserfiche.ClientAutomation.LaunchOptions,Laserfiche.ClientAutomation.MainWindow@)">
            <summary>
            Log into a repository, reusing any existing client window that is already logged in as the same user.
            </summary>
            <param name="options">Options specifying how to log in.</param>
            <param name="mainWindow">A <c>MainWindow</c> instance which represents the main client window, or null
            if there was an error.</param>
            <returns>If a new client instance was launched, the <c>ClientInstance</c> that represents it
            is returned.  If a client instance is reused, null is returned.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.GetAllClientInstances">
            <summary>
            Retrieves a list of all open client instances.  The returned instances must be disposed.
            </summary>
            <returns>The list of all open client instances.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.GetAllSelectedEntries">
            <summary>
            Returns a list of every selected entry for all open client windows.
            </summary>
            <returns>A list of selected entry IDs.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.GetAllOpenDocuments">
            <summary>
            Returns a list of every document open in the doc viewer.  If a document is
            open more than once, its entry ID will appear once for each time it is open.
            </summary>
            <returns>A list of entry IDs.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.GetAllClientWindows(Laserfiche.ClientAutomation.ClientWindowType)">
            <summary>
            Retrieve all open client windows for all open client instances.
            </summary>
            <param name="windowType">The window type to return (main window or document viewer, or Unknown).
            Use ClientWindowType.Unknown for all windows.</param>
            <returns>A list of all client windows matching the specified windowType.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.GetForegroundWindow">
            <summary>
            Retrieve the currently focused client window, if any.
            </summary>
            <returns>The currently focused client window, or null if another program has the focus.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.GetAllRepositoryConnections">
            <summary>
            Retrieve all repository connections for all open client instances.
            </summary>
            <returns>A list of all repository connections.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.LaunchClient">
            <summary>
            Launches the Laserfiche client and connects to its automation object.  The returned
            instance must be disposed.
            </summary>
            <returns>A <c>ClientInstance</c> which represents the new client instance.  It must
            be disposed.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.LaunchClient(Laserfiche.ClientAutomation.LaunchOptions)">
            <summary>
            Launches the Laserfiche client and connects to its automation object
            </summary>
            <param name="options">Options that control how the client will be launched.</param>
            <returns>A <c>ClientInstance</c> which represents the new client instance.  It must
            be disposed.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.LaunchScanning(Laserfiche.ClientAutomation.ScanOptions)">
            <summary>
            Launch Laserfiche Scanning with the specified options.
            </summary>
            <param name="options">Options specifying how scanning should be launched.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientManager.GetToolbarManager(Laserfiche.ClientAutomation.ClientWindowType)">
            <summary>
            Returns the toolbar manager for the specified window type.
            </summary>
            <param name="windowtype">The type of the window to manage.</param>
            <returns>A <c>ToolbarManager</c> instance representing the toolbar manager.</returns>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ClientWindow">
            <summary>
            Base class for the doc viewer and main window classes.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ClientWindow.Hwnd">
            <summary>
            The window handle for the represented client window.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.IsLoggedIn">
            <summary>
            Returns true if the represented window is logged in to a repository.
            </summary>
            <returns>True if the represented window is logged in to a repository.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.GetWindowType">
            <summary>
            Returns the window type for the represented window.
            </summary>
            <returns>A member of <c>ClientWindowType</c> indicating the window type.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.GetCurrentRepository">
            <summary>
            Returns the currently connected Laserfiche repository for the represented window,
            or null if there is no connection.
            </summary>
            <returns>The currently connected Laserfiche repository for the represented window,
            or null if there is no connection.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.GetWindowTitle">
            <summary>
            Returns the title of the represented window.
            </summary>
            <returns>The title of the represented window.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.Refresh">
            <summary>
            Refresh the contents of the represented window.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.SetFocus">
            <summary>
            Bring the represented client window into the foreground and
            sets the focus to it.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.Close">
            <summary>
            Close the represented client window.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.Close(System.Boolean)">
            <summary>
            Close the represented client window.
            </summary>
            <param name="allowPrompt">True to allow prompts, false to not prompt and force close.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.LaunchScanningFromClient(Laserfiche.ClientAutomation.ScanOptions)">
            <summary>
            Launch Laserfiche Scanning with the specified options.
            </summary>
            <param name="options">Options specifying how scanning should be launched.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.CloseScanning">
            <summary>
            Ask Laserfiche Scanning to close.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientWindow.SendMessage(System.Int32,System.IntPtr,System.IntPtr)">
            <summary>
            Send a window message to the represented window.
            </summary>
            <param name="nCommand">The window message identifier.</param>
            <param name="wParam">The window message's WPARAM.</param>
            <param name="lParam">The window message's LPARAM.</param>
            <remarks>The return value from the window procedure.</remarks>
            <returns>The return code from SendMessage.</returns>
        </member>
        <member name="T:Laserfiche.ClientAutomation.DocumentViewer">
            <summary>
            Represents an open document viewer window.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.GetWindowType">
            <summary>
            Returns the window type for this window.
            </summary>
            <returns>The window type.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.IsReadOnly">
            <summary>
            Returns true if the document viewer was opened in read only mode.
            </summary>
            <returns>True if the document viewer was opened in read only mode.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.Print(Laserfiche.ClientAutomation.PrintOptions)">
            <summary>
            Print the current document using the specified options.
            </summary>
            <param name="options">Options specifying how the client should print the document.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.Export(Laserfiche.ClientAutomation.ExportOptions)">
            <summary>
            Export the current document using the specified options.
            </summary>
            <param name="options">Options specifying how the client should export the document.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.GoToPage(System.Int32)">
            <summary>
            Move the document viewer to the specified page (1-based).
            </summary>
            <param name="pagenum">The page to display.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.GetDocumentId">
            <summary>
            Returns the entry ID of the current (open) document.
            </summary>
            <returns>The entry ID of the current document.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.GetDocumentName">
            <summary>
            Returns the name of the current document.
            </summary>
            <returns>The name of the current document.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.GetCurrentPageNumber">
            <summary>
            Returns the currently displayed page number.
            </summary>
            <returns>The currently displayed page number.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.GetPageCount">
            <summary>
            Returns the number of pages in the current document.
            </summary>
            <returns>The number of pages in the current document.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.DocumentViewer.GetSelectedThumbnails">
            <summary>
            Returns a list of currently selected page numbers (1-based).
            </summary>
            <returns>A list of currently selected page numbers (1-based).</returns>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ContextHitType">
            <summary>
            The type of the context hit (page/sticky note/textbox/edoc/field).
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ContextHitType.Unknown">
            <summary>
            Unknown context hit type.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ContextHitType.Document">
            <summary>
            A page text context hit.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ContextHitType.StickyNote">
            <summary>
            A sticky note context hit.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ContextHitType.Callout">
            <summary>
            A callout context hit.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ContextHitType.Textbox">
            <summary>
            A textbox context hit.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ContextHitType.Edoc">
            <summary>
            A hit within the edoc.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ContextHitType.Field">
            <summary>
            A template field context hit.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ContextHitInfo">
            <summary>
            Information about a single context hit.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ContextHitInfo.#ctor">
            <summary>
            Initializes a new <c>ContextHitInfo</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ContextHitInfo.EntryId">
            <summary>
            The entry ID for the context hit.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ContextHitInfo.PageNumber">
            <summary>
            The page number for the context hit (1-based).
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ContextHitInfo.HitType">
            <summary>
            The type of the context hit.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ContextHitInfo.AnnotationId">
            <summary>
            The annotation ID if this is an annotation hit.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ContextHitInfo.Context">
            <summary>
            The text displayed in the context hit listing.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ContextHitInfo.HitText">
            <summary>
            The search hit text.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ClientColumn">
            <summary>
            A single column and its width.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientColumn.#ctor">
            <summary>
            Initializes a new <c>ClientColumn</c> instance.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientColumn.#ctor(System.Int32,System.Int32)">
            <summary>
            Identify a system column by its LaserficheServerObjects (LFSO) column ID.
            </summary>
            <param name="columnId">The column ID.</param>
            <param name="width">The width of the column, in pixels.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ClientColumn.#ctor(System.String,System.Int32)">
            <summary>
            Identify a template field column by a field name.
            </summary>
            <param name="fieldName">The name of the field.</param>
            <param name="width">The width of the column, in pixels.</param>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ClientColumn.ColumnId">
            <summary>
            System column ID.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ClientColumn.FieldName">
            <summary>
            Field name.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ClientColumn.Width">
            <summary>
            Width of the column in pixels.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.SortDirection">
            <summary>
            Column sort direction.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.SortDirection.Ascending">
            <summary>
            Ascending, A-Z
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.SortDirection.Descending">
            <summary>
            Descending, Z-A
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.SetColumnsOptions">
            <summary>
            Options for setting a custom folder listing column layout.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.SetColumnsOptions.#ctor">
            <summary>
            Initializes a new <c>SetColumnOptions</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SetColumnsOptions.Columns">
            <summary>
            The columns to display.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SetColumnsOptions.SortColumnId">
            <summary>
            The LFSO ID of the system column to sort by.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SetColumnsOptions.SortFieldName">
            <summary>
            The template field to sort by.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SetColumnsOptions.SortDirection">
            <summary>
            Sort in ascending or descending order. Default: SortDirection.Ascending.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.SetColumnsOptions.AreColumnsPersistent">
            <summary>
            If true, the column set will persist when moving to a different folder. Default: false.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.GeneratePagesOptions">
            <summary>
            Options for generating pages using Snapshot or PDFImporter.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.GeneratePagesOptions.#ctor">
            <summary>
            Initializes a new <c>GeneratePagesOptions</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.GeneratePagesOptions.ShowUI">
            <summary>
            Show a progress dialog and allow prompting the user for a PDF password.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.GeneratePagesOptions.ForceSnapshot">
            <summary>
            Always use Laserfiche Snapshot when generating pages for PDFs.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.GeneratePagesOptions.PdfPassword">
            <summary>
            The password for accessing password-protected PDFs.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.StartBusinessProcessOptions">
            <summary>
            Options for starting a business process on one or more entries.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.StartBusinessProcessOptions.#ctor">
            <summary>
            Initializes a new <c>StartBusinessProcessOptions</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.StartBusinessProcessOptions.BusinessProcessId">
            <summary>
            The business process ID.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.StartBusinessProcessOptions.BusinessProcessName">
            <summary>
            The business process name.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.StartBusinessProcessOptions.ShowUI">
            <summary>
            Show confirmation dialogs.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.MainWindow">
            <summary>
            Represents a "main" client window instance.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.GetWindowType">
            <summary>
            Returns the window type for this window.
            </summary>
            <returns>The window type.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.GetSelectedEntries">
            <summary>
            Returns a list of the currently selected entry IDs.
            </summary>
            <returns>A list of the currently selected entry IDs.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.LogIn(Laserfiche.ClientAutomation.LaunchOptions)">
            <summary>
            Logs in the current window based on the specified launch options. Only works for windows that are at the login screen.
            </summary>
            <returns>Whether or not the login attempt succeeded.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.SetSelectedEntries(System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
            Set the currently selected entry or entries in the current folder or search results.
            </summary>
            <param name="listEntryIDs">The list of entry IDs specifying which entries to select.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.GetSelectedContextHits">
            <summary>
            Returns a list of the currently selected context hits.
            </summary>
            <returns>A list of the currently selected context hits.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.GetCurrentFolderId">
            <summary>
            Returns the current folder ID.
            </summary>
            <returns>The current folder ID, or 0 if there is no current folder.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.GetCurrentFolderName">
            <summary>
            Returns the current folder Name.
            </summary>
            <returns>The current folder name, empty if there is no current folder.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.SetCurrentFolder(System.Int32)">
            <summary>
            Move the entry listing to the specified folder, making it this window's current
            folder.
            </summary>
            <param name="folderID">The entry ID of the folder to switch to as the
            window's current folder.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.SetColumns(Laserfiche.ClientAutomation.SetColumnsOptions)">
            <summary>
            Set the column layout of the represented window.
            </summary>
            <param name="columnoptions">The column layout to use.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.OpenDocumentById(System.Int32,Laserfiche.ClientAutomation.OpenOptions)">
            <summary>
            Open a document with the specified options.
            </summary>
            <param name="entryid">The entry ID of the document to open.</param>
            <param name="options">Options specifying how the document should be displayed.</param>
            <returns>Always false.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.OpenDocumentByPath(System.String,Laserfiche.ClientAutomation.OpenOptions)">
            <summary>
            Open a document with the specified options.
            </summary>
            <param name="path">The path to the document to open.</param>
            <param name="options">Options specifying how the document should be displayed.</param>
            <returns>Always false.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.PrintById(System.Int32,Laserfiche.ClientAutomation.PrintOptions)">
            <summary>
            Print the document with the specified ID.
            </summary>
            <param name="entryid">The entry ID of the document to print.</param>
            <param name="options">Options that control how the document will be printed.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.ExportById(System.Int32,Laserfiche.ClientAutomation.ExportOptions)">
            <summary>
            Export the specified document using the specified options.
            </summary>
            <param name="entryid">The entry ID of the document to export.</param>
            <param name="options">Options that specify how the document should be exported.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.ExportById(System.Collections.Generic.IEnumerable{System.Int32},Laserfiche.ClientAutomation.ExportOptions)">
            <summary>
            Export the specified documents using the specified options.
            </summary>
            <param name="entryids">A list of entry IDs indicating which documents to export.</param>
            <param name="options">Options that specify how the documents should be exported.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.LaunchSearch(Laserfiche.ClientAutomation.SearchOptions)">
            <summary>
            Launch a search using the specified options.
            </summary>
            <param name="options">The search parameters and options.</param>
            <returns>A list of entry IDs that match the search criteria.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.GeneratePages(System.Collections.Generic.IEnumerable{System.Int32},Laserfiche.ClientAutomation.GeneratePagesOptions)">
            <summary>
            Generate pages on the specified entries with Snapshot or PDFImporter.
            </summary>
            <param name="entryids">A list of entry IDs to generate pages on.</param>
            <param name="options">Options that control how to generate pages on the specified entries.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.StartBusinessProcess(System.Collections.Generic.IEnumerable{System.Int32},Laserfiche.ClientAutomation.StartBusinessProcessOptions)">
            <summary>
            Start a business process on one or more entries.
            </summary>
            <param name="entryids">A list of entry IDs to start the business process on.</param>
            <param name="options">Options that control which business process to start and how to start it.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.MainWindow.ShowBusinessProcessHistory(System.Int32,System.Int64,Laserfiche.ClientAutomation.WindowPosition)">
            <summary>
            Show the business process history dialog for the specified entry.
            </summary>
            <param name="entryid">The entry ID of the entry to show the history of.</param>
            <param name="businessprocessentityid">Optional: Show the specified business process entity by default</param>
            <param name="position">Optional: Show the window at the specified position</param>
        </member>
        <member name="T:Laserfiche.ClientAutomation.PageRange">
            <summary>
            Represents a contiguous range of page numbers in a single document.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.PageRange.MIN_PAGE_NUMBER">
            <summary>
            The minimum valid page number.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.PageRange.MAX_PAGE_NUMBER">
            <summary>
            The maximum valid page number.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.#ctor(System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the <c>PageRange</c> type.
            </summary>
            <param name="start">The inclusive starting page number.</param>
            <param name="end">The inclusive ending page number.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <c>PageRange</c> type from a string.
            </summary>
            <param name="rangeString">A string which specifies a single page or
            page range to initialize the new instance.</param>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PageRange.Start">
            <summary>
            Gets or sets the starting page number of the range.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PageRange.End">
            <summary>
            Gets or sets the ending page number of the range.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.ContainsPage(System.Int32)">
            <summary>
            Determines if the specified page number is inside the current range.
            </summary>
            <param name="pageNumber">The page number to check.</param>
            <returns>True if <paramref name="pageNumber"/> is inside the range;
            false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.ContainsRange(Laserfiche.ClientAutomation.PageRange)">
            <summary>
            Determines if the specified range is inside the current range.
            </summary>
            <param name="pageRange">The range to check for inclusiveness.</param>
            <returns>True if <paramref name="pageRange"/> is contained entirely in this range;
            false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.Equals(Laserfiche.ClientAutomation.PageRange,Laserfiche.ClientAutomation.PageRange)">
            <summary>
            Determines if two <c>PageRange</c> values are equal.
            </summary>
            <param name="range1">The first <c>PageRange</c> to compare.</param>
            <param name="range2">The second <c>PageRange</c> to compare.</param>
            <returns>True if both arguments are equal; false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.Equals(Laserfiche.ClientAutomation.PageRange)">
            <summary>
            Determines if the range represented by this value is equal to
            another <c>PageRange</c>.
            </summary>
            <param name="value">The <c>PageRange</c> value to check for equality.</param>
            <returns>True if this value is equal to the argument; false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.Equals(System.Object)">
            <summary>
            Determines if an object reference is a <c>PageRange</c> value that is equal
            to this instance's value.
            </summary>
            <param name="obj">The object to test for value equality.</param>
            <returns>True if the object is a <c>PageRange</c> value equal to this instance;
            false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.GetHashCode">
            <summary>
            Returns the hash code for this instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageRange.ToString">
            <summary>
            Returns the string representation of the page range.
            </summary>
            <returns>The string representation of the page range.</returns>
        </member>
        <member name="T:Laserfiche.ClientAutomation.PageSet">
            <summary>
            Represents a potentially non-contiguous set of page numbers in a single document.
            </summary>
            <remarks>
            The <c>PageSet</c> class can logically be considered a minimal list of
            non-overlapping <c>PageRange</c> values.  Consumers of <c>PageSet</c> can
            add and remove individual page numbers or ranges from an instance, and
            the class takes care of maintaining a minimal covering of the set by a
            list of <c>PageRange</c> values.  For example, if a consumer wants to
            represent the set of pages 1-10 they can add the even pages followed by
            the odd pages; pages 1-5 followed by 6-10; or pages 1-10 in one call.
            The end result will be the same: a single range of pages 1-10.
            </remarks>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PageSet.RangeCount">
            <summary>
            Gets the number of distinct page ranges in this instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PageSet.Item(System.Int32)">
            <summary>
            Returns the page range at the specified index.
            </summary>
            <param name="index">The index of the PageRange to return.</param>
            <returns>The page range at the specified index.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.#ctor">
            <summary>
            Initializes a new instance of <c>PageSet</c> with no pages.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.#ctor(Laserfiche.ClientAutomation.PageRange)">
            <summary>
            Initializes a new instance of <c>PageSet</c> from a single <c>PageRange</c>
            value.
            </summary>
            <param name="range">The range of pages that the <c>PageSet</c> should
            contain.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.#ctor(System.String)">
            <summary>
            Initializes a new instance of <c>PageSet</c> from a string specification
            of page ranges.
            </summary>
            <param name="rangesString">A string specification of page ranges.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.#ctor(System.Collections.Generic.IEnumerable{Laserfiche.ClientAutomation.PageRange})">
            <summary>
            Initializes a new instance of <c>PageSet</c> from a collection of
            <c>PageRange</c> values.
            </summary>
            <param name="enumerator">The enumerator to read <c>PageRange</c> values from.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.#ctor(System.Collections.Generic.IEnumerable{System.Int32})">
            <summary>
            Initializes a new instance of <c>PageSet</c> from a collection of page numbers.
            </summary>
            <param name="pageNumberEnum">A collection of page numbers to initialize
            the new <c>PageSet</c> instance from.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.AddPage(System.Int32)">
            <summary>
            Adds a page number to the set of page numbers maintained by this instance.
            </summary>
            <param name="pageNumber">The page number to add.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.AddRange(Laserfiche.ClientAutomation.PageRange)">
            <summary>
            Adds a range of page numbers to the set of page numbers maintained by this instance.
            </summary>
            <param name="pageRange">The range of pages to add.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.Clear">
            <summary>
            Removes all pages from this instance.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.RemovePage(System.Int32)">
            <summary>
            Removes a single page number from the set.
            </summary>
            <param name="pageNumber">The page number to remove.</param>
            <returns>True if any page was removed from the set; false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.RemoveRange(Laserfiche.ClientAutomation.PageRange)">
            <summary>
            Removes a range of page numbers from the set.
            </summary>
            <param name="pageRange">The range of page numbers to remove.</param>
            <returns>True if any page was removed from the set; false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.ContainsPage(System.Int32)">
            <summary>
            Determines if a page number is in the set.
            </summary>
            <param name="pageNumber">The page number to check for membership.</param>
            <returns>True if this instance contains the given page number;
            false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.ContainsRange(Laserfiche.ClientAutomation.PageRange)">
            <summary>
            Determines if a range of pages is covered by the set.
            </summary>
            <param name="pageRange">The range of pages to check.</param>
            <returns>True if this instance covers the range of pages specified by
            <paramref name="pageRange"/>; false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.IsSubsetOf(Laserfiche.ClientAutomation.PageSet)">
            <summary>
            Determines if this instance is a subset of a <c>PageSet</c> instance.
            </summary>
            <param name="pgset">The <c>PageSet</c> instance to check.</param>
            <returns>True if this instance represents a subset of the set represented by
            <paramref name="pgset"/>; false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.IsSupersetOf(Laserfiche.ClientAutomation.PageSet)">
            <summary>
            Determines if this instance is a superset of a <c>PageSet</c> instance.
            </summary>
            <param name="pgset">The <c>PageSet</c> instance to check.</param>
            <returns>True if this instance represents a superset of the set represented by
            <paramref name="pgset"/>; false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.GetTotalPageCount">
            <summary>
            Calculates the total number of pages covered by this instance.
            </summary>
            <returns>The number of pages covered by the set of page numbers
            represented by this instance.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.ToString">
            <summary>
            Returns the string representation of the page set.
            </summary>
            <returns>The string representation of the page set.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.GetEnumerator">
            <summary>
            Returns an enumerator over the stored page ranges in the set.
            </summary>
            <returns>An enumerator over the stored page ranges in the set.</returns>
        </member>
        <member name="T:Laserfiche.ClientAutomation.PageSet.Enumerator">
            <summary>
            A <c>PageRange</c> enumerator for <c>PageSet</c>.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.PageSet.Enumerator.Current">
            <summary>
            Gets the element in the collection at the current position of the enumerator.
            </summary>
            <returns>The element in the collection at the current position of the enumerator.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.Enumerator.Dispose">
            <summary>
            Disposes of the object's internal resources.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.Enumerator.MoveNext">
            <summary>
            Advances the enumerator to the next element of the collection.
            </summary>
            <returns>True if the enumerator was successfully advanced to the next element; false
            if the enumerator has passed the end of the collection.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.PageSet.Enumerator.Reset">
            <summary>
            Sets the enumerator to its initial position, which is before the first element in the collection.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.RepositoryConnection">
            <summary>
            Contains information about a single repository connection. One client instance can have
            multiple repository connections.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.RepositoryConnection.ServerName">
            <summary>
            The Laserfiche server name.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.RepositoryConnection.RepositoryName">
            <summary>
            The Laserfiche database name.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.RepositoryConnection.RepositoryGuid">
            <summary>
            The Laserfiche repository GUID.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.RepositoryConnection.ConnectionGuid">
            <summary>
            The GUID for the Laserfiche connection.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.RepositoryConnection.UserName">
            <summary>
            The user name for the current Laserfiche user or domain account.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.RepositoryConnection.UserSid">
            <summary>
            The security identifier for the currently logged in user.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.RepositoryConnection.GetConnectionString">
            <summary>
            Connection string that can be passed to LFSO.ILFConnection.CloneFromSerializedConnectionString.
            </summary>
            <returns>A serialized Laserfiche connection string.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.RepositoryConnection.GetSerializedConnection">
            <summary>
            Connection object that can be passed to LFSO.ILFConnection.CloneFromSerializedConnection.
            </summary>
            <returns>A serialized Laserfiche connection object.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.RepositoryConnection.OpenDocumentById(System.Int32,Laserfiche.ClientAutomation.OpenOptions)">
            <summary>
            Open a document by ID using the specified options.
            </summary>
            <param name="entryid">The entry ID of the document to open.</param>
            <param name="options">Options to control how the document should be opened.</param>
            <returns>True if the document was opened successfully, false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.RepositoryConnection.OpenDocumentByPath(System.String,Laserfiche.ClientAutomation.OpenOptions)">
            <summary>
            Open a document by path using the specified options.
            </summary>
            <param name="path">The path to the document to open.</param>
            <param name="options">Options to control how the document should be opened.</param>
            <returns>True if the document was opened successfully, false otherwise.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.RepositoryConnection.LaunchSearch(Laserfiche.ClientAutomation.SearchOptions)">
            <summary>
            Launch a search using the specified options.
            </summary>
            <param name="options">The search criteria and options to use.</param>
            <returns>The list of entry IDs which match the specified search criteria.</returns>
            <remarks>
            If <c>SearchOptions.ReturnResults</c> is true, the function returns the IDs for the
            search results.
            </remarks>
        </member>
        <member name="M:Laserfiche.ClientAutomation.RepositoryConnection.LogOut">
            <summary>
            Log out the current connection.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ToolbarPosition">
            <summary>
            Where to position a new toolbar.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ToolbarPosition.Top">
            <summary>
            At the top of the window.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ToolbarPosition.Bottom">
            <summary>
            At the bottom of the window.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ToolbarPosition.Left">
            <summary>
            At the left edge of the window.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ToolbarPosition.Right">
            <summary>
            At the right edge of the window.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ToolbarPosition.Floating">
            <summary>
            Floating above the window.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.CustomButtonInfo">
            <summary>
            Information about a custom toolbar button.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.CustomButtonInfo.#ctor">
            <summary>
            Initializes a new <c>CustomButtonInfo</c> instance.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.CustomButtonInfo.Id">
            <summary>
            The button ID
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.CustomButtonInfo.Description">
            <summary>
            The button description. Shows up as the tooltip.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.CustomButtonInfo.Command">
            <summary>
            The command line when the button is clicked.
            </summary>
            <remarks>
            <para>Command line tokens:</para>
            <para>%(PID):             The LF.exe process ID.</para>
            <para>%(ProcessID):       The LF.exe process ID.</para>
            <para>%(ConnectionGUID):  The LFSO connection GUID.</para>
            <para>%(DatabaseName):    Current repository name.</para>
            <para>%(RepositoryName):  Current repository name.</para>
            <para>%(DatabaseGUID):    Current repository GUID.</para>
            <para>%(RepositoryGUID):  Current repository GUID.</para>
            <para>%(Username):        Current user name.</para>
            <para>%(SID):             Current user security identifier.</para>
            <para>%(hwnd):            Current window handle.</para>
            <para>%(DocumentID):      Current document ID (Doc viewer only).</para>
            <para>%(FolderID):        Current folder ID (Entry listing only).</para>
            <para>%(SelectedEntries): Comma delimited list of selected entry IDs.</para>
            <para>%(SelectedPages):   Comma delimited list of selected page numbers.</para>
            </remarks>
        </member>
        <member name="P:Laserfiche.ClientAutomation.CustomButtonInfo.IconPath">
            <summary>
            The icon for the button.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ToolbarButtonInfo">
            <summary>
            Information about a toolbar button.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ToolbarButtonInfo.Id">
            <summary>
            The button ID.
            </summary>
        </member>
        <member name="P:Laserfiche.ClientAutomation.ToolbarButtonInfo.IsSeparator">
            <summary>
            Whether the button is preceded by a separator line.
            </summary>
        </member>
        <member name="T:Laserfiche.ClientAutomation.ToolbarManager">
            <summary>
            Allows creating toolbars, creating custom toolbar buttons, and adding buttons
            to toolbars.
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ToolbarManager.CUSTOM_TOOLBAR_FIRST">
            <summary>
            The first custom toolbar ID (32900).
            </summary>
        </member>
        <member name="F:Laserfiche.ClientAutomation.ToolbarManager.CUSTOM_TOOLBAR_LAST">
            <summary>
            The last custom toolbar ID (32999).
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.Dispose">
            <summary>
            Frees resources that were acquired by this instance.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.SaveCurrentAsDefault">
            <summary>
            Copies the current toolbar settings to the HKEY_LOCAL_MACHINE registry key. New client installations
            will inherit these toolbar settings by default.
            </summary>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.GetCustomToolbarButtonCount">
            <summary>
            Returns the number of custom toolbar buttons.
            </summary>
            <returns>The number of custom toolbar buttons.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.GetCustomToolbarButton(System.Int32)">
            <summary>
            Returns the custom toolbar button at the specified index (0-based).
            </summary>
            <param name="index">The index of the button to retrieve information about.</param>
            <returns>A <c>CustomButtonInfo</c> instance which represents the specified button.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.AddCustomToolbarButton(Laserfiche.ClientAutomation.CustomButtonInfo)">
            <summary>
            Add a custom toolbar button using the specified CustomButtonInfo.
            </summary>
            <param name="buttonInfo">Information about the new toolbar button.</param>
            <returns>The index of the new toolbar button.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.RemoveCustomToolbarButton(System.Int32)">
            <summary>
            Removes the custom toolbar button at the specified index (0-based).
            </summary>
            <param name="index">The index of the button to remove.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.GetToolbarCount">
            <summary>
            Returns the number of customizable toolbars for the current window type.
            </summary>
            <returns>The number of customizable toolbars.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.GetToolbarName(System.Int32)">
            <summary>
            Returns the name of the toolbar at the specified index (0-based).
            </summary>
            <param name="index">The index of the toolbar to return.</param>
            <returns>The name of the toolbar at the specified index.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.AddToolbar(System.String,Laserfiche.ClientAutomation.ToolbarPosition)">
            <summary>
            Creates a new toolbar with the specified name and position.
            </summary>
            <param name="name">The name of the new toolbar.</param>
            <param name="position">Where to place the new toolbar.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.DeleteToolbar(System.String)">
            <summary>
            Deleted the toolbar with the specified name.
            </summary>
            <param name="name">The name of the toolbar to delete.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.GetButtonCount(System.String)">
            <summary>
            Returns the number of buttons on the specified toolbar.
            </summary>
            <param name="toolbar">The name of the toolbar.</param>
            <returns>The number of buttons on the specified toolbar.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.GetButtonInfo(System.String,System.Int32)">
            <summary>
            Returns A ToolbarButtonInfo with the details of the specified button.
            </summary>
            <param name="toolbar">The name of the toolbar that the button is on.</param>
            <param name="index">The index of the button.</param>
            <returns>A <c>ToolbarButtonInfo</c> instance which describes the button.</returns>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.AddButton(System.String,Laserfiche.ClientAutomation.ToolbarButtonInfo,System.Int32)">
            <summary>
            Add a button to the toolbar.
            </summary>
            <param name="toolbar">The name of the toolbar to add the button to.</param>
            <param name="buttonInfo">A <c>ToolbarButtonInfo</c> instance that defines the button.</param>
            <param name="position">The index in the toolbar to insert the button.</param>
        </member>
        <member name="M:Laserfiche.ClientAutomation.ToolbarManager.RemoveButton(System.String,System.Int32)">
            <summary>
            Remove a button from the toolbar.
            </summary>
            <param name="toolbar">The name of the toolbar where the button is located.</param>
            <param name="id">The ID of the button to remove.</param>
        </member>
    </members>
</doc>

Commits for WilksMergeModule/WilksMergeModule/bin/Debug/ClientAutomation.xml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Thu 09 Aug, 2018 12:57:17 +0000