FMX.WebBrowser._di_ICustomBrowser

提供: RAD Studio API Documentation
移動先: 案内検索

C++

typedef System::DelphiInterface<ICustomBrowser> _di_ICustomBrowser;

プロパティ

種類 可視性 ソース ユニット
typedef public FMX.WebBrowser.hpp FMX.WebBrowser FMX.WebBrowser

説明

ICustomBrowserDelphiInterface を表します。


_di_IAlignableObject を使用すると、C++ コードでブラウザ オブジェクトを参照できます。

次のコードは、TWebBrowserFMX.WebBrowser.ICustomBrowser.URL プロパティを使用する方法を示しています。

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

関連項目