How to set a document title in C# and .NET


Complete code

using System;
using System.IO;
using System.Text;

namespace Sample
{
    class sample
    {
        static void Main(string[] args)
        {
            string inpFile = @"..\..\example.rtf";
            string outFile = @"Title.html";            

            SautinSoft.RtfToHtml r = new SautinSoft.RtfToHtml();

            // Set document title, <title>...</title>
            r.TextStyle.Title = "Here is the custom TITLE!";

            // Set the folder to store images
            r.ImageStyle.ImageFolder = Path.GetDirectoryName(Path.GetFullPath(outFile));

            try
            {
                r.OpenRtf(inpFile);
                r.ToHtml(outFile);

                // Open the results for demonstration purposes.
                System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFile)
                { UseShellExecute = true });
            }
            catch (Exception e)
            {
                Console.WriteLine($"Error: {e.Message}");
                Console.WriteLine("Press any key ...");
                Console.ReadKey();
            }
        }
    }
}

Download

Imports System
Imports System.IO
Imports System.Text

Namespace Sample
	Friend Class sample
		Shared Sub Main(ByVal args() As String)
			Dim inpFile As String = "..\..\example.rtf"
			Dim outFile As String = "Title.html"

			Dim r As New SautinSoft.RtfToHtml()

			' Set document title, <title>...</title>
			r.TextStyle.Title = "Here is the custom TITLE!"

			' Set the folder to store images
			r.ImageStyle.ImageFolder = Path.GetDirectoryName(Path.GetFullPath(outFile))

			Try
				r.OpenRtf(inpFile)
				r.ToHtml(outFile)

				' Open the results for demonstration purposes.
				System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFile) With {.UseShellExecute = True})
			Catch e As Exception
				Console.WriteLine($"Error: {e.Message}")
				Console.WriteLine("Press any key ...")
				Console.ReadKey()
			End Try
		End Sub
	End Class
End Namespace

Download

If you are looking also for a .Net solution to Create or Modify HTML documents, see our Document .Net.


If you need a new code example or have a question: email us at support@sautinsoft.com or ask at Online Chat (right-bottom corner of this page) or use the Form below:



Questions and suggestions from you are always welcome!

We are developing .Net components since 2002. We know PDF, DOCX, RTF, HTML, XLSX and Images formats. If you need any assistance with creating, modifying or converting documents in various formats, we can help you. We will write any code example for you absolutely free.