HEX
Server: LiteSpeed
System: Linux server137.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: bibuzptr (1123)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/bibuzptr/tvetelearning.bibu-edu.us/admin/PhpSpreadsheet/src/PhpSpreadsheet/Worksheet/Pane.php
<?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;
    }
}