[]
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.
public double? End { get; set; }
Public Property [End] As Double?
PivotFieldNumberGroupOptions options = new PivotFieldNumberGroupOptions();
options.AutoEnd = false;
options.End = 100;
double? end = options.End;