Skip to content

Commit 869aa4e

Browse files
committed
v23.3
1 parent 59cc6f9 commit 869aa4e

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2320,6 +2320,12 @@ final class PivotTableAutoFormatType {
23202320
const TABLE_9 = 20;
23212321
};
23222322

2323+
final class PivotTableSelectionType {
2324+
const DATA_AND_LABEL = 0;
2325+
const DATA_ONLY = 2;
2326+
const LABEL_ONLY = 1;
2327+
};
2328+
23232329
final class PivotTableStyleType {
23242330
const CUSTOM = 85;
23252331
const NONE = 0;
@@ -2943,15 +2949,15 @@ final class SqlScriptOperatorType {
29432949

29442950
final class StyleModifyFlag {
29452951
const ALIGNMENT_SETTINGS = 4161664;
2946-
const ALL = 234881011;
2952+
const ALL = 234881012;
29472953
const BACKGROUND_COLOR = 16777216;
29482954
const BORDERS = 16224;
29492955
const BOTTOM_BORDER = 2048;
29502956
const CELL_SHADING = 29360128;
29512957
const DIAGONAL = 12288;
29522958
const DIAGONAL_DOWN_BORDER = 4096;
29532959
const DIAGONAL_UP_BORDER = 8192;
2954-
const FONT = 19;
2960+
const FONT = 20;
29552961
const FONT_CAP = 18;
29562962
const FONT_CHARSET = 10;
29572963
const FONT_COLOR = 3;
@@ -2969,6 +2975,7 @@ final class StyleModifyFlag {
29692975
const FONT_STRIKE = 7;
29702976
const FONT_U_FILL_TX = 14;
29712977
const FONT_UNDERLINE = 6;
2978+
const FONT_VERTICAL_TEXT = 19;
29722979
const FONT_WEIGHT = 4;
29732980
const FOREGROUND_COLOR = 8388608;
29742981
const HIDE_FORMULA = 134217728;
@@ -4505,6 +4512,13 @@ function __construct(...$argv) {
45054512
}
45064513
}
45074514

4515+
class PivotArea extends Java {
4516+
static private $_className = "com.aspose.cells.PivotArea";
4517+
function __construct(...$argv) {
4518+
parent::__construct(self::$_className, ...$argv);
4519+
}
4520+
}
4521+
45084522
class PivotGlobalizationSettings extends Java {
45094523
static private $_className = "com.aspose.cells.PivotGlobalizationSettings";
45104524
function __construct(...$argv) {
@@ -4609,6 +4623,10 @@ function __construct(...$argv) {
46094623
parent::__construct(self::$_className, ...$argv);
46104624
}
46114625

4626+
static function getActive(...$argv) {
4627+
return Java(self::$_className)->getActive(...$argv);
4628+
}
4629+
46124630
static function getAll(...$argv) {
46134631
return Java(self::$_className)->getAll(...$argv);
46144632
}

0 commit comments

Comments
 (0)