Skip to content

Commit b9bc8e8

Browse files
Merge branch 'production' of https://github.com/groupdocs/reference.groupdocs.com into production
2 parents 653e68d + 252b682 commit b9bc8e8

File tree

3 files changed

+125
-25
lines changed
  • content/sites/groupdocs/conversion/english/java
    • com.groupdocs.conversion.options.convert/wordprocessingconvertoptions
    • com.groupdocs.conversion.options.load

3 files changed

+125
-25
lines changed

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.options.convert/wordprocessingconvertoptions/_index.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ Options for conversion to WordProcessing file type.
5151
| [setPageHeight(float pageHeight)](#setPageHeight-float-) | |
5252
| [getPdfRecognitionMode()](#getPdfRecognitionMode--) | |
5353
| [setPdfRecognitionMode(PdfRecognitionMode pdfRecognitionMode)](#setPdfRecognitionMode-com.groupdocs.conversion.options.convert.PdfRecognitionMode-) | |
54+
| [getMarkdownOptions()](#getMarkdownOptions--) | Gets |
55+
| [setMarkdownOptions(MarkdownOptions markdownOptions)](#setMarkdownOptions-com.groupdocs.conversion.options.convert.MarkdownOptions-) | Sets |
5456
### WordProcessingConvertOptions() {#WordProcessingConvertOptions--}
5557
```
5658
public WordProcessingConvertOptions()
@@ -358,3 +360,26 @@ Sets recognition mode when converting from pdf
358360
| --- | --- | --- |
359361
| pdfRecognitionMode | [PdfRecognitionMode](../../com.groupdocs.conversion.options.convert/pdfrecognitionmode) | |
360362

363+
### getMarkdownOptions() {#getMarkdownOptions--}
364+
```
365+
public MarkdownOptions getMarkdownOptions()
366+
```
367+
368+
369+
Gets
370+
371+
**Returns:**
372+
[MarkdownOptions](../../com.groupdocs.conversion.options.convert/markdownoptions)
373+
### setMarkdownOptions(MarkdownOptions markdownOptions) {#setMarkdownOptions-com.groupdocs.conversion.options.convert.MarkdownOptions-}
374+
```
375+
public void setMarkdownOptions(MarkdownOptions markdownOptions)
376+
```
377+
378+
379+
Sets
380+
381+
**Parameters:**
382+
| Parameter | Type | Description |
383+
| --- | --- | --- |
384+
| markdownOptions | [MarkdownOptions](../../com.groupdocs.conversion.options.convert/markdownoptions) | |
385+

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.options.load/emailloadoptions/_index.md

Lines changed: 75 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ Options for loading Email documents.
3030
| [setDisplayHeader(boolean value)](#setDisplayHeader-boolean-) | Option to display or hide the email header. |
3131
| [getDisplayFromEmailAddress()](#getDisplayFromEmailAddress--) | Option to display or hide "from" email address. |
3232
| [setDisplayFromEmailAddress(boolean value)](#setDisplayFromEmailAddress-boolean-) | Option to display or hide "from" email address. |
33-
| [getDisplayEmailAddress()](#getDisplayEmailAddress--) | Option to display or hide email address. |
34-
| [setDisplayEmailAddress(boolean value)](#setDisplayEmailAddress-boolean-) | Option to display or hide email address. |
3533
| [getDisplayToEmailAddress()](#getDisplayToEmailAddress--) | Option to display or hide "to" email address. |
3634
| [setDisplayToEmailAddress(boolean value)](#setDisplayToEmailAddress-boolean-) | Option to display or hide "to" email address. |
3735
| [getDisplayCcEmailAddress()](#getDisplayCcEmailAddress--) | Option to display or hide "Cc" email address. |
@@ -54,6 +52,12 @@ Options for loading Email documents.
5452
| [setConvertOwned(boolean convertOwned)](#setConvertOwned-boolean-) | |
5553
| [getDepth()](#getDepth--) | |
5654
| [setDepth(int depth)](#setDepth-int-) | |
55+
| [isDisplayAttachments()](#isDisplayAttachments--) | Gets option to display or hide attachments in the header. |
56+
| [setDisplayAttachments(boolean displayAttachments)](#setDisplayAttachments-boolean-) | Sets option to display or hide attachments in the header. |
57+
| [isDisplaySubject()](#isDisplaySubject--) | Gets option to display or hide subject in the header. |
58+
| [setDisplaySubject(boolean displaySubject)](#setDisplaySubject-boolean-) | Sets option to display or hide subject in the header |
59+
| [isDisplaySent()](#isDisplaySent--) | Gets option to display or hide sent date/time in the header. |
60+
| [setDisplaySent(boolean displaySent)](#setDisplaySent-boolean-) | Sets option to display or hide sent date/time in the header. |
5761
### EmailLoadOptions() {#EmailLoadOptions--}
5862
```
5963
public EmailLoadOptions()
@@ -118,29 +122,6 @@ Option to display or hide "from" email address. Default: true.
118122
| --- | --- | --- |
119123
| value | boolean | |
120124

121-
### getDisplayEmailAddress() {#getDisplayEmailAddress--}
122-
```
123-
public final boolean getDisplayEmailAddress()
124-
```
125-
126-
127-
Option to display or hide email address. Default: true.
128-
129-
**Returns:**
130-
boolean
131-
### setDisplayEmailAddress(boolean value) {#setDisplayEmailAddress-boolean-}
132-
```
133-
public final void setDisplayEmailAddress(boolean value)
134-
```
135-
136-
137-
Option to display or hide email address. Default: true.
138-
139-
**Parameters:**
140-
| Parameter | Type | Description |
141-
| --- | --- | --- |
142-
| value | boolean | |
143-
144125
### getDisplayToEmailAddress() {#getDisplayToEmailAddress--}
145126
```
146127
public final boolean getDisplayToEmailAddress()
@@ -391,3 +372,72 @@ public void setDepth(int depth)
391372
| --- | --- | --- |
392373
| depth | int | |
393374

375+
### isDisplayAttachments() {#isDisplayAttachments--}
376+
```
377+
public boolean isDisplayAttachments()
378+
```
379+
380+
381+
Gets option to display or hide attachments in the header. Default: true.
382+
383+
**Returns:**
384+
boolean
385+
### setDisplayAttachments(boolean displayAttachments) {#setDisplayAttachments-boolean-}
386+
```
387+
public void setDisplayAttachments(boolean displayAttachments)
388+
```
389+
390+
391+
Sets option to display or hide attachments in the header.
392+
393+
**Parameters:**
394+
| Parameter | Type | Description |
395+
| --- | --- | --- |
396+
| displayAttachments | boolean | |
397+
398+
### isDisplaySubject() {#isDisplaySubject--}
399+
```
400+
public boolean isDisplaySubject()
401+
```
402+
403+
404+
Gets option to display or hide subject in the header. Default: true.
405+
406+
**Returns:**
407+
boolean
408+
### setDisplaySubject(boolean displaySubject) {#setDisplaySubject-boolean-}
409+
```
410+
public void setDisplaySubject(boolean displaySubject)
411+
```
412+
413+
414+
Sets option to display or hide subject in the header
415+
416+
**Parameters:**
417+
| Parameter | Type | Description |
418+
| --- | --- | --- |
419+
| displaySubject | boolean | |
420+
421+
### isDisplaySent() {#isDisplaySent--}
422+
```
423+
public boolean isDisplaySent()
424+
```
425+
426+
427+
Gets option to display or hide sent date/time in the header. Default: true.
428+
429+
**Returns:**
430+
boolean
431+
### setDisplaySent(boolean displaySent) {#setDisplaySent-boolean-}
432+
```
433+
public void setDisplaySent(boolean displaySent)
434+
```
435+
436+
437+
Sets option to display or hide sent date/time in the header.
438+
439+
**Parameters:**
440+
| Parameter | Type | Description |
441+
| --- | --- | --- |
442+
| displaySent | boolean | |
443+

content/sites/groupdocs/conversion/english/java/com.groupdocs.conversion.options.load/wordprocessingloadoptions/_index.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ Options for loading WordProcessing documents.
6363
| [setShowFullCommenterName(boolean showFullCommenterName)](#setShowFullCommenterName-boolean-) | |
6464
| [isPageNumbering()](#isPageNumbering--) | Enable or disable generation of page numbering in converted document. |
6565
| [setPageNumbering(boolean isPageNumbering)](#setPageNumbering-boolean-) | |
66+
| [getHyphenationOptions()](#getHyphenationOptions--) | Gets hyphenation options for WordProcessing documents. |
67+
| [setHyphenationOptions(HyphenationOptions hyphenationOptions)](#setHyphenationOptions-com.groupdocs.conversion.options.load.HyphenationOptions-) | Sets hyphenation options for WordProcessing documents. |
6668
### WordProcessingLoadOptions() {#WordProcessingLoadOptions--}
6769
```
6870
public WordProcessingLoadOptions()
@@ -508,3 +510,26 @@ public void setPageNumbering(boolean isPageNumbering)
508510
| --- | --- | --- |
509511
| isPageNumbering | boolean | |
510512

513+
### getHyphenationOptions() {#getHyphenationOptions--}
514+
```
515+
public HyphenationOptions getHyphenationOptions()
516+
```
517+
518+
519+
Gets hyphenation options for WordProcessing documents.
520+
521+
**Returns:**
522+
[HyphenationOptions](../../com.groupdocs.conversion.options.load/hyphenationoptions)
523+
### setHyphenationOptions(HyphenationOptions hyphenationOptions) {#setHyphenationOptions-com.groupdocs.conversion.options.load.HyphenationOptions-}
524+
```
525+
public void setHyphenationOptions(HyphenationOptions hyphenationOptions)
526+
```
527+
528+
529+
Sets hyphenation options for WordProcessing documents.
530+
531+
**Parameters:**
532+
| Parameter | Type | Description |
533+
| --- | --- | --- |
534+
| hyphenationOptions | [HyphenationOptions](../../com.groupdocs.conversion.options.load/hyphenationoptions) | |
535+

0 commit comments

Comments
 (0)