SlidesLayoutOptions

Html5Options.SlidesLayoutOptions-Eigenschaft

Ruft den Modus ab oder setzt ihn, in dem Folien auf der Seite platziert werden, wenn eine Präsentation exportiert wird ISlidesLayoutOptions.

public ISlidesLayoutOptions SlidesLayoutOptions { get; set; }  

Beispiele

Beispiel:

[C#]  
using (Presentation pres = new Presentation("pres.pptx"))  
{  
    Html5Options options = new Html5Options  
    {  
        SlidesLayoutOptions = new HandoutLayoutingOptions  
        {  
            Handout = HandoutType.Handouts4Horizontal  
        }  
    };  
    
    pres.Save("pres.html", SaveFormat.Html5, options);  
}  

Siehe auch