FineUICore 12.0
全栈 ASP.NET Core 低代码开发框架
载入中...
搜索中...
未找到
FineUICore.NumberBoxAjaxHelper类 参考

数字输入框控件帮助类 更多...

类 FineUICore.NumberBoxAjaxHelper 继承关系图:
FineUICore.RealTextFieldAjaxHelper< T, TAjaxHelper > FineUICore.TextFieldAjaxHelper< T, TAjaxHelper > FineUICore.FieldAjaxHelper< T, TAjaxHelper > FineUICore.BoxComponentAjaxHelper< T, TAjaxHelper > FineUICore.ComponentAjaxHelper< T, TAjaxHelper > FineUICore.ControlBaseAjaxHelper< T, TAjaxHelper > FineUICore.IControlBaseAjaxHelper< out T >

Public 成员函数

 NumberBoxAjaxHelper (NumberBox source)
 构造函数
 
void NoDecimal (bool noDecimal)
 设置是否允许小数
 
void NoNegative (bool noNegative)
 设置是否允许负数
 
void DecimalPrecision (int decimalPrecision)
 设置小数点后的位数(默认为2)
 
void Increment (double increment)
 设置增量
 
void MinValue (double? minValue)
 设置最小值(null用来清空最小值)
 
void MaxValue (double? maxValue)
 设置最大值(null用来清空最大值)
 
- Public 成员函数 继承自 FineUICore.RealTextFieldAjaxHelper< T, TAjaxHelper >
 RealTextFieldAjaxHelper (RealTextField source)
 构造函数
 
virtual void Text (string text)
 设置文本
 
- Public 成员函数 继承自 FineUICore.TextFieldAjaxHelper< T, TAjaxHelper >
 TextFieldAjaxHelper (TextField source)
 构造函数
 
- Public 成员函数 继承自 FineUICore.FieldAjaxHelper< T, TAjaxHelper >
 FieldAjaxHelper (Field source)
 构造函数
 
void Focus ()
 使控件获得焦点
 
void Focus (bool selectText)
 使控件获得焦点,并选中控件中的文本内容
 
void Focus (bool selectText, int delayMilliseconds)
 使控件获得焦点,并选中控件中的文本内容
 
string GetFocusReference ()
 获得使控件获得焦点的脚本
 
string GetFocusReference (bool selectText)
 获得使控件获得焦点,并选中控件中的文本内容的脚本
 
string GetFocusReference (bool selectText, int delayMilliseconds)
 获得使控件获得焦点,并选中控件中的文本内容的脚本
 
void Reset ()
 重置此字段的值(比如用来清空FileUpload的内容)
 
string GetResetReference ()
 获取重置此字段的客户端脚本
 
string GetValueReference ()
 获取此字段值的客户端脚本(注意返回的脚本不带结束分号)
 
void MarkInvalid (string message)
 设置字段验证失败的提示信息
 
void ClearInvalid ()
 清除验证失败的提示信息
 
string GetMarkInvalidReference (string message)
 获取字段验证失败提示信息的客户端脚本
 
string GetClearInvalidReference ()
 获取清除验证失败提示信息的客户端脚本
 
- Public 成员函数 继承自 FineUICore.BoxComponentAjaxHelper< T, TAjaxHelper >
 BoxComponentAjaxHelper (BoxComponent source)
 构造函数
 
- Public 成员函数 继承自 FineUICore.ComponentAjaxHelper< T, TAjaxHelper >
 ComponentAjaxHelper (Component source)
 构造函数
 
void ApplyStyles (string styles)
 设置控件样式
 
void CssStyle (string styles)
 设置控件样式
 
void AddCssClass (string cssClass)
 添加控件样式类
 
void RemoveCssClass (string cssClass)
 删除控件样式类
 
- Public 成员函数 继承自 FineUICore.ControlBaseAjaxHelper< T, TAjaxHelper >
 ControlBaseAjaxHelper (ControlBase source)
 构造函数
 
virtual void Enabled (bool enabled)
 设置控件的启用状态
 
virtual void Disabled (bool disabled)
 设置控件的禁用状态
 
virtual void Hidden (bool hidden)
 设置控件的隐藏状态
 
virtual void Attribute (string key, string value)
 设置HTML标签属性
 

属性

new NumberBox Source [get]
 当前控件
 
- 属性 继承自 FineUICore.RealTextFieldAjaxHelper< T, TAjaxHelper >
new RealTextField Source [get]
 当前控件
 
- 属性 继承自 FineUICore.TextFieldAjaxHelper< T, TAjaxHelper >
new TextField Source [get]
 当前控件
 
- 属性 继承自 FineUICore.FieldAjaxHelper< T, TAjaxHelper >
new Field Source [get]
 当前控件
 
- 属性 继承自 FineUICore.BoxComponentAjaxHelper< T, TAjaxHelper >
new BoxComponent Source [get]
 当前控件
 
- 属性 继承自 FineUICore.ComponentAjaxHelper< T, TAjaxHelper >
new Component Source [get]
 当前控件
 
- 属性 继承自 FineUICore.ControlBaseAjaxHelper< T, TAjaxHelper >
ControlBase Source [get]
 当前控件
 

详细描述

数字输入框控件帮助类

构造及析构函数说明

◆ NumberBoxAjaxHelper()

FineUICore.NumberBoxAjaxHelper.NumberBoxAjaxHelper ( NumberBox source)

构造函数

参数
source

成员函数说明

◆ DecimalPrecision()

void FineUICore.NumberBoxAjaxHelper.DecimalPrecision ( int decimalPrecision)

设置小数点后的位数(默认为2)

参数
decimalPrecision

◆ Increment()

void FineUICore.NumberBoxAjaxHelper.Increment ( double increment)

设置增量

参数
increment

◆ MaxValue()

void FineUICore.NumberBoxAjaxHelper.MaxValue ( double? maxValue)

设置最大值(null用来清空最大值)

参数
maxValue

◆ MinValue()

void FineUICore.NumberBoxAjaxHelper.MinValue ( double? minValue)

设置最小值(null用来清空最小值)

参数
minValue

◆ NoDecimal()

void FineUICore.NumberBoxAjaxHelper.NoDecimal ( bool noDecimal)

设置是否允许小数

参数
noDecimal

◆ NoNegative()

void FineUICore.NumberBoxAjaxHelper.NoNegative ( bool noNegative)

设置是否允许负数

参数
noNegative

属性说明

◆ Source

new NumberBox FineUICore.NumberBoxAjaxHelper.Source
get

该类的文档由以下文件生成: