in einer Ausgabe? also so wie ich es jetz mache geht es
Delphi-Quellcode:
Atom:=TAtom.create;
//...
Atom.set_Atomname('Natrium');
Atom.set_Atomsymbol('Na');
Atom.set_Atomserie('Erdalkalimetalle');
Atom.set_Atomaussehen('silbrig weiß');
Atom.set_Atomaggregatzustand('Fest');
Atom.set_Atomgefahren1('Leichtentzündlich (F)');
Atom.set_Atomgefahren2('Ätztend (C)');
Atom.set_Atomordnungszahl(11);
Atom.set_Atommasse(23);
Atom.set_Atomschmelztemperatur(97.72);
Atom.set_Atomsiedetemperatur(883);
Atom.set_Atomdichte(0.968);
Atom.set_AtomEN(0.93);
Atom.set_Atomoxidationszahl1(1);
Periodensystem.Hinzufuegen(Atom);
//...