ExcelConversionOptions
Defines properies and methods that are neeeded for Excel conversions.
public class ExcelConversionOptions : ConversionOptions
Public Class ExcelConversionOptions
Inherits ConversionOptions
Inheritance: ObjectConversionOptionsExcelConversionOptions
Licensing Info
This class is a DynamicPDF Converter feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Converter selected.
- A DynamicPDF Converter for .NET v3.X Developer license.
Examples
This example shows how to use ExcelConversionOptions constructor.Imports ceTe.DynamicPDF.Conversion
Module Module1
Sub Main()
' create new instance of ExcelConversionOption.
Dim conversionOptions As ExcelConversionOptions = New ExcelConversionOptions(True)
' Create new instance of Converter by providing suitable parameters.
Dim excelConversion As ExcelConverter = New ExcelConverter("C:\MyDocument.xlsx",conversionOptions)
' Call Convert method to start conversion
excelConversion.Convert("C:\MyOutput.pdf")
End Sub
End Module
using ceTe.DynamicPDF.Conversion;
class MyClass
{
static void Main()
{
// create new instance of ExcelConversionOption.
ExcelConversionOptions conversionOptions=new ExcelConversionOptions(true);
// Create new instance of Converter by providing suitable parameters.
ExcelConverter excel = new ExcelConverter(@"C:\MyDocument.xlsx",conversionOptions);
//Call Convert method to start conversion
excel.Convert(@"C:\MyOutput.pdf");
}
}
Constructors
ExcelConversionOptions([Optional] Boolean) | Defines properies and methods that are neeeded for Excel conversions. |
ExcelConversionOptions(ExcelPageSize, Double) | Initializes a new instance of the ExcelConversionOptions class. |
ExcelConversionOptions(ExcelPageSize, Double, [Optional] Boolean) | Initializes a new instance of the ExcelConversionOptions class. |
ExcelConversionOptions(ExcelPageSize, Double, Double) | Initializes a new instance of the ExcelConversionOptions class. |
ExcelConversionOptions(ExcelPageSize, PageOrientation, Double) | Initializes a new instance of the ExcelConversionOptions class. |
ExcelConversionOptions(ExcelPageSize, PageOrientation, Double, Double) | Initializes a new instance of the ExcelConversionOptions class. |
ExcelConversionOptions(ExcelPageSize, PageOrientation, Double, Double, [Optional] Boolean) | Initializes a new instance of the ExcelConversionOptions class. |
Properties
AppendToPdf | Gets or sets the boolean value to specify if append to pdf conversionOptions to be enabled. (Inherited from ConversionOptions) |
Author | Gets or sets the author meta data for the converted PDF. (Inherited from ConversionOptions) |
BottomMargin | Gets or sets the bottom margin of the page. (Inherited from ConversionOptions) |
CancelToken | Gets or sets a CancellationToken for conversion task. (Inherited from ConversionOptions) |
ConvertSheets | Gets or sets ConvertSheets value for the ExcelWorkBook. |
Creator | Gets or sets the creator meta data for the converted PDF. (Inherited from ConversionOptions) |
Height | Gets or sets the height of the page in points. |
IgnorePrintAreas | Gets or sets IgnorePrintAreas value for the page. |
Keywords | Gets or sets the keywords meta data for the converted PDF. (Inherited from ConversionOptions) |
LeftMargin | Gets or sets the left margin of the page in points. (Inherited from ConversionOptions) |
Orientation | Gets or sets orientation for the page. |
PageRange | Gets the page range. |
PageScaling | Gets or sets the Excel page scaling. |
PageSize | Determines the Excel page size. Helps to retrieve or set the Excel page size. |
PaperKind | Gets the paper kind for the PageSize properties. |
Producer | Gets or sets the producer meta data for the converted PDF. (Inherited from ConversionOptions) |
RightMargin | Gets or sets the right margin of the page in points. (Inherited from ConversionOptions) |
Subject | Gets or sets the subject meta data for the converted PDF. (Inherited from ConversionOptions) |
Title | Gets or sets the title meta data for the converted PDF. (Inherited from ConversionOptions) |
TopMargin | Gets or sets the top margin of the page in points. (Inherited from ConversionOptions) |
Width | Gets or sets the width of the page in points. |
Methods
Equals(Object) | Determines whether the specified Object is equal to the current Object . (Inherited from Object) |
GetHashCode() | Serves as a hash function for a particular type. (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) |