FMX.WebBrowser._di_ICustomBrowser

From RAD Studio API Documentation
Jump to: navigation, search

C++

typedef System::DelphiInterface<ICustomBrowser> _di_ICustomBrowser;

Properties

Type Visibility Source Unit Parent
typedef public FMX.WebBrowser.hpp FMX.WebBrowser FMX.WebBrowser

Description

Represents the DelphiInterface of ICustomBrowser.

You can use _di_ICustomBrowser to refer to a browser object in C++ code.

The following code snippet shows how to use the FMX.WebBrowser.ICustomBrowser.URL property over a TWebBrowser:

 _di_IAlignableObject AInterface;
 if (WebBroser1->GetInterface(AInterface)) {
	 ShowMessage(AInterface->URL);
 }

See Also