RtfToHtmlCssExportMode Enumeration |
Specifies how CSS (Cascading Style Sheet) styles are exported to HTML.
Namespace: SautinSoftAssembly: SautinSoft.RtfToHtml (in SautinSoft.RtfToHtml.dll) Version: 2024.11.25
Syntax public enum CssExportMode
Public Enumeration CssExportMode
Members Member name | Value | Description |
---|
Ignore | 0 |
Ignore any styling information when generating a HTML.
|
Inline | 1 |
CSS styles are written inline (as a value of the style attribute on every element).
|
Embedded | 2 |
CSS styles are written separately from the content in a style sheet embedded in the HTML file.
|
External | 3 |
CSS styles are written separately from the content in a style sheet in an external file.
The HTML file links the style sheet.
|
Example 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