summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ITableModel.cs
blob: 4778b9086c31aa29e2f192464237a5760000388b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Xamarin.Forms
{
	public interface ITableModel
	{
		Cell GetCell(int section, int row);
		Cell GetHeaderCell(int section);
		object GetItem(int section, int row);
		int GetRowCount(int section);
		int GetSectionCount();
		string[] GetSectionIndexTitles();
		string GetSectionTitle(int section);
		void RowLongPressed(int section, int row);
		void RowSelected(object item);
		void RowSelected(int section, int row);
	}
}