Hi there,
Looking to add switching mode controls to a mimic for a redundancy group:
Are there parameter ID's associated with redundancy group elements that allow the switching mode to be shown and controlled from within a shape on a visio/mimic?
Thanks,
Hi Nigel,
As far as I know there is no parameter ID associated with these actions. However, you can set the mode of a redundancy group from an automation script (check DataMiner Help - Class Redundancy Group for additional information)
Please find below an example to switch the mode to 'Manual switching':
RedundancyGroup rg = engine.FindRedundancyGroup("TEST_REDUNDANCY"); rg.Mode = Skyline.DataMiner.Net.Messages.RedundancyMode.Manual;
Thanks, that was going to be my next question. If it could be carried out via a script. Will give this a go!