Skip to content

Commit 9a3e622

Browse files
committed
v22.9
1 parent 7b4dabd commit 9a3e622

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1641,6 +1641,12 @@ final class LoadFormat {
16411641
const XML = 51;
16421642
};
16431643

1644+
final class LoadNumbersTableType {
1645+
const ONE_TABLE_PER_SHEET = 1;
1646+
const OVERRIDE_OTHER_TABLES = 2;
1647+
const TILE_TABLES = 4;
1648+
};
1649+
16441650
final class LookAtType {
16451651
const CONTAINS = 0;
16461652
const END_WITH = 2;
@@ -2525,6 +2531,14 @@ final class PresetShadowType {
25252531
const PERSPECTIVE_DIAGONAL_UPPER_RIGHT = 21;
25262532
};
25272533

2534+
final class PresetThemeGradientType {
2535+
const BOTTOM_SPOTLIGHT = 3;
2536+
const LIGHT_GRADIENT = 0;
2537+
const MEDIUM_GRADIENT = 2;
2538+
const RADIAL_GRADIENT = 4;
2539+
const TOP_SPOTLIGHT = 1;
2540+
};
2541+
25282542
final class PresetWordArtStyle {
25292543
const WORD_ART_STYLE_1 = 1;
25302544
const WORD_ART_STYLE_10 = 10;
@@ -4408,6 +4422,13 @@ function __construct(...$argv) {
44084422
}
44094423
}
44104424

4425+
class NumbersLoadOptions extends Java {
4426+
static private $_className = "com.aspose.cells.NumbersLoadOptions";
4427+
function __construct(...$argv) {
4428+
parent::__construct(self::$_className, ...$argv);
4429+
}
4430+
}
4431+
44114432
class OdsLoadOptions extends Java {
44124433
static private $_className = "com.aspose.cells.OdsLoadOptions";
44134434
function __construct(...$argv) {

0 commit comments

Comments
 (0)