123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <?php
- /*
- * Copyright 2014 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
- class Google_Service_Slides_ParagraphStyle extends Google_Model
- {
- public $alignment;
- public $direction;
- protected $indentEndType = 'Google_Service_Slides_Dimension';
- protected $indentEndDataType = '';
- protected $indentFirstLineType = 'Google_Service_Slides_Dimension';
- protected $indentFirstLineDataType = '';
- protected $indentStartType = 'Google_Service_Slides_Dimension';
- protected $indentStartDataType = '';
- public $lineSpacing;
- protected $spaceAboveType = 'Google_Service_Slides_Dimension';
- protected $spaceAboveDataType = '';
- protected $spaceBelowType = 'Google_Service_Slides_Dimension';
- protected $spaceBelowDataType = '';
- public $spacingMode;
-
- public function setAlignment($alignment)
- {
- $this->alignment = $alignment;
- }
- public function getAlignment()
- {
- return $this->alignment;
- }
- public function setDirection($direction)
- {
- $this->direction = $direction;
- }
- public function getDirection()
- {
- return $this->direction;
- }
- /**
- * @param Google_Service_Slides_Dimension
- */
- public function setIndentEnd(Google_Service_Slides_Dimension $indentEnd)
- {
- $this->indentEnd = $indentEnd;
- }
- /**
- * @return Google_Service_Slides_Dimension
- */
- public function getIndentEnd()
- {
- return $this->indentEnd;
- }
- /**
- * @param Google_Service_Slides_Dimension
- */
- public function setIndentFirstLine(Google_Service_Slides_Dimension $indentFirstLine)
- {
- $this->indentFirstLine = $indentFirstLine;
- }
- /**
- * @return Google_Service_Slides_Dimension
- */
- public function getIndentFirstLine()
- {
- return $this->indentFirstLine;
- }
- /**
- * @param Google_Service_Slides_Dimension
- */
- public function setIndentStart(Google_Service_Slides_Dimension $indentStart)
- {
- $this->indentStart = $indentStart;
- }
- /**
- * @return Google_Service_Slides_Dimension
- */
- public function getIndentStart()
- {
- return $this->indentStart;
- }
- public function setLineSpacing($lineSpacing)
- {
- $this->lineSpacing = $lineSpacing;
- }
- public function getLineSpacing()
- {
- return $this->lineSpacing;
- }
- /**
- * @param Google_Service_Slides_Dimension
- */
- public function setSpaceAbove(Google_Service_Slides_Dimension $spaceAbove)
- {
- $this->spaceAbove = $spaceAbove;
- }
- /**
- * @return Google_Service_Slides_Dimension
- */
- public function getSpaceAbove()
- {
- return $this->spaceAbove;
- }
- /**
- * @param Google_Service_Slides_Dimension
- */
- public function setSpaceBelow(Google_Service_Slides_Dimension $spaceBelow)
- {
- $this->spaceBelow = $spaceBelow;
- }
- /**
- * @return Google_Service_Slides_Dimension
- */
- public function getSpaceBelow()
- {
- return $this->spaceBelow;
- }
- public function setSpacingMode($spacingMode)
- {
- $this->spacingMode = $spacingMode;
- }
- public function getSpacingMode()
- {
- return $this->spacingMode;
- }
- }
|