Skip to content

Commit dd85152

Browse files
Update file(s) "/." from "groupdocs-editor/Groupdocs.Editor-References"
1 parent 691d799 commit dd85152

File tree

3 files changed

+2
-17
lines changed
  • content/sites/groupdocs/editor/english/java

3 files changed

+2
-17
lines changed

content/sites/groupdocs/editor/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.Editor 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.3
99
---
1010

1111
## Packages

content/sites/groupdocs/editor/english/java/com.groupdocs.editor.words.fieldmanagement/invalidformfield/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Gets or sets the new name for the form field after repair. This name removes dup
5959
--------------------
6060

6161
```
62-
FixedName = string.Format("{0}_fixed", name) // as default value.
62+
FixedName = String.format("%s_fixed", name); // as default value.
6363
```
6464

6565
**Returns:**

content/sites/groupdocs/editor/english/java/com.groupdocs.editor/Editor/_index.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ Editor class should be considered as an entry point and the root object of the G
3939

4040
| Method | Description |
4141
| --- | --- |
42-
| [getFormFieldManager()](#getFormFieldManager--) | Provides access to functionality for managing form fields within the document. |
4342
| [edit(IEditOptions editOptions)](#edit-com.groupdocs.editor.options.IEditOptions-) | Opens a previously loaded document for editing using specified format-specific options by generating and returning an instance of '' class, that, in turn, contains methods for producing HTML markup and associated resources. |
4443
| [edit()](#edit--) | Opens a previously loaded document for editing using default options by generating and returning an instance of 'EditableDocument' class, that, in turn, contains methods for producing HTML markup and associated resources. |
4544
| [save(EditableDocument inputDocument, OutputStream outputDocument, ISaveOptions saveOptions)](#save-com.groupdocs.editor.EditableDocument-java.io.OutputStream-com.groupdocs.editor.options.ISaveOptions-) | Converts specified edited document, represented as instance of 'EditableDocument', to the resultant document of specified format and saves its content to specified stream |
@@ -156,20 +155,6 @@ Initializes new Editor instance with specified input document (as a full file pa
156155
[Developer Guide]: https://docs.groupdocs.com/editor/java/developer-guide/
157156
[Load and edit documents using GroupDocs.Editor]: https://docs.groupdocs.com/editor/java/load-document/ |
158157
159-
### getFormFieldManager() {#getFormFieldManager--}
160-
```
161-
public FormFieldManager getFormFieldManager()
162-
```
163-
164-
165-
Provides access to functionality for managing form fields within the document.
166-
167-
**Returns:**
168-
[FormFieldManager](../../com.groupdocs.editor/formfieldmanager) - A FormFieldManager (\#getFormFieldManager.getFormFieldManager) instance for managing form fields within the document.
169-
170-
--------------------
171-
172-
The FormFieldManager (\#getFormFieldManager.getFormFieldManager) property creates a new instance of the FormFieldManager (\#getFormFieldManager.getFormFieldManager) class, which allows access to methods and properties for managing form fields within the document. Form fields are interactive elements within the document that can capture user input or trigger actions. The FormFieldManager (\#getFormFieldManager.getFormFieldManager) instance provides methods for various form field operations, including checking for invalid form fields, updating form field data, and fixing naming issues. It also facilitates the retrieval of form field names and their associated data. This property is useful for interacting with and manipulating form fields programmatically, enabling tasks such as form field validation, synchronization, and customization.
173158
### edit(IEditOptions editOptions) {#edit-com.groupdocs.editor.options.IEditOptions-}
174159
```
175160
public final EditableDocument edit(IEditOptions editOptions)

0 commit comments

Comments
 (0)