Skip to content

Commit 4ef079d

Browse files
release Aspose.Cells for .NET 25.9
1 parent 0ae1cfe commit 4ef079d

File tree

58 files changed

+863
-129
lines changed

Some content is hidden

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

58 files changed

+863
-129
lines changed

english/net/aspose.cells.gridjs/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The **Aspose.Cells.GridJs** namespace encapsulates all classes of GridJs, provid
1919
| [GridInterruptMonitor](./gridinterruptmonitor/) | Represents all operator about the calculation interrupt. |
2020
| [GridJsControllerBase](./gridjscontrollerbase/) | |
2121
| [GridJsOptions](./gridjsoptions/) | Represents all the load options for GridJs |
22+
| [GridJsPermissionException](./gridjspermissionexception/) | represents permission exception in collaboration mode.only available in java version now, will be available in .net/python version in future. |
2223
| [GridJsService](./gridjsservice/) | Provides the basic operation apis used in controller actions. |
2324
| [GridJsWorkbook](./gridjsworkbook/) | Represents the main entry class for GridJs |
2425
| [GridReferredArea](./gridreferredarea/) | Represents a referred area by the formula. |
@@ -29,11 +30,14 @@ The **Aspose.Cells.GridJs** namespace encapsulates all classes of GridJs, provid
2930

3031
| Interface | Description |
3132
| --- | --- |
33+
| [CoWorkUserProvider](./coworkuserprovider/) | Represents the user provider inerface in collabration mode.only available in java version now, will be available in .net/python version in future. Customer application can implement this interface to provide the user information. |
3234
| [IGridJsService](./igridjsservice/) | Reprensents the basic operation apis interface used in controller actions. |
3335
## Enumeration
3436

3537
| Enumeration | Description |
3638
| --- | --- |
39+
| [CoWorkOperationType](./coworkoperationtype/) | Represents the action operation type in collabration mode.only available in java version now, will be available in .net/python version in future. |
40+
| [CoWorkUserPermission](./coworkuserpermission/) | represent the user permission in collaboration mode.only available in java version now, will be available in .net/python version in future. |
3741
| [GridExceptionType](./gridexceptiontype/) | Represents custom exception code for GridJs. |
3842
| [GridLoadFormat](./gridloadformat/) | Represents the load file format. |
3943

