How to set a tag for paragraphs
in C# and VB.Net.
Complete code
using System;
using System.IO;
using System.Text;
namespace Sample
{
class sample
{
static void Main(string[] args)
{
string inpFile = @"..\..\two paragraphs.rtf";
string outFileTagP = @"p.html";
string outFileTagDiv = @"div.html";
SautinSoft.RtfToHtml r = new SautinSoft.RtfToHtml();
try
{
r.OpenRtf(inpFile);
// Set tag <p>...</p> for the paragraphs.
r.TagStyle.ParagraphTag = SautinSoft.RtfToHtml.eTags.p;
r.TextStyle.Title = "P tag";
r.ToHtml(outFileTagP);
// Set tag <div>...</div> for the paragraphs.
r.TagStyle.ParagraphTag = SautinSoft.RtfToHtml.eTags.div;
r.TextStyle.Title = "DIV tag";
r.ToHtml(outFileTagDiv);
// Open the results for demonstration purposes.
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFileTagP)
{ UseShellExecute = true });
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFileTagDiv)
{ UseShellExecute = true });
}
catch (Exception e)
{
Console.WriteLine($"Error: {e.Message}");
Console.WriteLine("Press any key ...");
Console.ReadKey();
}
}
}
}
Imports System
Imports System.IO
Imports System.Text
Namespace Sample
Friend Class sample
Shared Sub Main(ByVal args() As String)
Dim inpFile As String = "..\..\two paragraphs.rtf"
Dim outFileTagP As String = "p.html"
Dim outFileTagDiv As String = "div.html"
Dim r As New SautinSoft.RtfToHtml()
Try
r.OpenRtf(inpFile)
' Set tag <p>...</p> for the paragraphs.
r.TagStyle.ParagraphTag = SautinSoft.RtfToHtml.eTags.p
r.TextStyle.Title = "P tag"
r.ToHtml(outFileTagP)
' Set tag <div>...</div> for the paragraphs.
r.TagStyle.ParagraphTag = SautinSoft.RtfToHtml.eTags.div
r.TextStyle.Title = "DIV tag"
r.ToHtml(outFileTagDiv)
' Open the results for demonstration purposes.
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFileTagP) With {.UseShellExecute = True})
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFileTagDiv) 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
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: