File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed
itext/itext.kernel/itext/kernel/pdf Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -44,24 +44,31 @@ source product.
44
44
using iText . Commons . Actions . Contexts ;
45
45
46
46
namespace iText . Kernel . Pdf {
47
+ /// <summary>
48
+ /// Class with additional properties for
49
+ /// <see cref="PdfDocument"/>
50
+ /// processing.
51
+ /// </summary>
52
+ /// <remarks>
53
+ /// Class with additional properties for
54
+ /// <see cref="PdfDocument"/>
55
+ /// processing.
56
+ /// Needs to be passed at document initialization.
57
+ /// </remarks>
47
58
public class DocumentProperties {
48
59
protected internal IMetaInfo metaInfo = null ;
49
60
61
+ /// <summary>Default constructor, use provided setters for configuration options.</summary>
50
62
public DocumentProperties ( ) {
51
63
}
52
64
65
+ /// <summary>Creates a copy of class instance.</summary>
66
+ /// <param name="other">the base for new class instance</param>
53
67
public DocumentProperties ( iText . Kernel . Pdf . DocumentProperties other ) {
54
68
this . metaInfo = other . metaInfo ;
55
69
}
56
70
57
71
/// <summary>Sets document meta info.</summary>
58
- /// <remarks>
59
- /// Sets document meta info. This meta info will be passed to the
60
- /// <see cref="com.itextpdf.kernel.counter.EventCounter"/>
61
- /// with
62
- /// <see cref="com.itextpdf.kernel.counter.event.CoreEvent"/>
63
- /// and can be used to determine event origin.
64
- /// </remarks>
65
72
/// <param name="metaInfo">meta info to set</param>
66
73
/// <returns>
67
74
/// this
Original file line number Diff line number Diff line change 1
- a221d31ae5f9bf8588a62b807d32882d2c2d7059
1
+ b698c88ae73deeb8bd4acd055698ebefa17f27a0
You can’t perform that action at this time.
0 commit comments