Skip to content

Commit a8e7176

Browse files
committed
ISSUE-CELLSGO-219: Build Aspose.Cells for Go via C++ 25.12 API reference documentation.
1 parent 8bfd9d1 commit a8e7176

File tree

264 files changed

+601
-4464
lines changed

Some content is hidden

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

264 files changed

+601
-4464
lines changed

english/go-cpp/ArcShape/MoveToRange/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Moves the shape to a specified range.
1414

1515
```go
1616

17-
func (instance *ArcShape) MoveToRange(upperleftrow int32, upperleftcolumn int32, lowerrightrow int32, lowerrightcolumn int32) error
17+
func (instance *ArcShape) MoveToRange(toprow int32, leftcolumn int32, bottomrow int32, rightcolumn int32) error
1818

1919
```
2020

english/go-cpp/AutoFillType/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ type AutoFillType int32
2525
| --- | --- |
2626
|[Copy](./copy/) | Copies the value and format of the source area to the target area |
2727
|[Default](./default/) | Automatically fills the target area with the value and format. |
28-
|[Formats](./formats/) | Copies only the format of the source area to the target area, |
28+
|[Formats](./formats/) | Only copies the format of the source area to the target area. |
2929
|[Series](./series/) | Extend the value in the source area to the target area in the form of a series and copy format to the target area. |
3030
|[Values](./values/) | Copies only the value of the source area to the target area, |

english/go-cpp/Axis/GetCategoryType/_index.md

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

1111
## GetCategoryType function
1212

13-
Represents the category axis type.
13+
Represents the type of the category axis.
1414

1515
```go
1616

english/go-cpp/Axis/GetLogBase/_index.md

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

1111
## GetLogBase function
1212

13-
Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
13+
Represents the logarithmic base. Default value is 10.
1414

1515
```go
1616

english/go-cpp/Axis/GetTitle/_index.md

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

1111
## GetTitle function
1212

13-
Gets the axis' title.
13+
Gets the title of this axis in the chart.
1414

1515
```go
1616

english/go-cpp/Axis/SetCategoryType/_index.md

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

1111
## SetCategoryType function
1212

13-
Represents the category axis type.
13+
Represents the type of the category axis.
1414

1515
```go
1616

english/go-cpp/Axis/SetLogBase/_index.md

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

1111
## SetLogBase function
1212

13-
Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
13+
Represents the logarithmic base. Default value is 10.
1414

1515
```go
1616

english/go-cpp/Axis/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ type Axis struct {
5757
|[SetCrossAt](./setcrossat/) | Represents the point on the value axis where the category axis crosses it. |
5858
|[GetCrossType](./getcrosstype/) | Represents the CrossType on the specified axis where the other axis crosses. |
5959
|[SetCrossType](./setcrosstype/) | Represents the CrossType on the specified axis where the other axis crosses. |
60-
|[GetLogBase](./getlogbase/) | Represents the logarithmic base. Default value is 10.Only applies for Excel2007. |
61-
|[SetLogBase](./setlogbase/) | Represents the logarithmic base. Default value is 10.Only applies for Excel2007. |
60+
|[GetLogBase](./getlogbase/) | Represents the logarithmic base. Default value is 10. |
61+
|[SetLogBase](./setlogbase/) | Represents the logarithmic base. Default value is 10. |
6262
|[IsLogarithmic](./islogarithmic/) | Represents if the value axis scale type is logarithmic or not. |
6363
|[SetIsLogarithmic](./setislogarithmic/) | Represents if the value axis scale type is logarithmic or not. |
6464
|[IsPlotOrderReversed](./isplotorderreversed/) | Represents if Microsoft Excel plots data points from last to first. |
@@ -79,9 +79,9 @@ type Axis struct {
7979
|[GetDisplayUnitLabel](./getdisplayunitlabel/) | Represents a unit label on an axis in the specified chart.Unit labels are useful for charting large values— for example, in the millions or billions. |
8080
|[IsDisplayUnitLabelShown](./isdisplayunitlabelshown/) | Represents if the display unit label is shown on the specified axis. |
8181
|[SetIsDisplayUnitLabelShown](./setisdisplayunitlabelshown/) | Represents if the display unit label is shown on the specified axis. |
82-
|[GetTitle](./gettitle/) | Gets the axis' title. |
83-
|[GetCategoryType](./getcategorytype/) | Represents the category axis type. |
84-
|[SetCategoryType](./setcategorytype/) | Represents the category axis type. |
82+
|[GetTitle](./gettitle/) | Gets the title of this axis in the chart. |
83+
|[GetCategoryType](./getcategorytype/) | Represents the type of the category axis. |
84+
|[SetCategoryType](./setcategorytype/) | Represents the type of the category axis. |
8585
|[GetBaseUnitScale](./getbaseunitscale/) | Represents the base unit scale for the category axis. |
8686
|[SetBaseUnitScale](./setbaseunitscale/) | Represents the base unit scale for the category axis. |
8787
|[GetMajorUnitScale](./getmajorunitscale/) | Represents the major unit scale for the category axis. |

english/go-cpp/Button/MoveToRange/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Moves the shape to a specified range.
1414

1515
```go
1616

17-
func (instance *Button) MoveToRange(upperleftrow int32, upperleftcolumn int32, lowerrightrow int32, lowerrightcolumn int32) error
17+
func (instance *Button) MoveToRange(toprow int32, leftcolumn int32, bottomrow int32, rightcolumn int32) error
1818

1919
```
2020

english/go-cpp/CellsDrawing/MoveToRange/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Moves the shape to a specified range.
1414

1515
```go
1616

17-
func (instance *CellsDrawing) MoveToRange(upperleftrow int32, upperleftcolumn int32, lowerrightrow int32, lowerrightcolumn int32) error
17+
func (instance *CellsDrawing) MoveToRange(toprow int32, leftcolumn int32, bottomrow int32, rightcolumn int32) error
1818

1919
```
2020

0 commit comments

Comments
 (0)