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

 public boolean RemoveExtraDataMarkers{ get; set; }
Public Property RemoveExtraDataMarkers() As Boolean

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 Read/Write property.


          //--- Setting RemoveDataMarkers to 'true' tells
          //--- PowerPointWriter to remove data markers that do not
          //--- bind to a data source.
          pptt.RemoveExtraDataMarkers = true;
        

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