[]
        
(Showing Draft Content)

GrapeCity.Forguncy.Plugin.IntPropertyAttribute

类 IntPropertyAttribute

用于配置整数编辑框的设置,必须标注在 Int 类型的属性上

继承
object
System.Attribute
IntPropertyAttribute
命名空间: GrapeCity.Forguncy.Plugin
程序集: GrapeCity.Forguncy.Plugin.dll
语法
public class IntPropertyAttribute : Attribute

构造函数

IntPropertyAttribute()

用于配置整数编辑框的设置,必须标注在 Int 类型的属性上

声明
public IntPropertyAttribute()

属性

AllowNull

是否可以设置为空,默认为否

声明
public bool AllowNull { get; set; }
属性值
类型 描述
bool

Max

最大值,默认int.MaxValue

声明
public int Max { get; set; }
属性值
类型 描述
int

Min

最小值,默认int.MinValue

声明
public int Min { get; set; }
属性值
类型 描述
int

Watermark

值为空时的替代文本

声明
public virtual string Watermark { get; set; }
属性值
类型 描述
string