03-05-2021
09:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-05-2021
09:24 AM
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.