ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
PHPExcel_Worksheet_PageSetup Class Reference
+ Collaboration diagram for PHPExcel_Worksheet_PageSetup:

Public Member Functions

 __construct ()
 Create a new PHPExcel_Worksheet_PageSetup.
 getPaperSize ()
 Get Paper Size.
 setPaperSize ($pValue=PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER)
 Set Paper Size.
 getOrientation ()
 Get Orientation.
 setOrientation ($pValue=PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT)
 Set Orientation.
 getScale ()
 Get Scale.
 setScale ($pValue=100)
 Set Scale.
 getFitToHeight ()
 Get Fit To Height.
 setFitToHeight ($pValue=1)
 Set Fit To Height.
 getFitToWidth ()
 Get Fit To Width.
 setFitToWidth ($pValue=1)
 Set Fit To Width.
 isColumnsToRepeatAtLeftSet ()
 Is Columns to repeat at left set?
 getColumnsToRepeatAtLeft ()
 Get Columns to repeat at left.
 setColumnsToRepeatAtLeft ($pValue=null)
 Set Columns to repeat at left.
 setColumnsToRepeatAtLeftByStartAndEnd ($pStart= 'A', $pEnd= 'A')
 Set Columns to repeat at left by start and end.
 isRowsToRepeatAtTopSet ()
 Is Rows to repeat at top set?
 getRowsToRepeatAtTop ()
 Get Rows to repeat at top.
 setRowsToRepeatAtTop ($pValue=null)
 Set Rows to repeat at top.
 setRowsToRepeatAtTopByStartAndEnd ($pStart=1, $pEnd=1)
 Set Rows to repeat at top by start and end.
 getHorizontalCentered ()
 Get center page horizontally.
 setHorizontalCentered ($value=false)
 Set center page horizontally.
 getVerticalCentered ()
 Get center page vertically.
 setVerticalCentered ($value=false)
 Set center page vertically.
 getPrintArea ()
 Get print area.
 isPrintAreaSet ()
 Is print area set?
 setPrintArea ($value)
 Set print area.
 setPrintAreaByColumnAndRow ($column1, $row1, $column2, $row2)
 Set print area.
 __clone ()
 Implement PHP __clone to create a deep clone, not just a shallow copy.

Data Fields

const PAPERSIZE_LETTER = 1
const PAPERSIZE_LETTER_SMALL = 2
const PAPERSIZE_TABLOID = 3
const PAPERSIZE_LEDGER = 4
const PAPERSIZE_LEGAL = 5
const PAPERSIZE_STATEMENT = 6
const PAPERSIZE_EXECUTIVE = 7
const PAPERSIZE_A3 = 8
const PAPERSIZE_A4 = 9
const PAPERSIZE_A4_SMALL = 10
const PAPERSIZE_A5 = 11
const PAPERSIZE_B4 = 12
const PAPERSIZE_B5 = 13
const PAPERSIZE_FOLIO = 14
const PAPERSIZE_QUARTO = 15
const PAPERSIZE_STANDARD_1 = 16
const PAPERSIZE_STANDARD_2 = 17
const PAPERSIZE_NOTE = 18
const PAPERSIZE_NO9_ENVELOPE = 19
const PAPERSIZE_NO10_ENVELOPE = 20
const PAPERSIZE_NO11_ENVELOPE = 21
const PAPERSIZE_NO12_ENVELOPE = 22
const PAPERSIZE_NO14_ENVELOPE = 23
const PAPERSIZE_C = 24
const PAPERSIZE_D = 25
const PAPERSIZE_E = 26
const PAPERSIZE_DL_ENVELOPE = 27
const PAPERSIZE_C5_ENVELOPE = 28
const PAPERSIZE_C3_ENVELOPE = 29
const PAPERSIZE_C4_ENVELOPE = 30
const PAPERSIZE_C6_ENVELOPE = 31
const PAPERSIZE_C65_ENVELOPE = 32
const PAPERSIZE_B4_ENVELOPE = 33
const PAPERSIZE_B5_ENVELOPE = 34
const PAPERSIZE_B6_ENVELOPE = 35
const PAPERSIZE_ITALY_ENVELOPE = 36
const PAPERSIZE_MONARCH_ENVELOPE = 37
const PAPERSIZE_6_3_4_ENVELOPE = 38
const PAPERSIZE_US_STANDARD_FANFOLD = 39
const PAPERSIZE_GERMAN_STANDARD_FANFOLD = 40
const PAPERSIZE_GERMAN_LEGAL_FANFOLD = 41
const PAPERSIZE_ISO_B4 = 42
const PAPERSIZE_JAPANESE_DOUBLE_POSTCARD = 43
const PAPERSIZE_STANDARD_PAPER_1 = 44
const PAPERSIZE_STANDARD_PAPER_2 = 45
const PAPERSIZE_STANDARD_PAPER_3 = 46
const PAPERSIZE_INVITE_ENVELOPE = 47
const PAPERSIZE_LETTER_EXTRA_PAPER = 48
const PAPERSIZE_LEGAL_EXTRA_PAPER = 49
const PAPERSIZE_TABLOID_EXTRA_PAPER = 50
const PAPERSIZE_A4_EXTRA_PAPER = 51
const PAPERSIZE_LETTER_TRANSVERSE_PAPER = 52
const PAPERSIZE_A4_TRANSVERSE_PAPER = 53
const PAPERSIZE_LETTER_EXTRA_TRANSVERSE_PAPER = 54
const PAPERSIZE_SUPERA_SUPERA_A4_PAPER = 55
const PAPERSIZE_SUPERB_SUPERB_A3_PAPER = 56
const PAPERSIZE_LETTER_PLUS_PAPER = 57
const PAPERSIZE_A4_PLUS_PAPER = 58
const PAPERSIZE_A5_TRANSVERSE_PAPER = 59
const PAPERSIZE_JIS_B5_TRANSVERSE_PAPER = 60
const PAPERSIZE_A3_EXTRA_PAPER = 61
const PAPERSIZE_A5_EXTRA_PAPER = 62
const PAPERSIZE_ISO_B5_EXTRA_PAPER = 63
const PAPERSIZE_A2_PAPER = 64
const PAPERSIZE_A3_TRANSVERSE_PAPER = 65
const PAPERSIZE_A3_EXTRA_TRANSVERSE_PAPER = 66
const ORIENTATION_DEFAULT = 'default'
const ORIENTATION_LANDSCAPE = 'landscape'
const ORIENTATION_PORTRAIT = 'portrait'

