Class TypingIndicator
Inherited Members
Namespace: Telerik.XamarinForms.ConversationalUI
Assembly: Telerik.XamarinForms.ConversationalUI.dll
Syntax
public class TypingIndicator : RadContentView, IItemConverter<Author>
Constructors
TypingIndicator()
Declaration
public TypingIndicator()
Fields
ActualImageProperty
Declaration
public static readonly BindableProperty ActualImageProperty
Field Value
Xamarin.Forms.BindableProperty
|
ActualIsTypingProperty
Declaration
public static readonly BindableProperty ActualIsTypingProperty
Field Value
Xamarin.Forms.BindableProperty
|
ActualTextProperty
Declaration
public static readonly BindableProperty ActualTextProperty
Field Value
Xamarin.Forms.BindableProperty
|
DotsColorProperty
Declaration
public static readonly BindableProperty DotsColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
FontAttributesProperty
Declaration
public static readonly BindableProperty FontAttributesProperty
Field Value
Xamarin.Forms.BindableProperty
|
FontFamilyProperty
Declaration
public static readonly BindableProperty FontFamilyProperty
Field Value
Xamarin.Forms.BindableProperty
|
FontSizeProperty
Declaration
public static readonly BindableProperty FontSizeProperty
Field Value
Xamarin.Forms.BindableProperty
|
ImageProperty
Declaration
public static readonly BindableProperty ImageProperty
Field Value
Xamarin.Forms.BindableProperty
|
IsTypingProperty
Declaration
public static readonly BindableProperty IsTypingProperty
Field Value
Xamarin.Forms.BindableProperty
|
ItemConverterProperty
Declaration
public static readonly BindableProperty ItemConverterProperty
Field Value
Xamarin.Forms.BindableProperty
|
ItemsSourceProperty
Declaration
public static readonly BindableProperty ItemsSourceProperty
Field Value
Xamarin.Forms.BindableProperty
|
TextColorProperty
Declaration
public static readonly BindableProperty TextColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
TextProperty
Declaration
public static readonly BindableProperty TextProperty
Field Value
Xamarin.Forms.BindableProperty
|
Properties
ActualImage
Declaration
public ImageSource ActualImage { get; }
Property Value
Xamarin.Forms.ImageSource
|
ActualIsTyping
Gets a value indicating whether the IsTyping property is true, or there is at least one author that is typing.
Declaration
public bool ActualIsTyping { get; }
Property Value
System.Boolean
|
ActualText
Declaration
public string ActualText { get; }
Property Value
System.String
|
Authors
Gets the authors that are currently typing.
Declaration
public ObservableCollection<Author> Authors { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<Author>
|
DotsColor
Declaration
public Color DotsColor { get; set; }
Property Value
Xamarin.Forms.Color
|
FontAttributes
Declaration
public FontAttributes FontAttributes { get; set; }
Property Value
Xamarin.Forms.FontAttributes
|
FontFamily
Declaration
public string FontFamily { get; set; }
Property Value
System.String
|
FontSize
Declaration
public double FontSize { get; set; }
Property Value
System.Double
|
Image
Gets or sets the custom image to be displayed. If the value of this property is null a default image is displayed.
Declaration
public ImageSource Image { get; set; }
Property Value
Xamarin.Forms.ImageSource
|
IsTyping
Gets or sets a value indicating whether anybody is typing. This property has lower priority than the Authors property in that if there is at least one author that is typing, the value of IsTyping is not taken into consideration.
Declaration
public bool IsTyping { get; set; }
Property Value
System.Boolean
|
ItemConverter
ItemsSource
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.Collections.IEnumerable
|
Text
Gets or sets the custom text to be displayed. If the value of this property is null a default text is displayed.
Declaration
public string Text { get; set; }
Property Value
System.String
|
TextColor
Declaration
public Color TextColor { get; set; }
Property Value
Xamarin.Forms.Color
|
Methods
BuildActualText()
Gets the text that will be displayed. Override this method to set custom text.
Declaration
public virtual string BuildActualText()
Returns
System.String
|
OnApplyTemplate()
Declaration
protected override void OnApplyTemplate()