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!

ListBinding ConvertToTarget Event

[To be supplied.]

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

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

Parameters

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

See Also

ListBinding Class | ListBinding MembersTopic | System.WinForms Namespace