Forum Migration Notice
Update (2026-01-21): The user forums are now in read-only mode pending the data migration.

Update (2026-01-12): The user forums will be put into read-only mode on the 21st of January, 00:00 CET, to prepare for the data migration.

We're transitioning to a more modern community platform by beginning of next year. Learn about the upcoming changes and what to expect.

Get the parent controller of a signal

I have an event handler (see below) that is raised when a signal's value changes. 
<div>private void Signal_Changed(object sender, SignalChangedEventArgs e)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Signal signal = sender as Signal;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div>
From the signal object (Signal signal) is there any way to get what controller/system that signals originated from? All im after is the name of the controller/system.