english/net/aspose.cells.gridjs/config/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public class Config
3636
| static [MaxShapeOrImageCount](../../aspose.cells.gridjs/config/maxshapeorimagecount/) { getset; } | Gets/Sets the total count of the display shapes or images in the active sheet,it takes effect when IslimitShapeOrImage=true. the default value is 100. |
3737
| static [MaxShapeOrImageWidthOrHeight](../../aspose.cells.gridjs/config/maxshapeorimagewidthorheight/) { getset; } | Gets/Sets the max width or height for a shape or an image ,GridJs will ignore the shape or image with the width or height larger than this, it takes effect when IslimitShapeOrImage=true. the default value is 10000. |
3838
| static [MaxTotalShapeOrImageCount](../../aspose.cells.gridjs/config/maxtotalshapeorimagecount/) { getset; } | Gets/Sets the total count of the display shapes or images in the workbook,it takes effect when IslimitShapeOrImage=true. the default value is 300. |
39+
| static [MessageTopic](../../aspose.cells.gridjs/config/messagetopic/) { getset; } | Gets/Sets the websocket destinations prefixed with "/topic". the default is "/topic/opr".used in collaborative mode only. |
3940
| static [PictureCacheDirectory](../../aspose.cells.gridjs/config/picturecachedirectory/) { getset; } | Gets/Sets the cache directory for pictures.(this takes effect when GridJsWorkbook.CacheImp is null) the default path will be "_piccache" inside the FileCacheDirectory. |
4041
| static [SameImageDetecting](../../aspose.cells.gridjs/config/sameimagedetecting/) { getset; } | Gets/Sets whether to check if images have same source,the default is true the default value is true. |
4142
| static [SaveHtmlAsZip](../../aspose.cells.gridjs/config/savehtmlaszip/) { getset; } | Gets/Sets whether to save html file as zip archive,the default is false. |
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: Config.MessageTopic
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: Config property. Gets/Sets the websocket destinations prefixed with /topic. the default is /topic/opr.used in collaborative mode only
5+
type: docs
6+
url: /net/aspose.cells.gridjs/config/messagetopic/
7+
---
8+
## Config.MessageTopic property
9+
10+
Gets/Sets the websocket destinations prefixed with "/topic". the default is "/topic/opr".used in collaborative mode only.
11+
12+
```csharp
13+
public static string MessageTopic { get; set; }
14+
```
15+
16+
### See Also
17+
18+
* class [Config](../)
19+
* namespace [Aspose.Cells.GridJs](../../../aspose.cells.gridjs/)
20+
* assembly [Aspose.Cells.GridJs](../../../)
21+
22+
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: Enum CoWorkOperationType
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: Aspose.Cells.GridJs.CoWorkOperationType enum. Represents the action operation type in collabration mode.only available in java version now will be available in .net/python version in future
5+
type: docs
6+
url: /net/aspose.cells.gridjs/coworkoperationtype/
7+
---
8+
## CoWorkOperationType enumeration
9+
10+
Represents the action operation type in collabration mode.only available in java version now, will be available in .net/python version in future.
11+
12+
```csharp
13+
public enum CoWorkOperationType
14+
```
15+
16+
### Values
17+
18+
| Name | Value | Description |
19+
| --- | --- | --- |
20+
| VIEW | `0` | View operation (read-only) |
21+
| LOAD | `1` | Load operation (read-only) |
22+
| LOAD_SHEET | `2` | Load sheet operation (read-only) |
23+
| GET_IMAGE | `3` | Get image operation (read-only) |
24+
| GET_OLE | `4` | Get OLE object operation (read-only) |
25+
| EDIT | `5` | Edit operation (editable) |
26+
| UPDATE_CELL | `6` | Update cell operation (editable) |
27+
| ADD_IMAGE | `7` | Add image operation (editable) |
28+
| COPY_IMAGE | `8` | Copy image operation (editable) |
29+
| INSERT_ROW | `9` | Insert row operation (editable) |
30+
| DELETE_ROW | `10` | Delete row operation (editable) |
31+
| INSERT_COLUMN | `11` | Insert column operation (editable) |
32+
| DELETE_COLUMN | `12` | Delete column operation (editable) |
33+
| DOWNLOAD | `13` | Download operation |
34+
| ADMIN_CONFIG | `14` | Admin configuration operation (administrative) |
35+
| USER_MANAGEMENT | `15` | User management operation (administrative) |
36+
37+
### See Also
38+
39+
* namespace [Aspose.Cells.GridJs](../../aspose.cells.gridjs/)
40+
* assembly [Aspose.Cells.GridJs](../../)
41+
42+
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Enum CoWorkUserPermission
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: Aspose.Cells.GridJs.CoWorkUserPermission enum. represent the user permission in collaboration mode.only available in java version now will be available in .net/python version in future
5+
type: docs
6+
url: /net/aspose.cells.gridjs/coworkuserpermission/
7+
---
8+
## CoWorkUserPermission enumeration
9+
10+
represent the user permission in collaboration mode.only available in java version now, will be available in .net/python version in future.
11+
12+
```csharp
13+
public enum CoWorkUserPermission
14+
```
15+
16+
### Values
17+
18+
| Name | Value | Description |
19+
| --- | --- | --- |
20+
| READ_ONLY | `0` | Read-only permission,User can only view the content but cannot make any modifications |
21+
| EDITABLE | `1` | Editable permission,User can view and edit the content |
22+
| DOWNLOAD | `2` | Download permission,User can view,edit and download the content to local storage |
23+
| ADMIN | `3` | Administrator permission,User has full access including management operations |
24+
25+
### See Also
26+
27+
* namespace [Aspose.Cells.GridJs](../../aspose.cells.gridjs/)
28+
* assembly [Aspose.Cells.GridJs](../../)
29+
30+
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: Interface CoWorkUserProvider
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: Aspose.Cells.GridJs.CoWorkUserProvider interface. Represents the user provider inerface in collabration mode.only available in java version now will be available in .net/python version in future. Customer application can implement this interface to provide the user information
5+
type: docs
6+
url: /net/aspose.cells.gridjs/coworkuserprovider/
7+
---
8+
## CoWorkUserProvider interface
9+
10+
Represents the user provider inerface in collabration mode.only available in java version now, will be available in .net/python version in future. Customer application can implement this interface to provide the user information.
11+
12+
```csharp
13+
public interface CoWorkUserProvider
14+
```
15+
16+
## Methods
17+
18+
| Name | Description |
19+
| --- | --- |
20+
| [GetCurrentUserId](../../aspose.cells.gridjs/coworkuserprovider/getcurrentuserid/)() | Gets the unique identifier of the current user |
21+
| [GetCurrentUserName](../../aspose.cells.gridjs/coworkuserprovider/getcurrentusername/)() | Gets the username of the current user |
22+
| [GetPermission](../../aspose.cells.gridjs/coworkuserprovider/getpermission/)() | Gets the permission level of the current user |
23+
24+
### See Also
25+
26+
* namespace [Aspose.Cells.GridJs](../../aspose.cells.gridjs/)
27+
* assembly [Aspose.Cells.GridJs](../../)
28+
29+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: CoWorkUserProvider.GetCurrentUserId
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: CoWorkUserProvider method. Gets the unique identifier of the current user
5+
type: docs
6+
url: /net/aspose.cells.gridjs/coworkuserprovider/getcurrentuserid/
7+
---
8+
## CoWorkUserProvider.GetCurrentUserId method
9+
10+
Gets the unique identifier of the current user
11+
12+
```csharp
13+
public long GetCurrentUserId()
14+
```
15+
16+
### Return Value
17+
18+
Current user ID
19+
20+
### See Also
21+
22+
* interface [CoWorkUserProvider](../)
23+
* namespace [Aspose.Cells.GridJs](../../../aspose.cells.gridjs/)
24+
* assembly [Aspose.Cells.GridJs](../../../)
25+
26+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: CoWorkUserProvider.GetCurrentUserName
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: CoWorkUserProvider method. Gets the username of the current user
5+
type: docs
6+
url: /net/aspose.cells.gridjs/coworkuserprovider/getcurrentusername/
7+
---
8+
## CoWorkUserProvider.GetCurrentUserName method
9+
10+
Gets the username of the current user
11+
12+
```csharp
13+
public string GetCurrentUserName()
14+
```
15+
16+
### Return Value
17+
18+
Current username
19+
20+
### See Also
21+
22+
* interface [CoWorkUserProvider](../)
23+
* namespace [Aspose.Cells.GridJs](../../../aspose.cells.gridjs/)
24+
* assembly [Aspose.Cells.GridJs](../../../)
25+
26+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: CoWorkUserProvider.GetPermission
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: CoWorkUserProvider method. Gets the permission level of the current user
5+
type: docs
6+
url: /net/aspose.cells.gridjs/coworkuserprovider/getpermission/
7+
---
8+
## CoWorkUserProvider.GetPermission method
9+
10+
Gets the permission level of the current user
11+
12+
```csharp
13+
public CoWorkUserPermission GetPermission()
14+
```
15+
16+
### Return Value
17+
18+
Current user permission level
19+
20+
### See Also
21+
22+
* enum [CoWorkUserPermission](../../coworkuserpermission/)
23+
* interface [CoWorkUserProvider](../)
24+
* namespace [Aspose.Cells.GridJs](../../../aspose.cells.gridjs/)
25+
* assembly [Aspose.Cells.GridJs](../../../)
26+
27+

