Interface IDocumentLoadingCallback
Interface IDocumentLoadingCallback
Namespace: Aspose.Words.Loading
Assembly: Aspose.Words.dll (25.4.0)
Implement this interface if you want to have your own custom method called during loading a document.
public interface IDocumentLoadingCallback
Methods
Notify(DocumentLoadingArgs)
This is called to notify of document loading progress.
void Notify(DocumentLoadingArgs args)
Parameters
args
DocumentLoadingArgs
An argument of the event.
Remarks
The primary uses for this interface is to allow application code to obtain progress status and abort loading process.
An exception should be threw from the progress callback for abortion and it should be caught in the consumer code.