is it Possible to Move a UI Slider remotely by script? If So How

We are working on getting the buttons & toggles in our interface to be activated by Voice command. I was then confronted with the issue of if we could do the same thing with UI Sliders?

Has anyone been able to operate a UI slider remotely using C# something like

Move slider up
(Code)

Move Sider Down
(Code)

Yes, just get a reference to the slider object and then manipulate its value.

using UnityEngine.UI;

public Slider yourSlider;

public MoveSlider(int num) {
    yourSlider.value = num;     //num should be from 0 to 1, because that's the range of a slider
}