IDocumentSavingCallback class
IDocumentSavingCallback class
Implement this interface if you want to have your own custom method called during saving a document.
Methods
| Name | Description |
|---|---|
| notify(args) | This is called to notify of document saving progress. |
Examples
Shows how to manage a document while saving to html (SavingProgressCallback).
class SavingProgressCallback(aw.saving.IDocumentSavingCallback):
def __init__(self):
self.max_duration = 0.1
self.m_saving_started_at = datetime.datetime.now()
def notify(self, args):
canceled_at = datetime.datetime.now()
elapsed_seconds = (canceled_at - m_saving_started_at).total_seconds()
if elapsed_seconds > self.max_duration:
raise Exception()
Shows how to manage a document while saving to docx (SavingProgressCallback).
class SavingProgressCallback(aw.saving.IDocumentSavingCallback):
def __init__(self):
self.max_duration = 0.01
self.m_saving_started_at = datetime.datetime.now()
def notify(self, args):
canceled_at = datetime.datetime.now()
elapsed_seconds = (canceled_at - m_saving_started_at).total_seconds()
if elapsed_seconds > self.max_duration:
raise Exception()
See Also
- module aspose.words.saving