DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / Keyword Method / Keyword(UInt16,UInt16) Method
The Group value
The Element value






In This Topic
    Keyword(UInt16,UInt16) Method
    In This Topic
    Construct a keyword from arbitrary group and element values
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function Keyword( _
       ByVal Group As System.UShort, _
       ByVal Element As System.UShort _
    ) As Keyword
    'Usage
     
    
    Dim Group As System.UShort
    Dim Element As System.UShort
    Dim value As Keyword
     
    value = DicomGlobal.Keyword(Group, Element)
    public static Keyword Keyword( 
       System.ushort Group,
       System.ushort Element
    )
    public function Keyword( 
        Group: System.Word;
        Element: System.Word
    ): Keyword; static; 
    public static function Keyword( 
       Group : System.ushort,
       Element : System.ushort
    ) : Keyword;
    public: static Keyword Keyword( 
       System.ushort Group,
       System.ushort Element
    ) 
    public:
    static Keyword Keyword( 
       System.ushort Group,
       System.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 DicomObjects.Enums.Keyword enumeration, so this method may be used to generate keyword for private elements etc.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also