XPropertyChangeListener notification

Hi!
Here is the problem. I have an edit box for user input. I implemented a XPropertyChangeListener for text events and added it to the edit box. I want to clarify if text events (PropertyChangeEvents) are processed in queue manner and then we can guarantee every event to be handled? Or there is another mechanism?

If you mean an object that supports the UnoControlEdit service, then you usually use the addTextListener to register a listener of type XTextListener. textChanged event fired whenever the text is changed by the user.

Agree. XPropertyChangeListener allows to access input text and XTextListener doesn’t. Anyway I found mistake in another place so UnoControlEdit service works with no errors for now.