Re: [sc-dev] Dispatching AutoComplete for cell values

2010-10-28 Thread Peter Eberlein
Hi Niklas, Am 27.10.2010 19:52, schrieb Niklas Nebel: On 10/27/10 16:30, Peter Eberlein wrote: how can I turn AutoComplete off? Service com.sun.star.sheet.GlobalSheetSettings has a property DoAutoComplete. It can be read and modified, so you don't need the dispatch stuff for that.

Re: [sc-dev] Dispatching AutoComplete for cell values

2010-10-28 Thread Niklas Nebel
On 10/28/10 08:14, Peter Eberlein wrote: Service com.sun.star.sheet.GlobalSheetSettings has a property DoAutoComplete. It can be read and modified, so you don't need the dispatch stuff for that. Shouldn't this service contain a property ViewValueHighlighting too? Here I need the dispatch

Re: [sc-dev] Dispatching AutoComplete for cell values

2010-10-27 Thread Niklas Nebel
On 10/27/10 16:30, Peter Eberlein wrote: how can I turn AutoComplete off? I tried: Object helper = Mcf.createInstanceWithContext(com.sun.star.frame.DispatchHelper, xComponentContext); XDispatchHelper xDispatchHelper = (XDispatchHelper) UnoRuntime.queryInterface(XDispatchHelper.class, helper);