|
    Ultima modificación |
    Ver Log
    | 
  
  
  
     
        
        | Rev | 
        Autor | 
        Línea Nro. | 
        Línea | 
        
     
     
        
           | 1 | 
           efrain | 
           1 | 
           <?php
  | 
        
        
            | 
            | 
           2 | 
              | 
        
        
            | 
            | 
           3 | 
           declare(strict_types=1);
  | 
        
        
            | 
            | 
           4 | 
              | 
        
        
            | 
            | 
           5 | 
           namespace OpenSpout\Writer\XLSX\Options;
  | 
        
        
            | 
            | 
           6 | 
              | 
        
        
            | 
            | 
           7 | 
           enum PageOrientation: string
  | 
        
        
            | 
            | 
           8 | 
           {
  | 
        
        
            | 
            | 
           9 | 
               case PORTRAIT = 'portrait';
  | 
        
        
            | 
            | 
           10 | 
               case LANDSCAPE = 'landscape';
  | 
        
        
            | 
            | 
           11 | 
           }
  |