Keyword(String,String) Method
In This Topic
Construct a keyword from arbitrary group and element hex string (not the integer values)
Syntax
'Declaration
Public Overloads Shared Function Keyword( _
ByVal As System.String, _
ByVal As System.String _
) As Keyword
'Usage
Dim group As System.String
Dim element As System.String
Dim value As Keyword
value = DicomGlobal.Keyword(group, element)
public static Keyword Keyword(
System.string ,
System.string
)
public function Keyword(
: System.String;
: System.String
): Keyword; static;
public static function Keyword(
: System.String,
: System.String
) : Keyword;
public: static Keyword Keyword(
System.string* ,
System.string*
)
public:
static Keyword Keyword(
System.String^ ,
System.String^
)
Parameters
- group
- The Group value represented in hexadecimal string
- element
- The Element value represented in hexadecimal string
Return Value
A keyword
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also