Hello All,
Is it possible to disable information events that that are generated from parameter sets via an automation script? Example below:

Thank you,
Hi Thomas,
Yes, by changing the RunTimeFlag NoInformationEvents.
e.g.
public void SetParameterSilent(int pid, object value)
{// Set the NoInformationEvents flag to disable information events _engine.SetFlag(RunTimeFlags.NoInformationEvents);
// Perform a silent parameter set without triggering an information event element.SetParameter(pid, value);
// Re-enable information events by clearing the NoInformationEvents flag _engine.UnsetFlag(RunTimeFlags.NoInformationEvents);
}