Steamworks.SteamHTMLSurface.SetSize C# (CSharp) Method

SetSize() public static method

Tells the surface the size in pixels to display the surface

public static SetSize ( HHTMLBrowser unBrowserHandle, uint unWidth, uint unHeight ) : void
unBrowserHandle HHTMLBrowser
unWidth uint
unHeight uint
return void
		public static void SetSize(HHTMLBrowser unBrowserHandle, uint unWidth, uint unHeight) {
			InteropHelp.TestIfAvailableClient();
			NativeMethods.ISteamHTMLSurface_SetSize(unBrowserHandle, unWidth, unHeight);
		}