Try this Command:
GroupPropInfoGet
Obtains information about a property of a channel group in the Data Portal.
Call GroupPropInfoGet(TargetGroupIndex, PropName)
Input Parameters
TargetGroupIndex Specifies the index of a target channel group in the Data Portal.
PropName Specifies the name of a property in a particular context.
DIAdem saves the results in the variables DataType, PropIsFixed, and PropIsReadOnly.
Example
The following example displays various details for the properties of a group.
TargetGroupIndex = GroupIndexGet("EXAMPLE")
For iLoop = 1 to GroupPropCount(TargetGroupIndex)
Call GroupPropInfoGet(TargetGroupIndex , GroupPropNameGet(TargetGroupIndex ,iLoop))
Call MsgBoxDisp ("Property: " & GroupPropNameGet(TargetGroupIndex ,iL
oop) & VBCrLf & _
"with data type: " & DatatypeAsText(DataType) & VBCrLf &_
"is fixed: " & PropIsFixed & VBCrLf &_
"is read only: " & PropIsReadOnly )
Next
'==== Function to convert data type from integer into text ===
Function DatatypeAsText(iMyType)
Select Case iMyType
Case DataTypeFloat64
DatatypeAsText = "Float64"
Case DataTypeInt16
DatatypeAsText = "Int16"
Case DataTypeInt32
DatatypeAsText = "Int32"
Case DataTypeString
DatatypeAsText = "String"
Case DataTypeUInt8
DatatypeAsText = "UInt8"
End Select
End Function