using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Find the main Outlook window and give it focus
IntPtr window = BFS.Application.GetMainWindowByFile("*outlook.exe");
BFS.Window.Focus(window);
BFS.General.ThreadWait(250);
// Send the keystrokes for moving the Reading Pane to the bottom side (Alt, V, PN, B)
BFS.Input.SendKeys("%(){VK_86}{VK_80}{VK_78}{VK_66}");
}
}