Package com.aspose.tasks
Interface IPageSavingCallback
-
public interface IPageSavingCallback
Represents a callback that is called when each page in multi page document is saved to a separate stream.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onFinish()
Method which will be called when all pages are written.void
pageSaving(PageSavingArgs args)
The method to be called when a page is saved to a stream.
-
-
-
Method Detail
-
onFinish
void onFinish()
Method which will be called when all pages are written.
-
pageSaving
void pageSaving(PageSavingArgs args)
The method to be called when a page is saved to a stream.
- Parameters:
args
- The page saving arguments.
-
-