ToolsOptionsBaseControl<TOptions>.ValidateNumeric 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
验证给定数值控件的当前值,如果该值无效,则显示消息。
protected:
virtual bool ValidateNumeric(System::Windows::Forms::NumericUpDown ^ numControl, System::String ^ errMessageToShow);
protected virtual bool ValidateNumeric (System.Windows.Forms.NumericUpDown numControl, string errMessageToShow);
abstract member ValidateNumeric : System.Windows.Forms.NumericUpDown * string -> bool
override this.ValidateNumeric : System.Windows.Forms.NumericUpDown * string -> bool
Protected Overridable Function ValidateNumeric (numControl As NumericUpDown, errMessageToShow As String) As Boolean
参数
- numControl
- NumericUpDown
NumericUpDown 对象。
- errMessageToShow
- String
一个包含错误消息的字符串。
返回
一个布尔值,如果控件值有效,则该布尔值为 True
;否则为 False
。