:: com :: sun :: star :: awt :: tree ::

struct TreeDataModelEvent
Base Hierarchy
TreeDataModelEvent
 ┗ ::com::sun::star::lang::EventObject
Description
An event used by a XTreeDataModel to notify changes in the data model to the XTreeControl. You usually need to fill this event only if you implement the XTreeDataModel yourself.
See also
XTreeDataModel, XTreeControl, XTreeDataModelListener

Elements' Summary
Nodes contains the changed, added or removed nodes.  
ParentNode holds the parent node for changed, added or removed nodes.  
Elements' Details
Nodes
sequence< XTreeNode > Nodes;
Description
contains the changed, added or removed nodes.

All nodes must have ParentNode as parent.

ParentNode
XTreeNode ParentNode;
Description
holds the parent node for changed, added or removed nodes.

If this is null, Nodes must contain only the root node

Top of Page