ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
PHPExcel_Chart_Title Class Reference
+ Collaboration diagram for PHPExcel_Chart_Title:

Public Member Functions

 __construct ($caption=null, PHPExcel_Chart_Layout $layout=null)
 Create a new PHPExcel_Chart_Title. More...
 
 getCaption ()
 Get caption. More...
 
 setCaption ($caption=null)
 
 getLayout ()
 Get Layout. More...
 

Private Attributes

 $_caption = null
 
 $_layout = null
 

Detailed Description

Definition at line 36 of file Title.php.

Constructor & Destructor Documentation

◆ __construct()

PHPExcel_Chart_Title::__construct (   $caption = null,
PHPExcel_Chart_Layout  $layout = null 
)

Create a new PHPExcel_Chart_Title.

Definition at line 56 of file Title.php.

57 {
58 $this->_caption = $caption;
59 $this->_layout = $layout;
60 }

References $layout.

Member Function Documentation

◆ getCaption()

PHPExcel_Chart_Title::getCaption ( )

Get caption.

Returns
string

Definition at line 67 of file Title.php.

67 {
68 return $this->_caption;
69 }

References $_caption.

◆ getLayout()

PHPExcel_Chart_Title::getLayout ( )

Get Layout.

Returns
PHPExcel_Chart_Layout

Definition at line 88 of file Title.php.

88 {
89 return $this->_layout;
90 }

References $_layout.

◆ setCaption()

PHPExcel_Chart_Title::setCaption (   $caption = null)
Set caption

@param string $caption
Returns
PHPExcel_Chart_Title

Definition at line 77 of file Title.php.

77 {
78 $this->_caption = $caption;
79
80 return $this;
81 }

Field Documentation

◆ $_caption

PHPExcel_Chart_Title::$_caption = null
private

Definition at line 44 of file Title.php.

Referenced by getCaption().

◆ $_layout

PHPExcel_Chart_Title::$_layout = null
private

Definition at line 51 of file Title.php.

Referenced by getLayout().


The documentation for this class was generated from the following file: