using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Set your website and target monitor ID here
string website = "https://www.displayfusion.com";
uint targetMonitor = 2;
// Open the website window
IntPtr window = BFS.Web.OpenUrlNewWindow(website);
// Move it to the specified monitor
BFS.Window.MoveToMonitorMaximized(targetMonitor, window);
// Full screen the window by giving it focus and sending the F11 key
BFS.General.ThreadWait(250);
BFS.Window.Focus(window);
BFS.Input.SendKeys("{VK_122}");
}
}