SOLIDWORKS PDM Professional API Help Send Feedback
IEdmCallback Interface
See Also  Members   Example
EPDM.Interop.epdm Namespace : IEdmCallback Interface


Monitors the progress of a supported API operation.


NOTE: Click the Members link, located near the top of the topic, to see this interface's methods and properties.

Syntax

Visual Basic 
Public Interface IEdmCallback 
C# 
public interface IEdmCallback 
C++/CLI 
public interface class IEdmCallback 

Example

Remarks

This interface inherits from IDispatch. See IDispatch Interface (Automation).

This callback interface works only with API methods that provide a poCallback argument. For example:

To use this interface:

  1. Create a new class.
  2. Implement all of the methods of IEdmCallback in the new class.
  3. Call one of the API methods whose progress you want to monitor, setting its poCallback argument to a pointer to the new class.

See Also