Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

A recent AVG and Avast antivirus update is preventing DisplayFusion 9.9 from launching on some systems.
If you're running into this issue, please update to the latest DisplayFusion 10.0 Beta.

Copy Window Lower Left to Laptop display (for sharing)

Description
I copied this from another posting, then modified to suit my needs. I have a 4k tv split into 4 display, this allows sending it to my laptop display, this way I can share only that display when doing video presentations.
Language
C#.net
Minimum Version
Created By
Chad Helland76647
Contributors
-
Date Created
21d ago
Date Last Modified
21d ago

Scripted Function (Macro) Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
	public static void Run(IntPtr MirrorMonitor)
	{
		// Mirror the monitor and move it		
		IntPtr mirrorMonitor = BFS.DisplayFusion.MirrorSelectedArea(0, 1080, 2048, 1080);//BFS.DisplayFusion.MirrorMonitor(2);
		BFS.Window.MoveToMonitorMaximized(1, mirrorMonitor);
	}
}