Loads annotation data to a specific image from a data list.
Namespace: Dynamsoft.DotNet.TWAINAssembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
| C# |
|---|
public bool LoadAnnotationDataList(
short sImageIndex,
List<AnnotationData> aryAnnotation
) |
| Visual Basic |
|---|
Public Function LoadAnnotationDataList ( _
sImageIndex As Short, _
aryAnnotation As List(Of AnnotationData) _
) As Boolean |
| Visual C++ |
|---|
public:
bool LoadAnnotationDataList(
short sImageIndex,
List<AnnotationData^>^ aryAnnotation
) |
Parameters
- sImageIndex
- Type: System..::..Int16
- aryAnnotation
- Type: System.Collections.Generic..::..List<(Of <(<'AnnotationData>)>)>
Exceptions
| Exception | Condition |
|---|
| Dynamsoft.DotNet.TWAIN..::..TwainException |
When an error occurs and IfThrowException property is true, an exception will be thrown.
When IfThrowException property is false, please check ErrorCode and ErrorString.
|
See Also