Skip to content

Commit 44f81ac

Browse files
committed
v23.7
1 parent ce5525a commit 44f81ac

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,6 @@ final class FileFormatType {
12031203
const DOTX = 39;
12041204
const EMF = 258;
12051205
const EXCEL_2 = 25;
1206-
const EXCEL_2003_XML = 15;
12071206
const EXCEL_3 = 24;
12081207
const EXCEL_4 = 23;
12091208
const EXCEL_95 = 22;
@@ -1218,6 +1217,7 @@ final class FileFormatType {
12181217
const M_HTML = 17;
12191218
const MAPI_MESSAGE = 33;
12201219
const MARKDOWN = 57;
1220+
const MICROSOFT_CABINET = 773;
12211221
const MS_EQUATION = 34;
12221222
const NUMBERS = 56;
12231223
const NUMBERS_09 = 56;
@@ -1242,6 +1242,7 @@ final class FileFormatType {
12421242
const PPT = 32;
12431243
const PPTM = 41;
12441244
const PPTX = 26;
1245+
const RTF = 774;
12451246
const SPREADSHEET_ML = 15;
12461247
const SQL_SCRIPT = 514;
12471248
const SVG = 28;
@@ -4455,6 +4456,20 @@ function __construct(...$argv) {
44554456
}
44564457
}
44574458

4459+
class HtmlTableLoadOption extends Java {
4460+
static private $_className = "com.aspose.cells.HtmlTableLoadOption";
4461+
function __construct(...$argv) {
4462+
parent::__construct(self::$_className, ...$argv);
4463+
}
4464+
}
4465+
4466+
class HtmlTableLoadOptionCollection extends Java {
4467+
static private $_className = "com.aspose.cells.HtmlTableLoadOptionCollection";
4468+
function __construct(...$argv) {
4469+
parent::__construct(self::$_className, ...$argv);
4470+
}
4471+
}
4472+
44584473
class ImageOrPrintOptions extends Java {
44594474
static private $_className = "com.aspose.cells.ImageOrPrintOptions";
44604475
function __construct(...$argv) {
@@ -4766,6 +4781,27 @@ function __construct(...$argv) {
47664781
}
47674782
}
47684783

4784+
class SettableChartGlobalizationSettings extends Java {
4785+
static private $_className = "com.aspose.cells.SettableChartGlobalizationSettings";
4786+
function __construct(...$argv) {
4787+
parent::__construct(self::$_className, ...$argv);
4788+
}
4789+
}
4790+
4791+
class SettableGlobalizationSettings extends Java {
4792+
static private $_className = "com.aspose.cells.SettableGlobalizationSettings";
4793+
function __construct(...$argv) {
4794+
parent::__construct(self::$_className, ...$argv);
4795+
}
4796+
}
4797+
4798+
class SettablePivotGlobalizationSettings extends Java {
4799+
static private $_className = "com.aspose.cells.SettablePivotGlobalizationSettings";
4800+
function __construct(...$argv) {
4801+
parent::__construct(self::$_className, ...$argv);
4802+
}
4803+
}
4804+
47694805
class ShapeGuideCollection extends Java {
47704806
static private $_className = "com.aspose.cells.ShapeGuideCollection";
47714807
function __construct(...$argv) {

0 commit comments

Comments
 (0)