[]
        
(Showing Draft Content)

GrapeCity.Forguncy.Plugin.FormulaPropertyAttribute

类 FormulaPropertyAttribute

指定插件内部属性对应的编辑器为公式选择框。

注意:使用公式选择框作为属性值编辑器的属性,其值类型必须是object。

继承
object
System.Attribute
FormulaPropertyAttribute
命名空间: GrapeCity.Forguncy.Plugin
程序集: GrapeCity.Forguncy.Plugin.dll
语法
public class FormulaPropertyAttribute : Attribute
示例
public class SetFocusCommand : Command
{
    [FormulaProperty(true)]
    public object TargetCell { get; set; }
}

构造函数

FormulaPropertyAttribute()

默认构造函数。

声明
public FormulaPropertyAttribute()

FormulaPropertyAttribute(bool, bool)

构造函数,指定其公式选择框是否只能选择单元格而不支持选择单元格区域或者函数。

声明
public FormulaPropertyAttribute(bool onlySupportCell = false, bool canSelectResource = true)
参数
类型 名称 描述
bool onlySupportCell

是否只支持单元格。

bool canSelectResource

是否支持选择资源

FormulaPropertyAttribute(bool)

构造函数,指定其公式选择框是否只能选择单元格而不支持选择单元格区域或者函数。

声明
public FormulaPropertyAttribute(bool onlySupportCell)
参数
类型 名称 描述
bool onlySupportCell

是否只支持单元格。

属性

AcceptsReturn

是否支持输入多行

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

CanSelectResource

资源选择,如~RS_Name

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

ContextVariables

此公式可用的上下文变量,多个用“|”分隔,描述用“:”分隔

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

OnlySupportCell

公式选择框只能选择单元格,如=A1,不能选择单元格区域或函数等。

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

OnlySupportNormalCell

标记只能引用普通单元格,不能引用表格中的单元格

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

RecommendedValues

建议列表.

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

SupportParameters

标记支持在下拉框中显示上下文参数

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