[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PivotFieldCustomGroupOptions.Items

Items Property

Items

Gets or sets the source PivotItem names to include in the new custom group.

The list must contain at least one item name when grouping is applied. Source names, item names, and captions are matched without case sensitivity. Set this property to null to clear the item list.

Declaration
public IList<string> Items { get; set; }
Public Property Items As IList(Of String)
Examples
PivotFieldCustomGroupOptions options = new PivotFieldCustomGroupOptions();
options.Items = new List<string> { "Apple" };
IList<string> items = options.Items;