Changes between Initial Version and Version 1 of Ticket #6144
- Timestamp:
- 2020-09-29T14:08:20Z (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6144
- Property Component Frontend → OMEdit
- Property Owner changed from to
-
Ticket #6144 – Description
initial v1 1 1 I want to change the visibility of a Modelica.Blocks.Interfaces.RealInput dynamic via another parameter. For example: 2 2 {{{#!mo 3 3 model Example 4 4 parameter Boolean visibility = true; … … 6 6 Placement(visible = visibility , transformation(origin = {-60, 120}, extent = {{-20, -20}, {20, 20}}, rotation = -90), iconTransformation(origin = {-60, 120}, extent = {{-20, -20}, {20, 20}}, rotation = -90))); 7 7 end Example; 8 8 }}} 9 9 When i drag and drop the example model into a test area, i can chage the parameter "visibility" but the visibility of the variable dont change. 10 10