<?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: Span Toggle not Working as Expected</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=0191bcb3-c116-72fe-9661-1254741251a8" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=0191bcb3-c116-72fe-9661-1254741251a8</link>
<description>DisplayFusion RSS: Span Toggle not Working as Expected</description>
<lastBuildDate>Wed, 08 Apr 2026 00:22:28 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=0191bcb3-c116-72fe-9661-1254741251a8</generator>
<item>
<title>RE: Span Toggle not Working as Expected</title>
<link>https://www.displayfusion.com/Discussions/View/span-toggle-not-working-as-expected/?ID=0191bcb3-c116-72fe-9661-1254741251a8#4</link>
<pubDate>Fri, 13 Sep 2024 19:12:39 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/span-toggle-not-working-as-expected/?ID=0191bcb3-c116-72fe-9661-1254741251a8#4</guid>
<category>DisplayFusion</category>
<description><![CDATA[You could create a scripted function that disables the taskbar and then runs the custom function that you created:
Code
Copy
Select All
using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Disable taskbar on mon...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
You could create a scripted function that disables the taskbar and then runs the custom function that you created:<br/>
<br/>
<div id="" 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="#code019d6a7818bf76d5a7862e0cb77c482e" class="ClipboardCopyControl"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019d6a7818bf76d5a7862e0cb77c482eJs'); return false;"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;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="code019d6a7818bf76d5a7862e0cb77c482eJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

public static class DisplayFusionFunction
{
    public static void Run(IntPtr windowHandle)
    {
        // Disable taskbar on monitor 2        
        BFS.DisplayFusion.DisableTaskbar(2);
        
        // Run the custom span function
        BFS.DisplayFusion.RunFunction("Custom Function Name");        
    }
}</pre><textarea id="code019d6a7818bf76d5a7862e0cb77c482e" name="code019d6a7818bf76d5a7862e0cb77c482e" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Span Toggle not Working as Expected</title>
<link>https://www.displayfusion.com/Discussions/View/span-toggle-not-working-as-expected/?ID=0191bcb3-c116-72fe-9661-1254741251a8#3</link>
<pubDate>Fri, 13 Sep 2024 15:19:27 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/span-toggle-not-working-as-expected/?ID=0191bcb3-c116-72fe-9661-1254741251a8#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Hi Yes that has worked however is there any way to combine this with automatically turning off the task bar on the upper monitor when the app is spanned accross the two screens ?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi Yes that has worked however is there any way to combine this with automatically turning off the task bar on the upper monitor when the app is spanned accross the two screens ?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Span Toggle not Working as Expected</title>
<link>https://www.displayfusion.com/Discussions/View/span-toggle-not-working-as-expected/?ID=0191bcb3-c116-72fe-9661-1254741251a8#2</link>
<pubDate>Wed, 04 Sep 2024 17:54:37 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/span-toggle-not-working-as-expected/?ID=0191bcb3-c116-72fe-9661-1254741251a8#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[Yeah that function only really works with horizontal monitors, not vertical. You can create a custom function that moves the window to the top left of the top monitor, and then sets the width & height to the two monitors combined. We have a guide on creating custom functions here: https://www.dis...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Yeah that function only really works with horizontal monitors, not vertical. You can create a custom function that moves the window to the top left of the top monitor, and then sets the width & height to the two monitors combined. We have a guide on creating custom functions here: <a href="https://www.displayfusion.com/HelpGuide/CustomFunctions/" target="_blank" rel="nofollow"><b>https://www.displayfusion.com/HelpGuide/CustomFunctions/</b></a>
</div>
]]></content:encoded>
</item>
<item>
<title>Span Toggle not Working as Expected</title>
<link>https://www.displayfusion.com/Discussions/View/span-toggle-not-working-as-expected/?ID=0191bcb3-c116-72fe-9661-1254741251a8</link>
<pubDate>Wed, 04 Sep 2024 11:03:03 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/span-toggle-not-working-as-expected/?ID=0191bcb3-c116-72fe-9661-1254741251a8</guid>
<category>DisplayFusion</category>
<description><![CDATA[I have recently moved to DF from UltraMon and have a two monitor system with one above the other and I was expecting the Span toggle button  to span an application’s window full screen across both monitors in the same way the Maximize to Desktop button in Ultramon did, but it doesn’t and actually...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I have recently moved to DF from UltraMon and have a two monitor system with one above the other and I was expecting the Span toggle button  to span an application’s window full screen across both monitors in the same way the Maximize to Desktop button in Ultramon did, but it doesn’t and actually collapses the window to a horizontal bar about a quarter of the screen height on a single monitor. This window can be stretched out across the two monitors but this position is not remembered and the same happens next time I use the button.<br/>
Am I missing something – Is this not the correct function to use for this – I have looked through the guides and the forum and cant see an explanation or solution any help would be appreciated – I’m currently evaluating the software but if I can get this working then I will purchase a pro license.
</div>
]]></content:encoded>
</item>
</channel>
</rss>