AnimatGuiCtrls.Controls.PropertySlider.GetValues C# (CSharp) Method

GetValues() public method

public GetValues ( ) : void
return void
        public void GetValues()
        {
            if(m_PropertySpec != null)
            {
                PropertySpecEventArgs args = new PropertySpecEventArgs(m_PropertySpec, 0);
                OnGetValue(args);

                double dblValue = Convert.ToDouble(args.Value);
                SetSliderValue(dblValue);
            }
        }