Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
J-Camper
in reply to: danny.lewisA9QBW

Check the ExpressionList Property  of each parameter. 

 

Non-list Parameters have ExpressionList.Count = 0

 

Sample:

For Each p As Parameter In ThisDoc.Document.ComponentDefinition.Parameters
	If p.ExpressionList.Count > 0
		Logger.Trace(p.Name & "  List QTY:  " & p.ExpressionList.Count)
	End If
Next

 

Run rule in Log Level Trace to check sample code results.