[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPivotCache.RefreshName

RefreshName Property

RefreshName

Gets the name of the person who last refreshed the PivotTable cache.

Use this property to retrieve the refresh user recorded in the cache metadata.

Declaration
string RefreshName { get; }
ReadOnly Property RefreshName As String
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Score"},
    {"Alice", 100},
    {"Bob", 200}
};
IPivotCache pivotCache = workbook.PivotCaches.Create(worksheet.Range["A1:B3"]);
pivotCache.Refresh();
string refreshName = pivotCache.RefreshName;