[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableColumn.Total

Total Property

Total

Returns the Total row for the ITableColumn object (read-only).

Declaration
IRange Total { get; }
ReadOnly Property Total As IRange
Examples
worksheet.Range["A1:B3"].Value = new object[,] {{"Product", "Amount"}, {"Apple", 100}, {"Pear", 200}};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
table.ShowTotals = true;
IRange totalCell = table.Columns[1].Total;