Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.6
|
Leadtools.Annotations.Core Namespace > AnnCodecs Class : SaveAsync Method |
public IAsyncAction SaveAsync( StorageFile file, AnnContainer container, AnnFormat format, int savePageNumber )
'Declaration
Public Function SaveAsync( _ ByVal file As StorageFile, _ ByVal container As AnnContainer, _ ByVal format As AnnFormat, _ ByVal savePageNumber As Integer _ ) As IAsyncAction
public IAsyncAction SaveAsync( StorageFile file, AnnContainer container, AnnFormat format, int savePageNumber )
function Leadtools.Annotations.Core.AnnCodecs.SaveAsync( file , container , format , savePageNumber )
If file is not a new file, then it must contain valid LEADTOOLS Annotations data previously saved with SaveAsync and this method will insert or replace the page specified in savePageNumber and returns the updated data.
If file is a new file, then this method will create the new LEADTOOLS Annotations data and saves it.
If the value of savePageNumber is 0, the page number to use when saving is obtained from the PageNumber property of container, otherwise, the page number to use when saving is savePageNumber.
LEADTOOLS supported saving multiple containers in the same file each with a unique page number. You can use LoadAsync with a page number to load the desired page.
The SerializeOptions property can contain optional options and events to use during saving of annotations data.
For more information, refer to Annotation Files.
For an example, refer to AnnCodecs