using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// modify the windowTitleToMatch string below to specify the title of the window you want moved by the Window Location rule
// modify the locationX and locationY int values below to set the location the window should be moved to if its window title matches
string windowTitleToMatch = "BlobWindow";
int locationX = 0;
int locationY = 400;
// get the title of the window detected by the Window Location rule
string windowTitleActual = BFS.Window.GetText(windowHandle);
// move the window if its title matches
if (windowTitleActual.Contains(windowTitleToMatch))
{
BFS.Window.SetLocation(windowHandle, 0, 400);
}
}
}