dOPC Client Toolkit
Close
Example
dOPCDA.TdOPCGroups.Items
Copy Code
with
OPCServer.OPCGroups
do
for
i := 0
to
Items.Count -1
do
//for all groups in the collection
ShowMessage(Items[i].Name);
//show group name
or
Copy Code
with
OPCServer
do
for
i := 0
to
GroupCount -1
do
//for all groups in the collection
ShowMessage(OPCGroups[i].Name);
//show group name
dOPC version 5.33. Copyright © 2025 by Kassl GmbH.