RTFExporter 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package RTFExporter --version 1.0.0
NuGet\Install-Package RTFExporter -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RTFExporter" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RTFExporter --version 1.0.0
#r "nuget: RTFExporter, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RTFExporter as a Cake Addin
#addin nuget:?package=RTFExporter&version=1.0.0

// Install RTFExporter as a Cake Tool
#tool nuget:?package=RTFExporter&version=1.0.0

RTFExporter

A C# library to generate .RTF text files from any string object data, stylized and ready for any text processor. No fancy dependencies or restrictive licenses.


Simple usage

IDisposable style:

using RTFExporter;

public class Example {

    public void IDisposableExample() {

        using (RTFDocument doc = new RTFDocument("example.rtf")) {
            var p = doc.AppendParagraph();

            p.style.alignment = Alignment.Center;
            p.style.indent = new Indent(1, 0, 0);
            p.style.spaceAfter = 400;

            var t = p.AppendText("Boy toy named Troy used to live in Detroit\n");
            t.content += "Big big big money, he was gettin' some coins";

            t.style.bold = true;
            t.style.color = new Color(255, 0, 0);
            t.style.fontFamily = "Courier";
        }

    }

}

String style:

using RTFExporter;

public class Example {

    public void StringExample() {

        RTFDocument doc = new RTFDocument();
        RTFParagraph p = new RTFParagraph(doc);

        RTFText t1 = new RTFText(p, "My anaconda don't, my anaconda don't\n");
        t1.SetStyle(new Color(255, 0, 0), 18, "Helv");

        RTFText t2 = new RTFText(p, "My anaconda don't want none unless you got buns, hun");
        t2.style = t1.style;

        string output = RTFParser.ToString(doc);

    }

}

Features

  • Document

    • Set page size
    • Set orientation
    • Set margin
    • Set units (inch, mm, cm)
  • Paragraph style

    • Set indent
    • Set text alignment
    • Set spacing
  • Text style

    • Set color
    • Set font family
    • Set font size
    • Set style: bold, italic, small caps, all caps, strike through and outline
    • Set 8 different types of underline

Missing

  • Support to non-latin characters
  • Use stylesheets
  • Lists
  • And a lot more of RTF stuff

License (WTFPL-2.0)

<a href="http://www.wtfpl.net/"><img src="http://www.wtfpl.net/wp-content/uploads/2012/12/wtfpl-badge-4.png" width="80" height="15" alt="WTFPL" /></a>

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.4 35,216 10/9/2020
1.1.3 496 5/2/2020
1.1.2 704 5/28/2019
1.1.1 682 11/14/2018
1.1.0 721 10/27/2018
1.0.2 796 8/13/2018
1.0.1 1,132 3/15/2018
1.0.0 863 3/15/2018

First stable version.