BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
void TableModel_QueryRowHeight(object sender, Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs e)
{
if (this.pivotGridControl1.PivotEngine[e.Index - 1, this.pivotGridControl1.PivotRows.Count].CellType
== (PivotCellType.GrandTotalCell | PivotCellType.ValueCell))
{
e.Size = 0;
e.Handled = true;
}
}
Regards,
Adhi
Private Sub TableModel_QueryRowHeight(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)
If Me.pivotGridControl1.PivotEngine(e.Index - 1, Me.pivotGridControl1.PivotRows.Count).CellType = (PivotCellType.GrandTotalCell Or PivotCellType.ValueCell) Then
e.Size = 0
e.Handled = True
End If
End Sub
Sample:
http://www.syncfusion.com/downloads/support/forum/120515/ze/VB568379481
Regards,
Adhi