Home GuiPack NTabed Properties PopupDCaptions |
|
See also: Popup menu, PopupDMask, PopupHCaptions, PopupMCaptions, PopupUCaptions |
|
PopupDCaptions |
|
Unit: | SDL_ntabed |
Class: |
TNTabEd |
Declaration: |
property PopupDCaptions[ix: integer]: TDTNameStr; |
The array property PopupDCaptions allows to adjust the captions of the popup menu of the data area. The parameter ix determines which menu entry is affected and may assume values between 1 and MaxPopupDCmds. Values below and above this range are ignored.
By default the popup menu of the data area contains the following entries:
ix |
Default Caption |
1 | Mark as type A |
2 | Mark as type B |
3 | Unmark type A |
4 | Unmark type B |
5 | Unmark All |
6 | Clear |
7 | Copy |
8 | Paste |
9 | Extract from Clipboard |
10 | Data Read-Only |
11 | Select All |
12 | Toggle Empty State |
Hint: |
Please note that the submenus of the 'Mark' and 'Unmark' commands have to be processed separately by setting the array properties PopupMCaptions and PopupUCaptions. |
Example: |
The statement PopupDCaptions[11] := 'Alle auswählen'; translates the eleventh entry ('Select All') into German language.
|
|