///<summary>改变垂直缩放极限值</summary>
 ///<param name="value">值(>=1)</param>
 public void ChangeScaleLimitY(uint value)
 {
     if (m_Oscilloscope != IntPtr.Zero && Dll.ChangeScaleLimitY(m_Oscilloscope, value) && PropertyChanged != null)
     {
         PropertyChanged(Property.TranslateY_Limit, Dll.TranslateY_Limit(m_Oscilloscope));
         PropertyChanged(Property.TranslateY, Dll.TranslateY(m_Oscilloscope));
         PropertyChanged(Property.ScaleY, Dll.ScaleY(m_Oscilloscope));
         PropertyChanged(Property.ScaleY_Limit, Dll.ScaleY_Limit(m_Oscilloscope));
     }
 }