Parameters
- keyword
- Keyword to convert to string value
- separator
- String to separate Group and Element string representation
Return Value
String value of the keyword
// Examples var tag = DicomGlobal.KeywordTag(Keyword.PatientName); // tag = "0010,0010" var tag = DicomGlobal.KeywordTag(Keyword.SOPClassUID); // tag = "0008,0016" // With the optional parameter var tag3 = DicomGlobal.KeywordTag(Keyword.PlaneOrientationSequence, ":"); // tag = "0020:9116"