Skip to content

Commit 4a825b8

Browse files
Update file(s) "/." from "groupdocs-redaction/Groupdocs.Redaction-References"
1 parent 77fda4b commit 4a825b8

188 files changed

Lines changed: 1162 additions & 918 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

content/sites/groupdocs/redaction/english/java/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 11
55
url: /java/
66
description: GroupDocs.Redaction for Java API References contain examples, code snippets, and API documentation. It provides packages, classes, interfaces, and other API details.
77
is_root: true
8-
version: 24.9
8+
version: 25.5
99
---
1010

1111
## Packages

content/sites/groupdocs/redaction/english/java/allclasses-frame.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Thu Sep 26 09:26:47 CDT 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Thu May 22 08:50:32 CDT 2025 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>All Classes (GroupDocs.Redaction (24.9) API Reference)</title>
8-
<meta name="date" content="2024-09-26">
7+
<title>All Classes (GroupDocs.Redaction (25.5) API Reference)</title>
8+
<meta name="date" content="2025-05-22">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<script type="text/javascript" src="script.js"></script>
1111
</head>

content/sites/groupdocs/redaction/english/java/allclasses-noframe.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Thu Sep 26 09:26:47 CDT 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Thu May 22 08:50:32 CDT 2025 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>All Classes (GroupDocs.Redaction (24.9) API Reference)</title>
8-
<meta name="date" content="2024-09-26">
7+
<title>All Classes (GroupDocs.Redaction (25.5) API Reference)</title>
8+
<meta name="date" content="2025-05-22">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<script type="text/javascript" src="script.js"></script>
1111
</head>

