Skip to content

Commit acb5ef5

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

File tree

7 files changed

+69
-5
lines changed

7 files changed

+69
-5
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.7.0"
8+
version: "25.11.0"
99
---
1010
## Namespaces
1111

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@ public sealed class PresentationSaveOptions : ISaveOptions
2525

2626
| Name | Description |
2727
| --- | --- |
28-
| [InsertAsNewSlide](../../groupdocs.editor.options/presentationsaveoptions/insertasnewslide) { get; set; } | Boolean flag, which specifies whether edited slide should replace the existing slide in original presentation on the position, specified by the [`SlideNumber`](./slidenumber) property, or it should be injected between existing slide and previous one, without replacing its content. By default is falseexisting slide will be replaced. This property is ignored, if value of [`SlideNumber`](./slidenumber) property is set to '0'. |
28+
| [InsertAsNewSlide](../../groupdocs.editor.options/presentationsaveoptions/insertasnewslide) { get; set; } | Boolean flag, which specifies whether edited slide should replace the existing slide in original presentation on the position, specified by the [`SlideNumber`](./slidenumber) property, or it should be injected between existing slide and previous one, without replacing its content. By default is `false`existing slide will be replaced. This property is ignored, if value of [`SlideNumber`](./slidenumber) property is set to `'0'`. |
2929
| [OutputFormat](../../groupdocs.editor.options/presentationsaveoptions/outputformat) { getset; } | Allows to specify a Presentation format, which will be used for saving the document |
3030
| [Password](../../groupdocs.editor.options/presentationsaveoptions/password) { getset; } | Allows to specify, modify and obtain the password, which will be used for encoding the resultant Presentation document. By default is NULL - password will not be set. Set to NULL or empty string in order to remove the password, if it was set previously. |
3131
| [SlideNumber](../../groupdocs.editor.options/presentationsaveoptions/slidenumber) { getset; } | Allows to insert edited slide into existing presentation instead of creating a new single-slide presentation (default behavior). Slide number is a 1-based number of a slide in the presentation, loaded in the Editor class. If it is 0 (default value), the new presentation will be created with single edited slide. If it is greater or lesser then zero, and there is valid presentation, loaded in the Editor class, the edited slide, stored inside input EditableDocument instance, will be inserted into this presentation. |
32+
| [SlideNumbersToDelete](../../groupdocs.editor.options/presentationsaveoptions/slidenumberstodelete) { get; set; } | Allows to specify an array with 1-based numbers of slides that should be deleted from the presentation during its saving, in case when the edited slide is inserted into existing presentation |
3233

3334
### Remarks
3435

35-
Instance of this class should be passed into the Save method in order to save edited presentation into the final document of some Presentation-specific format. Its constructor has one mandatory parameter — format of the output Presentation. All other parameters are optional and may be omitted.
36+
Instance of this class should be passed into the method in order to save edited presentation into the final document of some Presentation-specific format. All other parameters are optional and may be omitted, by default the format of the saving presentation is PPTX, but it can be changed through constructor or property.
3637

3738
### See Also
3839

content/sites/groupdocs/editor/english/net/groupdocs.editor.options/presentationsaveoptions/insertasnewslide/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ url: /net/groupdocs.editor.options/presentationsaveoptions/insertasnewslide/
88
---
99
## PresentationSaveOptions.InsertAsNewSlide property
1010

11-
Boolean flag, which specifies whether edited slide should replace the existing slide in original presentation on the position, specified by the [`SlideNumber`](../slidenumber) property, or it should be injected between existing slide and previous one, without replacing its content. By default is false — existing slide will be replaced. This property is ignored, if value of [`SlideNumber`](../slidenumber) property is set to '0'.
11+
Boolean flag, which specifies whether edited slide should replace the existing slide in original presentation on the position, specified by the [`SlideNumber`](../slidenumber) property, or it should be injected between existing slide and previous one, without replacing its content. By default is `false` — existing slide will be replaced. This property is ignored, if value of [`SlideNumber`](../slidenumber) property is set to `'0'`.
1212

