mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
15 lines
285 B
C++
15 lines
285 B
C++
// IEHelper.h
|
|
|
|
#pragma once
|
|
|
|
using namespace System;
|
|
using IEWebView = System::Windows::Forms::WebBrowser;
|
|
namespace IEHelper {
|
|
public ref class WebBrowserHelper
|
|
{
|
|
public:
|
|
static int GetPageScale (IEWebView ^webui);
|
|
static void SetPageScale (IEWebView ^webui, int zoom);
|
|
};
|
|
}
|