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 GridProperties extends \Google\Model
21{
22  /**
23   * @var int
24   */
25  public $columnCount;
26  /**
27   * @var bool
28   */
29  public $columnGroupControlAfter;
30  /**
31   * @var int
32   */
33  public $frozenColumnCount;
34  /**
35   * @var int
36   */
37  public $frozenRowCount;
38  /**
39   * @var bool
40   */
41  public $hideGridlines;
42  /**
43   * @var int
44   */
45  public $rowCount;
46  /**
47   * @var bool
48   */
49  public $rowGroupControlAfter;
50
51  /**
52   * @param int
53   */
54  public function setColumnCount($columnCount)
55  {
56    $this->columnCount = $columnCount;
57  }
58  /**
59   * @return int
60   */
61  public function getColumnCount()
62  {
63    return $this->columnCount;
64  }
65  /**
66   * @param bool
67   */
68  public function setColumnGroupControlAfter($columnGroupControlAfter)
69  {
70    $this->columnGroupControlAfter = $columnGroupControlAfter;
71  }
72  /**
73   * @return bool
74   */
75  public function getColumnGroupControlAfter()
76  {
77    return $this->columnGroupControlAfter;
78  }
79  /**
80   * @param int
81   */
82  public function setFrozenColumnCount($frozenColumnCount)
83  {
84    $this->frozenColumnCount = $frozenColumnCount;
85  }
86  /**
87   * @return int
88   */
89  public function getFrozenColumnCount()
90  {
91    return $this->frozenColumnCount;
92  }
93  /**
94   * @param int
95   */
96  public function setFrozenRowCount($frozenRowCount)
97  {
98    $this->frozenRowCount = $frozenRowCount;
99  }
100  /**
101   * @return int
102   */
103  public function getFrozenRowCount()
104  {
105    return $this->frozenRowCount;
106  }
107  /**
108   * @param bool
109   */
110  public function setHideGridlines($hideGridlines)
111  {
112    $this->hideGridlines = $hideGridlines;
113  }
114  /**
115   * @return bool
116   */
117  public function getHideGridlines()
118  {
119    return $this->hideGridlines;
120  }
121  /**
122   * @param int
123   */
124  public function setRowCount($rowCount)
125  {
126    $this->rowCount = $rowCount;
127  }
128  /**
129   * @return int
130   */
131  public function getRowCount()
132  {
133    return $this->rowCount;
134  }
135  /**
136   * @param bool
137   */
138  public function setRowGroupControlAfter($rowGroupControlAfter)
139  {
140    $this->rowGroupControlAfter = $rowGroupControlAfter;
141  }
142  /**
143   * @return bool
144   */
145  public function getRowGroupControlAfter()
146  {
147    return $this->rowGroupControlAfter;
148  }
149}
150
151// Adding a class alias for backwards compatibility with the previous class name.
152class_alias(GridProperties::class, 'Google_Service_Sheets_GridProperties');
153