Нет описания

ParagraphStyle.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_Slides_ParagraphStyle extends Google_Model
  18. {
  19. public $alignment;
  20. public $direction;
  21. protected $indentEndType = 'Google_Service_Slides_Dimension';
  22. protected $indentEndDataType = '';
  23. protected $indentFirstLineType = 'Google_Service_Slides_Dimension';
  24. protected $indentFirstLineDataType = '';
  25. protected $indentStartType = 'Google_Service_Slides_Dimension';
  26. protected $indentStartDataType = '';
  27. public $lineSpacing;
  28. protected $spaceAboveType = 'Google_Service_Slides_Dimension';
  29. protected $spaceAboveDataType = '';
  30. protected $spaceBelowType = 'Google_Service_Slides_Dimension';
  31. protected $spaceBelowDataType = '';
  32. public $spacingMode;
  33. public function setAlignment($alignment)
  34. {
  35. $this->alignment = $alignment;
  36. }
  37. public function getAlignment()
  38. {
  39. return $this->alignment;
  40. }
  41. public function setDirection($direction)
  42. {
  43. $this->direction = $direction;
  44. }
  45. public function getDirection()
  46. {
  47. return $this->direction;
  48. }
  49. /**
  50. * @param Google_Service_Slides_Dimension
  51. */
  52. public function setIndentEnd(Google_Service_Slides_Dimension $indentEnd)
  53. {
  54. $this->indentEnd = $indentEnd;
  55. }
  56. /**
  57. * @return Google_Service_Slides_Dimension
  58. */
  59. public function getIndentEnd()
  60. {
  61. return $this->indentEnd;
  62. }
  63. /**
  64. * @param Google_Service_Slides_Dimension
  65. */
  66. public function setIndentFirstLine(Google_Service_Slides_Dimension $indentFirstLine)
  67. {
  68. $this->indentFirstLine = $indentFirstLine;
  69. }
  70. /**
  71. * @return Google_Service_Slides_Dimension
  72. */
  73. public function getIndentFirstLine()
  74. {
  75. return $this->indentFirstLine;
  76. }
  77. /**
  78. * @param Google_Service_Slides_Dimension
  79. */
  80. public function setIndentStart(Google_Service_Slides_Dimension $indentStart)
  81. {
  82. $this->indentStart = $indentStart;
  83. }
  84. /**
  85. * @return Google_Service_Slides_Dimension
  86. */
  87. public function getIndentStart()
  88. {
  89. return $this->indentStart;
  90. }
  91. public function setLineSpacing($lineSpacing)
  92. {
  93. $this->lineSpacing = $lineSpacing;
  94. }
  95. public function getLineSpacing()
  96. {
  97. return $this->lineSpacing;
  98. }
  99. /**
  100. * @param Google_Service_Slides_Dimension
  101. */
  102. public function setSpaceAbove(Google_Service_Slides_Dimension $spaceAbove)
  103. {
  104. $this->spaceAbove = $spaceAbove;
  105. }
  106. /**
  107. * @return Google_Service_Slides_Dimension
  108. */
  109. public function getSpaceAbove()
  110. {
  111. return $this->spaceAbove;
  112. }
  113. /**
  114. * @param Google_Service_Slides_Dimension
  115. */
  116. public function setSpaceBelow(Google_Service_Slides_Dimension $spaceBelow)
  117. {
  118. $this->spaceBelow = $spaceBelow;
  119. }
  120. /**
  121. * @return Google_Service_Slides_Dimension
  122. */
  123. public function getSpaceBelow()
  124. {
  125. return $this->spaceBelow;
  126. }
  127. public function setSpacingMode($spacingMode)
  128. {
  129. $this->spacingMode = $spacingMode;
  130. }
  131. public function getSpacingMode()
  132. {
  133. return $this->spacingMode;
  134. }
  135. }