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)
 Set caption. More...
 
 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.

References $layout.

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

Member Function Documentation

◆ getCaption()

PHPExcel_Chart_Title::getCaption ( )

Get caption.

Returns
string

Definition at line 67 of file Title.php.

References $_caption.

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

◆ getLayout()

PHPExcel_Chart_Title::getLayout ( )

Get Layout.

Returns
PHPExcel_Chart_Layout

Definition at line 88 of file Title.php.

References $_layout.

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

◆ setCaption()

PHPExcel_Chart_Title::setCaption (   $caption = null)

Set caption.

Parameters
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: