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


Allows you to change states or revoke transitions of several files at once.


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

Remarks

This interface:

To change the states of files:

  1. Access this interface by calling IEdmVault7::CreateUtility, passing EdmUtility.EdmUtil_BatchChangeState as a parameter.
  2. Call IEdmBatchChangeState::AddFile to add a file to the batch of files whose states you want to change.
  3. Call IEdmBatchChangeState::CreateTree to build the initial file reference tree.
  4. Optionally call IEdmBatchChangeState::ShowDlg to show a dialog with the affected files.
  5. Call IEdmBatchChangeState::ChangeState to change the states of the files added to the batch.

Accessors

See Also