Skip to content

Commit d457570

Browse files
author
yevgen-nykytenko
committed
Update content 2025-02-07 01:38:32
1 parent 6d0a98a commit d457570

27 files changed

Lines changed: 192 additions & 27 deletions

File tree

english/net/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 10
55
url: /net/
66
description: GroupDocs.Conversion for .NET API References contain examples, code snippets, and API documentation. It provides namespaces, classes, interfaces, and other API details.
77
is_root: true
8-
version: "25.1"
8+
version: "25.2"
99
---
1010

1111
## Namespaces

english/net/groupdocs.conversion.options.convert/imageconvertoptions/backgroundcolor/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /net/groupdocs.conversion.options.convert/imageconvertoptions/backgroundcol
1111
Sets background color where supported by the source format
1212

1313
```csharp
14-
public Color BackgroundColor { get; set; }
14+
public Color? BackgroundColor { get; set; }
1515
```
1616

1717
### See Also

english/net/groupdocs.conversion.options.load/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ The namespace provides classes to specify additional options for document loadin
5656
| [VideoLoadOptions](./videoloadoptions) | Options for loading video documents. |
5757
| [WebLoadOptions](./webloadoptions) | Options for loading web documents. |
5858
| [WordProcessingBookmarksOptions](./wordprocessingbookmarksoptions) | Options for handling bookmarks in WordProcessing |
59+
| [WordProcessingCommentDisplay](./wordprocessingcommentdisplay) | Specifies the rendering mode for document comments. |
5960
| [WordProcessingLoadOptions](./wordprocessingloadoptions) | Options for loading WordProcessing documents. |
6061
| [XmlLoadOptions](./xmlloadoptions) | Options for loading XML documents. |
6162
## Interfaces
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: WordProcessingCommentDisplay
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Specifies the rendering mode for document comments.
5+
type: docs
6+
weight: 2590
7+
url: /net/groupdocs.conversion.options.load/wordprocessingcommentdisplay/
8+
---
9+
## WordProcessingCommentDisplay class
10+
11+
Specifies the rendering mode for document comments.
12+
13+
```csharp
14+
public class WordProcessingCommentDisplay : Enumeration
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [WordProcessingCommentDisplay](wordprocessingcommentdisplay)() | Serialization constructor |
22+
23+
## Methods
24+
25+
| Name | Description |
26+
| --- | --- |
27+
| [CompareTo](../../groupdocs.conversion.contracts/enumeration/compareto)(object) | Compares current object to other. |
28+
| virtual [Equals](../../groupdocs.conversion.contracts/enumeration/equals)(Enumeration) | Determines whether two object instances are equal. |
29+
| override [Equals](../../groupdocs.conversion.contracts/enumeration/equals)(object) | Determines whether two object instances are equal. |
30+
| override [GetHashCode](../../groupdocs.conversion.contracts/enumeration/gethashcode)() | Serves as the default hash function. |
31+
| override [ToString](../../groupdocs.conversion.contracts/enumeration/tostring)() | Returns a string that represents the current object. |
32+
33+
## Fields
34+
35+
| Name | Description |
36+
| --- | --- |
37+
| static readonly [Annotation](../../groupdocs.conversion.options.load/wordprocessingcommentdisplay/annotation) | Renders document comments in annotations. This is only available for Pdf format. |
38+
| static readonly [Balloon](../../groupdocs.conversion.options.load/wordprocessingcommentdisplay/balloon) | Renders document comments in balloons in the margin. This is the default value. |
39+
| static readonly [Hidden](../../groupdocs.conversion.options.load/wordprocessingcommentdisplay/hidden) | No document comments are rendered. |
40+
41+
### See Also
42+
43+
* class [Enumeration](../../groupdocs.conversion.contracts/enumeration)
44+
* namespace [GroupDocs.Conversion.Options.Load](../../groupdocs.conversion.options.load)
45+
* assembly [GroupDocs.Conversion](../../)
46+
47+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Annotation
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Renders document comments in annotations. This is only available for Pdf format.
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.conversion.options.load/wordprocessingcommentdisplay/annotation/
8+
---
9+
## WordProcessingCommentDisplay.Annotation field
10+
11+
Renders document comments in annotations. This is only available for Pdf format.
12+
13+
```csharp
14+
public static readonly WordProcessingCommentDisplay Annotation;
15+
```
16+
17+
### See Also
18+
19+
* class [WordProcessingCommentDisplay](../../wordprocessingcommentdisplay)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Balloon
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Renders document comments in balloons in the margin. This is the default value.
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.conversion.options.load/wordprocessingcommentdisplay/balloon/
8+
---
9+
## WordProcessingCommentDisplay.Balloon field
10+
11+
Renders document comments in balloons in the margin. This is the default value.
12+
13+
```csharp
14+
public static readonly WordProcessingCommentDisplay Balloon;
15+
```
16+
17+
### See Also
18+
19+
* class [WordProcessingCommentDisplay](../../wordprocessingcommentdisplay)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Hidden
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: No document comments are rendered.
5+
type: docs
6+
weight: 40
7+
url: /net/groupdocs.conversion.options.load/wordprocessingcommentdisplay/hidden/
8+
---
9+
## WordProcessingCommentDisplay.Hidden field
10+
11+
No document comments are rendered.
12+
13+
```csharp
14+
public static readonly WordProcessingCommentDisplay Hidden;
15+
```
16+
17+
### See Also
18+
19+
* class [WordProcessingCommentDisplay](../../wordprocessingcommentdisplay)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: WordProcessingCommentDisplay
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Serialization constructor
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.conversion.options.load/wordprocessingcommentdisplay/wordprocessingcommentdisplay/
8+
---
9+
## WordProcessingCommentDisplay constructor
10+
11+
Serialization constructor
12+
13+
```csharp
14+
public WordProcessingCommentDisplay()
15+
```
16+
17+
### See Also
18+
19+
* class [WordProcessingCommentDisplay](../../wordprocessingcommentdisplay)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->

english/net/groupdocs.conversion.options.load/wordprocessingloadoptions/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: WordProcessingLoadOptions
33
second_title: GroupDocs.Conversion for .NET API Reference
44
description: Options for loading WordProcessing documents.
55
type: docs
6-
weight: 2590
6+
weight: 2600
77
url: /net/groupdocs.conversion.options.load/wordprocessingloadoptions/
88
---
99
## WordProcessingLoadOptions class
@@ -29,6 +29,7 @@ public class WordProcessingLoadOptions : LoadOptions, IDocumentsContainerLoadOpt
2929
| [BookmarkOptions](../../groupdocs.conversion.options.load/wordprocessingloadoptions/bookmarkoptions) { getset; } | Bookmarks options |
3030
| [ClearBuiltInDocumentProperties](../../groupdocs.conversion.options.load/wordprocessingloadoptions/clearbuiltindocumentproperties) { getset; } | Removes built-in metadata properties from the document. |
3131
| [ClearCustomDocumentProperties](../../groupdocs.conversion.options.load/wordprocessingloadoptions/clearcustomdocumentproperties) { getset; } | Removes custom metadata properties from the document. |
32+
| [CommentDisplayMode](../../groupdocs.conversion.options.load/wordprocessingloadoptions/commentdisplaymode) { getset; } | Specifies how comments should be displayed in the output document. Default is ShowInBalloons. |
3233
| [ConvertOwned](../../groupdocs.conversion.options.load/wordprocessingloadoptions/convertowned) { getset; } | Implements [`ConvertOwned`](../../groupdocs.conversion.contracts/idocumentscontainerloadoptions/convertowned) Default is false |
3334
| [ConvertOwner](../../groupdocs.conversion.options.load/wordprocessingloadoptions/convertowner) { getset; } | Implements [`ConvertOwner`](../../groupdocs.conversion.contracts/idocumentscontainerloadoptions/convertowner) Default is true |
3435
| [DefaultFont](../../groupdocs.conversion.options.load/wordprocessingloadoptions/defaultfont) { getset; } | Default font for Words document. The following font will be used if a font is missing. |
@@ -37,14 +38,14 @@ public class WordProcessingLoadOptions : LoadOptions, IDocumentsContainerLoadOpt
3738
| [FontSubstitutes](../../groupdocs.conversion.options.load/wordprocessingloadoptions/fontsubstitutes) { getset; } | Substitute specific fonts when converting Words document. |
3839
| [Format](../../groupdocs.conversion.options.load/wordprocessingloadoptions/format) { getset; } | Input document file type. |
3940
| virtual [Format](../../groupdocs.conversion.options.load/loadoptions/format) { get; } | Input document file type. |
40-
| [HideComments](../../groupdocs.conversion.options.load/wordprocessingloadoptions/hidecomments) { getset; } | Hide comments. |
4141
| [HideWordTrackedChanges](../../groupdocs.conversion.options.load/wordprocessingloadoptions/hidewordtrackedchanges) { getset; } | Hide markup and track changes for Word documents. |
4242
| [HyphenationOptions](../../groupdocs.conversion.options.load/wordprocessingloadoptions/hyphenationoptions) { getset; } | Set hyphenation options for WordProcessing documents. |
4343
| [KeepDateFieldOriginalValue](../../groupdocs.conversion.options.load/wordprocessingloadoptions/keepdatefieldoriginalvalue) { getset; } | Keep original value of date field. Default: false |
4444
| [PageNumbering](../../groupdocs.conversion.options.load/wordprocessingloadoptions/pagenumbering) { getset; } | Enable or disable generation of page numbering in converted document. Default: false |
4545
| [Password](../../groupdocs.conversion.options.load/wordprocessingloadoptions/password) { getset; } | Set password to unprotect protected document. |
4646
| [PreserveDocumentStructure](../../groupdocs.conversion.options.load/wordprocessingloadoptions/preservedocumentstructure) { getset; } | Determines whether the document structure should be preserved when converting to PDF (default is false). |
4747
| [PreserveFormFields](../../groupdocs.conversion.options.load/wordprocessingloadoptions/preserveformfields) { getset; } | Specifies whether to preserve Microsoft Word form fields as form fields in PDF or convert them to text. Default is false. |
48+
| [ShowFullCommenterName](../../groupdocs.conversion.options.load/wordprocessingloadoptions/showfullcommentername) { getset; } | Show full commenter name in comments. Default is false. |
4849
| [SkipExternalResources](../../groupdocs.conversion.options.load/wordprocessingloadoptions/skipexternalresources) { getset; } | Implements [`SkipExternalResources`](../iresourceloadingoptions/skipexternalresources) |
4950
| [UpdateFields](../../groupdocs.conversion.options.load/wordprocessingloadoptions/updatefields) { getset; } | Update fields after loading. Default: false |
5051
| [UpdatePageLayout](../../groupdocs.conversion.options.load/wordprocessingloadoptions/updatepagelayout) { getset; } | Update page layout after loading. Default: false |
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: CommentDisplayMode
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Specifies how comments should be displayed in the output document. Default is ShowInBalloons.
5+
type: docs
6+
weight: 60
7+
url: /net/groupdocs.conversion.options.load/wordprocessingloadoptions/commentdisplaymode/
8+
---
9+
## WordProcessingLoadOptions.CommentDisplayMode property
10+
11+
Specifies how comments should be displayed in the output document. Default is ShowInBalloons.
12+
13+
```csharp
14+
public WordProcessingCommentDisplay CommentDisplayMode { get; set; }
15+
```
16+
17+
### See Also
18+
19+
* class [WordProcessingCommentDisplay](../../wordprocessingcommentdisplay)
20+
* class [WordProcessingLoadOptions](../../wordprocessingloadoptions)
21+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
22+
* assembly [GroupDocs.Conversion](../../../)
23+
24+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->

0 commit comments

Comments
 (0)