INGEAR.NET.GELink

 

TagGroup.ErrorCode Property

Gets numeric value for last error encounted by group

[Visual Basic]
Public ReadOnly Property ErrorCode As Integer
[C#]
public int ErrorCode {get;}

Property Value

See ResultCode

Remarks

Example

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);    

See Also

TagGroup Class | GELink Namespace