vote up 3 vote down star
1

Hi all,

Playing with new RTTI module, I couldn't find a way to set an event handler with the new utilities. Trying something like this:

LProp := TRttiContext.Create.GetType(Form1.ClassInfo).AsInstance.GetProperty('OnClick');
LProp.SetValue(Form1, {a TValue!});

SetValue needs a TValue passed but I've yet to find a way to represent a TMethod via a TValue. Any comments?

ps. And a side question.. It seems prefixing RTTI variables with "L" is a convention (and a good one IMO, meta code turns into a puzzle real quick). But what does it actually stand for?

flag

1  
"L" is for local variables. You'll see that convention throughout the Indy source code. stackoverflow.com/questions/1140562/… – Rob Kennedy Sep 27 at 16:15

1 Answer

vote up 4 vote down check

You can make TValue contain a value of an aribtrary type with the From method. Try something like this:

lValue := TValue.From<TNotifyEvent>(eventHandler);

BTW I think the L just means a Local variable.

link|flag
Thanks, Mason. That nails it. – utku_karatas Sep 27 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.