관리-도구
편집 파일: SheetWithVisibilityInterface.php
<?php declare(strict_types=1); namespace OpenSpout\Reader; /** * @template T of RowIteratorInterface * * @extends SheetInterface<T> */ interface SheetWithVisibilityInterface extends SheetInterface { /** * @return bool Whether the sheet is visible */ public function isVisible(): bool; }