1313
```csharp
1414
public bool InsertAsNewSlide { get; set; }
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: SlideNumbersToDelete
3+
second_title: GroupDocs.Editor for .NET API Reference
4+
description: Allows to specify an array with 1based numbers of slides that should be deleted from the presentation during its saving in case when the edited slide is inserted into existing presentation
5+
type: docs
6+
weight: 60
7+
url: /net/groupdocs.editor.options/presentationsaveoptions/slidenumberstodelete/
8+
---
9+
## PresentationSaveOptions.SlideNumbersToDelete property
10+
11+
Allows to specify an array with 1-based numbers of slides that should be deleted from the presentation during its saving, in case when the edited slide is inserted into existing presentation
12+
13+
```csharp
14+
public int[] SlideNumbersToDelete { get; set; }
15+
```
16+
17+
### Remarks
18+
19+
When the edited slide is saved not as a new single-slide presentation (default behavior), but instead is saved into an existing presentation (using [`SlideNumber`](../slidenumber) property), it is also possible to delete some particular slides from this presentation by specifying their numbers in this array.
20+
21+
By default this array is `null` — no slides will be deleted. However, when this array is non-null and non-empty, and it contains at least one valid slide number, after the output Presentation document is generated with the content of the edited slide, the slides with specified numbers will be deleted from the presentation right before writing its content to the output stream or file.
22+
23+
Slide numbers in this array are 1-based, not 0-based, invalid numbers (lesser than 1 or greater than the total number of slides) will be ignored.
24+
25+
### See Also
26+
27+
* class [PresentationSaveOptions](../../presentationsaveoptions)
28+
* namespace [GroupDocs.Editor.Options](../../../groupdocs.editor.options)
29+
* assembly [GroupDocs.Editor](../../../)
30+
31+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.editor.dll -->

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public sealed class SpreadsheetSaveOptions : ISaveOptions
2929
| [OutputFormat](../../groupdocs.editor.options/spreadsheetsaveoptions/outputformat) { getset; } | Allows to specify a Spreadsheet format, which will be used for saving the document |
3030
| [Password](../../groupdocs.editor.options/spreadsheetsaveoptions/password) { getset; } | Allows to specify, modify, obtain, or remove a password, which will be used to encode the generated Spreadsheet document, if tis document format supports password protection. Specify NULL or empty string for removing (cleaning) the password. |
3131
| [WorksheetNumber](../../groupdocs.editor.options/spreadsheetsaveoptions/worksheetnumber) { getset; } | Allows to insert edited worksheet into copy of existing spreadsheet instead of creating a new single-worksheet spreadsheet (default behavior). WorksheetNumber is a 1-based number of a worksheet in the spreadsheet, loaded in the Editor class. If it is 0 (default value), the new spreadsheet will be created with single edited worksheet. If it is greater or lesser then zero, and there is valid spreadsheet, loaded in the Editor class, the edited worksheet, that is represented by input EditableDocument instance, will be inserted into this spreadsheet. |
32+
| [WorksheetNumbersToDelete](../../groupdocs.editor.options/spreadsheetsaveoptions/worksheetnumberstodelete) { get; set; } | Allows to specify an array with 1-based numbers of worksheets that should be deleted from the spreadsheet during its saving, in case when the edited worksheet is inserted into existing spreadsheet |
3233
| [WorksheetProtection](../../groupdocs.editor.options/spreadsheetsaveoptions/worksheetprotection) { getset; } | Allows to enable a worksheet protection for the output Spreadsheet document. By default is NULL - protection is not applied. Not all formats support a worksheet protection. |
3334

3435
### See Also
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: WorksheetNumbersToDelete
3+
second_title: GroupDocs.Editor for .NET API Reference
4+
description: Allows to specify an array with 1based numbers of worksheets that should be deleted from the spreadsheet during its saving in case when the edited worksheet is inserted into existing spreadsheet
5+
type: docs
6+
weight: 60
7+
url: /net/groupdocs.editor.options/spreadsheetsaveoptions/worksheetnumberstodelete/
8+
---
9+
## SpreadsheetSaveOptions.WorksheetNumbersToDelete property
10+
11+
Allows to specify an array with 1-based numbers of worksheets that should be deleted from the spreadsheet during its saving, in case when the edited worksheet is inserted into existing spreadsheet
12+
13+
```csharp
14+
public int[] WorksheetNumbersToDelete { get; set; }
15+
```
16+
17+
### Remarks
18+
19+
When the edited worksheet is saved not as a new single-worksheet spreadsheet (default behavior), but instead is saved into an existing spreadsheet (using [`WorksheetNumber`](../worksheetnumber) property), it is also possible to delete some particular worksheets from this spreadsheet by specifying their numbers in this array.
20+
21+
By default this array is `null` — no worksheets will be deleted. However, when this array is non-null and non-empty, and it contains at least one valid worksheet number, after the output spreadsheet document is generated with the content of the edited worksheet, the worksheets with specified numbers will be deleted from the spreadsheet right before writing its content to the output stream or file.
22+
23+
Worksheet numbers in this array are 1-based, not 0-based, invalid numbers (lesser than 1 or greater than the total number of worksheets) will be ignored.
24+
25+
### See Also
26+
27+
* class [SpreadsheetSaveOptions](../../spreadsheetsaveoptions)
28+
* namespace [GroupDocs.Editor.Options](../../../groupdocs.editor.options)
29+
* assembly [GroupDocs.Editor](../../../)
30+
31+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.editor.dll -->

content/sites/groupdocs/editor/english/net/groupdocs.editor.options/spreadsheetsaveoptions/worksheetprotection/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: WorksheetProtection
33
second_title: GroupDocs.Editor for .NET API Reference
44
description: Allows to enable a worksheet protection for the output Spreadsheet document. By default is NULL protection is not applied. Not all formats support a worksheet protection.
55
type: docs
6-
weight: 60
6+
weight: 70
77
url: /net/groupdocs.editor.options/spreadsheetsaveoptions/worksheetprotection/
88
---
99
## SpreadsheetSaveOptions.WorksheetProtection property

0 commit comments

Comments
 (0)