NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DateTimePicker Format Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the Format event.

[Visual Basic]
Private Sub DateTimePickerName_Format( _
   ByVal sender As Object, _
   ByVal e As DateTimeFormatEventArgs _
)
[C#]
private void DateTimePickerName_Format(
   object sender,
   DateTimeFormatEventArgs e
);
[C++]
private: void DateTimePickerName_Format(
   Object* sender,
   DateTimeFormatEventArgs* e
);
[JScript]
private DateTimePickerName_Format(
   sender : Object,
   e : DateTimeFormatEventArgs
);

Parameters

sender
The source of the event.
e
A DateTimeFormatEventArgs that contains the event data.

See Also

DateTimePicker Class | DateTimePicker MembersTopic | System.WinForms Namespace