[]
        
(Showing Draft Content)

GrapeCity.Forguncy.Plugin.OrderWeightAttribute

类 OrderWeightAttribute

插件或插件内部属性的权重, 权重越大位置越靠后。

继承
object
System.Attribute
OrderWeightAttribute
命名空间: GrapeCity.Forguncy.Plugin
程序集: GrapeCity.Forguncy.Plugin.dll
语法
public class OrderWeightAttribute : Attribute
示例
public class SignatureCellType : CellType
{
    [OrderWeight(0)]
    public double DotSize
    {
        get;
        set;
    }

    [OrderWeight(1)]
    public double LineMinWidth
    {
        get;
        set;
    }

    ...
}

构造函数

OrderWeightAttribute(int)

构造函数。

声明
public OrderWeightAttribute(int orderWeight = 0)
参数
类型 名称 描述
int orderWeight

权重值,默认值为0。