Xamarin.Forms by Xamarin Inc.

<PackageReference Include="Xamarin.Forms" Version="2.5.0.121934" />

.NET API 1,049,536 bytes

 TableModel

public abstract class TableModel : ITableModel
public event EventHandler<EventArg<object>> ItemLongPressed

public event EventHandler<EventArg<object>> ItemSelected

protected TableModel()

public virtual Cell GetCell(int section, int row)

public virtual Cell GetHeaderCell(int section)

public abstract object GetItem(int section, int row)

public abstract int GetRowCount(int section)

public abstract int GetSectionCount()

public virtual string[] GetSectionIndexTitles()

public virtual string GetSectionTitle(int section)

protected virtual void OnRowLongPressed(object item)

protected virtual void OnRowSelected(object item)

public void RowLongPressed(int section, int row)

public void RowLongPressed(object item)

public void RowSelected(int section, int row)

public void RowSelected(object item)