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!

Format Validating Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A ValidatingEventArgs that contains the event data. The following ValidatingEventArgs properties provide information specific to this event.
Property Description
ProposedValue
[To be supplied.]
Text
[To be supplied.]

See Also

Format Class | Format MembersTopic | System.WinForms.ComponentModel Namespace