DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSet Class / Value Method / Value(Keyword) Method

The keyword of the DicomAttribute

Example

In This Topic
    Value(Keyword) Method
    In This Topic
    Returns the value of the specified Data Element
    Syntax
    'Declaration
     
    
    Public Overloads Function Value( _
       ByVal Keyword As Keyword _
    ) As System.Object
    public System.object Value( 
       Keyword Keyword
    )

    Parameters

    Keyword

    The keyword of the DicomAttribute

    Return Value

    object
    Remarks

    The type of variant returned depends on the value representation of the data element, and may be a string, date (for time, date or date-time), or a numeric type, including floating point values where appropriate.

    Data elements of types not known to the program, whether private elements, or attributes recently defined by DICOM return the string " Unknown Data Type".

    Example
    DicomDataSet ds = new DicomDataSet("Dataset.dcm");
    Keyword patientNameKeyword = Keyword.PatientName;
                        
    var patientName = ds.Value(patientNameKeyword);
    Debug.WriteLine($"Patient Name: {patientName}"); // Example output: Patient Name: John Doe
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also