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


Allows you to access the version and revision comments of files.


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

Example

Remarks

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

To use this interface:

  1. Access this interface by calling IEdmVault7::CreateUtility with eType set to EdmUtility.EdmUtil_HistoryUpdate.
  2. Call IEdmHistoryUpdate::UpdateRevisionComment one or more times to add revision comments to the batch.
  3. Call IEdmHistoryUpdate::UpdateVersionComment one or more times to add version comments to the batch.
  4. Call IEdmHistoryUpdate::CommitUpdates to commit the batch of changes to the database.

Accessors

See Also