TableSectionBase<T>.Add Method

Definition

Overloads

Add(IEnumerable<T>)

Adds a list of items to this TableSectionBase<T> object.

Add(T)

Adds an item to this TableSectionBase<T> object.

Add(IEnumerable<T>)

Adds a list of items to this TableSectionBase<T> object.

public void Add (System.Collections.Generic.IEnumerable<T> items);
member this.Add : seq<'T (requires 'T :> Xamarin.Forms.BindableObject)> -> unit

Parameters

items
IEnumerable<T>

The items to add.

Applies to

Add(T)

Adds an item to this TableSectionBase<T> object.

public void Add (T item);
abstract member Add : 'T -> unit
override this.Add : 'T -> unit

Parameters

item
T

The item to add.

Implements

Applies to