Skip to content

Commit 2b0352a

Browse files
Update file(s) "/." from "groupdocs-comparison/Groupdocs.Comparison-References"
1 parent 4b34547 commit 2b0352a

File tree

2 files changed

+150
-0
lines changed
  • content/sites/groupdocs/comparison/english/java
    • com.groupdocs.comparison.options.style/stylesettings
    • com.groupdocs.comparison.options/compareoptions

2 files changed

+150
-0
lines changed

content/sites/groupdocs/comparison/english/java/com.groupdocs.comparison.options.style/stylesettings/_index.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ Example usage:
4646
| --- | --- |
4747
| [getFontColor()](#getFontColor--) | Gets the font color. |
4848
| [setFontColor(Color value)](#setFontColor-java.awt.Color-) | Sets the font color. |
49+
| [getShapeColor()](#getShapeColor--) | Gets the shape color. |
50+
| [setShapeColor(Color value)](#setShapeColor-java.awt.Color-) | Sets the shape color. |
4951
| [getHighlightColor()](#getHighlightColor--) | Gets the highlight color. |
5052
| [setHighlightColor(Color value)](#setHighlightColor-java.awt.Color-) | Sets the highlight color. |
5153
| [isBold()](#isBold--) | Gets a flag that indicates whether the text will be bold or not. |
@@ -95,6 +97,29 @@ Sets the font color.
9597
| --- | --- | --- |
9698
| value | java.awt.Color | The new font color. |
9799

100+
### getShapeColor() {#getShapeColor--}
101+
```
102+
public final Color getShapeColor()
103+
```
104+
105+
106+
Gets the shape color.
107+
108+
**Returns:**
109+
java.awt.Color - the shape color.
110+
### setShapeColor(Color value) {#setShapeColor-java.awt.Color-}
111+
```
112+
public final void setShapeColor(Color value)
113+
```
114+
115+
116+
Sets the shape color.
117+
118+
**Parameters:**
119+
| Parameter | Type | Description |
120+
| --- | --- | --- |
121+
| value | java.awt.Color | The new shape color. |
122+
98123
### getHighlightColor() {#getHighlightColor--}
99124
```
100125
public final Color getHighlightColor()

content/sites/groupdocs/comparison/english/java/com.groupdocs.comparison.options/compareoptions/_index.md

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,17 @@ Example usage:
3939
| --- | --- |
4040
| [CompareOptions()](#CompareOptions--) | Initializes a new instance of the CompareOptions class. |
4141
| [CompareOptions(StyleSettings insertedItemStyle, StyleSettings deletedItemStyle, StyleSettings changedItemStyle)](#CompareOptions-com.groupdocs.comparison.options.style.StyleSettings-com.groupdocs.comparison.options.style.StyleSettings-com.groupdocs.comparison.options.style.StyleSettings-) | Initializes a new instance of the CompareOptions class with settings for different styles. |
42+
## Fields
43+
44+
| Field | Description |
45+
| --- | --- |
46+
| [ignoreChangeSettings](#ignoreChangeSettings) | |
4247
## Methods
4348

4449
| Method | Description |
4550
| --- | --- |
51+
| [getIgnoreChangeSettings()](#getIgnoreChangeSettings--) | Get settings to ignore changes based on similarity. |
52+
| [setIgnoreChangeSettings(IgnoreChangeSensitivitySettings ignoreChangeSettings)](#setIgnoreChangeSettings-com.groupdocs.comparison.options.IgnoreChangeSensitivitySettings-) | Sets settings to ignore changes based on similarity. |
4653
| [getUserMasterPath()](#getUserMasterPath--) | Gets the path to the user master's template for Diagrams. |
4754
| [setUserMasterPath(String userMasterPath)](#setUserMasterPath-java.lang.String-) | Sets the path to the user master's template for Diagrams. |
4855
| [getRevisionAuthorName()](#getRevisionAuthorName--) | Gets or sets revision author name. |
@@ -85,6 +92,10 @@ Example usage:
8592
| [setChangedItemStyle(StyleSettings value)](#setChangedItemStyle-com.groupdocs.comparison.options.style.StyleSettings-) | Sets a style settings that will be applied to changed items. |
8693
| [getMarkLineBreaks()](#getMarkLineBreaks--) | Get a value indicating whether to mark line breaks. |
8794
| [setMarkLineBreaks(boolean value)](#setMarkLineBreaks-boolean-) | Set a value indicating whether to mark line breaks. |
95+
| [isCompareImagesPdf()](#isCompareImagesPdf--) | Get a value indicating whether to compare images. |
96+
| [setCompareImagesPdf(boolean compareImagesPdf)](#setCompareImagesPdf-boolean-) | Set a value indicating whether to compare images. |
97+
| [getImagesInheritanceMode()](#getImagesInheritanceMode--) | Get a value indicating whether images inheritance mode |
98+
| [setImagesInheritanceMode(ImagesInheritance imagesInheritanceMode)](#setImagesInheritanceMode-com.groupdocs.comparison.options.enums.ImagesInheritance-) | Set a value indicating whether to images inheritance mode. |
8899
| [isCompareBookmarks()](#isCompareBookmarks--) | Gets a flag that indicates whether bookmarks in Word documents will be compared. |
89100
| [setCompareBookmarks(boolean value)](#setCompareBookmarks-boolean-) | Sets a flag that indicates whether bookmarks in Word documents should be compared. |
90101
| [isCompareVariableProperty()](#isCompareVariableProperty--) | Gets a flag that indicates whether variables properties in Word documents will be compared. |
@@ -93,6 +104,8 @@ Example usage:
93104
| [setCompareDocumentProperty(boolean value)](#setCompareDocumentProperty-boolean-) | Sets a flag that indicates whether built and custom properties in Word documents should be compared. |
94105
| [getSensitivityOfComparison()](#getSensitivityOfComparison--) | Gets a sensitivity of comparison. |
95106
| [setSensitivityOfComparison(int value)](#setSensitivityOfComparison-int-) | Sets a sensitivity of comparison. |
107+
| [setSensitivityOfComparisonForTables(Integer value)](#setSensitivityOfComparisonForTables-java.lang.Integer-) | Sets a sensitivity of comparison for tables. |
108+
| [getSensitivityOfComparisonForTables()](#getSensitivityOfComparisonForTables--) | Get a sensitivity of comparison for tables. |
96109
| [setWordsSeparatorChars(char[] value)](#setWordsSeparatorChars-char---) | Sets an array of delimiters which will be used to split text into words. |
97110
| [getPasswordSaveOption()](#getPasswordSaveOption--) | Gets a password save option represented by [PasswordSaveOption](../../com.groupdocs.comparison.options.enums/passwordsaveoption) object. |
98111
| [setPasswordSaveOption(PasswordSaveOption value)](#setPasswordSaveOption-com.groupdocs.comparison.options.enums.PasswordSaveOption-) | Sets a password save option represented by [PasswordSaveOption](../../com.groupdocs.comparison.options.enums/passwordsaveoption) object. |
@@ -133,6 +146,35 @@ Initializes a new instance of the CompareOptions class with settings for differe
133146
| deletedItemStyle | [StyleSettings](../../com.groupdocs.comparison.options.style/stylesettings) | Style settings for deleted items |
134147
| changedItemStyle | [StyleSettings](../../com.groupdocs.comparison.options.style/stylesettings) | Style settings for changed style items |
135148

149+
### ignoreChangeSettings {#ignoreChangeSettings}
150+
```
151+
public IgnoreChangeSensitivitySettings ignoreChangeSettings
152+
```
153+
154+
155+
### getIgnoreChangeSettings() {#getIgnoreChangeSettings--}
156+
```
157+
public IgnoreChangeSensitivitySettings getIgnoreChangeSettings()
158+
```
159+
160+
161+
Get settings to ignore changes based on similarity.
162+
163+
**Returns:**
164+
com.groupdocs.comparison.options.IgnoreChangeSensitivitySettings - Settings to ignore changes.
165+
### setIgnoreChangeSettings(IgnoreChangeSensitivitySettings ignoreChangeSettings) {#setIgnoreChangeSettings-com.groupdocs.comparison.options.IgnoreChangeSensitivitySettings-}
166+
```
167+
public void setIgnoreChangeSettings(IgnoreChangeSensitivitySettings ignoreChangeSettings)
168+
```
169+
170+
171+
Sets settings to ignore changes based on similarity.
172+
173+
**Parameters:**
174+
| Parameter | Type | Description |
175+
| --- | --- | --- |
176+
| ignoreChangeSettings | com.groupdocs.comparison.options.IgnoreChangeSensitivitySettings | Settings to ignore changes. |
177+
136178
### getUserMasterPath() {#getUserMasterPath--}
137179
```
138180
public String getUserMasterPath()
@@ -628,6 +670,52 @@ Set a value indicating whether to mark line breaks.
628670
| --- | --- | --- |
629671
| value | boolean | Style settings of changed items |
630672

673+
### isCompareImagesPdf() {#isCompareImagesPdf--}
674+
```
675+
public boolean isCompareImagesPdf()
676+
```
677+
678+
679+
Get a value indicating whether to compare images.
680+
681+
**Returns:**
682+
boolean - compare images
683+
### setCompareImagesPdf(boolean compareImagesPdf) {#setCompareImagesPdf-boolean-}
684+
```
685+
public void setCompareImagesPdf(boolean compareImagesPdf)
686+
```
687+
688+
689+
Set a value indicating whether to compare images.
690+
691+
**Parameters:**
692+
| Parameter | Type | Description |
693+
| --- | --- | --- |
694+
| compareImagesPdf | boolean | Compare images |
695+
696+
### getImagesInheritanceMode() {#getImagesInheritanceMode--}
697+
```
698+
public ImagesInheritance getImagesInheritanceMode()
699+
```
700+
701+
702+
Get a value indicating whether images inheritance mode
703+
704+
**Returns:**
705+
com.groupdocs.comparison.options.enums.ImagesInheritance - compare images
706+
### setImagesInheritanceMode(ImagesInheritance imagesInheritanceMode) {#setImagesInheritanceMode-com.groupdocs.comparison.options.enums.ImagesInheritance-}
707+
```
708+
public void setImagesInheritanceMode(ImagesInheritance imagesInheritanceMode)
709+
```
710+
711+
712+
Set a value indicating whether to images inheritance mode.
713+
714+
**Parameters:**
715+
| Parameter | Type | Description |
716+
| --- | --- | --- |
717+
| imagesInheritanceMode | com.groupdocs.comparison.options.enums.ImagesInheritance | Images inheritance mode |
718+
631719
### isCompareBookmarks() {#isCompareBookmarks--}
632720
```
633721
public boolean isCompareBookmarks()
@@ -734,6 +822,43 @@ The percentage of deleted and inserted elements of two compared objects in relat
734822
| --- | --- | --- |
735823
| value | int | The sensitivity of comparison |
736824

825+
### setSensitivityOfComparisonForTables(Integer value) {#setSensitivityOfComparisonForTables-java.lang.Integer-}
826+
```
827+
public void setSensitivityOfComparisonForTables(Integer value)
828+
```
829+
830+
831+
Sets a sensitivity of comparison for tables.
832+
833+
If the value is null, SensitivityOfComparison is used instead. The percentage of deleted and inserted elements of two compared objects in relation to all elements of these objects.
834+
835+
* if this percentage if exceeded, the object aren't compared but are considered completely inserted and deleted.
836+
* Min value - 0% => The comparison doesn't occur for any length of the common subsequence of two compared object.
837+
* Default value - 75% => Comparison occurs, if the percentage of deleted and inserted elements of two compared object with respect to all elements of these objects isn't more then 75.
838+
* Max value - 100% => The comparison occurs at any length of the common subsequence of two compared objects.
839+
840+
**Parameters:**
841+
| Parameter | Type | Description |
842+
| --- | --- | --- |
843+
| value | java.lang.Integer | The sensitivity of comparison for tables |
844+
845+
### getSensitivityOfComparisonForTables() {#getSensitivityOfComparisonForTables--}
846+
```
847+
public final Integer getSensitivityOfComparisonForTables()
848+
```
849+
850+
851+
Get a sensitivity of comparison for tables.
852+
853+
If the value is null, SensitivityOfComparison is used instead. The percentage of deleted and inserted elements of two compared objects in relation to all elements of these objects.
854+
855+
* if this percentage if exceeded, the object aren't compared but are considered completely inserted and deleted.
856+
* Min value - 0% => The comparison doesn't occur for any length of the common subsequence of two compared object.
857+
* Default value - 75% => Comparison occurs, if the percentage of deleted and inserted elements of two compared object with respect to all elements of these objects isn't more then 75.
858+
* Max value - 100% => The comparison occurs at any length of the common subsequence of two compared objects.
859+
860+
**Returns:**
861+
java.lang.Integer - The sensitivity of comparison for tables
737862
### setWordsSeparatorChars(char[] value) {#setWordsSeparatorChars-char---}
738863
```
739864
public final void setWordsSeparatorChars(char[] value)

0 commit comments

Comments
 (0)