@@ -2320,6 +2320,12 @@ final class PivotTableAutoFormatType {
2320
2320
const TABLE_9 = 20 ;
2321
2321
};
2322
2322
2323
+ final class PivotTableSelectionType {
2324
+ const DATA_AND_LABEL = 0 ;
2325
+ const DATA_ONLY = 2 ;
2326
+ const LABEL_ONLY = 1 ;
2327
+ };
2328
+
2323
2329
final class PivotTableStyleType {
2324
2330
const CUSTOM = 85 ;
2325
2331
const NONE = 0 ;
@@ -2943,15 +2949,15 @@ final class SqlScriptOperatorType {
2943
2949
2944
2950
final class StyleModifyFlag {
2945
2951
const ALIGNMENT_SETTINGS = 4161664 ;
2946
- const ALL = 234881011 ;
2952
+ const ALL = 234881012 ;
2947
2953
const BACKGROUND_COLOR = 16777216 ;
2948
2954
const BORDERS = 16224 ;
2949
2955
const BOTTOM_BORDER = 2048 ;
2950
2956
const CELL_SHADING = 29360128 ;
2951
2957
const DIAGONAL = 12288 ;
2952
2958
const DIAGONAL_DOWN_BORDER = 4096 ;
2953
2959
const DIAGONAL_UP_BORDER = 8192 ;
2954
- const FONT = 19 ;
2960
+ const FONT = 20 ;
2955
2961
const FONT_CAP = 18 ;
2956
2962
const FONT_CHARSET = 10 ;
2957
2963
const FONT_COLOR = 3 ;
@@ -2969,6 +2975,7 @@ final class StyleModifyFlag {
2969
2975
const FONT_STRIKE = 7 ;
2970
2976
const FONT_U_FILL_TX = 14 ;
2971
2977
const FONT_UNDERLINE = 6 ;
2978
+ const FONT_VERTICAL_TEXT = 19 ;
2972
2979
const FONT_WEIGHT = 4 ;
2973
2980
const FOREGROUND_COLOR = 8388608 ;
2974
2981
const HIDE_FORMULA = 134217728 ;
@@ -4505,6 +4512,13 @@ function __construct(...$argv) {
4505
4512
}
4506
4513
}
4507
4514
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
+
4508
4522
class PivotGlobalizationSettings extends Java {
4509
4523
static private $ _className = "com.aspose.cells.PivotGlobalizationSettings " ;
4510
4524
function __construct (...$ argv ) {
@@ -4609,6 +4623,10 @@ function __construct(...$argv) {
4609
4623
parent ::__construct (self ::$ _className , ...$ argv );
4610
4624
}
4611
4625
4626
+ static function getActive (...$ argv ) {
4627
+ return Java (self ::$ _className )->getActive (...$ argv );
4628
+ }
4629
+
4612
4630
static function getAll (...$ argv ) {
4613
4631
return Java (self ::$ _className )->getAll (...$ argv );
4614
4632
}
0 commit comments