Gets the value used to divide the value multiplicity.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property VMDivider As Long |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As DicomTag
Dim value As Long
value = instance.VMDivider
|
C# | |
---|
public long VMDivider {get;} |
Managed Extensions for C++ | |
---|
public: __property long get_VMDivider(); |
C++/CLI | |
---|
public:
property long VMDivider {
long get();
} |
Return Value
The value used to divide the value multiplicity. When multiple values are stored in the value field of a
data element, the number of values present must be evenly divisible by
VMDivider.
For most items
VMDivider will be 1. However, if the values stored in the
value field are RGB triplets, for example, you would have to store three values for each triplet. You
could store 12 values, since 12 values would be 4 triplets, however, you could not store 13 values. In
this case
VMDivider would be 3.
Example
For an example, refer to
Reset.
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also