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

PowerPointTemplate

Description

Excerpt

The PowerPointTemplate object represents a PowerPointWriter template presentation.

Signature
C#
C#
public class PowerPointTemplate
Signature
vb.net
vb.net
Public Class PowerPointTemplate
Remarks

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.

Example

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

Code Block
<%@ 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:

Code Block
csharp
csharp
titleC#
using SoftArtisans.PowerPointWriter;
Code Block
vbnet
vbnet
titlevb.net
Imports SoftArtisans.PowerPointWriter

To create an instance of the ExcelTemplate object use:

Code Block
csharp
csharp
titleC#
PowerPointTemplate ppt = new PowerPointTemplate();
Code Block
vbnet
vbnet
titlevb.net
Dim ppt As New PowerPointTemplate()
Methods

Name

Description

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

Excerpt Include
PowerPointTemplate.BindData(Object()(), String(), String, PowerPointWriter.DataBindingProperties)
PowerPointTemplate.BindData(Object()(), String(), String, PowerPointWriter.DataBindingProperties)
nopaneltrue

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

Excerpt Include
PowerPointTemplate.BindData(Object()(), String(), String, PowerPointWriter.DataBindingProperties)
PowerPointTemplate.BindData(Object()(), String(), String, PowerPointWriter.DataBindingProperties)
nopaneltrue

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

Excerpt Include
PowerPointTemplate.BindData(System.Data.DataTable, String, PowerPointWriter.DataBindingProperties)
PowerPointTemplate.BindData(System.Data.DataTable, String, PowerPointWriter.DataBindingProperties)
nopaneltrue

CreateDataBindingProperties()

Excerpt Include
PowerPointTemplate.CreateDataBindingProperties()
PowerPointTemplate.CreateDataBindingProperties()
nopaneltrue

PowerPointTemplate()

Excerpt Include
PowerPointTemplate.PowerPointTemplate()
PowerPointTemplate.PowerPointTemplate()
nopaneltrue

Open(PowerPointApplication, Presentation)

Excerpt Include
PowerPointTemplate.Open(PowerPointWriter.PowerPointApplication, PowerPointWriter.Presentation)
PowerPointTemplate.Open(PowerPointWriter.PowerPointApplication, PowerPointWriter.Presentation)
nopaneltrue

Open(String)

Excerpt Include
PowerPointTemplate.Open(String)
PowerPointTemplate.Open(String)
nopaneltrue

Open(System.IO.Stream)

Excerpt Include
PowerPointTemplate.Open(System.IO.Stream)
PowerPointTemplate.Open(System.IO.Stream)
nopaneltrue

Process()

Excerpt Include
PowerPointTemplate.Process()
PowerPointTemplate.Process()
nopaneltrue

Save(String)

Excerpt Include
PowerPointTemplate.Save(String)
PowerPointTemplate.Save(String)
nopaneltrue

Save(System.IO.Stream)

Excerpt Include
PowerPointTemplate.Save(System.IO.Stream)
PowerPointTemplate.Save(System.IO.Stream)
nopaneltrue

Save(System.Web.HttpResponse)

Excerpt Include
PowerPointTemplate.Save(System.Web.HttpResponse)
PowerPointTemplate.Save(System.Web.HttpResponse)
nopaneltrue

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

Excerpt Include
PowerPointTemplate.Save(System.Web.HttpResponse, String, Boolean)
PowerPointTemplate.Save(System.Web.HttpResponse, String, Boolean)
nopaneltrue