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


Allows you to access a Bill of Materials (BOM).


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 IEdmBom 
   Inherits IEdmObject5 
C# 
public interface IEdmBom : IEdmObject5  
C++/CLI 
public interface class IEdmBom : public IEdmObject5  

Example

Remarks

This interface inherits from IEdmObject5

To access this interface:

  1. Call IEdmVault5::GetObject with eType = EdmObjectType.EdmObject_BOM.

      - or -

  1. Create an EdmObjectInfo structure with meType = EdmObjectType.EdmObject_BOM.
  2. Call IEdmVault9::GetObjects with ppoObjects set to the EdmObjectInfo structure created in step 1.

Accessors

See Also