RtfToHtmlHtmlSaveOptionsCssFileName Property |
Specifies the path and the name of the Cascading Style Sheet (CSS) file
written when a document is exported to HTML. Default is an empty string.
Namespace: SautinSoftAssembly: SautinSoft.RtfToHtml (in SautinSoft.RtfToHtml.dll) Version: 2024.11.25
Syntax public string CssFileName { get; set; }
Public Property CssFileName As String
Get
Set
Property Value
StringExample 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)
{
SetCssStream();
}
static void SetCssStream()
{
string inpFile = @"..\..\..\example.docx";
string outFile = @"Result.html";
string cssFile = @"Styles.css";
RtfToHtml r = new RtfToHtml();
FileStream fs = new FileStream(cssFile, FileMode.Create);
RtfToHtml.HtmlFlowingSaveOptions opt = new RtfToHtml.HtmlFlowingSaveOptions()
{
CssStream = fs,
KeepCssStreamOpen = false,
CssExportMode = RtfToHtml.CssExportMode.External,
CssFileName = cssFile,
Title = "Working with CSS."
};
try
{
r.Convert(inpFile, outFile, opt);
}
catch (Exception ex)
{
Console.WriteLine($"Conversion failed! {ex.Message}");
}
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)
SetCssStream()
End Sub
Private Shared Sub SetCssStream()
Dim inpFile As String = "..\..\..\example.docx"
Dim outFile As String = "Result.html"
Dim cssFile As String = "Styles.css"
Dim r As New RtfToHtml()
Dim fs As New FileStream(cssFile, FileMode.Create)
Dim opt As New RtfToHtml.HtmlFlowingSaveOptions() With {
.CssStream = fs,
.KeepCssStreamOpen = False,
.CssExportMode = RtfToHtml.CssExportMode.External,
.CssFileName = cssFile,
.Title = "Working with CSS."
}
Try
r.Convert(inpFile, outFile, opt)
Catch ex As Exception
Console.WriteLine($"Conversion failed! {ex.Message}")
End Try
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFile) With {.UseShellExecute = True})
End Sub
End Class
End Namespace
See Also