Skip to content

Commit 9b0d967

Browse files
committed
v23.5
1 parent 998a4ab commit 9b0d967

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2283,6 +2283,16 @@ final class PdfOptimizationType {
22832283
const STANDARD = 0;
22842284
};
22852285

2286+
final class PivotAreaType {
2287+
const ALL = 3;
2288+
const BUTTON = 5;
2289+
const DATA = 2;
2290+
const NONE = 0;
2291+
const NORMAL = 1;
2292+
const ORIGIN = 4;
2293+
const TOP_RIGHT = 6;
2294+
};
2295+
22862296
final class PivotConditionFormatRuleType {
22872297
const ALL = 1;
22882298
const COLUMN = 3;
@@ -4659,6 +4669,20 @@ function __construct(...$argv) {
46594669
}
46604670
}
46614671

4672+
class PivotAreaFilter extends Java {
4673+
static private $_className = "com.aspose.cells.PivotAreaFilter";
4674+
function __construct(...$argv) {
4675+
parent::__construct(self::$_className, ...$argv);
4676+
}
4677+
}
4678+
4679+
class PivotAreaFilterCollection extends Java {
4680+
static private $_className = "com.aspose.cells.PivotAreaFilterCollection";
4681+
function __construct(...$argv) {
4682+
parent::__construct(self::$_className, ...$argv);
4683+
}
4684+
}
4685+
46624686
class PivotGlobalizationSettings extends Java {
46634687
static private $_className = "com.aspose.cells.PivotGlobalizationSettings";
46644688
function __construct(...$argv) {
@@ -4694,6 +4718,20 @@ function __construct(...$argv) {
46944718
}
46954719
}
46964720

4721+
class RenderingFont extends Java {
4722+
static private $_className = "com.aspose.cells.RenderingFont";
4723+
function __construct(...$argv) {
4724+
parent::__construct(self::$_className, ...$argv);
4725+
}
4726+
}
4727+
4728+
class RenderingWatermark extends Java {
4729+
static private $_className = "com.aspose.cells.RenderingWatermark";
4730+
function __construct(...$argv) {
4731+
parent::__construct(self::$_className, ...$argv);
4732+
}
4733+
}
4734+
46974735
class ReplaceOptions extends Java {
46984736
static private $_className = "com.aspose.cells.ReplaceOptions";
46994737
function __construct(...$argv) {

0 commit comments

Comments
 (0)