public Presentation CreatePresentation( string name )
Public Overloads Function CreatePresentation( _ ByVal name As String _ ) As Presentation
Parameters
- name
- The name of the presentation.
public Presentation CreatePresentation( string name )
Public Overloads Function CreatePresentation( _ ByVal name As String _ ) As Presentation
//Note: Call within QueuedTask.Run() await QueuedTask.Run(() => { //Create a new presentation without parameters var presentation = PresentationFactory.Instance.CreatePresentation(); // Use the new Presentation // Create a presentation specifying the name of the new presentation presentation = PresentationFactory.Instance.CreatePresentation("New Presentation"); // Use the new Presentation });
Target Platforms: Windows 11, Windows 10