InfoFlags property (ILEADDicomDS)

VB.NET example

C# example

Visual Basic example

Visual C++ 6.0 example

 

Syntax

short InfoFlags

Overview

Refer to Working with Data Sets.

Remarks

Contains meta-header flags and transfer syntax flags that provide information about the current Data Set.

You must call the GetInfoDS method to update this property.

Possible values for the Meta-header flags are:

Value

Meaning

DS_METAHEADER_PRESENT

[0x0001] The header is present.

DS_METAHEADER_ABSENT

[0x0002] The header is absent.

Possible values and combinations for the Transfer Syntax flags are:

DS_LITTLE_ENDIAN

[0x0004] Byte order is Little Endian.

DS_BIG_ENDIAN

[0x0008] Byte order is Big Endian.

DS_IMPLICIT_VR

[0x0010] The Value Representation is implicit.

DS_EXPLICIT_VR

[0x0020] The Value Representation is explicit.

 

 

 

DS_LITTLE_ENDIAN | DS_IMPLICIT_VR

DS_LITTLE_ENDIAN | DS_EXPLICIT_VR

DS_BIG_ENDIAN | DS_EXPLICIT_VR

Any of the available Meta-header flags given above may be combined with any of the available values or combinations of values for the Transfer Syntax flags given above. For example, you may combine DS_METAHEADER_ABSENT with DS_EXPLICIT_VR, or you may combine DS_METAHEADER_PRESENT with DS_BIG_ENDIAN | DS_EXPLICIT_VR, etc.

See Also

Elements:

InfoClass property, GetInfoDS method

Topics:

Data Sets: Getting and Setting Data Set Information