[]
Gets or sets the 1-based number of the last page to print. If the value is empty, printing ends with the last page.
public int? To { get; set; }
Public Property [To] As Integer?
PrintOutOptions options = new PrintOutOptions();
options.To = 5;
int? to = options.To;