Creates a new
DicomTimeValue with the specified values.
public static DicomTimeValue Create(
int ,
int ,
int ,
int
)
'Declaration
Public Overloads Shared Function Create( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
) As DicomTimeValue
'Usage
Dim hours As Integer
Dim minutes As Integer
Dim seconds As Integer
Dim fractions As Integer
Dim value As DicomTimeValue
value = DicomTimeValueHelper.Create(hours, minutes, seconds, fractions)
function Leadtools.Dicom.DicomTimeValueHelper.Create(Int32,Int32,Int32,Int32)(
hours ,
minutes ,
seconds ,
fractions
)
public:
static DicomTimeValue Create(
int ,
int ,
int ,
int
)
Parameters
- hours
- Value that represents the hour.
- minutes
- Value that represents the minute.
- seconds
- Value that represents the second.
- fractions
- Value that represents the fraction of a second.
Return Value
A new
DicomTimeValue with the specified values.