C++
void acplPublishExecute( AcPlDSDData dsdDataObj, AcPlPlotConfig* pConfig, bool bShowPlotProgress );
File
acplmisc.h
Description
This function publishes the data in dsdDataObj to a device or DWF file specified and configured by the data in the PlotConfig object pointed to by pConfig. If bShowPlotProgress is true, then a plot progress dialog/meter will be displayed.
Parameters
Parameters | Description |
---|---|
dsdDataObj | Input object containing data to be plotted. |
pConfig | Input pointer to plotConfig object. |
bShowPlotProgress | Input bool specifying whether or not to display a plot progress dialog. |
Example
AcPlDSDData dsdDataObj; // setup AcPlDSDData
AcPlPlotConfig* pConfig( NULL ); // Create a plot config object based on a device using AcPlPlotConfigManager; to override default plot config
bool bShowPlotProgress( false); // set to true to show plot progress dialog
acPlPublishExecute( dsdDataObj, pConfig, bShowPlotProgress );