Click or drag to resize
CTInterfaceExportProfileSelectedArgs Class
Event argument class for OnExportProfileSelected.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    ATR.CT.CTInterfaceCTInterfaceExportProfileSelectedArgs

Namespace: ATR.CT.CTInterface
Assembly: CTInterface (in CTInterface.dll)
Syntax
public class ExportProfileSelectedArgs : EventArgs

The CTInterfaceExportProfileSelectedArgs type exposes the following members.

Properties
  NameDescription
Public propertyExportProfile
The CUSTOMTOOLS Export Profile currently selected in the CUSTOMTOOLS Export dialog box.
Public propertyExportWindowHandle
Handle to the CUSTOMTOOLS Export dialog box. This is useful if you need to open your own window and you need parent window.
Public propertyNumberOfConfigurations
The number of configurations in actual export.
Public propertyRequestSilentExport
If set to True, the export add-in must execute without requiring any user interraction. This can be the case if the export add-in is an ExportTypeExtension -style extension that returns true for SupportsSilentExecution so that is also the case when this flag must be considered. If set, the subscriber must also set VerifySilentExportSupport to true. It's good practise to call CreateLogger and do some logging. This feature is utilized at least in PDM Export that is executed completely on host.
Public propertyVerifySilentExportSupport
If RequestSilentExport is true, then then event subscriber must set this to true as well to indicate that the silent export is supported.
Top
Methods
  NameDescription
Public methodCreateLogger
Logger for silent exports (RequestSilentExport).
Top
Availability

CUSTOMTOOLS 2016 SP2


Revised in Description
CUSTOMTOOLS 2019 SP1 Extended with NumberOfConfigurations.
CUSTOMTOOLS 2020 SP1 Extended with RequestSilentExport, VerifySilentExportSupport and CreateLogger.
See Also