Skip to content

Commit 1d1bd34

Browse files
committed
v24.7
1 parent 60ef025 commit 1d1bd34

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2911,6 +2911,7 @@ final class RevisionType {
29112911

29122912
final class SaveFormat {
29132913
const AUTO = 0;
2914+
const AZW_3 = 773;
29142915
const BMP = 263;
29152916
const CSV = 1;
29162917
const DIF = 30;
@@ -3020,8 +3021,9 @@ final class SlicerCacheCrossFilterType {
30203021
};
30213022

30223023
final class SlicerCacheItemSortType {
3023-
const ASCENDING = 0;
3024-
const DESCENDING = 1;
3024+
const ASCENDING = 1;
3025+
const DESCENDING = 2;
3026+
const NATURAL = 0;
30253027
};
30263028

30273029
final class SlicerStyleType {
@@ -3760,6 +3762,10 @@ static function fromArgb(...$argv) {
37603762
return Java(self::$_className)->fromArgb(...$argv);
37613763
}
37623764

3765+
static function fromName(...$argv) {
3766+
return Java(self::$_className)->fromName(...$argv);
3767+
}
3768+
37633769
static function getAliceBlue(...$argv) {
37643770
return Java(self::$_className)->getAliceBlue(...$argv);
37653771
}
@@ -4849,6 +4855,13 @@ function __construct(...$argv) {
48494855
}
48504856
}
48514857

4858+
class PivotTableCalculateOption extends Java {
4859+
static private $_className = "com.aspose.cells.PivotTableCalculateOption";
4860+
function __construct(...$argv) {
4861+
parent::__construct(self::$_className, ...$argv);
4862+
}
4863+
}
4864+
48524865
class PivotTableRefreshOption extends Java {
48534866
static private $_className = "com.aspose.cells.PivotTableRefreshOption";
48544867
function __construct(...$argv) {
@@ -5395,6 +5408,14 @@ static function getIconImageData(...$argv) {
53955408
}
53965409
}
53975410

5411+
class ConversionUtility extends Java {
5412+
static private $_className = "com.aspose.cells.ConversionUtility";
5413+
5414+
static function convert(...$argv) {
5415+
Java(self::$_className)->convert(...$argv);
5416+
}
5417+
}
5418+
53985419
class Encoding extends Java {
53995420
static private $_className = "com.aspose.cells.Encoding";
54005421

0 commit comments

Comments
 (0)