Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum DicomDataSetLoadFlags Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[FlagsAttribute()] public enum DicomDataSetLoadFlags : Enum |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class DicomDataSetLoadFlags : public Enum |
Member | Description |
---|---|
None | LEADTOOLS will automatically determine the Transfer Syntax, as well as the presence or absence of the Meta-header. |
MetaHeaderPresent | The Meta-header is present. |
MetaHeaderAbsent | The Meta-header is absent. |
LittleEndian | The byte order of the data set is Little Endian. |
BigEndian | The byte order of the Data Set is Big Endian. |
ImplicitVR | The Value Representation of the Data Set is Implicit. |
ExplicitVR | The Value Representation of the Data Set is Explicit. |
LoadAndClose | The complete dataset will be loaded into memory and the file handle closed. If LoadAndClose is used, for large images, this may slow performance, however, the file handle will be released. If set to None, large images will load quickly, and image traverse can begin immediately. However, until the file handle is released, nothing can be done to the image. |
You can use bitwise OR operations to specify one flag/combination from each of the
following groups.
Group | Flags/Combinations |
---|---|
Meta-header | None, MetaHeaderPresent, MetaHeaderAbsent |
Transfer Syntax | None, LittleEndian, BigEndian, ImplicitVR, ExplicitVR, LittleEndian | ImplicitVR, LittleEndian | ExplicitVR, BigEndian | ExplicitVR |
Loading options | None, LoadAndClose |
System.Object
System.ValueType
System.Enum
Leadtools.Dicom.DicomDataSetLoadFlags
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family