I want to modify the annotation part when inheriting a component in Dymola, but I am not sure if Modelica supports this kind of manipulation.
My question is :
If you want to 'redraw' the icon of a model extending from another model you can use the following annotation
model ExtendedModel
extends BaseModel annotation (
IconMap(
extent={{-100,-100},{100,100}},
primitivesVisible=false),
DiagramMap(
extent={{-100,-100},{100,100}},
primitivesVisible=true));
end ExtendedModel;