The ICCCheckedOutFile interface represents the checked-out file object.
Gets the view to which this file is checked out
Read-only property
Property ByView As CCView
Checks in the file
Method
Function CheckIn([ Comment As String = "" ], [ EvenIfIdentical As Boolean = False ], [ FromPath As String = "" ], [ KeepState As CCKeepState = ccKeep ]) As CCVersion
ICCVersionPtr CheckIn( _bstr_t Comment, VARIANT_BOOL EvenIfIdentical, _bstr_t FromPath, CCKeepState KeepState);
A CCVersion object that represents the newly created version.
Member of: ICCCheckedOutFile interface
Gets whether or not this checkout is reserved
Read-only property
Property IsReserved As Boolean
Changes the status of this checkout to reserved
Method
Sub Reserve([ Comment As String = "" ])
HRESULT Reserve(_bstr_t Comment);
Member of: ICCCheckedOutFile interface
Cancels the checkout for this file
Method
Function UnCheckOut(KeepState As CCKeepState) As CCVersion
ICCVersionPtr UnCheckOut(CCKeepState KeepState);
The version that is selected by the current view after the UnCheckOut call.
Member of: ICCCheckedOutFile interface
Changes the status of this checkout to unreserved
Method
Sub UnReserve([ Comment As String = "" ])
HRESULT UnReserve(_bstr_t Comment);
Member of: ICCCheckedOutFile interface