Hallo,
ich möchte alle Attribute eines markierten Bauteils herausbekommen. Habe folgendes Testprogramm geschrieben:
if (schematic) {
schematic(SCH) {
SCH.parts(P) {
P.instances(I) {
if (ingroup(I)) {
I.attributes(A) {
dlgMessageBox(I.name + ": "+ A.name + " - " + A.value, "ok");
}
}
}
}
}
}
Das listet mir aber nur NAME und WERT des Bauteils. Wie bekomme ich alle Attribute (auch im Schaltplan vergebene) heraus?