.OpenModelica.Scripting.getElementModifierValues

Returns the modifier for an element.

Information

Returns the modifier value (including the submodifiers) of an element (component or short class).

Example:

  model A
    B b1(a1(p1=5,p2=4));
    model X = Y(a1(p1=5,p2=4));
  end A;

  getElementModifierValues(A,b1.a1) => (p1 = 5, p2 = 4)
  getElementModifierValues(A,X.a1) => (p1 = 5, p2 = 4)

See also getElementModifierValue().

Interface

function getElementModifierValues
  input TypeName className;
  input TypeName modifier;
  output String value;
end getElementModifierValues;

Generated at 2025-05-10T18:20:09Z by OpenModelicaOpenModelica 1.25.0 using GenerateDoc.mos