Is there an event to list to that notifies me when the active child pane (Item) changes within a ViewAndLayoutItem (usually because a user selected it, but also if it was changed programmatically)? Also, if I miss the events, how do a get the active ViewAndLayoutItem and the active Item within it?
I am a bit in doubt what you are looking for, might it be -
MIP Environment: VideoOS.Platform.Messaging.MessageId.SmartClient Class Reference
const String VideoOS.Platform.Messaging.MessageId.SmartClient.SelectedViewChangedIndication = “SmartClient.SelectedViewChangedIndication”
Send by the Smart Client when the main view has changed. The Data field contains the ViewAndLayoutItem for the new view.
-
A tip that is generally useful is to run and explore the Message Tester tool plugin sample, it should show you which message indication fits (if any).
You are on the right track. The SelectedViewChangedIndication led me to the SelectedCameraChangedIndication, and I was able to get what I needed.
Thanks
Maybe you solved it from another look at the documentation, maybe you used the tool. As a generally usable advise I would like to highlight the tool sample..
- A tip that is generally useful is to run and explore the Message Tester tool plugin sample, it should show you which message indication fits (if any).