Chronos Plugins 5.9.0
This documentation covers the plugin interfaces definitions and an example implementation.
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Pages
ColumnMenu.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
4{
11 public interface IColumnMenu
12 {
16 string Caption { get; }
24 void ProcessSelected(IReadOnlyList<ICellAccessor> affectedCells);
25 }
26}
Interfaces for custom sample list column type definitions. These interfaces allow you to define new c...
Definition ColumnMenu.cs:4
Provides a menu item title and the respective functionality.
Definition ColumnMenu.cs:12
void ProcessSelected(IReadOnlyList< ICellAccessor > affectedCells)
All cells that were selected while picking the menu entry / all cells of the column if there was no s...
string Caption
Text for the menu entry in the column header menu.
Definition ColumnMenu.cs:16