[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PivotFieldNumberGroupOptions.Start

Start Property

Start

Gets or sets the first number included in the grouped range.

When AutoStart is true, this value is ignored and the first number is determined from the PivotCache.

Declaration
public double? Start { get; set; }
Public Property Start As Double?
Examples
PivotFieldNumberGroupOptions options = new PivotFieldNumberGroupOptions();
options.AutoStart = false;
options.Start = 0;
double? start = options.Start;