DIAdem Help

Property: Size for Property <DataPlugin>

  • Updated2024-09-12
  • 1 minute(s) read

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
ObjectProperty <DataPlugin>
Object with this property
Object.SizeLongInteger 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