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
Description

Excerpt

Sets an array of objects as a template data source.

Signature
C#
C#
 
public void BindData(Object[] columnValues, String[], columnNames, String dataSourceName, PowerPointWriter.DataBindingProperties bindingProperties)
Signature
vb.net
vb.net
Public Overridable Sub BindData(ByVal columnValues As Object[], ByVal columnNames As String[], ByVal dataSourceName As String, ByVal bindingProperties As DataBindingProperties
Parameters
Param
columnValues
columnValues

An array of objects to use as the data source.

Param
columnNames
columnNames

The names of the columns to get from the data source.

Param
dataSourceName
dataSourceName

The name of the data source.

Param
bindingProperties
bindingProperties

A DataBindingProperties object.

Example
Code Block
csharp
csharp
titleC#
            string[] values = {"Hello World", "subtitle"};
            string[] colNames = {"header", "subtitle"};
            DataBindingProperties DataProps = pptt.CreateDataBindingProperties();

            ppt.BindData(values, colNames, "DataSource1", DataProps);
Code Block
vbnet
vbnet
titlevb.net
        Dim values = New String() {"Hello World", "subtitle"}
        Dim colNames = New String() {"header", "subtitle"}
        Dim DataProps As DataBindingProperites = pptt.CreateDataBindingProperties();

        pptt.BindData(values, colNames, "DataSource1", DataProps);