User-defined object associated with instance of TagGroup
MyObject is passed with the GroupUpdate event
VB
Imports MBLink
Dim MyGroup As New TagGroup
Dim theObject As New some_object
MyGroup.MyObject = some_object
C#
using MBLink;
Controller MBDevice = new Controller("192.168.1.45");
object some_object = new object();
MyTagGroup.MyObject = some_object;
TagGroup Class | MBLink Namespace