Customise selfpopup menu items(CADViewX)

Discuss and ask questions about CADViewX (Lite and Pro versions).

Moderators: SDS, support, admin

Post Reply
xerp
Posts: 8
Joined: 19 Jul 2006, 04:39
Location: China
Contact:

Customise selfpopup menu items(CADViewX)

Post by xerp » 19 Jul 2006, 06:05

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.

Igor Tobolov
Posts: 1
Joined: 19 Jul 2006, 10:26
Location: Russia

Post by Igor Tobolov » 19 Jul 2006, 12:31

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;

xerp
Posts: 8
Joined: 19 Jul 2006, 04:39
Location: China
Contact:

Post by xerp » 19 Jul 2006, 12:54

Thank you very much.

Love all, trust a few, do wrong to none.

Post Reply