Private Attributes

 $_paperSize
 $_orientation
 $_scale
 $_fitToHeight
 $_fitToWidth
 $_columnsToRepeatAtLeft = array('', '')
 $_rowsToRepeatAtTop = array(0, 0)
 $_horizontalCentered = false
 $_verticalCentered = false
 $_printArea = null

Detailed Description

Definition at line 107 of file PageSetup.php.

Constructor & Destructor Documentation

PHPExcel_Worksheet_PageSetup::__construct ( )

Create a new PHPExcel_Worksheet_PageSetup.

Definition at line 260 of file PageSetup.php.

References ORIENTATION_DEFAULT, and PAPERSIZE_LETTER.

{
// Initialise values
$this->_scale = null;
$this->_fitToHeight = null;
$this->_fitToWidth = null;
$this->_columnsToRepeatAtLeft = array('', '');
$this->_rowsToRepeatAtTop = array(0, 0);
$this->_horizontalCentered = false;
$this->_verticalCentered = false;
$this->_printArea = null;
}

Member Function Documentation

PHPExcel_Worksheet_PageSetup::__clone ( )

Implement PHP __clone to create a deep clone, not just a shallow copy.

Definition at line 580 of file PageSetup.php.

References $key.

{
$vars = get_object_vars($this);
foreach ($vars as $key => $value) {
if (is_object($value)) {
$this->$key = clone $value;
} else {
$this->$key = $value;
}
}
}
PHPExcel_Worksheet_PageSetup::getColumnsToRepeatAtLeft ( )

Get Columns to repeat at left.

Returns
array Containing start column and end column, empty array if option unset

Definition at line 409 of file PageSetup.php.

References $_columnsToRepeatAtLeft.

PHPExcel_Worksheet_PageSetup::getFitToHeight ( )

Get Fit To Height.

Returns
int?

Definition at line 350 of file PageSetup.php.

References $_fitToHeight.

{
}
PHPExcel_Worksheet_PageSetup::getFitToWidth ( )

Get Fit To Width.

Returns
int?

Definition at line 372 of file PageSetup.php.

References $_fitToWidth.

{
}
PHPExcel_Worksheet_PageSetup::getHorizontalCentered ( )

Get center page horizontally.

Returns
bool

Definition at line 492 of file PageSetup.php.

References $_horizontalCentered.

