12345678910111213141516171819 |
- using Syncfusion.SfDataGrid.XForms;
- namespace InABox.Mobile
- {
-
- public enum MobileGridSummaryType
- {
- None,
- Sum,
- Count
- }
- public interface IMobileGridSummaryColumn
- {
- MobileGridSummaryType Summary { get; set; }
-
- GridSummaryColumn CreateSummaryColumn();
- }
- }
|