You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -64,6 +120,60 @@ public void setPageNumbering(Boolean pageNumbering) {
64
120
this.pageNumbering = pageNumbering;
65
121
}
66
122
123
+
publicWebLoadOptionsencoding(Stringencoding) {
124
+
this.encoding = encoding;
125
+
returnthis;
126
+
}
127
+
128
+
/**
129
+
* Get or sets the encoding to be used when loading the web document. If the property is null the encoding will be determined from document character set attribute
130
+
* @return encoding
131
+
**/
132
+
@ApiModelProperty(value = "Get or sets the encoding to be used when loading the web document. If the property is null the encoding will be determined from document character set attribute")
133
+
publicStringgetEncoding() {
134
+
returnencoding;
135
+
}
136
+
137
+
publicvoidsetEncoding(Stringencoding) {
138
+
this.encoding = encoding;
139
+
}
140
+
141
+
publicWebLoadOptionsusePdf(BooleanusePdf) {
142
+
this.usePdf = usePdf;
143
+
returnthis;
144
+
}
145
+
146
+
/**
147
+
* Use pdf for the conversion. Default: false
148
+
* @return usePdf
149
+
**/
150
+
@ApiModelProperty(required = true, value = "Use pdf for the conversion. Default: false")
0 commit comments