<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>DisplayFusion RSS: Ignore splits</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=42c1f15a-7549-4b5d-89b7-20138a687df6" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=42c1f15a-7549-4b5d-89b7-20138a687df6</link>
<description>DisplayFusion RSS: Ignore splits</description>
<lastBuildDate>Tue, 22 Sep 2026 20:34:20 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=42c1f15a-7549-4b5d-89b7-20138a687df6</generator>
<item>
<title>Ignore splits</title>
<link>https://www.displayfusion.com/Discussions/View/ignore-splits/?ID=42c1f15a-7549-4b5d-89b7-20138a687df6</link>
<pubDate>Fri, 28 Dec 2018 21:13:02 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/ignore-splits/?ID=42c1f15a-7549-4b5d-89b7-20138a687df6</guid>
<category>DisplayFusion</category>
<description><![CDATA[Can someone write this to ignore splits, or link one that does?  Thanks
Code
Copy
Select All
using System;&#xA;using System.Drawing;&#xA;&#xA;// The &#x27;windowHandle&#x27; parameter will contain the window handle for the:&#xA;// - Active window when run by hotkey&#xA;// - Window Location ta...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Can someone write this to ignore splits, or link one that does?  Thanks<br/>
<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code01a0cad39b5d7528802a544efc9e01ba" class="ClipboardCopyControl"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code01a0cad39b5d7528802a544efc9e01baJs'); return false;"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code01a0cad39b5d7528802a544efc9e01baJs" name="code01a0cad39b5d7528802a544efc9e01baJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%;min-height:75px">using System;&#xA;using System.Drawing;&#xA;&#xA;// The &#x27;windowHandle&#x27; parameter will contain the window handle for the:&#xA;// - Active window when run by hotkey&#xA;// - Window Location target when run by a Window Location rule&#xA;// - TitleBar Button owner when run by a TitleBar Button&#xA;// - Jump List owner when run from a Taskbar Jump List&#xA;// - Currently focused window if none of these match&#xA;&#xA;public static class DisplayFusionFunction&#xA;{&#xA;           public static void Run(IntPtr windowHandle)&#xA;           {          &#xA;                     //check to see if there was an error, if there was, exit function&#xA;                     if (windowHandle == IntPtr.Zero)&#xA;                                return; &#xA;&#xA;                     //get the position of the window in the monitor, and the current monitor&#xA;                     Rectangle windowRect = BFS.Window.GetBounds(windowHandle);&#xA;                     Rectangle monitorRect = BFS.Monitor.GetMonitorWorkAreaByWindow(windowHandle);                     &#xA;&#xA;                     int iFinalWinX = monitorRect.X;&#xA;                     int iFinalWinY = monitorRect.Y;&#xA;                     int iFinalWinW = monitorRect.Width / 3;&#xA;                     int iFinalWinH = monitorRect.Height; &#xA;&#xA;                     if(        windowRect.X == iFinalWinX  &#xA;                     /*        &amp;&amp; windowRect.Y == iFinalWinY&#xA;                                &amp;&amp;      windowRect.Width == iFinalWinW&#xA;                                &amp;&amp;      windowRect.Height == iFinalWinH */)                  {&#xA;                                iFinalWinX = monitorRect.X &#x2B; iFinalWinW;  &#xA;                     } else if (windowRect.X == iFinalWinX &#x2B; iFinalWinW) &#xA;                     { iFinalWinX = monitorRect.X &#x2B; 2*iFinalWinW;&#xA;                     } else if (windowRect.X == iFinalWinX &#x2B; 2*iFinalWinW) {&#xA;                                iFinalWinX = monitorRect.X;&#xA;                     }                                &#xA;&#xA;                     BFS.Window.SetSizeAndLocation(windowHandle, iFinalWinX, iFinalWinY, iFinalWinW, iFinalWinH );&#xA;           }&#xA;}</pre><textarea id="code01a0cad39b5d7528802a544efc9e01ba" name="code01a0cad39b5d7528802a544efc9e01ba" style="position:absolute;top:0;left:-999999px;width:1px;height:1px"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
</channel>
</rss>