New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents an expander control that can show or hide content.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class RadExpander : RadLayout

Inheritance: objectRadLayoutRadExpander

Inherited Members RadLayout.CreateLayoutManager()

Constructors

Initializes a new instance of the RadExpander class.

C#
public RadExpander()

Fields

Identifies theAnimationDuration property.

C#
public static readonly BindableProperty AnimationDurationProperty

AnimationEasingProperty

BindableProperty

Identifies theAnimationEasing property.

C#
public static readonly BindableProperty AnimationEasingProperty

BorderColorProperty

BindableProperty

Identifies theBorderColor property.

C#
public static readonly BindableProperty BorderColorProperty

BorderThicknessProperty

BindableProperty

Identifies theBorderThickness property.

C#
public static readonly BindableProperty BorderThicknessProperty

ContentProperty

BindableProperty

Identifies theContent property.

C#
public static readonly BindableProperty ContentProperty

HeaderLocationProperty

BindableProperty

Identifies theHeaderLocation property.

C#
public static readonly BindableProperty HeaderLocationProperty

HeaderProperty

BindableProperty

Identifies theHeader property.

C#
public static readonly BindableProperty HeaderProperty

HeaderStyleProperty

BindableProperty

Identifies theHeaderStyle property.

C#
public static readonly BindableProperty HeaderStyleProperty

HeaderTextProperty

BindableProperty

Identifies theHeaderText property.

C#
public static readonly BindableProperty HeaderTextProperty

HeaderTextStyleProperty

BindableProperty

Identifies the HeaderTextStyle property.

C#
public static readonly BindableProperty HeaderTextStyleProperty

Identifies theIsAnimationEnabled property.

C#
public static readonly BindableProperty IsAnimationEnabledProperty

IsExpandedProperty

BindableProperty

Identifies theIsExpanded property.

C#
public static readonly BindableProperty IsExpandedProperty

Properties

Gets or sets the value of the AnimationDuration.

C#
public int AnimationDuration { get; set; }

Gets or sets the value of the AnimationEasing.

C#
[TypeConverter(typeof(EasingTypeConverter))]
public Easing AnimationEasing { get; set; }

Gets or sets the value of the BorderColor.

C#
public Color BorderColor { get; set; }

Gets or sets the value of the BorderThickness.

C#
public Thickness BorderThickness { get; set; }

Gets or sets the value of the Content.

C#
public object Content { get; set; }

Gets or sets the Header of the expander.

C#
public ExpanderHeader Header { get; set; }
Property Value:

An ExpanderHeader object that represents the clickable header area of the expander. The header contains the expand/collapse indicator and optional text content.

Gets or sets the value of the HeaderLocation.

C#
public ExpanderHeaderLocation HeaderLocation { get; set; }

Gets or sets the style of the Header (TargetType ExpanderHeader).

C#
public Style HeaderStyle { get; set; }

Gets or sets the value of the HeaderText.

C#
public string HeaderText { get; set; }

Gets or sets the Style of the header label.

C#
public Style HeaderTextStyle { get; set; }

Gets or sets the value of the IsAnimationEnabled.

C#
public bool IsAnimationEnabled { get; set; }

Gets or sets the value of the IsExpanded.

C#
public bool IsExpanded { get; set; }