Message.GetLParam(Type) Method

Definition

Gets the LParam value and converts the value to an object.

public:
 System::Object ^ GetLParam(Type ^ cls);
public object GetLParam (Type cls);
public object? GetLParam (Type cls);
public readonly object? GetLParam (Type cls);
member this.GetLParam : Type -> obj
Public Function GetLParam (cls As Type) As Object

Parameters

cls
Type

The type to use to create an instance. This type must be declared as a structure type.

Returns

An Object that represents an instance of the class specified by the cls parameter, with the data from the LParam field of the message.

Remarks

Use the GetLParam method to retrieve information from the LParam field of a message and convert it to an object. You can use this method to access objects passed in a message.

Applies to