Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 2... Línea 2...
2
 
2
 
Línea 3... Línea 3...
3
declare(strict_types=1);
3
declare(strict_types=1);
Línea 4... Línea 4...
4
 
4
 
5
namespace OpenSpout\Writer\XLSX\Options;
5
namespace OpenSpout\Writer\XLSX\Options;
6
 
6
 
Línea 7... Línea 7...
7
final class PageSetup
7
final readonly class PageSetup
8
{
8
{
9
    public readonly bool $fitToPage;
9
    public bool $fitToPage;
10
 
10
 
11
    public function __construct(
11
    public function __construct(
12
        public readonly ?PageOrientation $pageOrientation,
12
        public ?PageOrientation $pageOrientation,
13
        public readonly ?PaperSize $paperSize,
13
        public ?PaperSize $paperSize,
14
        public readonly ?int $fitToHeight = null,
14
        public ?int $fitToHeight = null,
15
        public readonly ?int $fitToWidth = null,
15
        public ?int $fitToWidth = null,