Action ohne Parameter ausführen:

new CommandLineInterpreter().Execute("ACTIONNAME");

Action mit Parametern ausführen:

ActionCallingContext acc = new ActionCallingContext();
acc.AddParameter("PARAMETERNAME_1", "Wert Parameter 1");
acc.AddParameter("PARAMETERNAME_2", "Wert Parameter 2");
new CommandLineInterpreter().Execute("ACTIONNAME", acc);

In der Befehlszeile in Eplan (Toolbar) würde es wie folgt aussehen:

ACTIONNAME /PARAMETERNAME_1:"Wert Parameter 1" /PARAMETERNAME_2:"Wert Parameter 2"