Got another question:
Newbie Alert!! Using Arbortext 6.0 and C#:
When the user saves a document, we want to perform certain actions on the saved data. However, the DocumentSaving event fires before the disk file is updated, so the event listener doesn't have access to freshest data; rather, the disk file represents the previous save. The documentation mentions cancelling the event and then calling save manually (ADocument Save), which gives you the opportunity to perform actions before and/or after the document is saved; this seems like a promising technique, but I can't figure out how to save the document in the event listener - sounds simple enough, but I'm not sure how to gain access to an object that is tied to the editing session and has a Save method. Can anyone help?
Related question: Is there a way to cancel the ACL Save callback function?