Skip to content

Commit b9101b5

Browse files
committed
Update autoported files
2a0ee3fcd028074a30aceddb3d21660fa981e88f
1 parent 9a117e6 commit b9101b5

File tree

8 files changed

+147
-0
lines changed

8 files changed

+147
-0
lines changed

itext/itext.kernel/itext/kernel/pdf/PageLabelNumberingStyle.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,15 @@ source product.
4343
*/
4444
namespace iText.Kernel.Pdf {
4545
public enum PageLabelNumberingStyle {
46+
/// <summary>1, 2, 3, 4...</summary>
4647
DECIMAL_ARABIC_NUMERALS,
48+
/// <summary>I, II, III, IV...</summary>
4749
UPPERCASE_ROMAN_NUMERALS,
50+
/// <summary>i, ii, iii, iv...</summary>
4851
LOWERCASE_ROMAN_NUMERALS,
52+
/// <summary>A, B, C, D...</summary>
4953
UPPERCASE_LETTERS,
54+
/// <summary>a, b, c, d...</summary>
5055
LOWERCASE_LETTERS
5156
}
5257
}

itext/itext.kernel/itext/kernel/pdf/PdfViewerPreferences.cs

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,25 +47,139 @@ source product.
4747
namespace iText.Kernel.Pdf {
4848
public class PdfViewerPreferences : PdfObjectWrapper<PdfDictionary> {
4949
public enum PdfViewerPreferencesConstants {
50+
/// <summary>
51+
/// PageMode constant for
52+
/// <see cref="PdfName.NonFullScreenPageMode"/>
53+
/// .
54+
/// </summary>
5055
USE_NONE,
56+
/// <summary>
57+
/// PageMode constant for
58+
/// <see cref="PdfName.NonFullScreenPageMode"/>
59+
/// .
60+
/// </summary>
5161
USE_OUTLINES,
62+
/// <summary>
63+
/// PageMode constant for
64+
/// <see cref="PdfName.NonFullScreenPageMode"/>
65+
/// .
66+
/// </summary>
5267
USE_THUMBS,
68+
/// <summary>
69+
/// PageMode constant for
70+
/// <see cref="PdfName.NonFullScreenPageMode"/>
71+
/// .
72+
/// </summary>
5373
USE_OC,
74+
/// <summary>
75+
/// Direction constant for
76+
/// <see cref="PdfName.Direction"/>
77+
/// .
78+
/// </summary>
5479
LEFT_TO_RIGHT,
80+
/// <summary>
81+
/// Direction constant for
82+
/// <see cref="PdfName.Direction"/>
83+
/// .
84+
/// </summary>
5585
RIGHT_TO_LEFT,
86+
/// <summary>
87+
/// PageBoundary constant for
88+
/// <see cref="PdfViewerPreferencesConstants.VIEW_AREA"/>
89+
/// ,
90+
/// <see cref="PdfViewerPreferencesConstants.VIEW_CLIP"/>
91+
/// ,
92+
/// <see cref="PdfViewerPreferencesConstants.PRINT_AREA"/>
93+
/// ,
94+
/// <see cref="PdfViewerPreferencesConstants.PRINT_CLIP"/>
95+
/// .
96+
/// </summary>
5697
MEDIA_BOX,
98+
/// <summary>
99+
/// PageBoundary constant for
100+
/// <see cref="PdfViewerPreferencesConstants.VIEW_AREA"/>
101+
/// ,
102+
/// <see cref="PdfViewerPreferencesConstants.VIEW_CLIP"/>
103+
/// ,
104+
/// <see cref="PdfViewerPreferencesConstants.PRINT_AREA"/>
105+
/// ,
106+
/// <see cref="PdfViewerPreferencesConstants.PRINT_CLIP"/>
107+
/// .
108+
/// </summary>
57109
CROP_BOX,
110+
/// <summary>
111+
/// PageBoundary constant for
112+
/// <see cref="PdfViewerPreferencesConstants.VIEW_AREA"/>
113+
/// ,
114+
/// <see cref="PdfViewerPreferencesConstants.VIEW_CLIP"/>
115+
/// ,
116+
/// <see cref="PdfViewerPreferencesConstants.PRINT_AREA"/>
117+
/// ,
118+
/// <see cref="PdfViewerPreferencesConstants.PRINT_CLIP"/>
119+
/// .
120+
/// </summary>
58121
BLEED_BOX,
122+
/// <summary>
123+
/// PageBoundary constant for
124+
/// <see cref="PdfViewerPreferencesConstants.VIEW_AREA"/>
125+
/// ,
126+
/// <see cref="PdfViewerPreferencesConstants.VIEW_CLIP"/>
127+
/// ,
128+
/// <see cref="PdfViewerPreferencesConstants.PRINT_AREA"/>
129+
/// ,
130+
/// <see cref="PdfViewerPreferencesConstants.PRINT_CLIP"/>
131+
/// .
132+
/// </summary>
59133
TRIM_BOX,
134+
/// <summary>
135+
/// PageBoundary constant for
136+
/// <see cref="PdfViewerPreferencesConstants.VIEW_AREA"/>
137+
/// ,
138+
/// <see cref="PdfViewerPreferencesConstants.VIEW_CLIP"/>
139+
/// ,
140+
/// <see cref="PdfViewerPreferencesConstants.PRINT_AREA"/>
141+
/// ,
142+
/// <see cref="PdfViewerPreferencesConstants.PRINT_CLIP"/>
143+
/// .
144+
/// </summary>
60145
ART_BOX,
146+
/// <summary>ViewArea constant.</summary>
61147
VIEW_AREA,
148+
/// <summary>ViewClip constant.</summary>
62149
VIEW_CLIP,
150+
/// <summary>PrintArea constant.</summary>
63151
PRINT_AREA,
152+
/// <summary>PrintClip constant.</summary>
64153
PRINT_CLIP,
154+
/// <summary>
155+
/// Page scaling option constant for
156+
/// <see cref="PdfName.PrintScaling"/>
157+
/// .
158+
/// </summary>
65159
NONE,
160+
/// <summary>
161+
/// Page scaling option constant for
162+
/// <see cref="PdfName.PrintScaling"/>
163+
/// .
164+
/// </summary>
66165
APP_DEFAULT,
166+
/// <summary>
167+
/// The paper handling option constant for
168+
/// <see cref="PdfName.Duplex"/>
169+
/// .
170+
/// </summary>
67171
SIMPLEX,
172+
/// <summary>
173+
/// The paper handling option constant for
174+
/// <see cref="PdfName.Duplex"/>
175+
/// .
176+
/// </summary>
68177
DUPLEX_FLIP_SHORT_EDGE,
178+
/// <summary>
179+
/// The paper handling option constant for
180+
/// <see cref="PdfName.Duplex"/>
181+
/// .
182+
/// </summary>
69183
DUPLEX_FLIP_LONG_EDGE
70184
}
71185

itext/itext.layout/itext/layout/properties/ListNumberingType.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,13 @@ public enum ListNumberingType {
5151
ENGLISH_UPPER,
5252
GREEK_LOWER,
5353
GREEK_UPPER,
54+
/// <summary>Zapfdingbats font characters in range [172; 181]</summary>
5455
ZAPF_DINGBATS_1,
56+
/// <summary>Zapfdingbats font characters in range [182; 191]</summary>
5557
ZAPF_DINGBATS_2,
58+
/// <summary>Zapfdingbats font characters in range [192; 201]</summary>
5659
ZAPF_DINGBATS_3,
60+
/// <summary>Zapfdingbats font characters in range [202; 221]</summary>
5761
ZAPF_DINGBATS_4
5862
}
5963
}

itext/itext.sign/itext/signatures/LtvVerification.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,21 @@ public class LtvVerification {
7777

7878
/// <summary>What type of verification to include.</summary>
7979
public enum Level {
80+
/// <summary>Include only OCSP.</summary>
8081
OCSP,
82+
/// <summary>Include only CRL.</summary>
8183
CRL,
84+
/// <summary>Include both OCSP and CRL.</summary>
8285
OCSP_CRL,
86+
/// <summary>Include CRL only if OCSP can't be read.</summary>
8387
OCSP_OPTIONAL_CRL
8488
}
8589

8690
/// <summary>Options for how many certificates to include.</summary>
8791
public enum CertificateOption {
92+
/// <summary>Include verification just for the signing certificate.</summary>
8893
SIGNING_CERTIFICATE,
94+
/// <summary>Include verification for the whole chain of certificates.</summary>
8995
WHOLE_CHAIN
9096
}
9197

@@ -94,7 +100,9 @@ public enum CertificateOption {
94100
/// keys.
95101
/// </summary>
96102
public enum CertificateInclusion {
103+
/// <summary>Include certificates in the DSS and VRI dictionaries.</summary>
97104
YES,
105+
/// <summary>Do not include certificates in the DSS and VRI dictionaries.</summary>
98106
NO
99107
}
100108

itext/itext.sign/itext/signatures/PdfSignatureAppearance.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -760,9 +760,13 @@ private void ApplyCopyFittingFontSize(Paragraph paragraph, Rectangle rect, IRend
760760

761761
/// <summary>Signature rendering modes.</summary>
762762
public enum RenderingMode {
763+
/// <summary>The rendering mode is just the description.</summary>
763764
DESCRIPTION,
765+
/// <summary>The rendering mode is the name of the signer and the description.</summary>
764766
NAME_AND_DESCRIPTION,
767+
/// <summary>The rendering mode is an image and the description.</summary>
765768
GRAPHIC_AND_DESCRIPTION,
769+
/// <summary>The rendering mode is just an image.</summary>
766770
GRAPHIC
767771
}
768772
}

itext/itext.sign/itext/signatures/PdfSigner.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ public class PdfSigner {
6565
/// <summary>Enum containing the Cryptographic Standards.</summary>
6666
/// <remarks>Enum containing the Cryptographic Standards. Possible values are "CMS" and "CADES".</remarks>
6767
public enum CryptoStandard {
68+
/// <summary>Cryptographic Message Syntax.</summary>
6869
CMS,
70+
/// <summary>CMS Advanced Electronic Signatures.</summary>
6971
CADES
7072
}
7173

itext/itext.styledxmlparser/itext/styledxmlparser/css/parse/CssDeclarationValueTokenizer.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,13 @@ public override String ToString() {
276276

277277
/// <summary>Enumeration of the different token types.</summary>
278278
public enum TokenType {
279+
/// <summary>The string type.</summary>
279280
STRING,
281+
/// <summary>The function type.</summary>
280282
FUNCTION,
283+
/// <summary>The comma type.</summary>
281284
COMMA,
285+
/// <summary>Unknown type.</summary>
282286
UNKNOWN
283287
}
284288
}

itext/itext.svg/itext/svg/processors/impl/font/FontFace.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,17 @@ private FontFaceSrc(String src, bool isLocal, FontFace.FontFormat format) {
301301
/// <summary>The Enum FontFormat.</summary>
302302
internal enum FontFormat {
303303
None,
304+
/// <summary>"truetype"</summary>
304305
TrueType,
306+
/// <summary>"opentype"</summary>
305307
OpenType,
308+
/// <summary>"woff"</summary>
306309
WOFF,
310+
/// <summary>"woff2"</summary>
307311
WOFF2,
312+
/// <summary>"embedded-opentype"</summary>
308313
EOT,
314+
/// <summary>"svg"</summary>
309315
SVG
310316
}
311317
//endregion

0 commit comments

Comments
 (0)