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
raiseValueError("Invalid value for `page_numbering`, must not be `None`") # noqa: E501
93
108
self._page_numbering=page_numbering
109
+
110
+
@property
111
+
defencoding(self):
112
+
"""
113
+
Gets the encoding. # noqa: E501
114
+
115
+
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 # noqa: E501
116
+
117
+
:return: The encoding. # noqa: E501
118
+
:rtype: str
119
+
"""
120
+
returnself._encoding
121
+
122
+
@encoding.setter
123
+
defencoding(self, encoding):
124
+
"""
125
+
Sets the encoding.
126
+
127
+
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 # noqa: E501
128
+
129
+
:param encoding: The encoding. # noqa: E501
130
+
:type: str
131
+
"""
132
+
self._encoding=encoding
133
+
134
+
@property
135
+
defuse_pdf(self):
136
+
"""
137
+
Gets the use_pdf. # noqa: E501
138
+
139
+
Use pdf for the conversion. Default: false # noqa: E501
140
+
141
+
:return: The use_pdf. # noqa: E501
142
+
:rtype: bool
143
+
"""
144
+
returnself._use_pdf
145
+
146
+
@use_pdf.setter
147
+
defuse_pdf(self, use_pdf):
148
+
"""
149
+
Sets the use_pdf.
150
+
151
+
Use pdf for the conversion. Default: false # noqa: E501
152
+
153
+
:param use_pdf: The use_pdf. # noqa: E501
154
+
:type: bool
155
+
"""
156
+
ifuse_pdfisNone:
157
+
raiseValueError("Invalid value for `use_pdf`, must not be `None`") # noqa: E501
158
+
self._use_pdf=use_pdf
159
+
160
+
@property
161
+
defrendering_mode(self):
162
+
"""
163
+
Gets the rendering_mode. # noqa: E501
164
+
165
+
Controls how HTML content is rendered. Default: AbsolutePositioning # noqa: E501
166
+
167
+
:return: The rendering_mode. # noqa: E501
168
+
:rtype: str
169
+
"""
170
+
returnself._rendering_mode
171
+
172
+
@rendering_mode.setter
173
+
defrendering_mode(self, rendering_mode):
174
+
"""
175
+
Sets the rendering_mode.
176
+
177
+
Controls how HTML content is rendered. Default: AbsolutePositioning # noqa: E501
178
+
179
+
:param rendering_mode: The rendering_mode. # noqa: E501
180
+
:type: str
181
+
"""
182
+
ifrendering_modeisNone:
183
+
raiseValueError("Invalid value for `rendering_mode`, must not be `None`") # noqa: E501
0 commit comments