PHPExcel_Worksheet_PageSetup::getOrientation ( )

Get Orientation.

Returns
string

Definition at line 300 of file PageSetup.php.

References $_orientation.

{
}
PHPExcel_Worksheet_PageSetup::getPaperSize ( )

Get Paper Size.

Returns
int

Definition at line 280 of file PageSetup.php.

References $_paperSize.

{
}
PHPExcel_Worksheet_PageSetup::getPrintArea ( )

Get print area.

Returns
string

Definition at line 532 of file PageSetup.php.

References $_printArea.

{
}
PHPExcel_Worksheet_PageSetup::getRowsToRepeatAtTop ( )

Get Rows to repeat at top.

Returns
array Containing start column and end column, empty array if option unset

Definition at line 458 of file PageSetup.php.

References $_rowsToRepeatAtTop.

PHPExcel_Worksheet_PageSetup::getScale ( )

Get Scale.

Returns
int?

Definition at line 320 of file PageSetup.php.

References $_scale.

{
return $this->_scale;
}
PHPExcel_Worksheet_PageSetup::getVerticalCentered ( )

Get center page vertically.

Returns
bool

Definition at line 512 of file PageSetup.php.

References $_verticalCentered.

PHPExcel_Worksheet_PageSetup::isColumnsToRepeatAtLeftSet ( )

Is Columns to repeat at left set?

Returns
boolean

Definition at line 394 of file PageSetup.php.

{
if (is_array($this->_columnsToRepeatAtLeft)) {
if ($this->_columnsToRepeatAtLeft[0] != '' && $this->_columnsToRepeatAtLeft[1] != '') {
return true;
}
}
return false;
}
PHPExcel_Worksheet_PageSetup::isPrintAreaSet ( )

Is print area set?

Returns
boolean

Definition at line 541 of file PageSetup.php.

{
return !is_null($this->_printArea);
}
PHPExcel_Worksheet_PageSetup::isRowsToRepeatAtTopSet ( )

Is Rows to repeat at top set?

Returns
boolean

Definition at line 443 of file PageSetup.php.

{
if (is_array($this->_rowsToRepeatAtTop)) {
if ($this->_rowsToRepeatAtTop[0] != 0 && $this->_rowsToRepeatAtTop[1] != 0) {
return true;
}
}
return false;
}
PHPExcel_Worksheet_PageSetup::setColumnsToRepeatAtLeft (   $pValue = null)

Set Columns to repeat at left.

Parameters
array$pValueContaining start column and end column, empty array if option unset
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 419 of file PageSetup.php.

{
if (is_array($pValue)) {
$this->_columnsToRepeatAtLeft = $pValue;
}
return $this;
}
PHPExcel_Worksheet_PageSetup::setColumnsToRepeatAtLeftByStartAndEnd (   $pStart = 'A',
  $pEnd = 'A' 
)

Set Columns to repeat at left by start and end.

Parameters
string$pStart
string$pEnd
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 433 of file PageSetup.php.

{
$this->_columnsToRepeatAtLeft = array($pStart, $pEnd);
return $this;
}
PHPExcel_Worksheet_PageSetup::setFitToHeight (   $pValue = 1)

Set Fit To Height.

Parameters
int?$pValue
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 360 of file PageSetup.php.

{
if ($pValue != '') {
$this->_fitToHeight = $pValue;
}
return $this;
}
PHPExcel_Worksheet_PageSetup::setFitToWidth (   $pValue = 1)

Set Fit To Width.

Parameters
int?$pValue
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 382 of file PageSetup.php.

{
if ($pValue != '') {
$this->_fitToWidth = $pValue;
}
return $this;
}
PHPExcel_Worksheet_PageSetup::setHorizontalCentered (   $value = false)

Set center page horizontally.

Parameters
bool$value
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 502 of file PageSetup.php.

{
$this->_horizontalCentered = $value;
return $this;
}
PHPExcel_Worksheet_PageSetup::setOrientation (   $pValue = PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT)

Set Orientation.

Parameters
string$pValue
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 310 of file PageSetup.php.

{
$this->_orientation = $pValue;
return $this;
}
PHPExcel_Worksheet_PageSetup::setPaperSize (   $pValue = PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER)

Set Paper Size.

Parameters
int$pValue
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 290 of file PageSetup.php.

{
$this->_paperSize = $pValue;
return $this;
}
PHPExcel_Worksheet_PageSetup::setPrintArea (   $value)

