TablePlot ExportData Method TIBCO Spotfire 6.0 API Reference
Exports the visualization data.

Namespace: Spotfire.Dxp.Application.Visuals
Assembly: Spotfire.Dxp.Application (in Spotfire.Dxp.Application.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

public void ExportData(
	TypeIdentifier typeIdentifier,
	Stream stream
)

Parameters

typeIdentifier
Type: Spotfire.Dxp.Framework.DocumentModel TypeIdentifier
The type identifier.
stream
Type: System.IO Stream
The stream.
Exceptions

ExceptionCondition
System NotSupportedExceptionIf a DataWriter not is supported an Exception occures.
Examples

using (Stream stream = new MemoryStream())
{
    tablePlot.ExportVisualizationData(DataWriterTypeIdentifiers.SpreadsheetDataWriter, stream);
}
See Also