PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.7.1
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.7.1
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
visualizer / vendor / phpoffice / phpspreadsheet / src / PhpSpreadsheet / Shared / Escher.php

Escher.php in Visualizer – Tables & Charts Manager with Built-in AI Generator 3.7.1, at vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php

65 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace PhpOffice\PhpSpreadsheet\Shared;
4
5 class Escher
6 {
7 /**
8 * Drawing Group Container.
9 *
10 * @var Escher\DggContainer
11 */
12 private $dggContainer;
13
14 /**
15 * Drawing Container.
16 *
17 * @var Escher\DgContainer
18 */
19 private $dgContainer;
20
21 /**
22 * Get Drawing Group Container.
23 *
24 * @return Escher\DggContainer
25 */
26 public function getDggContainer()
27 {
28 return $this->dggContainer;
29 }
30
31 /**
32 * Set Drawing Group Container.
33 *
34 * @param Escher\DggContainer $dggContainer
35 *
36 * @return Escher\DggContainer
37 */
38 public function setDggContainer($dggContainer)
39 {
40 return $this->dggContainer = $dggContainer;
41 }
42
43 /**
44 * Get Drawing Container.
45 *
46 * @return Escher\DgContainer
47 */
48 public function getDgContainer()
49 {
50 return $this->dgContainer;
51 }
52
53 /**
54 * Set Drawing Container.
55 *
56 * @param Escher\DgContainer $dgContainer
57 *
58 * @return Escher\DgContainer
59 */
60 public function setDgContainer($dgContainer)
61 {
62 return $this->dgContainer = $dgContainer;
63 }
64 }
65