IMessageFilter.PreFilterMessage(Message) Method

Definition

Filters out a message before it is dispatched.

C#
public bool PreFilterMessage(ref System.Windows.Forms.Message m);

Parameters

m
Message

The message to be dispatched. You cannot modify this message.

Returns

true to filter the message and stop it from being dispatched; false to allow the message to continue to the next filter or control.

Remarks

Use PreFilterMessage to filter out a message before it is dispatched to a control or form. For example, to stop the Click event of a Button control from being dispatched to the control, you implement the PreFilterMessage method and return a true value when the Click message occurs. You can also use this method to perform code work that you might need to do before the message is dispatched.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10