Skip to content

Commit 7b4dabd

Browse files
committed
v22.8
1 parent e24fe48 commit 7b4dabd

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
@@ -4562,6 +4562,21 @@ function __construct(...$argv) {
45624562
}
45634563
}
45644564

4565+
class SheetSet extends Java {
4566+
static private $_className = "com.aspose.cells.SheetSet";
4567+
function __construct(...$argv) {
4568+
parent::__construct(self::$_className, ...$argv);
4569+
}
4570+
4571+
static function getAll(...$argv) {
4572+
return Java(self::$_className)->getAll(...$argv);
4573+
}
4574+
4575+
static function getVisible(...$argv) {
4576+
return Java(self::$_className)->getVisible(...$argv);
4577+
}
4578+
}
4579+
45654580
class SignatureLine extends Java {
45664581
static private $_className = "com.aspose.cells.SignatureLine";
45674582
function __construct(...$argv) {

0 commit comments

Comments
 (0)