Page 1 of 1

Re: How to retrieve rect values from the domvisitor?

Posted: Thu Dec 06, 2018 8:41 pm
by salvadordf
Hi,

You can add several integer arguments :

Code: Select all

Msg.ArgumentList.SetInt(0, Rect.Left);
Msg.ArgumentList.SetInt(1, Rect.Top);
Msg.ArgumentList.SetInt(2, Rect.Right);
Msg.ArgumentList.SetInt(3, Rect.Bottom);
Open uCEFInterfaces.pas and take a look at the ICefListValue declaration to see all the "Set..." procedures.

Re: How to retrieve rect values from the domvisitor?

Posted: Thu Dec 06, 2018 10:08 pm
by salvadordf
Create a new "List" for each loop.

Code: Select all

List := TCefListValueRef.New;