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


Handles customized loading and saving of data in a card view.


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 IEdmCardViewCallback6 
C# 
public interface IEdmCardViewCallback6 
C++/CLI 
public interface class IEdmCardViewCallback6 

Example

Remarks

This interface inherits from IUnknown. See Using and Implementing IUnknown (COM).

This callback interface allows you to customize how data is loaded and saved in a simple card view that is created using IEdmVault10::CreateCardViewEx2. To use this callback interface:

  1. Create a new class.
  2. Implement all of the methods of IEdmCardViewCallback6 in the new class.
  3. Call IEdmVault10::CreateCardViewEx2, setting poCallback to a pointer to the new class.

See Also