Set print area.

Parameters
string$value
Exceptions
Exception
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 552 of file PageSetup.php.

References elseif().

Referenced by setPrintAreaByColumnAndRow().

{
if (strpos($value,':') === false) {
throw new Exception('Cell coordinate must be a range of cells.');
} elseif (strpos($value,'$') !== false) {
throw new Exception('Cell coordinate must not be absolute.');
} else {
$this->_printArea = strtoupper($value);
}
return $this;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

PHPExcel_Worksheet_PageSetup::setPrintAreaByColumnAndRow (   $column1,
  $row1,
  $column2,
  $row2 
)

Set print area.

Parameters
int$column1Column 1
int$row1Row 1
int$column2Column 2
int$row2Row 2
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 572 of file PageSetup.php.

References setPrintArea(), and PHPExcel_Cell\stringFromColumnIndex().

{
return $this->setPrintArea(PHPExcel_Cell::stringFromColumnIndex($column1) . $row1 . ':' . PHPExcel_Cell::stringFromColumnIndex($column2) . $row2);
}

+ Here is the call graph for this function:

PHPExcel_Worksheet_PageSetup::setRowsToRepeatAtTop (   $pValue = null)

Set Rows to repeat at top.

Parameters
array$pValueContaining start column and end column, empty array if option unset
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 468 of file PageSetup.php.

{
if (is_array($pValue)) {
$this->_rowsToRepeatAtTop = $pValue;
}
return $this;
}
PHPExcel_Worksheet_PageSetup::setRowsToRepeatAtTopByStartAndEnd (   $pStart = 1,
  $pEnd = 1 
)

Set Rows to repeat at top by start and end.

Parameters
int$pStart
int$pEnd
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 482 of file PageSetup.php.

{
$this->_rowsToRepeatAtTop = array($pStart, $pEnd);
return $this;
}
PHPExcel_Worksheet_PageSetup::setScale (   $pValue = 100)

Set Scale.

Print scaling. Valid values range from 10 to 400 This setting is overridden when fitToWidth and/or fitToHeight are in use

Parameters
int?$pValue
Exceptions
Exception
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 334 of file PageSetup.php.

{
// Microsoft Office Excel 2007 only allows setting a scale between 10 and 400 via the user interface,
// but it is apparently still able to handle any scale >= 0, where 0 results in 100
if (($pValue >= 0) || is_null($pValue)) {
$this->_scale = $pValue;
} else {
throw new Exception("Scale must not be negative");
}
return $this;
}
PHPExcel_Worksheet_PageSetup::setVerticalCentered (   $value = false)

Set center page vertically.

Parameters
bool$value
Returns
PHPExcel_Worksheet_PageSetup

Definition at line 522 of file PageSetup.php.

{
$this->_verticalCentered = $value;
return $this;
}

Field Documentation

PHPExcel_Worksheet_PageSetup::$_columnsToRepeatAtLeft = array('', '')
private

Definition at line 227 of file PageSetup.php.

Referenced by getColumnsToRepeatAtLeft().

PHPExcel_Worksheet_PageSetup::$_fitToHeight
private

Definition at line 212 of file PageSetup.php.

Referenced by getFitToHeight().

PHPExcel_Worksheet_PageSetup::$_fitToWidth
private

Definition at line 220 of file PageSetup.php.

Referenced by getFitToWidth().

PHPExcel_Worksheet_PageSetup::$_horizontalCentered = false
private

Definition at line 241 of file PageSetup.php.

Referenced by getHorizontalCentered().

PHPExcel_Worksheet_PageSetup::$_orientation
private

Definition at line 194 of file PageSetup.php.

Referenced by getOrientation().

PHPExcel_Worksheet_PageSetup::$_paperSize
private

Definition at line 187 of file PageSetup.php.

Referenced by getPaperSize().

PHPExcel_Worksheet_PageSetup::$_printArea = null
private

Definition at line 255 of file PageSetup.php.

Referenced by getPrintArea().

PHPExcel_Worksheet_PageSetup::$_rowsToRepeatAtTop = array(0, 0)
private

Definition at line 234 of file PageSetup.php.

Referenced by getRowsToRepeatAtTop().

PHPExcel_Worksheet_PageSetup::$_scale
private

Definition at line 204 of file PageSetup.php.

Referenced by getScale().

PHPExcel_Worksheet_PageSetup::$_verticalCentered = false
private

Definition at line 248 of file PageSetup.php.

Referenced by getVerticalCentered().

const PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT = 'default'

Definition at line 178 of file PageSetup.php.

Referenced by __construct().

const PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE = 'landscape'
const PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT = 'portrait'

Definition at line 180 of file PageSetup.php.

Referenced by PHPExcel_Reader_Excel5\_readPageSetup().

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_6_3_4_ENVELOPE = 38

Definition at line 147 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A2_PAPER = 64

Definition at line 173 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A3 = 8

Definition at line 117 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A3_EXTRA_PAPER = 61

Definition at line 170 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A3_EXTRA_TRANSVERSE_PAPER = 66

Definition at line 175 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A3_TRANSVERSE_PAPER = 65

Definition at line 174 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4 = 9

Definition at line 118 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4_EXTRA_PAPER = 51

Definition at line 160 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4_PLUS_PAPER = 58

Definition at line 167 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4_SMALL = 10

Definition at line 119 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4_TRANSVERSE_PAPER = 53

Definition at line 162 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A5 = 11

Definition at line 120 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A5_EXTRA_PAPER = 62

Definition at line 171 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_A5_TRANSVERSE_PAPER = 59

Definition at line 168 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_B4 = 12

Definition at line 121 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_B4_ENVELOPE = 33

Definition at line 142 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_B5 = 13

Definition at line 122 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_B5_ENVELOPE = 34

Definition at line 143 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_B6_ENVELOPE = 35

Definition at line 144 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_C = 24

Definition at line 133 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_C3_ENVELOPE = 29

Definition at line 138 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_C4_ENVELOPE = 30

Definition at line 139 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_C5_ENVELOPE = 28

Definition at line 137 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_C65_ENVELOPE = 32

Definition at line 141 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_C6_ENVELOPE = 31

Definition at line 140 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_D = 25

Definition at line 134 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_DL_ENVELOPE = 27

Definition at line 136 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_E = 26

Definition at line 135 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_EXECUTIVE = 7

Definition at line 116 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_FOLIO = 14

Definition at line 123 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_GERMAN_LEGAL_FANFOLD = 41

Definition at line 150 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_GERMAN_STANDARD_FANFOLD = 40

Definition at line 149 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_INVITE_ENVELOPE = 47

Definition at line 156 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_ISO_B4 = 42

Definition at line 151 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_ISO_B5_EXTRA_PAPER = 63

Definition at line 172 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_ITALY_ENVELOPE = 36

Definition at line 145 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_JAPANESE_DOUBLE_POSTCARD = 43

Definition at line 152 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_JIS_B5_TRANSVERSE_PAPER = 60

Definition at line 169 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LEDGER = 4

Definition at line 113 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LEGAL = 5

Definition at line 114 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LEGAL_EXTRA_PAPER = 49

Definition at line 158 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER = 1

Definition at line 110 of file PageSetup.php.

Referenced by __construct().

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_EXTRA_PAPER = 48

Definition at line 157 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_EXTRA_TRANSVERSE_PAPER = 54

Definition at line 163 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_PLUS_PAPER = 57

Definition at line 166 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_SMALL = 2

Definition at line 111 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER_TRANSVERSE_PAPER = 52

Definition at line 161 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_MONARCH_ENVELOPE = 37

Definition at line 146 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO10_ENVELOPE = 20

Definition at line 129 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO11_ENVELOPE = 21

Definition at line 130 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO12_ENVELOPE = 22

Definition at line 131 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO14_ENVELOPE = 23

Definition at line 132 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_NO9_ENVELOPE = 19

Definition at line 128 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_NOTE = 18

Definition at line 127 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_QUARTO = 15

Definition at line 124 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_1 = 16

Definition at line 125 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_2 = 17

Definition at line 126 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_PAPER_1 = 44

Definition at line 153 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_PAPER_2 = 45

Definition at line 154 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_STANDARD_PAPER_3 = 46

Definition at line 155 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_STATEMENT = 6

Definition at line 115 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_SUPERA_SUPERA_A4_PAPER = 55

Definition at line 164 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_SUPERB_SUPERB_A3_PAPER = 56

Definition at line 165 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_TABLOID = 3

Definition at line 112 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_TABLOID_EXTRA_PAPER = 50

Definition at line 159 of file PageSetup.php.

const PHPExcel_Worksheet_PageSetup::PAPERSIZE_US_STANDARD_FANFOLD = 39

Definition at line 148 of file PageSetup.php.


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