RtfToHtmlLengthUnitConverterConvert Method |
Converts the specified length from sourceUnit measurement unit to
destinationUnit measurement unit.
Namespace: SautinSoftAssembly: SautinSoft.RtfToHtml (in SautinSoft.RtfToHtml.dll) Version: 2024.11.25
Syntax public static double Convert(
double length,
RtfToHtmlLengthUnit sourceUnit,
RtfToHtmlLengthUnit destinationUnit
)
Public Shared Function Convert (
length As Double,
sourceUnit As RtfToHtmlLengthUnit,
destinationUnit As RtfToHtmlLengthUnit
) As Double
Parameters
- length Double
- The length that will be converted.
- sourceUnit RtfToHtmlLengthUnit
- The source measurement unit.
- destinationUnit RtfToHtmlLengthUnit
- The destination measurement unit.
Return Value
DoubleThe converted value in the destination measurement units.
Example How to set page margins using C#
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)
{
PageMargins();
}
static void PageMargins()
{
string inpFile = @"..\..\..\example.docx";
string outFile = @"Result.html";
RtfToHtml r = new RtfToHtml();
RtfToHtml.HtmlFixedSaveOptions opt = new RtfToHtml.HtmlFixedSaveOptions()
{
Title = "Page Margins 30 mm",
PageMargins = RtfToHtml.LengthUnitConverter.Convert(30, RtfToHtml.LengthUnit.Millimeter, RtfToHtml.LengthUnit.Point)
};
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 });
}
}
}
How to set page margins using VB.Net
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)
PageMargins()
End Sub
Private Shared Sub PageMargins()
Dim inpFile As String = "..\..\..\example.docx"
Dim outFile As String = "Result.html"
Dim r As New RtfToHtml()
Dim opt As New RtfToHtml.HtmlFixedSaveOptions() With {
.Title = "Page Margins 30 mm",
.PageMargins = RtfToHtml.LengthUnitConverter.Convert(30, RtfToHtml.LengthUnit.Millimeter, RtfToHtml.LengthUnit.Point)
}
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