[]
指定插件内部属性对应的编辑器为公式选择框。
注意:使用公式选择框作为属性值编辑器的属性,其值类型必须是object。
public class FormulaPropertyAttribute : Attribute
public class SetFocusCommand : Command
{
[FormulaProperty(true)]
public object TargetCell { get; set; }
}
默认构造函数。
public FormulaPropertyAttribute()
构造函数,指定其公式选择框是否只能选择单元格而不支持选择单元格区域或者函数。
public FormulaPropertyAttribute(bool onlySupportCell = false, bool canSelectResource = true)
类型 | 名称 | 描述 |
---|---|---|
bool | onlySupportCell | 是否只支持单元格。 |
bool | canSelectResource | 是否支持选择资源 |
构造函数,指定其公式选择框是否只能选择单元格而不支持选择单元格区域或者函数。
public FormulaPropertyAttribute(bool onlySupportCell)
类型 | 名称 | 描述 |
---|---|---|
bool | onlySupportCell | 是否只支持单元格。 |
是否支持输入多行
public bool AcceptsReturn { get; set; }
类型 | 描述 |
---|---|
bool |
资源选择,如~RS_Name
public bool CanSelectResource { get; set; }
类型 | 描述 |
---|---|
bool |
此公式可用的上下文变量,多个用“|”分隔,描述用“:”分隔
public virtual string ContextVariables { get; set; }
类型 | 描述 |
---|---|
string |
公式选择框只能选择单元格,如=A1,不能选择单元格区域或函数等。
public bool OnlySupportCell { get; set; }
类型 | 描述 |
---|---|
bool |
标记只能引用普通单元格,不能引用表格中的单元格
public bool OnlySupportNormalCell { get; set; }
类型 | 描述 |
---|---|
bool |
建议列表.
public string RecommendedValues { get; set; }
类型 | 描述 |
---|---|
string |
标记支持在下拉框中显示上下文参数
public bool SupportParameters { get; set; }
类型 | 描述 |
---|---|
bool |