Customise selfpopup menu items(CADViewX)
Moderators: SDS, support, admin
Customise selfpopup menu items(CADViewX)
Hi, I'm new here.
I'm using CADViewX in Delphi7, my first question is -
how to customise the selfPopuPMenu items in CADViewX so as to hide some menu items?
THank you in advance.
Love all, trust a few, do wrong to none.
I'm using CADViewX in Delphi7, my first question is -
how to customise the selfPopuPMenu items in CADViewX so as to hide some menu items?
THank you in advance.
Love all, trust a few, do wrong to none.
-
- Posts: 1
- Joined: 19 Jul 2006, 10:26
- Location: Russia
Use the following properties to set visibility of menu items and toolbar's buttons.
Code: Select all
[VB sintax] Property VisibleAction(Index As TxToolButton) As Boolean
CADViewX1.VisibleAction(tbOpen) = False
[Delphi sintax] property VisibleAction[Index: TxToolButton]: WordBool;
FCADViewX.VisibleAction[tbOpen] := False;