03-08-2021
05:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-08-2021
05:38 AM
The code I posted already contained code to copy the multi-value list from the source parameter to the target parameter. That's what the following block of code, that appears twice within it, was for:
If oSParam.ExpressionList IsNot Nothing AndAlso oSParam.ExpressionList.Count > 0 Then
Dim oExps() As String = oSParam.ExpressionList.GetExpressionList
oTParam.ExpressionList.SetExpressionList(oExps)
End IfIt doesn't just copy a list of 'Values', it copies the list of 'Expressions', in case you want to maintain a list of possible equations or similar non-simple entries.
Wesley Crihfield
(Not an Autodesk Employee)