| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum DicomDataSetFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As DicomDataSetFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum DicomDataSetFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class DicomDataSetFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| BigEndian | The byte order of the Data Set is Big Endian. |
| ExplicitVR | The Value Representation of the Data Set is Explicit. |
| ImplicitVR | The value Representation of the Data Set is Implicit. |
| LittleEndian | The byte order of the Data Set is Little Endian. |
| MetaHeaderAbsent | The Meta-header is absent. |
| MetaHeaderPresent | The Meta-header is present. |
| None | When loading a Data Set, LEADTOOLS will automatically determine the Transfer Syntax, as well as the presence or absence of the Meta-header. |
Bitwise OR operations may be used 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 |
System.Object
System.ValueType
System.Enum
Leadtools.Dicom.DicomDataSetFlags
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Copy Code