DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomGlobal Class / Keyword Method
The Group value
The Element value



In This Topic
    Keyword Method
    In This Topic
    Construct a keyword from arbitrary group and element values
    Syntax
    'Declaration
     
    
    Public Shared Function Keyword( _
       ByVal Group As UShort, _
       ByVal Element As UShort _
    ) As Keyword
    'Usage
     
    
    Dim Group As UShort
    Dim Element As UShort
    Dim value As Keyword
     
    value = DicomGlobal.Keyword(Group, Element)
    public static Keyword Keyword( 
       ushort Group,
       ushort Element
    )
    public:
    static Keyword Keyword( 
       ushort Group,
       ushort Element
    ) 

    Parameters

    Group
    The Group value
    Element
    The Element value

    Return Value

    A keyword
    Remarks
    Note that the keyword generated does not need to exist within the pre-defined values of the 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