Chart.Export Method
Exports the chart in a graphic format.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Function Export ( _
FileName As String, _
FilterName As Object, _
Interactive As Object _
) As Boolean
'Usage
Dim instance As Chart
Dim FileName As String
Dim FilterName As Object
Dim Interactive As Object
Dim returnValue As Boolean
returnValue = instance.Export(FileName, _
FilterName, Interactive)
bool Export(
string FileName,
Object FilterName,
Object Interactive
)
Parameters
- FileName
Type: System.String
The name of the exported file.
- FilterName
Type: System.Object
The language-independent name of the graphic filter as it appears in the registry.
- Interactive
Type: System.Object
true to display the dialog box that contains the filter-specific options. false to indicate that Microsoft PowerPoint should use the default values for the filter. The default is false.
Return Value
Type: System.Boolean