english/net/aspose.cells.gridjs/gridjsoptions/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public class GridJsOptions
3737
| [MaxShapeOrImageCount](../../aspose.cells.gridjs/gridjsoptions/maxshapeorimagecount/) { getset; } | Gets/Sets the total count of the display shapes or images in the active sheet,it takes effect when IslimitShapeOrImage=true. the default value is 100. |
3838
| [MaxShapeOrImageWidthOrHeight](../../aspose.cells.gridjs/gridjsoptions/maxshapeorimagewidthorheight/) { getset; } | Gets/Sets the max width or height for a shape or an image ,GridJs will ignore the shape or image with the width or height larger than this, it takes effect when IslimitShapeOrImage=true. the default value is 10000. |
3939
| [MaxTotalShapeOrImageCount](../../aspose.cells.gridjs/gridjsoptions/maxtotalshapeorimagecount/) { getset; } | Gets/Sets the total count of the display shapes or images in the workbook,it takes effect when IslimitShapeOrImage=true. the default value is 300. |
40+
| [MessageTopic](../../aspose.cells.gridjs/gridjsoptions/messagetopic/) { getset; } | Gets/Sets the websocket destinations prefixed with "/topic". the default is "/topic/opr".used in collaborative mode only. |
4041
| [PictureCacheDirectory](../../aspose.cells.gridjs/gridjsoptions/picturecachedirectory/) { getset; } | Gets/Sets the cache directory for pictures.(this takes effect when GridJsWorkbook.CacheImp is null) the default path will be "_piccache" inside the FileCacheDirectory. |
4142
| [SameImageDetecting](../../aspose.cells.gridjs/gridjsoptions/sameimagedetecting/) { getset; } | Gets/Sets whether to check if images have same source,the default is true the default value is true. |
4243
| [SaveHtmlAsZip](../../aspose.cells.gridjs/gridjsoptions/savehtmlaszip/) { getset; } | Gets/Sets whether to save html file as zip archive,the default is false. |

0 commit comments

Comments
 (0)