PaginatorOptions Class
Represents options used to specify which part of the workbook to paginate.
- Inheritance:
- System.ObjectPaginatorOptions
Constructors
PaginatorOptions()
Initializes a new instance of the PaginatorOptions class.
Properties
Extended
Gets the extended save options that are not natively supported by spreadsheet formats.
public ExtendedSaveOptions Extended { get; set; }Public Property Extended As ExtendedSaveOptionsProperty Value
Extended save options that are not natively supported by spreadsheet formats.
SelectionType
Gets or sets a value indicating whether to save the whole ExcelFile or just ActiveWorksheet.
public SelectionType SelectionType { get; set; }Public Property SelectionType As SelectionTypeProperty Value
A value indicating whether to save the whole ExcelFile or just ActiveWorksheet.
UpdatePageBreaks
Gets or sets a value indicating whether to update HorizontalPageBreaks and VerticalPageBreaks while paginating the document.
Property Value
- System.Boolean
true to update page breaks while paginating the document; otherwise, false.
UseAdvancedTextFormatting
Gets or sets a value indicating whether to do text layout using advanced text formatting implementation such as those from Windows Presentation Foundation (WPF) or HarfBuzz text-shaping engine, or to use the default primitive implementation.
Default value is false for improved performance and stability of the output because advanced text formatting is required only for complex scripts or advanced typography features.
public bool UseAdvancedTextFormatting { get; set; }Public Property UseAdvancedTextFormatting As BooleanProperty Value
- System.Boolean
true to do text layout using advanced text formatting implementation; otherwise false to use the default primitive implementation.
Events
ProgressChanged
Occurs when paginating progress of a file has changed.
public event EventHandler<OperationProgressChangedEventArgs> ProgressChangedPublic Event ProgressChanged As EventHandler(Of OperationProgressChangedEventArgs)Event Type
- System.EventHandler<OperationProgressChangedEventArgs>