- fileName
- Name of the annotation file to load.
Visual Basic (Declaration) | |
---|---|
Overloads Public Function Load( _ ByVal fileName As String _ ) As AnnContainer() |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As AnnCodecs Dim fileName As String Dim value() As AnnContainer value = instance.Load(fileName) |
C# | |
---|---|
public AnnContainer[] Load( string fileName ) |
C++/CLI | |
---|---|
public: array<AnnContainer^>^ Load( String^ fileName ) |
Parameters
- fileName
- Name of the annotation file to load.
Return Value
An array of AnnContainer where each item in the array corresponds to each page in the annotation file fileName.For an example, refer to Save(String,AnnContainer[],AnnCodecsFormat).
Use the method to load all pages of a annotation file at once. If the annotation file contains many pages, then this method will load the pages much faster than calling Load(String,AnnContainer,Int32) multiple times (once for each page in the annotation file).
This method only supports the AnnCodecsFormat.Xml format. All other AnnCodecsFormat are not supported.
For more information, refer to Annotation Files.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7