Skip to content

Commit e088b9e

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

File tree

11 files changed

+86
-32
lines changed

11 files changed

+86
-32
lines changed

content/sites/groupdocs/editor/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.Editor 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.5.0"
8+
version: "25.7.0"
99
---
1010
## Namespaces
1111

content/sites/groupdocs/editor/english/net/groupdocs.editor.formats/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The GroupDocs.Editor.Formats namespace provides interfaces and classes that desc
1414
| --- | --- |
1515
| [EBookFormats](./ebookformats) | Encapsulates all eBook formats. Includes the following file types: [`Mobi`](../groupdocs.editor.formats/ebookformats/mobi), [`Epub`](../groupdocs.editor.formats/ebookformats/epub), [`Azw3`](../groupdocs.editor.formats/ebookformats/azw3). |
1616
| [EmailFormats](./emailformats) | Encapsulates all emails formats. Includes the following file types: [`Tnef`](../groupdocs.editor.formats/emailformats/tnef), [`Eml`](../groupdocs.editor.formats/emailformats/eml), [`Emlx`](../groupdocs.editor.formats/emailformats/emlx), [`Msg`](../groupdocs.editor.formats/emailformats/msg), [`Html`](../groupdocs.editor.formats/emailformats/html), [`Mhtml`](../groupdocs.editor.formats/emailformats/mhtml). |
17-
| [FixedLayoutFormats](./fixedlayoutformats) | Encapsulates all fixed-layout (also known as "fixed-page") formats, which includes PDF and XPS (this does not include raster images). |
17+
| [FixedLayoutFormats](./fixedlayoutformats) | Represents fixed-layout (fixed-page) document formats, such as PDF, excluding raster image formats. |
1818
| [FormatFamilies](./formatfamilies) | Represents the different format families available in the system. |
1919
| [PresentationFormats](./presentationformats) | Encapsulates all Presentation formats. Includes the following formats: |
2020
| [SpreadsheetFormats](./spreadsheetformats) | Encapsulates all binary, XML and textual Spreadsheet formats (excluding all textual delimiter-based formats with separator like CSV, TSV, semicolon-delimited etc.), in which the workbook can be saved. Includes the following formats: [`Xls`](../groupdocs.editor.formats/spreadsheetformats/xls), [`Xlt`](../groupdocs.editor.formats/spreadsheetformats/xlt), [`Xlsx`](../groupdocs.editor.formats/spreadsheetformats/xlsx), [`Xlsm`](../groupdocs.editor.formats/spreadsheetformats/xlsm), [`Xlsb`](../groupdocs.editor.formats/spreadsheetformats/xlsb), [`Xltx`](../groupdocs.editor.formats/spreadsheetformats/xltx), [`Xltm`](../groupdocs.editor.formats/spreadsheetformats/xltm), [`Xlam`](../groupdocs.editor.formats/spreadsheetformats/xlam), [`SpreadsheetML`](../groupdocs.editor.formats/spreadsheetformats/spreadsheetml), [`Ods`](../groupdocs.editor.formats/spreadsheetformats/ods), [`Fods`](../groupdocs.editor.formats/spreadsheetformats/fods), [`Sxc`](../groupdocs.editor.formats/spreadsheetformats/sxc), [`Dif`](../groupdocs.editor.formats/spreadsheetformats/dif), [`Csv`](../groupdocs.editor.formats/spreadsheetformats/csv), [`Tsv`](../groupdocs.editor.formats/spreadsheetformats/tsv). Learn more about Spreadsheet formats [here](https://wiki.fileformat.com/spreadsheet). |

content/sites/groupdocs/editor/english/net/groupdocs.editor.formats/fixedlayoutformats/_index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: FixedLayoutFormats
33
second_title: GroupDocs.Editor for .NET API Reference
4-
description: Encapsulates all fixedlayout also known as fixedpage formats which includes PDF and XPS this does not include raster images.
4+
description: Represents fixedlayout fixedpage document formats such as PDF excluding raster image formats.
55
type: docs
66
weight: 100
77
url: /net/groupdocs.editor.formats/fixedlayoutformats/
88
---
99
## FixedLayoutFormats class
1010

11-
Encapsulates all fixed-layout (also known as "fixed-page") formats, which includes PDF and XPS (this does not include raster images).
11+
Represents fixed-layout (fixed-page) document formats, such as PDF, excluding raster image formats.
1212

1313
```csharp
1414
public class FixedLayoutFormats : DocumentFormatBase
@@ -23,29 +23,29 @@ public class FixedLayoutFormats : DocumentFormatBase
2323
| [Id](../../groupdocs.editor.formats.abstraction/formatfamilybase/id) { get; } | Gets the unique identifier for the format family. |
2424
| [Mime](../../groupdocs.editor.formats.abstraction/documentformatbase/mime) { get; } | Gets the MIME type of the document format. |
2525
| [Name](../../groupdocs.editor.formats.abstraction/formatfamilybase/name) { get; } | Gets the name of the format family. |
26-
| static [All](../../groupdocs.editor.formats/fixedlayoutformats/all) { get; } | Gets an enumerable collection of all [`FixedLayoutFormats`](../fixedlayoutformats). |
26+
| static [All](../../groupdocs.editor.formats/fixedlayoutformats/all) { get; } | Gets all available instances of [`FixedLayoutFormats`](../fixedlayoutformats). |
2727

2828
## Methods
2929

3030
| Name | Description |
3131
| --- | --- |
32-
| static [FromExtension](../../groupdocs.editor.formats/fixedlayoutformats/fromextension)(string) | Retrieves an instance of the specified type [`FixedLayoutFormats`](../fixedlayoutformats) that has the specified file extension. |
32+
| static [FromExtension](../../groupdocs.editor.formats/fixedlayoutformats/fromextension)(string) | Retrieves a [`FixedLayoutFormats`](../fixedlayoutformats) instance matching the specified file extension. |
3333
| [Equals](../../groupdocs.editor.formats.abstraction/formatfamilybase/equals)(FormatFamilyBase) | Determines whether this instance is equal to the specified [`FormatFamilyBase`](../../groupdocs.editor.formats.abstraction/formatfamilybase) instance. |
3434
| [Equals](../../groupdocs.editor.formats.abstraction/documentformatbase/equals)(IDocumentFormat) | Determines whether this instance is equal to the specified [`IDocumentFormat`](../../groupdocs.editor.formats.abstraction/idocumentformat) instance. |
3535
| override [Equals](../../groupdocs.editor.formats.abstraction/documentformatbase/equals)(object) | Determines whether this instance is equal to the specified [`DocumentFormatBase`](../../groupdocs.editor.formats.abstraction/documentformatbase) instance. |
3636
| override [GetHashCode](../../groupdocs.editor.formats.abstraction/documentformatbase/gethashcode)() | Returns a hash code for the current object. |
3737
| override [ToString](../../groupdocs.editor.formats.abstraction/formatfamilybase/tostring)() | Returns a string that represents the current object. |
38-
| [explicit operator](../../groupdocs.editor.formats/fixedlayoutformats/op_explicit) | Converts a string representing a file extension to a [`FixedLayoutFormats`](../fixedlayoutformats) object. |
38+
| [explicit operator](../../groupdocs.editor.formats/fixedlayoutformats/op_explicit) | Explicitly converts a file extension string to a [`FixedLayoutFormats`](../fixedlayoutformats) instance. |
3939

4040
## Fields
4141

4242
| Name | Description |
4343
| --- | --- |
44-
| static readonly [Pdf](../../groupdocs.editor.formats/fixedlayoutformats/pdf) | Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System. Learn more about this file format [here](https://docs.fileformat.com/pdf/). |
44+
| static readonly [Pdf](../../groupdocs.editor.formats/fixedlayoutformats/pdf) | Portable Document Format (PDF), introduced by Adobe, provides standardized representation of documents independent of software, hardware, and operating systems. For additional details, see: [PDF file format](https://docs.fileformat.com/pdf/). |
4545
4646
### Remarks
4747

48-
Various document viewing or publishing applications allow users to open (Adobe Acrobat, XPS Viewer), and sometimes edit (Adobe InDesign) documents of specific formats. These applications typically produce so-calledfixed-pageformat documents. Such a document format describes precisely where a documents content is placed on every page. Internally, the PDF or XPS format contains a description of every page, as well as drawing instructions, specifying the layout of the content on the page. This is similar to image formats, describing where the content is shown either in raster or vector form.
48+
Fixed-layout formats precisely specify the placement and rendering of content on each page. Commonly used in document viewing, publishing, or editing applications like Adobe Acrobat and Adobe InDesign. These formats internally define page layouts and content positioning using vector graphics and text instructions.
4949

5050
### See Also
5151

content/sites/groupdocs/editor/english/net/groupdocs.editor.formats/fixedlayoutformats/all/_index.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
---
22
title: All
33
second_title: GroupDocs.Editor for .NET API Reference
4-
description: Gets an enumerable collection of all FixedLayoutFormatsgroupdocs.editor.formats/fixedlayoutformats.
4+
description: Gets all available instances of FixedLayoutFormatsgroupdocs.editor.formats/fixedlayoutformats.
55
type: docs
66
weight: 30
77
url: /net/groupdocs.editor.formats/fixedlayoutformats/all/
88
---
99
## FixedLayoutFormats.All property
1010

11-
Gets an enumerable collection of all [`FixedLayoutFormats`](../../fixedlayoutformats).
11+
Gets all available instances of [`FixedLayoutFormats`](../../fixedlayoutformats).
1212

1313
```csharp
1414
public static IEnumerable<FixedLayoutFormats> All { get; }
1515
```
1616

17-
### Property Value
18-
19-
An IEnumerable containing all instances of [`FixedLayoutFormats`](../../fixedlayoutformats).
20-
2117
### See Also
2218

2319
* class [FixedLayoutFormats](../../fixedlayoutformats)

content/sites/groupdocs/editor/english/net/groupdocs.editor.formats/fixedlayoutformats/fromextension/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
---
22
title: FromExtension
33
second_title: GroupDocs.Editor for .NET API Reference
4-
description: Retrieves an instance of the specified type FixedLayoutFormatsgroupdocs.editor.formats/fixedlayoutformats that has the specified file extension.
4+
description: Retrieves a FixedLayoutFormatsgroupdocs.editor.formats/fixedlayoutformats instance matching the specified file extension.
55
type: docs
66
weight: 20
77
url: /net/groupdocs.editor.formats/fixedlayoutformats/fromextension/
88
---
99
## FixedLayoutFormats.FromExtension method
1010

11-
Retrieves an instance of the specified type [`FixedLayoutFormats`](../../fixedlayoutformats) that has the specified file extension.
11+
Retrieves a [`FixedLayoutFormats`](../../fixedlayoutformats) instance matching the specified file extension.
1212

1313
```csharp
1414
public static FixedLayoutFormats FromExtension(string extension)
1515
```
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| extension | String | The file extension of the document format. |
19+
| extension | String | File extension to match (e.g., "pdf"). |
2020

2121
### Return Value
2222

23-
An instance of the specified type [`FixedLayoutFormats`](../../fixedlayoutformats) with the specified file extension.
23+
The matching [`FixedLayoutFormats`](../../fixedlayoutformats) instance.
2424

2525
### Exceptions
2626

2727
| exception | condition |
2828
| --- | --- |
29-
| InvalidOperationException | Thrown when no matching document format is found. |
29+
| InvalidOperationException | Thrown if no matching format is found. |
3030

3131
### See Also
3232

content/sites/groupdocs/editor/english/net/groupdocs.editor.formats/fixedlayoutformats/op_explicit/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
---
22
title: op_Explicit
33
second_title: GroupDocs.Editor for .NET API Reference
4-
description: Converts a string representing a file extension to a FixedLayoutFormatsgroupdocs.editor.formats/fixedlayoutformats object.
4+
description: Explicitly converts a file extension string to a FixedLayoutFormatsgroupdocs.editor.formats/fixedlayoutformats instance.
55
type: docs
66
weight: 40
77
url: /net/groupdocs.editor.formats/fixedlayoutformats/op_explicit/
88
---
99
## FixedLayoutFormats Explicit operator
1010

11-
Converts a string representing a file extension to a [`FixedLayoutFormats`](../../fixedlayoutformats) object.
11+
Explicitly converts a file extension string to a [`FixedLayoutFormats`](../../fixedlayoutformats) instance.
1212

1313
```csharp
1414
public static explicit operator FixedLayoutFormats(string extension)
1515
```
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| extension | String | The file extension to convert. If the extension contains multiple periods, the part after the last period is used. |
19+
| extension | String | File extension string, possibly containing periods. |
2020

2121
### Return Value
2222

23-
A [`FixedLayoutFormats`](../../fixedlayoutformats) object corresponding to the specified file extension.
23+
The corresponding [`FixedLayoutFormats`](../../fixedlayoutformats) instance.
2424

2525
### Exceptions
2626

2727
| exception | condition |
2828
| --- | --- |
29-
| [FixedLayoutFormats](../../fixedlayoutformats) | Thrown when the specified file extension is null. |
29+
| ArgumentNullException | Thrown if *extension* is null. |
3030

3131
### See Also
3232

content/sites/groupdocs/editor/english/net/groupdocs.editor.formats/fixedlayoutformats/pdf/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Pdf
33
second_title: GroupDocs.Editor for .NET API Reference
4-
description: Portable Document Format PDF is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software hardware as well as Operating System. Learn more about this file format herehttps//docs.fileformat.com/pdf/.
4+
description: Portable Document Format PDF introduced by Adobe provides standardized representation of documents independent of software hardware and operating systems. For additional details see PDF file formathttps//docs.fileformat.com/pdf/.
55
type: docs
66
weight: 10
77
url: /net/groupdocs.editor.formats/fixedlayoutformats/pdf/
88
---
99
## FixedLayoutFormats.Pdf field
1010

11-
Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System. Learn more about this file format [here](https://docs.fileformat.com/pdf/).
11+
Portable Document Format (PDF), introduced by Adobe, provides standardized representation of documents independent of software, hardware, and operating systems. For additional details, see: [PDF file format](https://docs.fileformat.com/pdf/).
1212

1313
```csharp
1414
public static readonly FixedLayoutFormats Pdf;

content/sites/groupdocs/editor/english/net/groupdocs.editor/editabledocument/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ public sealed class EditableDocument : IAuxDisposable
3030
| Name | Description |
3131
| --- | --- |
3232
| static [FromFile](../../groupdocs.editor/editabledocument/fromfile)(stringstring) | Static factory, that creates an instance of EditableDocument from a HTML file, that is specified by a path to the *.html file itself and a folder with linked resources |
33-
| static [FromMarkup](../../groupdocs.editor/editabledocument/frommarkup)(stringIEnumerable&lt;IHtmlResource&gt;) | Static factory, that creates an instance of EditableDocument from specified HTML markup and a set of corresponding linked resources |
33+
| static [FromMarkup](../../groupdocs.editor/editabledocument/frommarkup#frommarkup)(string) | Static factory, that creates an instance of [`EditableDocument`](../editabledocument) from specified HTML markup |
34+
| static [FromMarkup](../../groupdocs.editor/editabledocument/frommarkup#frommarkup_1)(stringIEnumerable&lt;IHtmlResource&gt;) | Static factory, that creates an instance of EditableDocument from specified HTML markup and a set of corresponding linked resources |
3435
| static [FromMarkupAndResourceFolder](../../groupdocs.editor/editabledocument/frommarkupandresourcefolder)(stringstring) | Static factory, that creates an instance of EditableDocument from a specified HTML markup and from resources, located in the folder, specified by the full path |
3536
| [Dispose](../../groupdocs.editor/editabledocument/dispose)() | Disposes this Editable document instance, disposing its content and making its methods and properties non-working |
3637
| [GetBodyContent](../../groupdocs.editor/editabledocument/getbodycontent#getbodycontent)() | Returns a body of the HTML document (inner content between opening and closing BODY tags without these tags) as a string. |

content/sites/groupdocs/editor/english/net/groupdocs.editor/editabledocument/frommarkup/_index.md

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,46 @@
11
---
22
title: FromMarkup
33
second_title: GroupDocs.Editor for .NET API Reference
4-
description: Static factory that creates an instance of EditableDocument from specified HTML markup and a set of corresponding linked resources
4+
description: Static factory that creates an instance of EditableDocumentgroupdocs.editor/editabledocument from specified HTML markup
55
type: docs
66
weight: 20
77
url: /net/groupdocs.editor/editabledocument/frommarkup/
88
---
9-
## EditableDocument.FromMarkup method
9+
## FromMarkup(string) {#frommarkup}
10+
11+
Static factory, that creates an instance of [`EditableDocument`](../../editabledocument) from specified HTML markup
12+
13+
```csharp
14+
public static EditableDocument FromMarkup(string newHtmlContent)
15+
```
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| newHtmlContent | String | String, that contains raw HTML markup, that should be parsed. Cannot be NULL, empty or invalid. |
20+
21+
### Return Value
22+
23+
New non-null instance of EditableDocument
24+
25+
### Exceptions
26+
27+
| exception | condition |
28+
| --- | --- |
29+
| ArgumentException | String with input raw HTML markup cannot be null or empty |
30+
31+
### Remarks
32+
33+
THis static method is useful for creating the [`EditableDocument`](../../editabledocument) instance from the single-string HTML markup, where all resources are embedded into it with base64 encoding.
34+
35+
### See Also
36+
37+
* class [EditableDocument](../../editabledocument)
38+
* namespace [GroupDocs.Editor](../../../groupdocs.editor)
39+
* assembly [GroupDocs.Editor](../../../)
40+
41+
---
42+
43+
## FromMarkup(string, IEnumerable&lt;IHtmlResource&gt;) {#frommarkup_1}
1044

1145
Static factory, that creates an instance of EditableDocument from specified HTML markup and a set of corresponding linked resources
1246

content/sites/groupdocs/editor/english/net/groupdocs.editor/editor/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ public sealed class Editor : IAuxDisposable
4040
| [Edit](../../groupdocs.editor/editor/edit#edit_1)(IEditOptions) | Opens a previously loaded document for editing using specified format-specific options by generating and returning an instance of '[`EditableDocument`](../editabledocument)' class, that, in turn, contains methods for producing HTML markup and associated resources. |
4141
| [GetDocumentInfo](../../groupdocs.editor/editor/getdocumentinfo)(string) | Returns metadata about the document, that was loaded to this 'Editor' instance |
4242
| [Save](../../groupdocs.editor/editor/save#save)(Stream) | Save the current document content to the specified output stream. |
43+
| [Save](../../groupdocs.editor/editor/save#save_3)(EditableDocumentstring) | Converts specified edited document, represented as instance of '[`EditableDocument`](../editabledocument)', to the resultant document of format, determined from the filename extension, and saves its content to file by specified file path |
4344
| [Save](../../groupdocs.editor/editor/save#save_1)(StreamWordProcessingSaveOptions) | Converts the original document after modification (for example, [`FormFieldManager`](./formfieldmanager)), to the resultant document of the specified format and saves its content to the provided stream. |
4445
| [Save](../../groupdocs.editor/editor/save#save_2)(EditableDocumentStreamISaveOptions) | Converts specified edited document, represented as instance of '[`EditableDocument`](../editabledocument)', to the resultant document of specified format and saves its content to specified stream |
45-
| [Save](../../groupdocs.editor/editor/save#save_3)(EditableDocumentstringISaveOptions) | Converts specified edited document, represented as instance of '[`EditableDocument`](../editabledocument)', to the resultant document of specified format and saves its content to file by specified file path |
46+
| [Save](../../groupdocs.editor/editor/save#save_4)(EditableDocumentstringISaveOptions) | Converts specified edited document, represented as instance of '[`EditableDocument`](../editabledocument)', to the resultant document of specified format and saves its content to file by specified file path |
4647

4748
## Events
4849

0 commit comments

Comments
 (0)