<?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>ClipboardFusion RSS: insert predefined texts</title>
<atom:link href="https://www.clipboardfusion.com/Discussions/RSS/?TopicID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11" rel="self" type="application/rss+xml" />
<link>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11</link>
<description>ClipboardFusion RSS: insert predefined texts</description>
<lastBuildDate>Wed, 06 May 2026 17:18:43 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11</generator>
<item>
<title>RE: insert predefined texts</title>
<link>https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11#5</link>
<pubDate>Mon, 10 Jul 2017 14:41:03 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11#5</guid>
<category>ClipboardFusion</category>
<description><![CDATA[thank you I figured it out.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
thank you I figured it out.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: insert predefined texts</title>
<link>https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11#4</link>
<pubDate>Mon, 10 Jul 2017 14:31:17 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11#4</guid>
<category>ClipboardFusion</category>
<description><![CDATA[The easiest solution I can see now. I'm sorry, I don't have much time to look for more detailed solutions.
Maybe Keith or someone else will write a more correct solution. If no one proposes anything, when I have more time, I will try to do so.
Code
Copy
Select All
using System.Text;
public ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
The easiest solution I can see now. I'm sorry, I don't have much time to look for more detailed solutions.<br/>
Maybe Keith or someone else will write a more correct solution. If no one proposes anything, when I have more time, I will try to do so.<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="#code019dfe4c8f0771bbad014863bf6c2254" class="ClipboardCopyControl"><img src="https://www.clipboardfusion.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('code019dfe4c8f0771bbad014863bf6c2254Js'); return false;"><img src="https://www.clipboardfusion.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="code019dfe4c8f0771bbad014863bf6c2254Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System.Text;

public static class ClipboardFusionHelper
{
    public static string ProcessText(string text)
    {
        var sB = new StringBuilder();
        
        // Append each string to new line
        sB.AppendLine("Your text");
        sB.AppendLine("Some other text");
        sB.AppendLine("And other");
        
        // Append numbers or text to one line
        sB.Append("...").Append(123).Append(456);
        
        // Paste all text to current active window
        BFS.Clipboard.PasteText(sB.ToString());
        return null;
    }
}</pre><textarea id="code019dfe4c8f0771bbad014863bf6c2254" name="code019dfe4c8f0771bbad014863bf6c2254" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: insert predefined texts</title>
<link>https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11#3</link>
<pubDate>Mon, 10 Jul 2017 09:44:08 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11#3</guid>
<category>ClipboardFusion</category>
<description><![CDATA[I want to be able to paste some predefined texts which I do very often daily basis with some hotkeys. Not from a file.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I want to be able to paste some predefined texts which I do very often daily basis with some hotkeys. Not from a file.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: insert predefined texts</title>
<link>https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11#2</link>
<pubDate>Mon, 10 Jul 2017 09:33:12 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11#2</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Text from a file or directly written into the script?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Text from a file or directly written into the script?
</div>
]]></content:encoded>
</item>
<item>
<title>insert predefined texts</title>
<link>https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11</link>
<pubDate>Mon, 10 Jul 2017 08:14:38 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/insert-predefined-texts/?ID=ad0a0a3d-bcbf-47ab-b1e3-ac298f4eaf11</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Is it possible with macros to paste/insert predefined texts ?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Is it possible with macros to paste/insert predefined texts ?
</div>
]]></content:encoded>
</item>
</channel>
</rss>