Skip to content

Commit bcf765e

Browse files
committed
ISSUE-CELLSGO-211: Update API Reference for Aspose.Cells for Go via C+=
1 parent 6efd111 commit bcf765e

File tree

169 files changed

+978
-442
lines changed

Some content is hidden

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

169 files changed

+978
-442
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: SkipCalculation Method
3+
linktitle: SkipCalculation
4+
second_title: Aspose.Cells for Go via C++ API Reference
5+
description: 'SkipCalculation method. Encapsulates the function that represents skipcalculation in Go.'
6+
type: docs
7+
weight: 200
8+
url: /go-cpp/abstractcalculationengine/skipcalculation/
9+
---
10+
11+
## SkipCalculation function
12+
13+
Skips the calculation for the entire formula that references to the function currently under evaluation.
14+
15+
```go
16+
17+
func (instance *AbstractCalculationEngine) SkipCalculation() error
18+
19+
```
20+
21+
## Remarks
22+
23+
24+
## See Also
25+
26+
* Class [AbstractCalculationEngine](../)
27+
* Library [Aspose.Cells for Go](../../)

english/go-cpp/AbstractCalculationEngine/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ type AbstractCalculationEngine struct {
2828

2929
| Method | Description |
3030
| --- | --- |
31+
|[SkipCalculation](./skipcalculation/) | Skips the calculation for the entire formula that references to the function currently under evaluation. |
3132
|[IsParamLiteralRequired](./isparamliteralrequired/) | Indicates whether this engine needs the literal text of parameter while doing calculation. Default value is false. |
3233
|[IsParamArrayModeRequired](./isparamarraymoderequired/) | Indicates whether this engine needs the parameter to be calculated in array mode. Default value is false.If CalculationData.GetParamValueInArrayMode(int, int, int) is required when calculating customfunctions and user has not updated the definition for them(by Workbook.UpdateCustomFunctionDefinition(CustomFunctionDefinition)),this property needs to be set as true. |
3334
|[GetProcessBuiltInFunctions](./getprocessbuiltinfunctions/) | Whether built-in functions that have been supported by the built-in engineshould be checked and processed by this implementation.Default is false. |

english/go-cpp/ColorFilter/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ url: /go-cpp/colorfilter/
1010

1111
## ColorFilter class
1212

13-
Represents filtering the range by color.
13+
Represents setting for filtering the range by color.
1414

1515
```go
1616

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: GetBinaryValue Method
3+
linktitle: GetBinaryValue
4+
second_title: Aspose.Cells for Go via C++ API Reference
5+
description: 'GetBinaryValue method. Encapsulates the function that represents getbinaryvalue in Go.'
6+
type: docs
7+
weight: 200
8+
url: /go-cpp/customproperty/getbinaryvalue/
9+
---
10+
11+
## GetBinaryValue function
12+
13+
Gets and sets the binary value of the custom property.
14+
15+
```go
16+
17+
func (instance *CustomProperty) GetBinaryValue() ([]byte, error)
18+
19+
```
20+
21+
## Remarks
22+
23+
24+
## See Also
25+
26+
* Class [CustomProperty](../)
27+
* Library [Aspose.Cells for Go](../../)

english/go-cpp/CustomProperty/NewCustomProperty/_index.md

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: SetBinaryValue Method
3+
linktitle: SetBinaryValue
4+
second_title: Aspose.Cells for Go via C++ API Reference
5+
description: 'SetBinaryValue method. Encapsulates the function that represents setbinaryvalue in Go.'
6+
type: docs
7+
weight: 200
8+
url: /go-cpp/customproperty/setbinaryvalue/
9+
---
10+
11+
## SetBinaryValue function
12+
13+
Gets and sets the binary value of the custom property.
14+
15+
```go
16+
17+
func (instance *CustomProperty) SetBinaryValue(value []byte) error
18+
19+
```
20+
21+
## Remarks
22+
23+
24+
## See Also
25+
26+
* Class [CustomProperty](../)
27+
* Library [Aspose.Cells for Go](../../)

english/go-cpp/CustomProperty/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ url: /go-cpp/customproperty/
1010

1111
## CustomProperty class
1212

13-
Represents identifier information.
13+
Represents a custom property which store name and value pairs of arbitrary user-defined data for worksheet.
1414

1515
```go
1616

@@ -23,7 +23,6 @@ type CustomProperty struct {
2323

2424
| Method | Description |
2525
| --- | --- |
26-
|[NewCustomProperty](./newcustomproperty/) | Default constructor. |
2726

2827
## Methods
2928

@@ -34,3 +33,5 @@ type CustomProperty struct {
3433
|[SetName](./setname/) | Returns or sets the name of the object. |
3534
|[GetValue](./getvalue/) | Returns or sets the value of the custom property. |
3635
|[SetValue](./setvalue/) | Returns or sets the value of the custom property. |
36+
|[GetBinaryValue](./getbinaryvalue/) | Gets and sets the binary value of the custom property. |
37+
|[SetBinaryValue](./setbinaryvalue/) | Gets and sets the binary value of the custom property. |

english/go-cpp/DelimiterEquationNode/GetNaryGrow/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ url: /go-cpp/delimiterequationnode/getnarygrow/
1010

1111
## GetNaryGrow function
1212

13+
Specifies whether the delimiter should automatically expand and contract with the height of the formula.
1314

1415
```go
1516

english/go-cpp/DelimiterEquationNode/SetNaryGrow/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ url: /go-cpp/delimiterequationnode/setnarygrow/
1010

1111
## SetNaryGrow function
1212

13+
Specifies whether the delimiter should automatically expand and contract with the height of the formula.
1314

1415
```go
1516

english/go-cpp/DelimiterEquationNode/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ type DelimiterEquationNode struct {
3434
|[SetBeginChar](./setbeginchar/) | Delimiter beginning character. |
3535
|[GetEndChar](./getendchar/) | Delimiter ending character. |
3636
|[SetEndChar](./setendchar/) | Delimiter ending character. |
37-
|[GetNaryGrow](./getnarygrow/) | |
38-
|[SetNaryGrow](./setnarygrow/) | |
37+
|[GetNaryGrow](./getnarygrow/) | Specifies whether the delimiter should automatically expand and contract with the height of the formula. |
38+
|[SetNaryGrow](./setnarygrow/) | Specifies whether the delimiter should automatically expand and contract with the height of the formula. |
3939
|[GetSeparatorChar](./getseparatorchar/) | Delimiter separator character. |
4040
|[SetSeparatorChar](./setseparatorchar/) | Delimiter separator character. |
4141
|[GetDelimiterShape](./getdelimitershape/) | Specifies the shape of delimiters in the delimiter object. |

0 commit comments

Comments
 (0)