:: com :: sun :: star :: document ::

unpublished interface XCmisDocument
Usage Restrictions
not published
Description
The document can provide access to CMIS properties and versions through this interface.

Methods' Summary
checkOut Check out the document into a private working copy on the server, and update the loaded document to reflect this change.  
cancelCheckOut Cancel checked out document, this will discard all changes since check-out.  
checkIn Creates a new version of the document from the private working copy.  
isVersionable Tells whether a document can support versioning or not.  
canCheckOut  
canCancelCheckOut  
canCheckIn  
Attributes' Summary
CmisPropertiesValues Contains the properties values named after their CMIS ID.  
CmisPropertiesDisplayNames Contains the property names to show to the user from their CMIS id.  
Methods' Details
checkOut
void
checkOut();

Description
Check out the document into a private working copy on the server, and update the loaded document to reflect this change.
cancelCheckOut
void
cancelCheckOut();

Description
Cancel checked out document, this will discard all changes since check-out.
checkIn
void
checkIn( [in] boolean  isMajor,
[in] string  comment );

Description
Creates a new version of the document from the private working copy.
isVersionable
boolean
isVersionable();

Description
Tells whether a document can support versioning or not.
canCheckOut
boolean
canCheckOut();

canCancelCheckOut
boolean
canCancelCheckOut();

canCheckIn
boolean
canCheckIn();

Attributes' Details
CmisPropertiesValues
::com::sun::star::beans::PropertyValues CmisPropertiesValues;
Description
Contains the properties values named after their CMIS ID.
CmisPropertiesDisplayNames
::com::sun::star::beans::PropertyValues CmisPropertiesDisplayNames;
Description
Contains the property names to show to the user from their CMIS id.
Top of Page