[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PrintOutOptions.From

From Property

From

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.

Declaration
public int? From { get; set; }
Public Property From As Integer?
Examples
PrintOutOptions options = new PrintOutOptions();
options.From = 2;
int? from = options.From;