[]
        
(Showing Draft Content)

GrapeCity.Forguncy.Commands.CommandScope

Enum CommandScope

活字格打开编辑命令窗口时会根据使用范围的不同显示不同的命令集合,该Flags枚举列出了以下几种范围。

命名空间: GrapeCity.Forguncy.Commands
程序集: Forguncy.Commands.dll
语法
[Flags]
public enum CommandScope
示例
public class DeleteRecordCommand : Command
{
    public override CommandScope GetCommandScope()
    {
        return CommandScope.ListView;
    }
}

字段

名称 描述
All

所有集合。

Cell

普通单元格中。

ClientSide

客户端命令

ExecutableInServer

可以在服务端执行的命令

ListView

表格中的单元格中。

NoneNotification

非通知类。

Notification

通知用命令。

PageLoad

页面加载中。

ServerSide

服务器命令

ShareCommand

模板命令

TaskSchedule

计划任务

UserControlPage

组件命令中

ValidateCommand

数据验证命令

ValueChangedCommandInListview

表格中的值变更命令

Workflow

工作流中。