content/sites/groupdocs/redaction/english/java/com.groupdocs.redaction.options/loadoptions/_index.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,15 @@ The following example demonstrates how to open password-protected document.
4848
| [LoadOptions(String password)](#LoadOptions-java.lang.String-) | Initializes a new instance of LoadOptions class with specified password. |
4949
| [LoadOptions(boolean preRasterize)](#LoadOptions-boolean-) | Initializes a new instance of LoadOptions class with specified pre-rasterization flag. |
5050
| [LoadOptions(String password, boolean preRasterize)](#LoadOptions-java.lang.String-boolean-) | Initializes a new instance of LoadOptions class with specified password. |
51+
| [LoadOptions(String password, boolean preRasterize, DocumentFormatConfiguration documentFormatConfiguration)](#LoadOptions-java.lang.String-boolean-com.groupdocs.redaction.configuration.DocumentFormatConfiguration-) | Initializes a new instance of LoadOptions class with specified password. |
5152
## Methods
5253

5354
| Method | Description |
5455
| --- | --- |
5556
| [getPassword()](#getPassword--) | Gets a password for password-protected documents. |
5657
| [setPassword(String value)](#setPassword-java.lang.String-) | Sets a password for password-protected documents. |
58+
| [getDocumentFormatConfiguration()](#getDocumentFormatConfiguration--) | Gets a document format configuration. |
59+
| [setDocumentFormatConfiguration(DocumentFormatConfiguration value)](#setDocumentFormatConfiguration-com.groupdocs.redaction.configuration.DocumentFormatConfiguration-) | Sets a document format configuration. |
5760
| [getPreRasterize()](#getPreRasterize--) | Gets a value, indicating if the file is to be pre-rasterized. |
5861
| [setPreRasterize(boolean value)](#setPreRasterize-boolean-) | Sets a value, indicating if the file is to be pre-rasterized. |
5962
### LoadOptions() {#LoadOptions--}
@@ -104,6 +107,21 @@ Initializes a new instance of LoadOptions class with specified password.
104107
| password | java.lang.String | Password for protected files |
105108
| preRasterize | boolean | If true, force rasteization on loading |
106109

110+
### LoadOptions(String password, boolean preRasterize, DocumentFormatConfiguration documentFormatConfiguration) {#LoadOptions-java.lang.String-boolean-com.groupdocs.redaction.configuration.DocumentFormatConfiguration-}
111+
```
112+
public LoadOptions(String password, boolean preRasterize, DocumentFormatConfiguration documentFormatConfiguration)
113+
```
114+
115+
116+
Initializes a new instance of LoadOptions class with specified password.
117+
118+
**Parameters:**
119+
| Parameter | Type | Description |
120+
| --- | --- | --- |
121+
| password | java.lang.String | Password for protected files |
122+
| preRasterize | boolean | If true, force rasteization on loading |
123+
| documentFormatConfiguration | [DocumentFormatConfiguration](../../com.groupdocs.redaction.configuration/documentformatconfiguration) | document format configuration |
124+
107125
### getPassword() {#getPassword--}
108126
```
109127
public final String getPassword()
@@ -127,6 +145,29 @@ Sets a password for password-protected documents.
127145
| --- | --- | --- |
128146
| value | java.lang.String | A password for password-protected documents. |
129147

148+
### getDocumentFormatConfiguration() {#getDocumentFormatConfiguration--}
149+
```
150+
public final DocumentFormatConfiguration getDocumentFormatConfiguration()
151+
```
152+
153+
154+
Gets a document format configuration.
155+
156+
**Returns:**
157+
[DocumentFormatConfiguration](../../com.groupdocs.redaction.configuration/documentformatconfiguration) - A document format configuration.
158+
### setDocumentFormatConfiguration(DocumentFormatConfiguration value) {#setDocumentFormatConfiguration-com.groupdocs.redaction.configuration.DocumentFormatConfiguration-}
159+
```
160+
public final void setDocumentFormatConfiguration(DocumentFormatConfiguration value)
161+
```
162+
163+
164+
Sets a document format configuration.
165+
166+
**Parameters:**
167+
| Parameter | Type | Description |
168+
| --- | --- | --- |
169+
| value | [DocumentFormatConfiguration](../../com.groupdocs.redaction.configuration/documentformatconfiguration) | A document format configuration. |
170+
130171
### getPreRasterize() {#getPreRasterize--}
131172
```
132173
public final boolean getPreRasterize()

content/sites/groupdocs/redaction/english/java/com/groupdocs/redaction/DocumentInfo.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Thu Sep 26 09:26:43 CDT 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Thu May 22 08:50:26 CDT 2025 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>DocumentInfo (GroupDocs.Redaction (24.9) API Reference)</title>
8-
<meta name="date" content="2024-09-26">
7+
<title>DocumentInfo (GroupDocs.Redaction (25.5) API Reference)</title>
8+
<meta name="date" content="2025-05-22">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="DocumentInfo (GroupDocs.Redaction (24.9) API Reference)";
16+
parent.document.title="DocumentInfo (GroupDocs.Redaction (25.5) API Reference)";
1717
}
1818
}
1919
catch(err) {
@@ -334,6 +334,6 @@ <h4>getSize</h4>
334334
<!-- -->
335335
</a></div>
336336
<!-- ======== END OF BOTTOM NAVBAR ======= -->
337-
<p class="legalCopy"><small>Copyright &#169; 2024. All rights reserved.</small></p>
337+
<p class="legalCopy"><small>Copyright &#169; 2025. All rights reserved.</small></p>
338338
</body>
339339
</html>

content/sites/groupdocs/redaction/english/java/com/groupdocs/redaction/FileType.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Thu Sep 26 09:26:43 CDT 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Thu May 22 08:50:27 CDT 2025 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>FileType (GroupDocs.Redaction (24.9) API Reference)</title>
8-
<meta name="date" content="2024-09-26">
7+
<title>FileType (GroupDocs.Redaction (25.5) API Reference)</title>
8+
<meta name="date" content="2025-05-22">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="FileType (GroupDocs.Redaction (24.9) API Reference)";
16+
parent.document.title="FileType (GroupDocs.Redaction (25.5) API Reference)";
1717
}
1818
}
1919
catch(err) {
@@ -1154,6 +1154,6 @@ <h4>toString</h4>
11541154
<!-- -->
11551155
</a></div>
11561156
<!-- ======== END OF BOTTOM NAVBAR ======= -->
1157-
<p class="legalCopy"><small>Copyright &#169; 2024. All rights reserved.</small></p>
1157+
<p class="legalCopy"><small>Copyright &#169; 2025. All rights reserved.</small></p>
11581158
</body>
11591159
</html>

content/sites/groupdocs/redaction/english/java/com/groupdocs/redaction/IDocumentInfo.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Thu Sep 26 09:26:43 CDT 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Thu May 22 08:50:27 CDT 2025 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>IDocumentInfo (GroupDocs.Redaction (24.9) API Reference)</title>
8-
<meta name="date" content="2024-09-26">
7+
<title>IDocumentInfo (GroupDocs.Redaction (25.5) API Reference)</title>
8+
<meta name="date" content="2025-05-22">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="IDocumentInfo (GroupDocs.Redaction (24.9) API Reference)";
16+
parent.document.title="IDocumentInfo (GroupDocs.Redaction (25.5) API Reference)";
1717
}
1818
}
1919
catch(err) {
@@ -309,6 +309,6 @@ <h4>getSize</h4>
309309
<!-- -->
310310
</a></div>
311311
<!-- ======== END OF BOTTOM NAVBAR ======= -->
312-
<p class="legalCopy"><small>Copyright &#169; 2024. All rights reserved.</small></p>
312+
<p class="legalCopy"><small>Copyright &#169; 2025. All rights reserved.</small></p>
313313
</body>
314314
</html>

content/sites/groupdocs/redaction/english/java/com/groupdocs/redaction/PageInfo.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Thu Sep 26 09:26:43 CDT 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Thu May 22 08:50:27 CDT 2025 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>PageInfo (GroupDocs.Redaction (24.9) API Reference)</title>
8-
<meta name="date" content="2024-09-26">
7+
<title>PageInfo (GroupDocs.Redaction (25.5) API Reference)</title>
8+
<meta name="date" content="2025-05-22">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="PageInfo (GroupDocs.Redaction (24.9) API Reference)";
16+
parent.document.title="PageInfo (GroupDocs.Redaction (25.5) API Reference)";
1717
}
1818
}
1919
catch(err) {
@@ -401,6 +401,6 @@ <h4>setWidth</h4>
401401
<!-- -->
402402
</a></div>
403403
<!-- ======== END OF BOTTOM NAVBAR ======= -->
404-
<p class="legalCopy"><small>Copyright &#169; 2024. All rights reserved.</small></p>
404+
<p class="legalCopy"><small>Copyright &#169; 2025. All rights reserved.</small></p>
405405
</body>
406406
</html>

content/sites/groupdocs/redaction/english/java/com/groupdocs/redaction/Redaction.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Thu Sep 26 09:26:43 CDT 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Thu May 22 08:50:27 CDT 2025 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>Redaction (GroupDocs.Redaction (24.9) API Reference)</title>
8-
<meta name="date" content="2024-09-26">
7+
<title>Redaction (GroupDocs.Redaction (25.5) API Reference)</title>
8+
<meta name="date" content="2025-05-22">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="Redaction (GroupDocs.Redaction (24.9) API Reference)";
16+
parent.document.title="Redaction (GroupDocs.Redaction (25.5) API Reference)";
1717
}
1818
}
1919
catch(err) {
@@ -323,6 +323,6 @@ <h4>getDescription</h4>
323323
<!-- -->
324324
</a></div>
325325
<!-- ======== END OF BOTTOM NAVBAR ======= -->
326-
<p class="legalCopy"><small>Copyright &#169; 2024. All rights reserved.</small></p>
326+
<p class="legalCopy"><small>Copyright &#169; 2025. All rights reserved.</small></p>
327327
</body>
328328
</html>

content/sites/groupdocs/redaction/english/java/com/groupdocs/redaction/RedactionPolicy.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Thu Sep 26 09:26:43 CDT 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Thu May 22 08:50:27 CDT 2025 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>RedactionPolicy (GroupDocs.Redaction (24.9) API Reference)</title>
8-
<meta name="date" content="2024-09-26">
7+
<title>RedactionPolicy (GroupDocs.Redaction (25.5) API Reference)</title>
8+
<meta name="date" content="2025-05-22">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="RedactionPolicy (GroupDocs.Redaction (24.9) API Reference)";
16+
parent.document.title="RedactionPolicy (GroupDocs.Redaction (25.5) API Reference)";
1717
}
1818
}
1919
catch(err) {
@@ -427,6 +427,6 @@ <h4>save</h4>
427427
<!-- -->
428428
</a></div>
429429
<!-- ======== END OF BOTTOM NAVBAR ======= -->
430-
<p class="legalCopy"><small>Copyright &#169; 2024. All rights reserved.</small></p>
430+
<p class="legalCopy"><small>Copyright &#169; 2025. All rights reserved.</small></p>
431431
</body>
432432
</html>

0 commit comments

Comments
 (0)