INGEAR.NET.MBLINK

TagGroup.MyObject Property

User-defined object associated with instance of TagGroup

[Visual Basic]
NotOverridable Public Property MyObject As Object _
    Implements IGroup.MyObject
[C#]
public object MyObject {get; set;}

Implements

IGroup.MyObject

Remarks

MyObject is passed with the GroupUpdate event

Example

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;

See Also

TagGroup Class | MBLink Namespace