@@ -29,14 +29,14 @@ Options for conversion to Pdf file type.
2929| [ setDpi(int value)] ( #setDpi-int- ) | Desired page DPI after conversion. |
3030| [ getPassword()] ( #getPassword-- ) | Set this property if you want to protect the converted document with a password. |
3131| [ setPassword(String value)] ( #setPassword-java.lang.String- ) | Set this property if you want to protect the converted document with a password. |
32- | [ getMarginTop()] ( #getMarginTop-- ) | Desired page top margin in pixels after conversion. |
33- | [ setMarginTop(int value)] ( #setMarginTop-int - ) | Desired page top margin in pixels after conversion. |
34- | [ getMarginBottom()] ( #getMarginBottom-- ) | Desired page bottom margin in pixels after conversion. |
35- | [ setMarginBottom(int value)] ( #setMarginBottom-int - ) | Desired page bottom margin in pixels after conversion. |
36- | [ getMarginLeft()] ( #getMarginLeft-- ) | Desired page left margin in pixels after conversion. |
37- | [ setMarginLeft(int value)] ( #setMarginLeft-int - ) | Desired page left margin in pixels after conversion. |
38- | [ getMarginRight()] ( #getMarginRight-- ) | Desired page right margin in pixels after conversion. |
39- | [ setMarginRight(int value)] ( #setMarginRight-int - ) | Desired page right margin in pixels after conversion. |
32+ | [ getMarginTop()] ( #getMarginTop-- ) | Desired page top margin in points after conversion. |
33+ | [ setMarginTop(float value)] ( #setMarginTop-float - ) | Desired page top margin in points after conversion. |
34+ | [ getMarginBottom()] ( #getMarginBottom-- ) | Desired page bottom margin in points after conversion. |
35+ | [ setMarginBottom(float value)] ( #setMarginBottom-float - ) | Desired page bottom margin in points after conversion. |
36+ | [ getMarginLeft()] ( #getMarginLeft-- ) | Desired page left margin in points after conversion. |
37+ | [ setMarginLeft(float value)] ( #setMarginLeft-float - ) | Desired page left margin in points after conversion. |
38+ | [ getMarginRight()] ( #getMarginRight-- ) | Desired page right margin in points after conversion. |
39+ | [ setMarginRight(float value)] ( #setMarginRight-float - ) | Desired page right margin in points after conversion. |
4040| [ getPdfOptions()] ( #getPdfOptions-- ) | Pdf specific convert options |
4141| [ setPdfOptions(PdfOptions value)] ( #setPdfOptions-com.groupdocs.conversion.options.convert.PdfOptions- ) | Pdf specific convert options |
4242| [ getRotate()] ( #getRotate-- ) | Page rotation |
@@ -105,95 +105,95 @@ Set this property if you want to protect the converted document with a password.
105105
106106### getMarginTop() {#getMarginTop--}
107107```
108- public final int getMarginTop()
108+ public final float getMarginTop()
109109```
110110
111111
112- Desired page top margin in pixels after conversion.
112+ Desired page top margin in points after conversion.
113113
114114** Returns:**
115- int
116- ### setMarginTop(int value) {#setMarginTop-int -}
115+ float
116+ ### setMarginTop(float value) {#setMarginTop-float -}
117117```
118- public final void setMarginTop(int value)
118+ public final void setMarginTop(float value)
119119```
120120
121121
122- Desired page top margin in pixels after conversion.
122+ Desired page top margin in points after conversion.
123123
124124** Parameters:**
125125| Parameter | Type | Description |
126126| --- | --- | --- |
127- | value | int | |
127+ | value | float | |
128128
129129### getMarginBottom() {#getMarginBottom--}
130130```
131- public final int getMarginBottom()
131+ public final float getMarginBottom()
132132```
133133
134134
135- Desired page bottom margin in pixels after conversion.
135+ Desired page bottom margin in points after conversion.
136136
137137** Returns:**
138- int
139- ### setMarginBottom(int value) {#setMarginBottom-int -}
138+ float
139+ ### setMarginBottom(float value) {#setMarginBottom-float -}
140140```
141- public final void setMarginBottom(int value)
141+ public final void setMarginBottom(float value)
142142```
143143
144144
145- Desired page bottom margin in pixels after conversion.
145+ Desired page bottom margin in points after conversion.
146146
147147** Parameters:**
148148| Parameter | Type | Description |
149149| --- | --- | --- |
150- | value | int | |
150+ | value | float | |
151151
152152### getMarginLeft() {#getMarginLeft--}
153153```
154- public final int getMarginLeft()
154+ public final float getMarginLeft()
155155```
156156
157157
158- Desired page left margin in pixels after conversion.
158+ Desired page left margin in points after conversion.
159159
160160** Returns:**
161- int
162- ### setMarginLeft(int value) {#setMarginLeft-int -}
161+ float
162+ ### setMarginLeft(float value) {#setMarginLeft-float -}
163163```
164- public final void setMarginLeft(int value)
164+ public final void setMarginLeft(float value)
165165```
166166
167167
168- Desired page left margin in pixels after conversion.
168+ Desired page left margin in points after conversion.
169169
170170** Parameters:**
171171| Parameter | Type | Description |
172172| --- | --- | --- |
173- | value | int | |
173+ | value | float | |
174174
175175### getMarginRight() {#getMarginRight--}
176176```
177- public final int getMarginRight()
177+ public final float getMarginRight()
178178```
179179
180180
181- Desired page right margin in pixels after conversion.
181+ Desired page right margin in points after conversion.
182182
183183** Returns:**
184- int
185- ### setMarginRight(int value) {#setMarginRight-int -}
184+ float
185+ ### setMarginRight(float value) {#setMarginRight-float -}
186186```
187- public final void setMarginRight(int value)
187+ public final void setMarginRight(float value)
188188```
189189
190190
191- Desired page right margin in pixels after conversion.
191+ Desired page right margin in points after conversion.
192192
193193** Parameters:**
194194| Parameter | Type | Description |
195195| --- | --- | --- |
196- | value | int | |
196+ | value | float | |
197197
198198### getPdfOptions() {#getPdfOptions--}
199199```
0 commit comments