mlsoft.mct.MlTreeEvent

Event
    MlGridEvent
        MlTreeEvent

This class contains the detail for a Tree event. The Tree will send all the Grid events (see the reference page for MlGridEvent) as well as the following events:

Event Type (id)       Called When
EXPAND_ROW            Row is expanded
COLLAPSE_ROW          Row is collapsed
The MlTreeEvent contains no extra member variables above what is contained in the MlGridEvent. Since it inherits from MlGridEvent, the row and column information for the above events (as well as all the other types of events from the MlGridEvent class) is contained in the MlGridEvent portion of the class. For example, you could obtain the row information for an EXPAND_ROW event with:
	MlTreeEvent event

	if (event.getType() == MlTreeEvent.EXPAND_ROW && event.getRow() == 4)
		...