Skip to content

Commit 50b3a2d

Browse files
committed
v23.11
1 parent c58acd9 commit 50b3a2d

File tree

2 files changed

+59
-20
lines changed

2 files changed

+59
-20
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 59 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,10 +1154,15 @@ final class ErrorCheckType {
11541154
const CALC = 1;
11551155
const CALCULATED_COLUMN = 129;
11561156
const EMPTY_CELL_REF = 2;
1157+
const EVALUATION_ERROR = 1;
11571158
const INCONSIST_FORMULA = 16;
11581159
const INCONSIST_RANGE = 8;
1160+
const NUMBER_STORED_AS_TEXT = 4;
1161+
const TABLE_DATA_VALIDATION = 128;
11591162
const TEXT_DATE = 32;
11601163
const TEXT_NUMBER = 4;
1164+
const TWO_DIGIT_TEXT_YEAR = 32;
1165+
const UNLOCKED_FORMULA = 64;
11611166
const UNPROCTED_FORMULA = 64;
11621167
const VALIDATION = 128;
11631168
};
@@ -1399,24 +1404,24 @@ final class FontUnderlineType {
13991404
};
14001405

14011406
final class FormatConditionType {
1402-
const ABOVE_AVERAGE = 17;
1403-
const BEGINS_WITH = 10;
1404-
const CELL_VALUE = 0;
1405-
const COLOR_SCALE = 2;
1406-
const CONTAINS_BLANKS = 12;
1407-
const CONTAINS_ERRORS = 14;
1408-
const CONTAINS_TEXT = 8;
1409-
const DATA_BAR = 3;
1410-
const DUPLICATE_VALUES = 7;
1411-
const ENDS_WITH = 11;
1412-
const EXPRESSION = 1;
1413-
const ICON_SET = 4;
1414-
const NOT_CONTAINS_BLANKS = 13;
1415-
const NOT_CONTAINS_ERRORS = 15;
1416-
const NOT_CONTAINS_TEXT = 9;
1417-
const TIME_PERIOD = 16;
1418-
const TOP_10 = 5;
1419-
const UNIQUE_VALUES = 6;
1407+
const ABOVE_AVERAGE = 16384;
1408+
const BEGINS_WITH = 128;
1409+
const CELL_VALUE = 1;
1410+
const COLOR_SCALE = 32768;
1411+
const CONTAINS_BLANKS = 512;
1412+
const CONTAINS_ERRORS = 2048;
1413+
const CONTAINS_TEXT = 32;
1414+
const DATA_BAR = 65536;
1415+
const DUPLICATE_VALUES = 16;
1416+
const ENDS_WITH = 256;
1417+
const EXPRESSION = 2;
1418+
const ICON_SET = 131072;
1419+
const NOT_CONTAINS_BLANKS = 1024;
1420+
const NOT_CONTAINS_ERRORS = 4096;
1421+
const NOT_CONTAINS_TEXT = 64;
1422+
const TIME_PERIOD = 8192;
1423+
const TOP_10 = 4;
1424+
const UNIQUE_VALUES = 8;
14201425
};
14211426

14221427
final class FormatConditionValueType {
@@ -2268,6 +2273,10 @@ final class PasteType {
22682273

22692274
final class PdfCompliance {
22702275
const NONE = 0;
2276+
const PDF_14 = 0;
2277+
const PDF_15 = 3;
2278+
const PDF_16 = 4;
2279+
const PDF_17 = 5;
22712280
const PDF_A_1_A = 2;
22722281
const PDF_A_1_B = 1;
22732282
};
@@ -2335,6 +2344,13 @@ final class PivotFieldDataDisplayFormat {
23352344
const RUNNING_TOTAL_IN = 4;
23362345
};
23372346

2347+
final class PivotFieldGroupType {
2348+
const DATE_TIME_RANGE = 1;
2349+
const DISCRETE = 3;
2350+
const NONE = 0;
2351+
const NUMBERIC_RANGE = 2;
2352+
};
2353+
23382354
final class PivotFieldSubtotalType {
23392355
const AUTOMATIC = 1;
23402356
const AVERAGE = 8;
@@ -2433,6 +2449,7 @@ final class PivotGroupByType {
24332449
const HOURS = 3;
24342450
const MINUTES = 2;
24352451
const MONTHS = 5;
2452+
const NUMBERS = 0;
24362453
const QUARTERS = 6;
24372454
const RANGE_OF_VALUES = 0;
24382455
const SECONDS = 1;
@@ -3107,15 +3124,15 @@ final class SqlScriptOperatorType {
31073124

31083125
final class StyleModifyFlag {
31093126
const ALIGNMENT_SETTINGS = 4161664;
3110-
const ALL = 234881012;
3127+
const ALL = 234881023;
31113128
const BACKGROUND_COLOR = 16777216;
31123129
const BORDERS = 16224;
31133130
const BOTTOM_BORDER = 2048;
31143131
const CELL_SHADING = 29360128;
31153132
const DIAGONAL = 12288;
31163133
const DIAGONAL_DOWN_BORDER = 4096;
31173134
const DIAGONAL_UP_BORDER = 8192;
3118-
const FONT = 20;
3135+
const FONT = 31;
31193136
const FONT_CAP = 18;
31203137
const FONT_CHARSET = 10;
31213138
const FONT_COLOR = 3;
@@ -4284,6 +4301,13 @@ function __construct(...$argv) {
42844301
}
42854302
}
42864303

4304+
class CustomPiovtFieldGroupItem extends Java {
4305+
static private $_className = "com.aspose.cells.CustomPiovtFieldGroupItem";
4306+
function __construct(...$argv) {
4307+
parent::__construct(self::$_className, ...$argv);
4308+
}
4309+
}
4310+
42874311
class CustomProperty extends Java {
42884312
static private $_className = "com.aspose.cells.CustomProperty";
42894313
function __construct(...$argv) {
@@ -4630,6 +4654,10 @@ static function getConsumptionCredit(...$argv) {
46304654
static function getConsumptionQuantity(...$argv) {
46314655
return Java(self::$_className)->getConsumptionQuantity(...$argv);
46324656
}
4657+
4658+
static function isMeteredLicensed(...$argv) {
4659+
return Java(self::$_className)->isMeteredLicensed(...$argv);
4660+
}
46334661
}
46344662

46354663
class MultipleFilterCollection extends Java {
@@ -4744,6 +4772,13 @@ function __construct(...$argv) {
47444772
}
47454773
}
47464774

4775+
class PivotFieldGroupSettings extends Java {
4776+
static private $_className = "com.aspose.cells.PivotFieldGroupSettings";
4777+
function __construct(...$argv) {
4778+
parent::__construct(self::$_className, ...$argv);
4779+
}
4780+
}
4781+
47474782
class PivotGlobalizationSettings extends Java {
47484783
static private $_className = "com.aspose.cells.PivotGlobalizationSettings";
47494784
function __construct(...$argv) {
@@ -5222,6 +5257,10 @@ static function mergeFiles(...$argv) {
52225257
Java(self::$_className)->mergeFiles(...$argv);
52235258
}
52245259

5260+
static function needQuoteInFormula(...$argv) {
5261+
return Java(self::$_className)->needQuoteInFormula(...$argv);
5262+
}
5263+
52255264
static function rowIndexToName(...$argv) {
52265265
return Java(self::$_className)->rowIndexToName(...$argv);
52275266
}

0 commit comments

Comments
 (0)