Parameters
- group
- The Group value represented in hexadecimal string
- element
- The Element value represented in hexadecimal string
Return Value
A keyword
string group = "0x0010"; string element = "0x0010"; var keyword = DicomGlobal.Keyword(group, element); // keyword = (DicomObjects.Enums.)Keyword.PatientName // Alternatives string group = "0010" // or "10" string element = "0010" // or "10" var keyword = DicomGlobal.Keyword(group, element); // keyword = (DicomObjects.Enums.)Keyword.PatientName