Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Signature
C#
C#
	public void Save(System.Web.HttpResponse response)
Signature
vb.net
vb.net
	Public Sub Save(ByRef response As System.Web.HttpResponse)

...

Example
Code Block
csharp
csharp
titleC#
using (PowerPointTemplate ppt = new PowerPointTemplate())
{
 ppt.Open("MyInputFilePath.pptx");

 // where response is the HttpResponse for the current page
 ppt.Save(response);
}