Class GridTableSummaryRow
Represents a class that implements GridSummaryRow that defines summary information of table summary row in SfDataGrid.
Inherited Members
Namespace: Syncfusion.SfDataGrid.XForms
Assembly: Syncfusion.SfDataGrid.XForms.dll
Syntax
public class GridTableSummaryRow : GridSummaryRow, ISummaryRow, IDisposable
Constructors
GridTableSummaryRow()
Initializes a new instance of the GridTableSummaryRow class.
Declaration
public GridTableSummaryRow()
Fields
PositionProperty
Identifies the Position Xamarin.Forms.BindableProperty.
Declaration
public static readonly BindableProperty PositionProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Remarks
This Xamarin.Forms.BindableProperty is read-only.
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;
sfGrid.TableSummaryRows.Add(topSummaryRow);
See Also
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. |