Visual Basic (Declaration) | |
---|---|
Public Function GetTimeValue( _ ByVal element As DicomElement, _ ByVal index As Integer, _ ByVal count As Integer _ ) As DicomTimeValue() |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public DicomTimeValue[] GetTimeValue( DicomElement element, int index, int count ) |
Managed Extensions for C++ | |
---|---|
public: DicomTimeValue[] GetTimeValue( DicomElement* element, int index, int count ) |
C++/CLI | |
---|---|
public: array<DicomTimeValue> GetTimeValue( DicomElement^ element, int index, int count ) |
Parameters
- element
- An item in the Data Set.
- index
- The zero-based index of the first value to retrieve, when more than one value is stored in the Value Field.
- count
- Value that represents the number of values to retrieve when more than one value is stored in the Value Field. In most instances you will only retrieve one value so this parameter will be equal to one.
Return Value
A buffer of a DicomAgeValue objects, that contains age information stored in the Value Field of the specified element. null if the length of the Value Field is 0, the method was called for the incorrect Value Representation type, or the method was called for a folder (sequence) element.For an example, refer to SetIntValue.
If you have more than one value stored in the Value Field of the specified Data
Element, you can retrieve one or more of those elements. For example, if the Value
Field of the specified Data Element contains three Time values, and you are only
interested in retrieving the last two Time values, set index
to 1 and count to 2. This tells the method to retrieve the
Time values starting at position 1 (the index is zero-based) and retrieve two values.
Therefore you would retrieve the values in positions 1 and 2 in the Value Field.
This method can be called only if the Value Representation of the Data Element is DicomVRType.TM. For more information about Value Representations, refer to Default Value Representation Table.
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
Reference
DicomDataSet ClassDicomDataSet Members
GetDateRangeValue Method
GetByteValuePtr Method
GetStringValuePtr Method
GetFloatValuePtr Method
GetDoubleValuePtr Method
GetShortValue Method
GetAgeValue Method
GetLongValue Method
GetIntValue Method
GetBinaryValue(DicomElement,Int32) Method
GetDateValue Method
GetDateTimeValue Method