ooodev.adapter.awt.grid.grid_column_listener module

class ooodev.adapter.awt.grid.grid_column_listener.GridColumnListener(trigger_args=None)[source]

Bases: AdapterBase, XGridColumnListener

An instance of this interface is used by the XGridColumnModel to get notifications about column model changes.

since

OOo 3.3

Parameters:
  • args (Any) –

  • kwargs (Any) –

Return type:

Any

__init__(trigger_args=None)[source]

Constructor:

Parameters:

trigger_args (GenericArgs, optional) – Args that are passed to events when they are triggered.

Return type:

None

columnChanged(event)[source]

Invoked after a column was modified.

Return type:

None

Parameters:

event (com.sun.star.awt.grid.GridColumnEvent) –

disposing(event)[source]

Gets called when the broadcaster is about to be disposed.

All listeners and all other objects, which reference the broadcaster should release the reference to the source. No method should be invoked anymore on this object ( including XComponent.removeEventListener() ).

This method is called for every listener registration of derived listener interfaced, not only for registrations at XComponent.

Return type:

None

Parameters:

event (com.sun.star.lang.EventObject) –