TouchListLiteItems Property

Represents the rows of TouchListLite.

Definition

Namespace: BeeMobile.TouchList
Assembly: BeeMobile.TouchList.NET48 (in BeeMobile.TouchList.NET48.dll) Version: 4.8.5.24
C#
public string[] Items { get; set; }

Property Value

String

Remarks

Each row in TouchListLite can contain two images (on the left and on the right side of the row) and two strings (at the top and at the bottom of the row). Items property is an array of strings and each string represents data for one row.

Each row has the following form: index1|string1|string2|index2

where

index1 is a numerical index of the image displayed at the left side of the row

index2 is a numerical index of the image displayed at the right side of the row

string1 is the string displayed at the top part of the row

string2 is the string displayed at the bottom part of the row

The "|" character is used as a separator.

To clear the rows, assign an array with 0 string items to Items property, e.g., in C#: touchList1.Items = new string[0];

See Also