![]() |
AICloudDocumentSuite Struct Reference
Member Data Documentation
Deletes the cloud document present at the specified path.
Disposes the bookmark handle that was fetched from the call to GetCloudDocumentAssetRef or GetFirstNRecentCloudDocuments. Should be called when no more recent documents are to be fetched by the user.
Gets the path to the currently open cloud document.
Gets the cloud paths to the n most recently saved cloud documents.
Gets the cloud paths to the next n recently saved cloud documents when the API GetFirstNRecentCloudDocuments has been called once. This API could be used in an iterative fashion to access the next n recent documents.
Example: ai::AutoBuffer<ai::UnicodeString> recentDocRefs; AICloudRecentsBookmarkHandle reqHandleIn = nullptr, reqHandleOut = nullptr; Here we are fetching 10 recent documents, but we can fetch any number less than 100 error = sAICloudDocument->GetFirstNRecentCloudDocuments(10, recentDocRefs, reqHandleOut); Get next set of recent documents while(reqHandleOut) { reqHandleIn = reqHandleOut; error = sAICloudDocument->GetNextNRecentCloudDocuments(10, recentDocRefs, reqHandleIn, reqHandleOut); Always dispose the AICloudRecentsBookmarkHandle after it has been used sAICloudDocument->DisposeRecentBookmarkHandle(reqHandleIn); Work with the recent document refs }
Opens a cloud document present at the specified path.
Saves the currently open cloud document if it is dirty, to its existing location.
Saves the currently open document to cloud.
The documentation for this struct was generated from the following file: |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
![]() |
|