Re: How to retrieve rect values from the domvisitor?
Posted: Thu Dec 06, 2018 8:41 pm
Hi,
You can add several integer arguments :
Open uCEFInterfaces.pas and take a look at the ICefListValue declaration to see all the "Set..." procedures.
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);