SettablePivotGlobalizationSettings.SetTextOfSubTotal

SettablePivotGlobalizationSettings.SetTextOfSubTotal method

Sets the text of PivotFieldSubtotalType type in the PivotTable.

public void SetTextOfSubTotal(PivotFieldSubtotalType subTotalType, string text)
ParameterTypeDescription
subTotalTypePivotFieldSubtotalTypeThe PivotFieldSubtotalType
textStringThe text of given type

Examples

namespace AsposeCellsExamples
{
    using Aspose.Cells;
    using Aspose.Cells.Pivot;
    using System;

    public class SettablePivotGlobalizationSettingsMethodSetTextOfSubTotalWithPivotFieldSubtoStringDemo
    {
        public static void Run()
        {
            // Create a new workbook (just for demonstration purposes)
            Workbook workbook = new Workbook();

            // Instance of SettablePivotGlobalizationSettings
            SettablePivotGlobalizationSettings settings = new SettablePivotGlobalizationSettings();

            try
            {
                // Set custom text for the Sum subtotal
                settings.SetTextOfSubTotal(PivotFieldSubtotalType.Sum, "Custom Sum Total");

                // Verify the change
                string sumText = settings.GetTextOfSubTotal(PivotFieldSubtotalType.Sum);
                Console.WriteLine($"Sum subtotal text after change: {sumText}");

                // Set custom text for the Average subtotal
                settings.SetTextOfSubTotal(PivotFieldSubtotalType.Average, "Custom Average Total");

                // Verify the change
                string avgText = settings.GetTextOfSubTotal(PivotFieldSubtotalType.Average);
                Console.WriteLine($"Average subtotal text after change: {avgText}");
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Error calling SetTextOfSubTotal: {ex.Message}");
            }

            // Save the workbook (no pivot table modifications in this demo)
            workbook.Save("SetTextOfSubTotalDemo.xlsx");
        }
    }
}

See Also