Skip to content

Commit 9cb4af6

Browse files
v25.7
1 parent 04a15c7 commit 9cb4af6

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed
Binary file not shown.

lib/aspose.cells.php

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1939,6 +1939,7 @@ final class MarkdownTableHeaderType {
19391939
};
19401940

19411941
final class MemorySetting {
1942+
const FILE_CACHE = 2;
19421943
const MEMORY_PREFERENCE = 1;
19431944
const NORMAL = 0;
19441945
};
@@ -4568,6 +4569,13 @@ function __construct(...$argv) {
45684569
}
45694570
}
45704571

4572+
class CustomRenderSettings extends Java {
4573+
static private $_className = "com.aspose.cells.CustomRenderSettings";
4574+
function __construct(...$argv) {
4575+
parent::__construct(self::$_className, ...$argv);
4576+
}
4577+
}
4578+
45714579
class DataSorterKeyCollection extends Java {
45724580
static private $_className = "com.aspose.cells.DataSorterKeyCollection";
45734581
function __construct(...$argv) {
@@ -5524,13 +5532,6 @@ function __construct(...$argv) {
55245532
}
55255533
}
55265534

5527-
class XmlColumnProperty extends Java {
5528-
static private $_className = "com.aspose.cells.XmlColumnProperty";
5529-
function __construct(...$argv) {
5530-
parent::__construct(self::$_className, ...$argv);
5531-
}
5532-
}
5533-
55345535
class XmlLoadOptions extends Java {
55355536
static private $_className = "com.aspose.cells.XmlLoadOptions";
55365537
function __construct(...$argv) {
@@ -5592,6 +5593,10 @@ static function getAltStartPath(...$argv) {
55925593
return Java(self::$_className)->getAltStartPath(...$argv);
55935594
}
55945595

5596+
static function getCacheFolder(...$argv) {
5597+
return Java(self::$_className)->getCacheFolder(...$argv);
5598+
}
5599+
55955600
static function getCustomImplementationFactory(...$argv) {
55965601
return Java(self::$_className)->getCustomImplementationFactory(...$argv);
55975602
}
@@ -5656,6 +5661,10 @@ static function setAltStartPath(...$argv) {
56565661
Java(self::$_className)->setAltStartPath(...$argv);
56575662
}
56585663

5664+
static function setCacheFolder(...$argv) {
5665+
Java(self::$_className)->setCacheFolder(...$argv);
5666+
}
5667+
56595668
static function setCloudPlatform(...$argv) {
56605669
Java(self::$_className)->setCloudPlatform(...$argv);
56615670
}

0 commit comments

Comments
 (0)