Rtf |
The RtfToHtmlHtmlImageSavingArgs type exposes the following members.
Name | Description | |
---|---|---|
ImageFileName | Gets or sets the file name (without path) where the image will be saved to. | |
ImageFormat | Gets and sets a format of the image stored inside ImageStream property. Default value: Unknown. | |
ImageStream | Allows to specify the stream where the image will be saved to. | |
KeepImageStreamOpen | Specifies whether keep the stream open or close it after saving an image. |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
GetHashCode | Serves as the default hash function. (Inherited from Object) | |
GetType | Gets the Type of the current instance. (Inherited from Object) | |
ToString | Returns a string that represents the current object. (Inherited from Object) |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using SautinSoft; namespace Example { class Program { static void Main(string[] args) { ConvertTextToHtml(); } /// <summary> /// Converts Text file to HTML file. /// </summary> static void ConvertTextToHtml() { // Get your free 100-day key here: // https://sautinsoft.com/start-for-free/ // If you need more information about "RTF to HTML .Net" // Email us at: support@sautinsoft.com. string inpFile = @"..\..\..\example.txt"; string outfile = Path.GetFullPath("Result.html"); RtfToHtml r = new RtfToHtml(); r.Convert(inpFile, outfile, new RtfToHtml.HtmlFixedSaveOptions() {Title = "SautinSoft Example." }); // Open the result for demonstration purposes. System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outfile) { UseShellExecute = true }); } } }
Imports System Imports System.Collections.Generic Imports System.Linq Imports System.Text Imports System.IO Imports SautinSoft Namespace Example Friend Class Program Shared Sub Main(ByVal args() As String) ConvertTextToHtml() End Sub ''' <summary> ''' Converts Text file to HTML file. ''' </summary> Private Shared Sub ConvertTextToHtml() ' Get your free 100-day key here: ' https://sautinsoft.com/start-for-free/ ' If you need more information about "RTF to HTML .Net" ' Email us at: support@sautinsoft.com. Dim inpFile As String = "..\..\..\example.txt" Dim outfile As String = Path.GetFullPath("Result.html") Dim r As New RtfToHtml() r.Convert(inpFile, outfile, new RtfToHtml.HtmlFixedSaveOptions() With {.Title = "SautinSoft Example."}) ' Open the result for demonstration purposes. System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outfile) With {.UseShellExecute = True}) End Sub End Class End Namespace