Skip to content

Commit 33fc76e

Browse files
committed
21.10
1 parent ea8f908 commit 33fc76e

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ final class AccessCacheOptions {
1515
const VALIDATION = 33554441;
1616
};
1717

18+
final class AutoFillType {
19+
const COPY = 1;
20+
const DEFAULT = 0;
21+
const FORMATS = 3;
22+
const SERIES = 2;
23+
const VALUES = 4;
24+
};
25+
1826
final class AutoFitMergedCellsType {
1927
const EACH_LINE = 3;
2028
const FIRST_LINE = 1;
@@ -3382,6 +3390,13 @@ function __construct(...$argv) {
33823390
}
33833391
}
33843392

3393+
class AxisBins extends Java {
3394+
static private $_className = "com.aspose.cells.AxisBins";
3395+
function __construct(...$argv) {
3396+
parent::__construct(self::$_className, ...$argv);
3397+
}
3398+
}
3399+
33853400
class CalculationOptions extends Java {
33863401
static private $_className = "com.aspose.cells.CalculationOptions";
33873402
function __construct(...$argv) {

0 commit comments

Comments
 (0)