ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
ConditionalFormatValueObject.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting
;
4
5
class
ConditionalFormatValueObject
6
{
7
private
$type
;
8
9
private
$value
;
10
11
private
$cellFormula
;
12
18
public
function
__construct
(
$type
,
$value
= null,
$cellFormula
= null)
19
{
20
$this->type =
$type
;
21
$this->value =
$value
;
22
$this->cellFormula =
$cellFormula
;
23
}
24
28
public
function
getType
()
29
{
30
return
$this->type
;
31
}
32
36
public
function
setType
(
$type
)
37
{
38
$this->type =
$type
;
39
40
return
$this;
41
}
42
46
public
function
getValue
()
47
{
48
return
$this->value
;
49
}
50
54
public
function
setValue
(
$value
)
55
{
56
$this->value =
$value
;
57
58
return
$this;
59
}
60
64
public
function
getCellFormula
()
65
{
66
return
$this->cellFormula
;
67
}
68
72
public
function
setCellFormula
(
$cellFormula
)
73
{
74
$this->cellFormula =
$cellFormula
;
75
76
return
$this;
77
}
78
}
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\$type
$type
Definition:
ConditionalFormatValueObject.php:7
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\__construct
__construct($type, $value=null, $cellFormula=null)
ConditionalFormatValueObject constructor.
Definition:
ConditionalFormatValueObject.php:18
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting
Definition:
ConditionalDataBar.php:3
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\setType
setType($type)
Definition:
ConditionalFormatValueObject.php:36
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\getType
getType()
Definition:
ConditionalFormatValueObject.php:28
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\$cellFormula
$cellFormula
Definition:
ConditionalFormatValueObject.php:11
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\getCellFormula
getCellFormula()
Definition:
ConditionalFormatValueObject.php:64
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject
Definition:
ConditionalFormatValueObject.php:5
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\getValue
getValue()
Definition:
ConditionalFormatValueObject.php:46
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\$value
$value
Definition:
ConditionalFormatValueObject.php:9
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\setValue
setValue($value)
Definition:
ConditionalFormatValueObject.php:54
PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\ConditionalFormatValueObject\setCellFormula
setCellFormula($cellFormula)
Definition:
ConditionalFormatValueObject.php:72
php
libs
composer
vendor
phpoffice
phpspreadsheet
src
PhpSpreadsheet
Style
ConditionalFormatting
ConditionalFormatValueObject.php
Generated on Thu Jan 16 2025 19:01:47 for ILIAS by
1.8.13 (using
Doxyfile
)