Gets numeric value for last error encounted by group
See ResultCode
VB
Dim MyGroup As New GELink.TagGroup
Dim MyTag As New GELink.Tag("%R1")
MyGroup.AddTag(MyTag)
If MyGroup.ErrorCode = ResultCode.E_SUCCESS Then
Console.WriteLine(MyGroup.ErrorString)
End If
C#
GELink.TagGroup MyGroup = new GELink.TagGroup();
GELink.Tag MyTag = new GELink.Tag("%R1");
MyGroup.AddTag(MyTag)
if (MyGroup.ErrorCode != ResultCode.E_SUCCESS)
Console.WriteLine(MyGroup.ErrorString);
TagGroup Class | GELink Namespace