[]
Gets or sets the 1-based number of the page at which to start printing. If the value is empty, printing starts at the beginning.
public int? From { get; set; }
Public Property From As Integer?
PrintOutOptions options = new PrintOutOptions();
options.From = 2;
int? from = options.From;