MapperCommandLocation Enumeration |
Specifies the location of the command. A command added to a mapper can exist either on the "More" menu
or the toolbar. If you specifiy that the command should be located on the toolbar, then you must provide an
image for the command. Images should be relative to the root path.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public enum MapperCommandLocation
Public Enumeration MapperCommandLocation
Members
| Member name | Value | Description |
---|
| Toolbar | 1 |
The command should be placed on the toolbar. You must provide a path to an image if you specify this option.
|
| MoreMenu | 2 |
The command should be placed on the More menu. This is the default location.
|
| QuickLinks | 3 |
The command should be placed on the QuickLinks menu.
|
| Filters | 4 |
The command should be placed on the Filters menu.
|
| Platform | 5 |
The command should be placed on the Platform menu.
|
| RowMenu | 6 |
The command should be associated with specific records, via RowKeys
and placed on the row menu of each appropriate row in a datasheet. On detail pages, items
should be place on the More menu for appropriate records.
|
| Grouper | 7 |
The command should be placed on the grouper header rows in a datasheet.
|
| PaneHeader | 8 |
The command should be placed in the pane-cmd area of the IConsolePaneHeader in an IConsoleTemplate page.
|
| PaneButton | 9 |
The command should be placed in the pane-btns area of the IConsolePaneHeader in an IConsoleTemplate page.
|
See Also