Class AutoCompleteTokenStyle
A class exposing properties that could be used to customize the appearance of the tokens.
Inheritance
Namespace: Telerik.XamarinForms.Input.AutoComplete
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public class AutoCompleteTokenStyle : Element, IChildElement
Constructors
AutoCompleteTokenStyle()
Declaration
public AutoCompleteTokenStyle()
Fields
BackgroundColorProperty
Identifies the BackgroundColor property.
Declaration
public static readonly BindableProperty BackgroundColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
CornerRadiusProperty
Identifies the CornerRadius property.
Declaration
public static readonly BindableProperty CornerRadiusProperty
Field Value
Xamarin.Forms.BindableProperty
|
StrokeColorProperty
Identifies the StrokeColor property.
Declaration
public static readonly BindableProperty StrokeColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
StrokeWidthProperty
Identifies the StrokeWidth property.
Declaration
public static readonly BindableProperty StrokeWidthProperty
Field Value
Xamarin.Forms.BindableProperty
|
TextColorProperty
Identifies the TextColor property.
Declaration
public static readonly BindableProperty TextColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
Properties
BackgroundColor
Gets or sets the color of the token background.
Declaration
public Color BackgroundColor { get; set; }
Property Value
Xamarin.Forms.Color
The color. |
CornerRadius
Gets or sets the corner radius of a token.
Declaration
public double CornerRadius { get; set; }
Property Value
System.Double
The raduis. |
StrokeColor
Gets or sets the color of the stroke around the token.
Declaration
public Color StrokeColor { get; set; }
Property Value
Xamarin.Forms.Color
The color. |
StrokeWidth
Gets or sets the width of the stroke around the token. NOTE: Both StrokeWidth and StrokeColor properties should be set.
Declaration
public int StrokeWidth { get; set; }
Property Value
System.Int32
The with. |
TextColor
Gets or sets the color of the string inside a token.
Declaration
public Color TextColor { get; set; }
Property Value
Xamarin.Forms.Color
The color. |
Methods
OnPropertyChanged(String)
Declaration
protected override void OnPropertyChanged(string propertyName = null)
Parameters
System.String
propertyName
|