IMessageFilter.postFilterMessage

Overview | Methods | This Package | All Packages

IMessageFilter.postFilterMessage

Filters out a message after it has been dispatched.

Syntax

public void postFilterMessage( Message m )

Parameters

m

The message that has just been processed.

Remarks

The postFilterMessage method is called after a message has been dispatched to the form or control to handle. Use this method to perform operations that must occur after the message has been handled by the control or form. For example, if the message is the paint event for a form or control, you can use the postFilterMessage method to perform additional drawing routines. To prevent a message from being dispatched, use the preFilterMessage method.