Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets whether PowerPointWriter should remove data markers in the template that do not bind to data sources in code.


          

{remarks}
{example}{code:csharp|title=C#}

          //--- Setting RemoveDataMarkers to 'true' tells
          //--- PowerPointWriter to remove data markers that do not
          //--- bind to a data source.
          pptt.RemoveExtraDataMarkers = true;
        
{code}
{code:vbnet|title=vb.net
}

          '--- Setting RemoveDataMarkers to 'True' tells
          '--- PowerPointWriter to remove data markers that do not
          '--- bind to a data source.
          pptt.RemoveExtraDataMarkers = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets whether PowerPointWriter should remove data markers in the template that do not bind to data sources in code. {excerpt}
{signature:C#}
 public boolean RemoveExtraDataMarkers{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property RemoveExtraDataMarkers() As Boolean
Remarks
By
{signature}
{remarks}By default, if a data marker does not bind to a data source, PowerPointWriter will throw an exception. If {{RemoveExtraDataMarkers}} is set to {{true}}, PowerPointWriter will remove extra data markers silently.
RemoveExtraDataMarkers is a



{{RemoveExtraDataMarkers}} is a *Read/Write* property.
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle