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 Format Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A FormatEventArgs that contains the event data. The following FormatEventArgs properties provide information specific to this event.
Property Description
FormatInfo
[To be supplied.]
FormatMode
[To be supplied.]
Value
[To be supplied.]

See Also

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