The PowerPointTemplate object represents a PowerPointWriter template presentation.

public class PowerPointTemplate
Public Class PowerPointTemplate

A PowerPointWriter template is a file created in Microsoft PowerPoint that contains data markers.

A data marker specifies which database column, variable, or array to insert into the presentation where the data marker exists.

The PowerPointTemplate object is in the SoftArtisans.PowerPointWriter namespace. The object can be referenced as SoftArtisans.PowerPointWriter.PowerPointTemplate. To minimize typing and errors, use an Import directive to import the namespace to the aspx page, and reference the object as PowerPointTemplate, without the namespace prefix.

If you are coding directly in the .aspx page, following the Page directive, include:

<%@ Import Namespace="SoftArtisans.PowerPointWriter" %>

If you are coding in the "code behind" page (.aspx.vb or .aspx.cs), include an Imports or using statement at the top of the "code behind" page:

using SoftArtisans.PowerPointWriter;
Imports SoftArtisans.PowerPointWriter

To create an instance of the ExcelTemplate object use:

PowerPointTemplate ppt = new PowerPointTemplate();
Dim ppt As New PowerPointTemplate()

Name

Description

BindData(Object(), String(), String, DataBindingProperties)

BindData(Object()(), String(), String, DataBindingProperties)

BindData(System.Data.DataTable, String, DataBindingProperties)

CreateDataBindingProperties()

PowerPointTemplate()

Open(PowerPointApplication, Presentation)

Open(String)

Open(System.IO.Stream)

Process()

Save(String)

Save(System.IO.Stream)

Save(System.Web.HttpResponse)

Save(System.Web.HttpResponse, String, Boolean)