Property: Size for Property <DataPlugin>
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: Size for Property <DataPlugin>
Property: Size for Property <DataPlugin>
Specifies the number of values of a property of the Root object, of the ChannelGroup object, of the Channel object, or of the ImplicitChannel object.
Object.Size
| Object | Property <DataPlugin> Object with this property |
| Object.Size | LongInteger with read access |
The following example generates a separate property, for the channel ToChn for each value that the FromChn channel in the vector property VectorProperty contains:
Dim oProp, i Set oProp = FromChn.Properties("VectorProperty") For i = 1 to oProp.Size Call ToChn.Properties.Add("Prop"&i, oProp.Values(i)) Next