Skip to content

Commit 9e1c46f

Browse files
committed
v24.4
1 parent b5d31e3 commit 9e1c46f

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,6 +1258,7 @@ final class FileFormatType {
12581258
const UNKNOWN = 255;
12591259
const VSD = 36;
12601260
const VSDX = 37;
1261+
const WEB_P = 323;
12611262
const WMF = 259;
12621263
const X_HTML = 771;
12631264
const XLAM = 10;
@@ -2856,6 +2857,12 @@ final class RenameStrategy {
28562857
const LETTER = 2;
28572858
};
28582859

2860+
final class ReserveMissingPivotItemType {
2861+
const ALL = 1;
2862+
const DEFAULT = 0;
2863+
const NONE = 2;
2864+
};
2865+
28592866
final class ResourceLoadingType {
28602867
const DEFAULT = 0;
28612868
const SKIP = 1;
@@ -4368,6 +4375,13 @@ function __construct(...$argv) {
43684375
}
43694376
}
43704377

4378+
class DeleteBlankOptions extends Java {
4379+
static private $_className = "com.aspose.cells.DeleteBlankOptions";
4380+
function __construct(...$argv) {
4381+
parent::__construct(self::$_className, ...$argv);
4382+
}
4383+
}
4384+
43714385
class DeleteOptions extends Java {
43724386
static private $_className = "com.aspose.cells.DeleteOptions";
43734387
function __construct(...$argv) {
@@ -4821,6 +4835,13 @@ function __construct(...$argv) {
48214835
}
48224836
}
48234837

4838+
class PivotTableRefreshOption extends Java {
4839+
static private $_className = "com.aspose.cells.PivotTableRefreshOption";
4840+
function __construct(...$argv) {
4841+
parent::__construct(self::$_className, ...$argv);
4842+
}
4843+
}
4844+
48244845
class PowerQueryFormulaParameter extends Java {
48254846
static private $_className = "com.aspose.cells.PowerQueryFormulaParameter";
48264847
function __construct(...$argv) {
@@ -5022,6 +5043,13 @@ function __construct(...$argv) {
50225043
}
50235044
}
50245045

5046+
class SystemTimeInterruptMonitor extends Java {
5047+
static private $_className = "com.aspose.cells.SystemTimeInterruptMonitor";
5048+
function __construct(...$argv) {
5049+
parent::__construct(self::$_className, ...$argv);
5050+
}
5051+
}
5052+
50255053
class TableToRangeOptions extends Java {
50265054
static private $_className = "com.aspose.cells.TableToRangeOptions";
50275055
function __construct(...$argv) {
@@ -5050,6 +5078,13 @@ function __construct(...$argv) {
50505078
}
50515079
}
50525080

5081+
class ThreadInterruptMonitor extends Java {
5082+
static private $_className = "com.aspose.cells.ThreadInterruptMonitor";
5083+
function __construct(...$argv) {
5084+
parent::__construct(self::$_className, ...$argv);
5085+
}
5086+
}
5087+
50535088
class TilePicOption extends Java {
50545089
static private $_className = "com.aspose.cells.TilePicOption";
50555090
function __construct(...$argv) {

0 commit comments

Comments
 (0)