Returns all the data of the annotations on a specific image.
Namespace: Dynamsoft.DotNet.TWAINAssembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
| C# |
|---|
public bool GetAllAnnotationDataList(
short sImageIndex,
out List<AnnotationData> aryAnnotation
) |
| Visual Basic |
|---|
Public Function GetAllAnnotationDataList ( _
sImageIndex As Short, _
<OutAttribute> ByRef aryAnnotation As List(Of AnnotationData) _
) As Boolean |
| Visual C++ |
|---|
public:
bool GetAllAnnotationDataList(
short sImageIndex,
[OutAttribute] 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