Read parameter equation value

Read parameter equation value

Goran.JutrisaR5QUS
Contributor Contributor
492 Views
1 Reply
Message 1 of 2

Read parameter equation value

Goran.JutrisaR5QUS
Contributor
Contributor

Hi to all,

How can i read parameter equation value.

Let say I have parameter "G_L" which is equal to parameter d10.

I would like to get this d10, want to know to which parameter is G_L equal to.

Thanks

 

 

0 Likes
Accepted solutions (1)
493 Views
1 Reply
Reply (1)
Message 2 of 2

A.Acheson
Mentor
Mentor
Accepted solution

To clarify are you looking for the parameter expression? The expression contains any forumals used. If so I think this link will help here.

param = Parameter.Param("parameterName")
If (param IsNot Nothing) Then
Dim ReadParam as String ReadParam = param.Expression
MessageBox.Show(ReadParam, "Parameter Expression")
End If

 

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan
0 Likes