Re: Dialog: Hide a control by C++ code

2015-01-05 Thread jan
Hi, thanks a lot this is working! Jan -- View this message in context: http://nabble.documentfoundation.org/Dialog-Hide-a-control-by-C-code-tp4135197p4135220.html Sent from the Dev mailing list archive at Nabble.com. ___ LibreOffice mailing list

Re: Dialog: Hide a control by C++ code

2015-01-05 Thread Michael Stahl
On 05.01.2015 21:56, jan wrote: > Hi, > > it seems that in Basic I can hide a control in a dialog simply with > > oControl.Visible=false > > But I am totally at a loss on how to do this from a C++ extension? > > Reference< XControl > c_1 = > xControlContainer->getControl(OU("txt_ActionParamet

Dialog: Hide a control by C++ code

2015-01-05 Thread jan
; // doesn't exist c_1>setVisible(false); // doesn't exist I can't find this "Visible" property in the API documentation of XControl, either! Thanks for any hints! Jan -- View this message in context: http://nabble.documentfoundation.org/Dialog-Hide-a-control-by-C-