Tests whether documents of the specified type can be exported by the current export provider. Note that if the type is array, this method returns false even though an array of metafiles can be exported by the associated exporter. Use CanExportObject(Object) to get a definitive value.

Namespace:  C1.C1Preview.Export
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public override bool CanExportType(
	Type documentType
)
Visual Basic
Public Overrides Function CanExportType ( _
	documentType As Type _
) As Boolean

Parameters

documentType
Type: System..::..Type
The type to test.

Return Value

true if documentType is C1PrintDocument or C1Report, false otherwise.

See Also