ICCUCMObject is the interface from which UCM objects inherit. For historical reasons, ICCActivity inherits from ICCVOBObject instead.
This interface is used only through inheritance.
Locks this UCM object
Method
Sub CreateLock([ Comment As String = "" ], [ Obsolete As Boolean = False ], [ ExemptUsersStringArray As Variant ])
HRESULT CreateLock( _bstr_t Comment, VARIANT_BOOL Obsolete, const _variant_t& ExemptUsersStringArray = vtMissing);
Member of: ICCUCMObject interface
Gets the group to which the UCM object belongs
Read-only property
Property Group As String
_bstr_t GetGroup();
Gets the master replica for this UCM object
Read-only property
Property Master As String
_bstr_t GetMaster();
Gets the owner of this UCM object
Read-only property
Property Owner As String
_bstr_t GetOwner();
Gets the project VOB that contains this UCM object
Read-only property
Property ProjectVOB As CCProjectVOB
Sets the group to which the UCM object belongs
Method
Sub SetGroup(NewGroup As String, [ Comment As String = "" ])
HRESULT SetGroup( _bstr_t NewGroup, _bstr_t Comment);
Sets the master replica for this UCM object
Method
Sub SetMaster(Replica As String, [ Comment As String = "" ])
HRESULT SetMaster( _bstr_t Replica, _bstr_t Comment);
Sets the owner of this UCM object
Method
Sub SetOwner(NewOwner As String, [ Comment As String = "" ])
HRESULT SetOwner( _bstr_t NewOwner, _bstr_t Comment);
Gets the title of this UCM object
Read-only property
Property Title As String
_bstr_t GetTitle();
Only CCProject, CCFolder, CCBaseline and CCStream objects are defined as having a Title. Title fails if you attempt to invoke it on a CCComponent object
Member of: ICCUCMObject interface