chengkun
2025-09-15 0cc7f61de2b106c9664033fc27d6426d072ea019
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
 
namespace PhpOffice\PhpSpreadsheet\Worksheet;
 
class Pane
{
    private string $sqref;
 
    private string $activeCell;
 
    private string $position;
 
    public function __construct(string $position, string $sqref = '', string $activeCell = '')
    {
        $this->sqref = $sqref;
        $this->activeCell = $activeCell;
        $this->position = $position;
    }
 
    public function getPosition(): string
    {
        return $this->position;
    }
 
    public function getSqref(): string
    {
        return $this->sqref;
    }
 
    public function setSqref(string $sqref): self
    {
        $this->sqref = $sqref;
 
        return $this;
    }
 
    public function getActiveCell(): string
    {
        return $this->activeCell;
    }
 
    public function setActiveCell(string $activeCell): self
    {
        $this->activeCell = $activeCell;
 
        return $this;
    }
}