-
Notifications
You must be signed in to change notification settings - Fork 7
/
DevExpress.Pdf.v20.2.Core.xml
8335 lines (8335 loc) · 419 KB
/
DevExpress.Pdf.v20.2.Core.xml
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
<?xml version="1.0" encoding="utf-8"?>
<doc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<assembly>
<name>DevExpress.Pdf.v20.2.Core</name>
</assembly>
<members>
<member name="N:DevExpress.Office.DigitalSignatures">
<summary>
<para>Contains classes used to create signatures for PDF and Office documents.</para>
</summary>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.CertificateStoreProvider">
<summary>
<para>Provides certificates used to build a certificate chain and register the signature in the Document Security Store (DSS).</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.CertificateStoreProvider.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.CertificateStoreProvider"/> class with specified settings.</para>
</summary>
<param name="collection">A collection of X.509 certificates.</param>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.CertificateStoreProvider.#ctor(System.Security.Cryptography.X509Certificates.X509Store,System.Boolean)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.CertificateStoreProvider"/> class with specified settings.</para>
</summary>
<param name="store">An X.509 store that contains the certificates.</param>
<param name="closeStore">true to transfer the store ownership to the CertificateStoreProvider instance; otherwise, false.</param>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.CertificateStoreProvider.Dispose">
<summary>
<para>Closes the underlying store.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.CertificateStoreProvider.GetCertificate(System.Byte[])">
<summary>
<para>Gets the certificate by its subject's distinguished name.</para>
</summary>
<param name="subjectDN">The BER-encoded DistinguishedName ASN.1 object (rfc5280) that represents the subject's distinguished name.</param>
<returns>The DER- or BER-encoded Certificate ASN.1 object (rfc5280)</returns>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.CrlClient">
<summary>
<para>Allows you to send a CLR request for a certificate.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.CrlClient.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.CrlClient"/> class.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.CrlClient.#ctor(System.Collections.Generic.IList{System.Uri})">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.CrlClient"/> class with specified settings.</para>
</summary>
<param name="uriList">A list of OCSP server Uri's.</param>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.CrlClient.#ctor(System.Collections.Generic.IList{System.Uri},System.Boolean)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.CrlClient"/> class with specified settings.</para>
</summary>
<param name="uriList">A list of OCSP server Uri's.</param>
<param name="throwOnFail">true to throw a WebException when the response failed; otherwise, false.</param>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.CrlClient.GetEncoded(System.Collections.Generic.IList{System.Byte[]})">
<summary>
<para>Returns a list of CertificateList ASN.1 objects.</para>
</summary>
<param name="chain">A list of DER-encoded x509 certificates to check.</param>
<returns>A collection of DER- or BER-encoded CertificateList ASN.1 objects.</returns>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.DigestCalculator">
<summary>
<para>Allows you to calculate a digest from a stream. Supports hash algorithms listed in <see cref="T:DevExpress.Office.DigitalSignatures.HashAlgorithmType"/> enumeration.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.DigestCalculator.#ctor(DevExpress.Office.DigitalSignatures.HashAlgorithmType)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.DigestCalculator"/> class with specified settings.</para>
</summary>
<param name="algorithm">The hashing algorithm.</param>
</member>
<member name="P:DevExpress.Office.DigitalSignatures.DigestCalculator.AlgorithmOid">
<summary>
<para>Retrieves the hash algorithm's object identifier.</para>
</summary>
<value>An algorithm OID.</value>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.DigestCalculator.ComputeDigest(System.IO.Stream)">
<summary>
<para>Calculates the digest value for specified data.</para>
</summary>
<param name="stream">The stream that contains data used to calculate the digest value.</param>
<returns>The digest value.</returns>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.DigestCalculator.GetDigestSize">
<summary>
<para>Returns the digest value's size.</para>
</summary>
<returns>The digest value's size (in bytes).</returns>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.HashAlgorithmType">
<summary>
<para>Lists values used to specify the PKCS#7 signature's secure hash algorithm (SHA) type.</para>
</summary>
</member>
<member name="F:DevExpress.Office.DigitalSignatures.HashAlgorithmType.SHA1">
<summary>
<para>SHA1 hashing algorithm. This type can affect the signature's integrity, authenticity, and legal validity.</para>
</summary>
</member>
<member name="F:DevExpress.Office.DigitalSignatures.HashAlgorithmType.SHA256">
<summary>
<para>SHA256 hashing algorithm.</para>
</summary>
</member>
<member name="F:DevExpress.Office.DigitalSignatures.HashAlgorithmType.SHA384">
<summary>
<para>SHA384 hashing algorithm.</para>
</summary>
</member>
<member name="F:DevExpress.Office.DigitalSignatures.HashAlgorithmType.SHA512">
<summary>
<para>SHA512 hashing algorithm.</para>
</summary>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.ICertificateStoreProvider">
<summary>
<para>Provides certificates used to build a certificate chain and register the signature in the Document Security Store (DSS).</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.ICertificateStoreProvider.GetCertificate(System.Byte[])">
<summary>
<para>Gets the certificate by its subject's distinguished name.</para>
</summary>
<param name="subjectDN">The BER-encoded DistinguishedName ASN.1 object (rfc5280) that represents the subject's distinguished name.</param>
<returns>The DER- or BER-encoded Certificate ASN.1 object (rfc5280).</returns>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.ICrlClient">
<summary>
<para>Allows you to send a CLR request for specific a certificate.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.ICrlClient.GetEncoded(System.Collections.Generic.IList{System.Byte[]})">
<summary>
<para>Returns a list of CertificateList ASN.1 objects.</para>
</summary>
<param name="chain">A list of DER-encoded x509 certificates to check.</param>
<returns>A collection of DER- or BER-encoded CertificateList ASN.1 objects.</returns>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.IDigestCalculator">
<summary>
<para>Allows you to calculate a digest from a stream.</para>
</summary>
</member>
<member name="P:DevExpress.Office.DigitalSignatures.IDigestCalculator.AlgorithmOid">
<summary>
<para>Retrieves the hash algorithm's object identifier.</para>
</summary>
<value>An algorithm OID.</value>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.IDigestCalculator.ComputeDigest(System.IO.Stream)">
<summary>
<para>Calculates the digest value for the specified data.</para>
</summary>
<param name="stream">The stream that contains data used to calculate the digest value.</param>
<returns>The digest value.</returns>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.IDigestCalculator.GetDigestSize">
<summary>
<para>Returns the digest value's size.</para>
</summary>
<returns>The digest value's size (in bytes).</returns>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.IOcspClient">
<summary>
<para>Allows you to send an Online Certificate Status Protocol (OCSP) request for a certificate.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.IOcspClient.GetEncoded(System.Byte[],System.Byte[])">
<summary>
<para>Returns a DER- or BER-encoded OCSPResponse ASN.1 object.</para>
</summary>
<param name="checkCertificateBytes">A DER-encoded x509 certificate to check.</param>
<param name="issuerCertificateBytes">A DER-encoded x509 issuers certificate.</param>
<returns>A DER- or BER-encoded OCSPResponse ASN.1 object or null.</returns>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.OcspClient">
<summary>
<para>Allows you to send an Online Certificate Status Protocol (OCSP) request for a certificate.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.OcspClient.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.OcspClient"/> class.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.OcspClient.#ctor(System.Uri)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.OcspClient"/> class with specified settings.</para>
</summary>
<param name="uri">An OCSP server URI.</param>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.OcspClient.#ctor(System.Uri,DevExpress.Office.DigitalSignatures.HashAlgorithmType)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.OcspClient"/> class with specified settings.</para>
</summary>
<param name="uri">An OCSP server URI.</param>
<param name="hashAlgorithm">The hashing algorithm used to hash the issuer name and issuer public key. Default value is <see cref="F:DevExpress.Office.DigitalSignatures.HashAlgorithmType.SHA1"/>.</param>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.OcspClient.GetEncoded(System.Byte[],System.Byte[])">
<summary>
<para>Returns a DER- or BER-encoded OCSPResponse ASN.1 object.</para>
</summary>
<param name="checkCertificateBytes">A DER-encoded x509 certificate to check.</param>
<param name="issuerCertificateBytes">A DER-encoded x509 issuers certificate.</param>
<returns>DER- or BER-encoded OCSPResponse ASN.1 object or null.</returns>
</member>
<member name="T:DevExpress.Office.DigitalSignatures.OcspException">
<summary>
<para>Fires when the OCSP response fails.</para>
</summary>
</member>
<member name="M:DevExpress.Office.DigitalSignatures.OcspException.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.DigitalSignatures.OcspException"/> class with specified settings.</para>
</summary>
<param name="message">An exception message.</param>
</member>
<member name="N:DevExpress.Office.Tsp">
<summary>
<para>Contains classes used to add signature timestamps.</para>
</summary>
</member>
<member name="T:DevExpress.Office.Tsp.ITsaClient">
<summary>
<para>Interface used to generate time stamps.</para>
</summary>
</member>
<member name="M:DevExpress.Office.Tsp.ITsaClient.GenerateTimeStamp(System.Byte[],System.String)">
<summary>
<para>Generates a timestamp and returns its contents.</para>
</summary>
<param name="digest">The document's hash value.</param>
<param name="digestAlgorithmOID">The hash algorithm's object identifier.</param>
<returns>The timestamp contents.</returns>
</member>
<member name="M:DevExpress.Office.Tsp.ITsaClient.GenerateTimeStamp(System.IO.Stream)">
<summary>
<para>Generates a timestamp for the specific data.</para>
</summary>
<param name="stream">A stream that contains data used to generate a timestamp.</param>
<returns>An ASN.1 BER-encoded TimeStampToken (see rfc3161) object.</returns>
</member>
<member name="T:DevExpress.Office.Tsp.TsaClient">
<summary>
<para>Allows you to generate timestamps.</para>
</summary>
</member>
<member name="M:DevExpress.Office.Tsp.TsaClient.#ctor(System.Uri,DevExpress.Office.DigitalSignatures.HashAlgorithmType)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.Tsp.TsaClient"/> class with specified settings.</para>
</summary>
<param name="tsaServerURI">A URI of a timestamp server.</param>
<param name="algorithm">A timestamp's hashing algorithm.</param>
</member>
<member name="M:DevExpress.Office.Tsp.TsaClient.#ctor(System.Uri,DevExpress.Office.DigitalSignatures.HashAlgorithmType,System.String,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.Tsp.TsaClient"/> class with specified settings.</para>
</summary>
<param name="tsaServerURI">A URI of a timestamp server.</param>
<param name="algorithm">A timestamp's hashing algorithm.</param>
<param name="userName">A username to log into the server.</param>
<param name="password">A password to log into the server.</param>
</member>
<member name="M:DevExpress.Office.Tsp.TsaClient.#ctor(System.Uri,DevExpress.Office.DigitalSignatures.IDigestCalculator)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.Tsp.TsaClient"/> class with specified settings.</para>
</summary>
<param name="tsaServerURI"></param>
<param name="digestCalculator"></param>
</member>
<member name="M:DevExpress.Office.Tsp.TsaClient.#ctor(System.Uri,DevExpress.Office.DigitalSignatures.IDigestCalculator,System.String,System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.Tsp.TsaClient"/> class with specified settings.</para>
</summary>
<param name="tsaServerURI">A URI of a timestamp server.</param>
<param name="digestCalculator">An objects used to calculate the digest value.</param>
<param name="userName">A username to log in to the server.</param>
<param name="password">A password to log in to the server.</param>
</member>
<member name="M:DevExpress.Office.Tsp.TsaClient.GenerateTimeStamp(System.Byte[],System.String)">
<summary>
<para>Generates a timestamp and returns its contents.</para>
</summary>
<param name="digest">The document's hash value.</param>
<param name="digestAlgorithmOID">The hash algorithm's object identifier.</param>
<returns>The timestamp contents.</returns>
</member>
<member name="M:DevExpress.Office.Tsp.TsaClient.GenerateTimeStamp(System.IO.Stream)">
<summary>
<para>Generates a timestamp for the specific data.</para>
</summary>
<param name="stream">A stream that contains data used to generate a timestamp.</param>
<returns>An ASN.1 BER-encoded TimeStampToken (see rfc3161) object.</returns>
</member>
<member name="T:DevExpress.Office.Tsp.TspValidationException">
<summary>
<para>Fires when timestamp request was rejected by the server.</para>
</summary>
</member>
<member name="M:DevExpress.Office.Tsp.TspValidationException.#ctor(System.String)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Office.Tsp.TspValidationException"/> class with specified settings.</para>
</summary>
<param name="message">An error code with a description.</param>
</member>
<member name="N:DevExpress.Pdf">
<summary>
<para>Contains classes and enumerations that are used to implement the main functionality of WinForms and WPF PDF Viewers, and the PDF Document API.</para>
</summary>
</member>
<member name="T:DevExpress.Pdf.ExternalSignerInfo">
<summary>
<para>Contains information about the signature contents.</para>
</summary>
</member>
<member name="M:DevExpress.Pdf.ExternalSignerInfo.#ctor(DevExpress.Pdf.PdfSignatureType,System.Int32,DevExpress.Office.DigitalSignatures.HashAlgorithmType)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Pdf.ExternalSignerInfo"/> class with specified settings.</para>
</summary>
<param name="type">The signature type.</param>
<param name="signatureSize">The signature size (in bytes).</param>
<param name="hashAlgorithm">The signature's hashing algorithm.</param>
</member>
<member name="M:DevExpress.Pdf.ExternalSignerInfo.#ctor(DevExpress.Pdf.PdfSignatureType,System.Int32,DevExpress.Office.DigitalSignatures.IDigestCalculator)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Pdf.ExternalSignerInfo"/> class with specified settings.</para>
</summary>
<param name="type">The signature type.</param>
<param name="signatureSize">The signature size (in bytes).</param>
<param name="digestCalculator">The signature's digest calculator.</param>
</member>
<member name="M:DevExpress.Pdf.ExternalSignerInfo.#ctor(System.String,System.String,System.String,System.Int32,DevExpress.Office.DigitalSignatures.HashAlgorithmType)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Pdf.ExternalSignerInfo"/> class with specified settings.</para>
</summary>
<param name="type">The signature type.</param>
<param name="filter">The name of the preferred signature handler.</param>
<param name="subFilter">The signature's encoding and key information.</param>
<param name="signatureSize">The signature size (in bytes).</param>
<param name="hashAlgorithm">The signature's hashing algorithm.</param>
</member>
<member name="M:DevExpress.Pdf.ExternalSignerInfo.#ctor(System.String,System.String,System.String,System.Int32,DevExpress.Office.DigitalSignatures.IDigestCalculator)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Pdf.ExternalSignerInfo"/> class with specified settings.</para>
</summary>
<param name="type">The signature type.</param>
<param name="filter">The name of the preferred signature handler.</param>
<param name="subFilter">The signature's encoding and key information.</param>
<param name="signatureSize">The signature size.</param>
<param name="digestCalculator">The signature's digest calculator.</param>
</member>
<member name="P:DevExpress.Pdf.ExternalSignerInfo.DigestCalculator">
<summary>
<para>Returns the signature's digest calculator.</para>
</summary>
<value>An object used to calculate the digest value.</value>
</member>
<member name="P:DevExpress.Pdf.ExternalSignerInfo.Filter">
<summary>
<para>Retrieves the name of the preferred signature handler.</para>
</summary>
<value>Preferred signature handler's name.</value>
</member>
<member name="P:DevExpress.Pdf.ExternalSignerInfo.SignatureSize">
<summary>
<para>Returns the signature size (in bytes).</para>
</summary>
<value>The signature size (in bytes).</value>
</member>
<member name="P:DevExpress.Pdf.ExternalSignerInfo.SubFilter">
<summary>
<para>Returns information about the signature's format.</para>
</summary>
<value>The signature's encoding and key information.</value>
</member>
<member name="P:DevExpress.Pdf.ExternalSignerInfo.Type">
<summary>
<para>Returns the signature type.</para>
</summary>
<value>The signature type.</value>
</member>
<member name="T:DevExpress.Pdf.IExternalSigner">
<summary>
<para>Exposes the basic functionality to generate signatures.</para>
</summary>
</member>
<member name="M:DevExpress.Pdf.IExternalSigner.BuildSignature(System.Byte[],System.String)">
<summary>
<para>Builds the signature and returns its contents.</para>
</summary>
<param name="digest">The document's hash value.</param>
<param name="digestAlgorithmOID">The hash algorithm's object identifier.</param>
<returns>The signature contents.</returns>
</member>
<member name="M:DevExpress.Pdf.IExternalSigner.BuildSignature(System.IO.Stream)">
<summary>
<para>Builds the signature for the specified document.</para>
</summary>
<param name="stream">A stream that contains the document to sign.</param>
<returns>A signature.</returns>
</member>
<member name="P:DevExpress.Pdf.IExternalSigner.Filter">
<summary>
<para>Retrieves the name of the preferred signature handler.</para>
</summary>
<value>Preferred signature handler's name.</value>
</member>
<member name="M:DevExpress.Pdf.IExternalSigner.GetSignatureSize">
<summary>
<para>Returns the signature size (in bytes).</para>
</summary>
<returns>A signature's size (in bytes).</returns>
</member>
<member name="P:DevExpress.Pdf.IExternalSigner.SubFilter">
<summary>
<para>Returns information about the signature's format.</para>
</summary>
<value>The signature's encoding and key information.</value>
</member>
<member name="P:DevExpress.Pdf.IExternalSigner.Type">
<summary>
<para>Returns the signature type.</para>
</summary>
<value>The signature type.</value>
</member>
<member name="T:DevExpress.Pdf.IPdfViewer">
<summary>
<para>For internal use. Provides the functionality of <see cref="T:DevExpress.XtraPdfViewer.PdfViewer"/> and <see cref="T:DevExpress.Xpf.PdfViewer.PdfViewerControl"/> classes.</para>
</summary>
</member>
<member name="M:DevExpress.Pdf.IPdfViewer.GetDocumentProcessorHelper">
<summary>
<para>For internal use.</para>
</summary>
<returns>A <see cref="T:DevExpress.Pdf.PdfDocumentProcessorHelper"/> object.</returns>
</member>
<member name="N:DevExpress.Pdf.Localization">
<summary>
<para>Contains classes and an enumeration that provides the localization functionality common to WinForms and WPF PDF Viewers, and the PDF Document API.</para>
</summary>
</member>
<member name="T:DevExpress.Pdf.Localization.PdfCoreLocalizer">
<summary>
<para>Provides the means to localize the dialog messages of a PDF Viewer.</para>
</summary>
</member>
<member name="M:DevExpress.Pdf.Localization.PdfCoreLocalizer.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Pdf.Localization.PdfCoreLocalizer"/> class with the default settings.</para>
</summary>
</member>
<member name="P:DevExpress.Pdf.Localization.PdfCoreLocalizer.Active">
<summary>
<para>Specifies a localizer object providing localization of a PDF Viewer's dialog messages at runtime.</para>
</summary>
<value>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> descendant, used to localize the dialog messages at runtime.</value>
</member>
<member name="M:DevExpress.Pdf.Localization.PdfCoreLocalizer.CreateResXLocalizer">
<summary>
<para>For internal use. Returns a Localizer object storing resources based on the thread's language and regional settings (culture).</para>
</summary>
<returns>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object, storing resources based on the thread's language and regional settings (culture).</returns>
</member>
<member name="M:DevExpress.Pdf.Localization.PdfCoreLocalizer.GetString(DevExpress.Pdf.Localization.PdfCoreStringId)">
<summary>
<para>Returns a localized string for the given string identifier.</para>
</summary>
<param name="id">A <see cref="T:DevExpress.Pdf.Localization.PdfCoreStringId"/> enumeration value, identifying the string to localize.</param>
<returns>A <see cref="T:System.String"/> value, corresponding to the specified identifier.</returns>
</member>
<member name="P:DevExpress.Pdf.Localization.PdfCoreLocalizer.Language">
<summary>
<para>Returns the name of the language currently used by this localizer object.</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the language of the user interface localization.</value>
</member>
<member name="T:DevExpress.Pdf.Localization.PdfCoreResLocalizer">
<summary>
<para>A default localizer to translate the PDF Viewer's resources.</para>
</summary>
</member>
<member name="M:DevExpress.Pdf.Localization.PdfCoreResLocalizer.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.Pdf.Localization.PdfCoreResLocalizer"/> class with the default settings.</para>
</summary>
</member>
<member name="M:DevExpress.Pdf.Localization.PdfCoreResLocalizer.GetLocalizedString(DevExpress.Pdf.Localization.PdfCoreStringId)">
<summary>
<para>Gets the string, localized by the current <see cref="T:DevExpress.Pdf.Localization.PdfCoreResLocalizer"/>, for the specified dialog message.</para>
</summary>
<param name="id">A <see cref="T:DevExpress.Pdf.Localization.PdfCoreStringId"/> enumeration value, specifying the dialog message whose caption (text) is to be localized.</param>
<returns>A <see cref="T:System.String"/> value, specifying the text to be displayed within the specified dialog message.</returns>
</member>
<member name="T:DevExpress.Pdf.Localization.PdfCoreStringId">
<summary>
<para>Contains strings that correspond to the dialog messages of the PDF Viewer that are subject to localization.</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeCaret">
<summary>
<para>"Insert Text"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeCircle">
<summary>
<para>"Oval"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeCustom">
<summary>
<para>"Custom"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeFileAttachment">
<summary>
<para>"File Attachment"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeFreeText">
<summary>
<para>"Text Box"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeHighlight">
<summary>
<para>"Highlight"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeInk">
<summary>
<para>"Pencil"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeLine">
<summary>
<para>"Line"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypePolygon">
<summary>
<para>"Polygon"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypePolyLine">
<summary>
<para>"Polygonal Line"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeRedaction">
<summary>
<para>"Redact"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeRubberStamp">
<summary>
<para>"Stamp"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeSound">
<summary>
<para>"Sound Attachment"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeSquare">
<summary>
<para>"Rectangle"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeSquiggly">
<summary>
<para>"Squiggly Underline"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeStrikethrough">
<summary>
<para>"Strikethrough"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeText">
<summary>
<para>"Sticky Note"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.AnnotationFilterTypeUnderline">
<summary>
<para>"Underline"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.DefaultDocumentName">
<summary>
<para>"Document"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.FileSize">
<summary>
<para>"{0:0.00} {1} ({2} Bytes)"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.FileSizeInBytes">
<summary>
<para>"{0} Bytes"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgAcroFormFieldNameCantBeEmpty">
<summary>
<para>"The form field name cannot be null or an empty string."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgAcroFormFieldNameDuplication">
<summary>
<para>"The siblings can't have the same names in the form field hierarchy."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgAttachmentHintDescription">
<summary>
<para>"\r\nDescription: {0}"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgAttachmentHintFileName">
<summary>
<para>"Name: {0}"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgAttachmentHintModificationDate">
<summary>
<para>"\r\nModification Date: {0}"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgAttachmentHintSize">
<summary>
<para>"\r\nSize: {0}"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgCantSetSelectedIndexWithoutValues">
<summary>
<para>"The selected index cannot be set because there are no possible values."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgEmptyCustomPropertyName">
<summary>
<para>Custom property name cannot be null or empty string.</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgEntryPointNotFound">
<summary>
<para>"Unable to find an entry point named "{0}" in shared library "{1}""</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgFormDataNotFound">
<summary>
<para>"The document structure does not contain a field with the specified name: {0}."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgICULibraryNotFound">
<summary>
<para>"Unable to load ICU library."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncompatibleOperationWithCurrentDocumentFormat">
<summary>
<para>"The operation is not supported in {0} compatability mode. Please create document in PdfCompatibility.Pdf compatibility mode."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectAcroFormExportValue">
<summary>
<para>"The export value cannot be null or an empty string."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectAcroFormFieldNameContainsPeriod">
<summary>
<para>"The form field name cannot contain a period character."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectAction">
<summary>
<para>"The specified action does not belong to the current document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectBookmarkListValue">
<summary>
<para>"Bookmark list can't be null."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectButtonFormFieldValue">
<summary>
<para>"The argument should be the name of a button appearance or a value from the options array."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectChoiceFormFieldValue">
<summary>
<para>"The argument should be a string value or a list of string values from the options array."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectColorComponentValue">
<summary>
<para>"The color component value should be greater than or equal to 0 and less than or equal to 1."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectDashLength">
<summary>
<para>"The dash length should be greater than or equal to 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectDashPattern">
<summary>
<para>"The sum of dash and gap lengths should be greater than 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectDashPatternArraySize">
<summary>
<para>"The dash pattern array must not be empty."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectDestination">
<summary>
<para>"The specified destination does not belong to the current document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectDestinationPage">
<summary>
<para>"The destination of a bookmark can't be linked to a page which belongs to another document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectDpi">
<summary>
<para>"Resolution (in dots per inch) should be greater than 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectFlatnessTolerance">
<summary>
<para>"The flatness tolerance should be greater than or equal to 0 and less than or equal to 100."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectFormDataFile">
<summary>
<para>"Error while reading the PDF Form from the specified file."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectGapLength">
<summary>
<para>"The gap length should be greater than or equal to 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectGlyphPosition">
<summary>
<para>"The glyph position should be less or equal than text length."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectInsertingPageNumber">
<summary>
<para>"The page number should be greater than 0, and less than or equal to the next available page number (next to the document page count)".</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectLargestEdgeLength">
<summary>
<para>"The largest edge length should be greater than 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectLineWidth">
<summary>
<para>"The line width should be greater than or equal to 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectListSize">
<summary>
<para>"The list should contain at least one value."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectMarkedContentTag">
<summary>
<para>"The marked content tag can't be empty."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectMarkupAnnotation">
<summary>
<para>"The specified annotation does not belong to the current document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectMiterLimit">
<summary>
<para>"The miter limit should be greater than 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectOpacity">
<summary>
<para>"The opacity value should be greater than or equal to 0 and less than or equal to 1."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPageArtBox">
<summary>
<para>"The page art box should be less than or equal to the media box."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPageBleedBox">
<summary>
<para>"The page bleeding box should be less than or equal to the media box."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPageCropBox">
<summary>
<para>"The page croppoing box should be less than or equal to the media box."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPageNumber">
<summary>
<para>"The page number should be greater than 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPageRotate">
<summary>
<para>"The page rotation angle can have one of the following values: 0, 90, 180 or 270 degrees."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPageTrimBox">
<summary>
<para>"The page trimming box should be less than or equal to the media box."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPdfData">
<summary>
<para>"Input data are not recognized as valid pdf."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPdfPassword">
<summary>
<para>"The Document Open password is empty or incorrect."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectPrintableFilePath">
<summary>
<para>"Unable to create a print document with the specified name: {0}."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectRectangleHeight">
<summary>
<para>"The top coordinate of the rectangle should be greater than the bottom."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectRectangleWidth">
<summary>
<para>"The right coordinate of the rectangle should be greater than the left one."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectSelectedIndexValue">
<summary>
<para>"The index should be in the range from 0 to {0}."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectText">
<summary>
<para>"The text value can't be null."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectTextFormFieldValue">
<summary>
<para>"The argument should be a string value."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectTextHorizontalScaling">
<summary>
<para>"The text horizontal scaling value should be greater than 0."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgIncorrectZoom">
<summary>
<para>"The zoom value should be greater than or equal to 0".</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgMissingPageNumbers">
<summary>
<para>"At least one page number should be specified."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgPageNumberShouldBePositive">
<summary>
<para>"The page number should be greater than or equal to 1."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgPartialTrustEnvironmentLimitation">
<summary>
<para>"This operation cannot be performed in the Partial Trust environment."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgSharedLibraryNotFound">
<summary>
<para>"Unable to load shared library "{0}" or one of its dependencies: "{1}""</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgShouldEmbedFonts">
<summary>
<para>"All fonts should be embedded to a PDF/A document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgStreamIsInUse">
<summary>
<para>"The stream is already used for a document. Please use another stream."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnavailableOperation">
<summary>
<para>"This operation is not available while no document is being loaded."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedAnnotationType">
<summary>
<para>"The text highlight annotation is not supported in a PDF/A-1 document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedBrushType">
<summary>
<para>"Custom brushes are not supported."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedEncryption">
<summary>
<para>"Encryption is not supported in a PDF/A document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedFileAttachments">
<summary>
<para>"The file attachments are not supported in a PDF/A-2b document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedGraphicsOperation">
<summary>
<para>"This operation is not supported because the PdfGraphics object does not belong to the current document."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedGraphicsUnit">
<summary>
<para>"The Display and World units are not supported for the source image coordinate system."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedStream">
<summary>
<para>"Stream should support the read, write, and seek operations."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedStreamForLoadOperation">
<summary>
<para>"Stream should support the read and seek operations for loading."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgUnsupportedStreamForSaveOperation">
<summary>
<para>"Stream should support the write and seek operations for saving."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgWinOnlyLimitation">
<summary>
<para>"This action can be performed only on Windows operating system."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.MsgZeroColorComponentsCount">
<summary>
<para>"The color should have at least one component."</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.StickyNoteDefaultSubject">
<summary>
<para>"Note"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.TextHighlightDefaultSubject">
<summary>
<para>"Highlight"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.TextStrikethroughDefaultSubject">
<summary>
<para>"Strikethrough"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.TextUnderlineDefaultSubject">
<summary>
<para>"Underline"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.UnitExaBytes">
<summary>
<para>"EB"</para>
</summary>
</member>
<member name="F:DevExpress.Pdf.Localization.PdfCoreStringId.UnitGigaBytes">
<summary>
<para>"GB"</para>
</summary>
</member>