Class GridTableSummaryRow
Represents a class that implements GridSummaryRow that defines summary information of table summary row in SfDataGrid.
Inherited Members
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class GridTableSummaryRow : GridSummaryRow, ISummaryRow, IDisposable
Constructors
GridTableSummaryRow()
Initializes a new instance of the GridTableSummaryRow class.
Declaration
public GridTableSummaryRow()
Properties
Position
Gets or sets the Position of the table summary row. The table summary row can be displayed either in the top below the header or bottom of the SfDataGrid by using this property.
Declaration
public Position Position { get; set; }
Property Value
Type | Description |
---|---|
Position | The Position of the table summary row. The default value is Bottom. |
Remarks
SfDataGrid allows you to add table summary rows either at top or bottom positions using Position property.
Examples
GridTableSummaryRow topSummaryRow = new GridTableSummaryRow();
topSummaryRow.Position = Position.Top;
Methods
Dispose(Boolean)
Releases the unmanaged resources used by the component and optionally releases the managed resources.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | if true - release both managed and unmanaged resources; if false - release only unmanaged resources. |
Overrides
Implements
System.IDisposable