[]
        
(Showing Draft Content)

GrapeCity.Forguncy.CellTypes.ICommandCellType

接口 ICommandCellType

如果单元格类型本身允许执行命令,需实现该接口。

命名空间: GrapeCity.Forguncy.CellTypes
程序集: GrapeCity.Forguncy.CellTypes.dll
语法
public interface ICommandCellType
示例
public class ButtonCellType : CellType, ICommandCellType
{
    public List<Command> CommandList { get; set; }

    public CommandExcuteKind CommandExcuteKind
    {
        get
        {
            return CommandExcuteKind.Click;
        }
    }
}

属性

CommandExcuteKind

触发命令的时机。

声明
CommandExcuteKind CommandExcuteKind { get; }
属性值
类型 描述
CommandExcuteKind

CommandList

命令列表。

声明
List<Command> CommandList { get; set; }
属性值
类型 描述
System.Collections.Generic.List<T><Command>