skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • NEW: Design Kits for Figma
    • Online Training
    • Document Processing Library
    • Embedded Reporting for web and desktop

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • Resources Hub
    • .NET MAUI Tutorials and Learning
    • First Steps
    • Submit a Ticket
    • FAQs

    Docs & Resources

    • Docs
    • Demos
    • Migrate to .NET MAUI
    • Forums
    • Videos
    • Blogs

    Productivity and Design Tools

    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class TypingIndicator

Represents a view that indicates that participants in the chat are typing.

Inheritance
System.Object
RadContentView
TypingIndicator
Inherited Members
RadContentView.ActualStyleClassProperty
RadContentView.OnChildAdded(Element)
RadContentView.OnChildRemoved(Element, Int32)
RadContentView.OnBindingContextChanged()
RadContentView.OnHandlerChanged()
RadContentView.ActualStyleClass
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll

Syntax

public class TypingIndicator : RadContentView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout, IItemConverter<Author>

Constructors

TypingIndicator()

Initializes a new instance of the TypingIndicator class.

Declaration
public TypingIndicator()

Fields

ActualImageProperty

Identifies the ActualImage property.

Declaration
public static readonly BindableProperty ActualImageProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

ActualIsTypingProperty

Identifies the ActualIsTyping property.

Declaration
public static readonly BindableProperty ActualIsTypingProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

ActualTextProperty

Identifies the ActualText property.

Declaration
public static readonly BindableProperty ActualTextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

DotsColorProperty

Identifies the DotsColor property.

Declaration
public static readonly BindableProperty DotsColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

FontAttributesProperty

Identifies the FontAttributes property.

Declaration
public static readonly BindableProperty FontAttributesProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

FontFamilyProperty

Identifies the FontFamily property.

Declaration
public static readonly BindableProperty FontFamilyProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

FontSizeProperty

Identifies the FontSize property.

Declaration
public static readonly BindableProperty FontSizeProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

ImageProperty

Identifies the Image property.

Declaration
public static readonly BindableProperty ImageProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

IsTypingProperty

Identifies the IsTyping property.

Declaration
public static readonly BindableProperty IsTypingProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

ItemConverterProperty

Identifies the ItemConverter property.

Declaration
public static readonly BindableProperty ItemConverterProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

ItemsSourceProperty

Identifies the ItemsSource property.

Declaration
public static readonly BindableProperty ItemsSourceProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

TextColorProperty

Identifies the TextColor property.

Declaration
public static readonly BindableProperty TextColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

TextProperty

Identifies the Text property.

Declaration
public static readonly BindableProperty TextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty

Properties

ActualImage

Gets the actual image displayed by the indicator.

Declaration
public ImageSource ActualImage { get; }
Property Value
Microsoft.Maui.Controls.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

Gets the actual text displayed by the indicator. This is the same value as the custom Text property, unless it's not provided in which case the TypingIndicator automatically generates the text that will be displayed.

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

Gets or sets the color of the dots displayed by the typing indicator.

Declaration
public Color DotsColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color

FontAttributes

Gets or sets the font attributes of the indicator text.

Declaration
public FontAttributes FontAttributes { get; set; }
Property Value
Microsoft.Maui.Controls.FontAttributes

FontFamily

Gets or sets the font family of the indicator text.

Declaration
public string FontFamily { get; set; }
Property Value
System.String

FontSize

Gets or sets the font size of the indicator text.

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
Microsoft.Maui.Controls.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

Gets or sets the author converter used by the typing indicator.

Declaration
public IAuthorConverter ItemConverter { get; set; }
Property Value
IAuthorConverter

ItemsSource

Gets or sets the collection of authors used by the typing indicator.

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 the TypingIndicator automatically generates the text that will be displayed.

Declaration
public string Text { get; set; }
Property Value
System.String

TextColor

Gets or sets the color of the indicator text.

Declaration
public Color TextColor { get; set; }
Property Value
Microsoft.Maui.Graphics.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()

Extension Methods

AndroidTypeConversionExtensions.ToJavaObject(Object)
Sample Applications
  • Controls Samples App
  • Crypto Tracker App
Support Resources
  • .NET MAUI SDKBrowser App
Community
  • Forums
  • Blogs
  • Feedback Portal
  • YouTube Channel

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.