[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PrintOutOptions.To

To Property

To

Gets or sets the 1-based number of the last page to print. If the value is empty, printing ends with the last page.

Declaration
public int? To { get; set; }
Public Property [To] As Integer?
Examples
PrintOutOptions options = new PrintOutOptions();
options.To = 5;
int? to = options.To;