[]
插件或插件内部属性的权重, 权重越大位置越靠后。
public class OrderWeightAttribute : Attribute
public class SignatureCellType : CellType
{
[OrderWeight(0)]
public double DotSize
{
get;
set;
}
[OrderWeight(1)]
public double LineMinWidth
{
get;
set;
}
...
}
构造函数。
public OrderWeightAttribute(int orderWeight = 0)
类型 | 名称 | 描述 |
---|---|---|
int | orderWeight | 权重值,默认值为0。 |