DicomObjects.NET.V8
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: .NET CLR 4.0 or higher

    See Also