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


Allows you to access the contents of a file system folder in the vault.


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

Example

Remarks

This interface:

  • inherits from IEdmObject5.
  • is extended by IEdmFolder6, which provides the ability to add files to a folder, move a folder, and rename a folder.

Use this interface to enumerate the files and subfolders of a folder.

Access the contents of a folder's data card by assigning an IEdmEnumeratorVariable5 pointer to an IEdmFolder5 object.

To update multiple folder data cards, use IEdmBatchUpdate2 which is more efficient than updating each folder data card using this interface.

Accessors

See Also