Skip to content

Commit 4070c0b

Browse files
committed
v23.9
1 parent 3ae4f6e commit 4070c0b

File tree

2 files changed

+40
-7
lines changed

2 files changed

+40
-7
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 40 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -487,13 +487,13 @@ final class CellValueFormatStrategy {
487487
};
488488

489489
final class CellValueType {
490-
const IS_BOOL = 0;
491-
const IS_DATE_TIME = 1;
492-
const IS_ERROR = 2;
493-
const IS_NULL = 3;
494-
const IS_NUMERIC = 4;
495-
const IS_STRING = 5;
496-
const IS_UNKNOWN = 6;
490+
const IS_BOOL = 16;
491+
const IS_DATE_TIME = 4;
492+
const IS_ERROR = 32;
493+
const IS_NULL = 1;
494+
const IS_NUMERIC = 2;
495+
const IS_STRING = 8;
496+
const IS_UNKNOWN = 0;
497497
};
498498

499499
final class ChartLineFormattingType {
@@ -645,6 +645,8 @@ final class ColorType {
645645
final class CommentTitleType {
646646
const CELL = 0;
647647
const COMMENT = 1;
648+
const NOTE = 2;
649+
const REPLY = 3;
648650
};
649651

650652
final class ConsolidationFunction {
@@ -1202,6 +1204,7 @@ final class FileFormatType {
12021204
const DOTM = 40;
12031205
const DOTX = 39;
12041206
const EMF = 258;
1207+
const EPUB = 775;
12051208
const EXCEL_2 = 25;
12061209
const EXCEL_3 = 24;
12071210
const EXCEL_4 = 23;
@@ -1770,6 +1773,7 @@ final class LoadDataFilterOptions {
17701773
final class LoadFormat {
17711774
const AUTO = 0;
17721775
const CSV = 1;
1776+
const EPUB = 52;
17731777
const EXCEL_97_TO_2003 = 5;
17741778
const FODS = 59;
17751779
const HTML = 12;
@@ -2857,6 +2861,7 @@ final class SaveFormat {
28572861
const DIF = 30;
28582862
const DOCX = 62;
28592863
const EMF = 258;
2864+
const EPUB = 772;
28602865
const EXCEL_97_TO_2003 = 5;
28612866
const FODS = 59;
28622867
const GIF = 322;
@@ -3644,6 +3649,13 @@ function __construct(...$argv) {
36443649
}
36453650
}
36463651

3652+
class CellValue extends Java {
3653+
static private $_className = "com.aspose.cells.CellValue";
3654+
function __construct(...$argv) {
3655+
parent::__construct(self::$_className, ...$argv);
3656+
}
3657+
}
3658+
36473659
class CellWatch extends Java {
36483660
static private $_className = "com.aspose.cells.CellWatch";
36493661
function __construct(...$argv) {
@@ -4265,6 +4277,13 @@ function __construct(...$argv) {
42654277
}
42664278
}
42674279

4280+
class CustomFunctionDefinition extends Java {
4281+
static private $_className = "com.aspose.cells.CustomFunctionDefinition";
4282+
function __construct(...$argv) {
4283+
parent::__construct(self::$_className, ...$argv);
4284+
}
4285+
}
4286+
42684287
class CustomProperty extends Java {
42694288
static private $_className = "com.aspose.cells.CustomProperty";
42704289
function __construct(...$argv) {
@@ -4332,6 +4351,20 @@ function __construct(...$argv) {
43324351
}
43334352
}
43344353

4354+
class EbookLoadOptions extends Java {
4355+
static private $_className = "com.aspose.cells.EbookLoadOptions";
4356+
function __construct(...$argv) {
4357+
parent::__construct(self::$_className, ...$argv);
4358+
}
4359+
}
4360+
4361+
class EbookSaveOptions extends Java {
4362+
static private $_className = "com.aspose.cells.EbookSaveOptions";
4363+
function __construct(...$argv) {
4364+
parent::__construct(self::$_className, ...$argv);
4365+
}
4366+
}
4367+
43354368
class ExportRangeToJsonOptions extends Java {
43364369
static private $_className = "com.aspose.cells.ExportRangeToJsonOptions";
43374370
function __construct(...$argv) {

0 commit comments

Comments
 (0)