Share via


DateTimeFormatQueryEventHandler Delegate

This Package | All Packages

Identifies the method handling the formatQuery event of a DateTimePicker control.

package com.ms.wfc.ui

public multicast delegate
void DateTimeFormatQueryEventHandler(
Objectsender, DateTimeFormatQueryEvente );

Remarks

The syntax of the DateTimeFormatQueryEventHandler delegate specifies the signature for the event handler, where sender is the source of the event and e is a DateTimeFormatQueryEvent object that provides the event data.

When you create a DateTimeFormatQueryEventHandler delegate, you specify the method that will handle the event. Once the delegate is assigned to the event, the handler method is automatically invoked whenever the event is triggered.

For more information about delegates, see .