[]
        
(Showing Draft Content)

GrapeCity.Forguncy.Commands.CustomCommandObjectAttribute

类 CustomCommandObjectAttribute

通过标注此属性给单元格或命令声明自定义命令 被标注的属性应该是 object类型

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

构造函数

CustomCommandObjectAttribute()

构造函数

声明
public CustomCommandObjectAttribute()

属性

BindingDataSourceWithCustomColumnsPropertyName

绑定数据源属性的名称

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

InitParamProperties

如果有上下文参数,可以通过此属性声明,如果有多个上下文参数,可用“|”分隔

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

InitParamValues

指定上下文参数的引用值,通常为中文,如果有多个上下文参数,可用“|”分隔

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

ParameterDescriptions

指定上下文参数的描述,格式如下"value:表示可以使用的值|text:表示显示时的文本,策略为..."

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

方法

GetParameterRecommendValues()

返回上下文参数的可选值列表

声明
public virtual Dictionary<string, List<(object value, string text)>> GetParameterRecommendValues()
返回值
类型 描述
System.Collections.Generic.Dictionary<TKey, TValue><string, System.Collections.Generic.List<T><(object value, string text)>>