DicomObjects.NetStandard Documentation
DicomObjects Namespace / DicomGlobal Class / Keyword Method / Keyword(String,String) Method
The Group value represented in hexadecimal string
The Element value represented in hexadecimal string



In This Topic
    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 group As String, _
       ByVal element As String _
    ) As Keyword
    'Usage
     
    
    Dim group As String
    Dim element As String
    Dim value As Keyword
     
    value = DicomGlobal.Keyword(group, element)
    public static Keyword Keyword( 
       string group,
       string element
    )
    public:
    static Keyword Keyword( 
       String^ group,
       String^ element
    ) 

    Parameters

    group
    The Group value represented in hexadecimal string
    element
    The Element value represented in hexadecimal string

    Return Value

    A keyword
    Remarks
    Note that the keyword generated does not need to exist within the pre-defined values of the DicomObjects.Enums.Keyword enumeration, so this method may be used to generate keyword for private elements etc.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also