[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PivotFieldCustomGroupOptions.Name

Name Property

Name

Gets or sets the display name of the created custom group.

If this value is null or empty, a default group name is used when grouping is applied. If the specified name already exists, grouping fails.

Declaration
public string Name { get; set; }
Public Property Name As String
Examples
PivotFieldCustomGroupOptions options = new PivotFieldCustomGroupOptions();
options.Name = "Fruit Group";
string name = options.Name;