[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PivotFieldNumberGroupOptions.End

End Property

End

Gets or sets the ending number used to derive the grouped range.

Generated buckets are left-closed and right-open. When AutoEnd is true, this value is ignored and the last number is determined from the PivotCache.

Declaration
public double? End { get; set; }
Public Property [End] As Double?
Examples
PivotFieldNumberGroupOptions options = new PivotFieldNumberGroupOptions();
options.AutoEnd = false;
options.End = 100;
double? end = options.End;