ClassRadAnimatedGrid
Represents a grid layout with animated transitions between two states.
Definition
Namespace:Telerik.Maui.Controls.Chat
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class RadAnimatedGrid : RadLayout
Inheritance: objectRadLayoutRadAnimatedGrid
Inherited Members
Constructors
RadAnimatedGrid()
Initializes a new instance of the RadAnimatedGrid class.
Declaration
public RadAnimatedGrid()
Fields
ColumnProperty
Identifies the Column attached property.
Declaration
public static readonly BindableProperty ColumnProperty
Field Value
BindableProperty
ColumnSpanProperty
Identifies the ColumnSpan attached property.
Declaration
public static readonly BindableProperty ColumnSpanProperty
Field Value
BindableProperty
RowProperty
Identifies the Row attached property.
Declaration
public static readonly BindableProperty RowProperty
Field Value
BindableProperty
RowSpanProperty
Identifies the RowSpan attached property.
Declaration
public static readonly BindableProperty RowSpanProperty
Field Value
BindableProperty
Properties
ColumnDefinitions
Gets or sets the collection of column definitions for the grid.
Declaration
[TypeConverter(typeof(ColumnDefinitionCollectionTypeConverter))]
public ColumnDefinitionCollection ColumnDefinitions { get; set; }
Property Value
ColumnDefinitionCollection
RowDefinitions
Gets or sets the collection of row definitions for the grid.
Declaration
[TypeConverter(typeof(RowDefinitionCollectionTypeConverter))]
public RowDefinitionCollection RowDefinitions { get; set; }
Property Value
RowDefinitionCollection
Methods
GetColumn(BindableObject)
Gets the value of the Column attached property for a specified bindable object.
Declaration
public static int GetColumn(BindableObject bindable)
Parameters
bindable
BindableObject
The bindable object.
Returns
The column index.
GetColumnSpan(BindableObject)
Gets the value of the ColumnSpan attached property for a specified bindable object.
Declaration
public static int GetColumnSpan(BindableObject bindable)
Parameters
bindable
BindableObject
The bindable object.
Returns
The column span.
GetRow(BindableObject)
Gets the value of the Row attached property for a specified bindable object.
Declaration
public static int GetRow(BindableObject bindable)
Parameters
bindable
BindableObject
The bindable object.
Returns
The row index.
GetRowSpan(BindableObject)
Gets the value of the RowSpan attached property for a specified bindable object.
Declaration
public static int GetRowSpan(BindableObject bindable)
Parameters
bindable
BindableObject
The bindable object.
Returns
The row span.
SetColumn(BindableObject, int)
Sets the value of the Column attached property for a specified bindable object.
Declaration
public static void SetColumn(BindableObject bindable, int value)
Parameters
bindable
BindableObject
The bindable object.
value
The column index.
SetColumnSpan(BindableObject, int)
Sets the value of the ColumnSpan attached property for a specified bindable object.
Declaration
public static void SetColumnSpan(BindableObject bindable, int value)
Parameters
bindable
BindableObject
The bindable object.
value
The column span.
SetRow(BindableObject, int)
Sets the value of the Row attached property for a specified bindable object.
Declaration
public static void SetRow(BindableObject bindable, int value)
Parameters
bindable
BindableObject
The bindable object.
value
The row index.
SetRowSpan(BindableObject, int)
Sets the value of the RowSpan attached property for a specified bindable object.
Declaration
public static void SetRowSpan(BindableObject bindable, int value)
Parameters
bindable
BindableObject
The bindable object.
value
The row span.