source: vendor/google/apiclient-services/src/Sheets/OverlayPosition.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 3 weeks ago

Upload new project files

  • Property mode set to 100644
File size: 2.3 KB
Line 
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
18namespace Google\Service\Sheets;
19
20class OverlayPosition extends \Google\Model
21{
22 protected $anchorCellType = GridCoordinate::class;
23 protected $anchorCellDataType = '';
24 /**
25 * @var int
26 */
27 public $heightPixels;
28 /**
29 * @var int
30 */
31 public $offsetXPixels;
32 /**
33 * @var int
34 */
35 public $offsetYPixels;
36 /**
37 * @var int
38 */
39 public $widthPixels;
40
41 /**
42 * @param GridCoordinate
43 */
44 public function setAnchorCell(GridCoordinate $anchorCell)
45 {
46 $this->anchorCell = $anchorCell;
47 }
48 /**
49 * @return GridCoordinate
50 */
51 public function getAnchorCell()
52 {
53 return $this->anchorCell;
54 }
55 /**
56 * @param int
57 */
58 public function setHeightPixels($heightPixels)
59 {
60 $this->heightPixels = $heightPixels;
61 }
62 /**
63 * @return int
64 */
65 public function getHeightPixels()
66 {
67 return $this->heightPixels;
68 }
69 /**
70 * @param int
71 */
72 public function setOffsetXPixels($offsetXPixels)
73 {
74 $this->offsetXPixels = $offsetXPixels;
75 }
76 /**
77 * @return int
78 */
79 public function getOffsetXPixels()
80 {
81 return $this->offsetXPixels;
82 }
83 /**
84 * @param int
85 */
86 public function setOffsetYPixels($offsetYPixels)
87 {
88 $this->offsetYPixels = $offsetYPixels;
89 }
90 /**
91 * @return int
92 */
93 public function getOffsetYPixels()
94 {
95 return $this->offsetYPixels;
96 }
97 /**
98 * @param int
99 */
100 public function setWidthPixels($widthPixels)
101 {
102 $this->widthPixels = $widthPixels;
103 }
104 /**
105 * @return int
106 */
107 public function getWidthPixels()
108 {
109 return $this->widthPixels;
110 }
111}
112
113// Adding a class alias for backwards compatibility with the previous class name.
114class_alias(OverlayPosition::class, 'Google_Service_Sheets_OverlayPosition');
Note: See TracBrowser for help on using the repository browser.