Class RadAccordion
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadAccordion : RadLayout
Constructors
RadAccordion()
Fields
AnimationDurationProperty
Identifies theAnimationDuration property.
Declaration
public static readonly BindableProperty AnimationDurationProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
AnimationEasingProperty
Identifies theAnimationEasing property.
Declaration
public static readonly BindableProperty AnimationEasingProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CanCollapseAllItemsProperty
Identifies theCanCollapseAllItems property.
Declaration
public static readonly BindableProperty CanCollapseAllItemsProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CanExpandMultipleItemsProperty
Indentifies the CanExpandMultipleItems property.
Declaration
public static readonly BindableProperty CanExpandMultipleItemsProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsAnimationEnabledProperty
Identifies theIsAnimationEnabled property.
Declaration
public static readonly BindableProperty IsAnimationEnabledProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SpacingProperty
Identifies theSpacing property.
Declaration
public static readonly BindableProperty SpacingProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
AnimationDuration
Gets or sets the duration of the expand/collapse animation.
Declaration
public int AnimationDuration { get; set; }
Property Value
System.Int32
|
AnimationEasing
Gets or sets the easing of the expand/collapse animation.
Declaration
public Easing AnimationEasing { get; set; }
Property Value
Microsoft.Maui.Easing
|
CanCollapseAllItems
Gets or sets a value indicating whether all items can be collapsed.
Declaration
public bool CanCollapseAllItems { get; set; }
Property Value
System.Boolean
|
CanExpandMultipleItems
Gets or sets a value indicating whether more than one item can be expanded.
Declaration
public bool CanExpandMultipleItems { get; set; }
Property Value
System.Boolean
|
IsAnimationEnabled
Gets or sets a value indicating whether the expand/collapse animation is enabled.
Declaration
public bool IsAnimationEnabled { get; set; }
Property Value
System.Boolean
|
Items
Gets the collection of AccordionItems, describing the individual items of the control.
Declaration
public IList<AccordionItem> Items { get; }
Property Value
System.Collections.Generic.IList<AccordionItem>
|
Spacing
Gets or sets the space between the items.
Declaration
public double Spacing { get; set; }
Property Value
System.Double
|
Methods
OnChildAdded(Element)
Declaration
protected override void OnChildAdded(Element child)
Parameters
Microsoft.Maui.Controls.Element
child
|
OnChildRemoved(Element, Int32)
Declaration
protected override void OnChildRemoved(Element child, int oldLogicalIndex)
Parameters
Microsoft.Maui.Controls.Element
child
|
System.Int32
oldLogicalIndex
|