AnnEntries property (ILEADDicomDS)

VB.NET example

C# example

Visual Basic example

Visual C++ 6.0 example

 

Syntax

VARIANT_BOOL AnnEntries (iIndex)

Overview

Refer to DICOM Annotation Files.

Remarks

(Medical only) (Read only) Indicates which of the possible 256 private tags are being used to store annotations in a DICOM data set.

This property is updated by the AnnCount method.

For example, suppose that a DICOM data set contains three LEAD annotation files at indices 0,1, and 4.

Executing the following

LEADDICOM1.LoadDS "d:\\work\\images\\a.dic", 0
LEADDICOM1.AnnCount

will set the AnnEntries property as follows:

AnnEntries(0) = 1
AnnEntries(1) = 1
AnnEntries(2) = 0
AnnEntries(3) = 0
AnnEntries(4) = 1
AnnEntries(5..255) = 0

See Also

Elements:

AnnLoad method, AnnSave method, AnnCount method, AnnDelete method, AnnPrivateCreatorTag property, AnnContainer property

Topics:

Data Sets: Annotation Files