Returns the first string associated to the group and element.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public string this[
	int group,
	int element
] { get; }
Public ReadOnly Default Property Item ( _
	group As Integer, _
	element As Integer _
) As String
	Get
public:
property String^ default[int group, int element] {
	String^ get (int group, int element);
}

Parameters

group
Int32
element
Int32

Examples

CopyC#
string patientName = Image.IOParams.DICOM_Info[0x0010,0x0010];

See Also