Xamarin.Forms by Microsoft

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

.NET API 1,936,256 bytes

 TextCell

public class TextCell : Cell
A Cell with primary Text and Detail text.

Identifies the CommandParameter bindable property.

public static readonly BindableProperty CommandProperty

Identifies the Command bindable property.

public static readonly BindableProperty DetailColorProperty

Identifies the DetailColor bindable property.

public static readonly BindableProperty DetailProperty

Gets or sets the secondary text to be displayed. This is a bindable property.

public static readonly BindableProperty TextColorProperty

Identifies the TextColor bindable property.

public static readonly BindableProperty TextProperty

Identifies the Text bindable property.

public ICommand Command { get; set; }

Gets or sets the ICommand to be executed when the TextCell is tapped. This is a bindable property.

public object CommandParameter { get; set; }

Gets or sets the parameter passed when invoking the Command. This is a bindable property.

public string Detail { get; set; }

Gets or sets the secondary text to be displayed in the TextCell. This is a bindable property.

public Color DetailColor { get; set; }

Gets or sets the color to render the secondary text. This is a bindable property.

public string Text { get; set; }

Gets or sets the primary text to be displayed. This is a bindable property.

public Color TextColor { get; set; }

Gets or sets the color to render the primary text. This is a bindable property.

public TextCell()