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!

Message.GetLParam

Retrieves the lParam value converted to an object. cls must be a class that was declared using the @dll.struct directive.

[Visual Basic]
Public Function GetLParam( _
   ByVal cls As Type _
) As Object
[C#]
public object GetLParam(
   Type cls
);
[C++]
public: Object* GetLParam(
   Type* cls
);
[JScript]
public function GetLParam(
   cls : Type
) : Object;

Parameters

cls
Class to create an instance of

Return Value

Object instance of cls fillled with the data at lParam.

See Also

Message Structure | Message Members | System.WinForms Namespace