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

Defines the appearance of both group and column footers.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public abstract class DataGridFooterAppearanceBase : DataGridAppearance

Inheritance: objectDataGridAppearanceDataGridFooterAppearanceBase

Derived Classes: DataGridColumnFooterAppearanceDataGridGroupFooterAppearance

Fields

BackgroundColorProperty

BindableProperty

Identifies the BackgroundColor property.

C#
public static readonly BindableProperty BackgroundColorProperty

BorderColorProperty

BindableProperty

Identifies the BorderColor property.

C#
public static readonly BindableProperty BorderColorProperty

BorderThicknessProperty

BindableProperty

Identifies the BorderThickness property.

C#
public static readonly BindableProperty BorderThicknessProperty

Identifies the HorizontalTextAlignment property.

C#
public static readonly BindableProperty HorizontalTextAlignmentProperty

TextColorProperty

BindableProperty

Identifies the TextColor property.

C#
public static readonly BindableProperty TextColorProperty

Identifies the TextFontAttributes property.

C#
public static readonly BindableProperty TextFontAttributesProperty

TextFontFamilyProperty

BindableProperty

Identifies the TextFontFamily property.

C#
public static readonly BindableProperty TextFontFamilyProperty

TextFontSizeProperty

BindableProperty

Identifies the TextFontSize property.

C#
public static readonly BindableProperty TextFontSizeProperty

TextMarginProperty

BindableProperty

Identifies the TextMargin property.

C#
public static readonly BindableProperty TextMarginProperty

Identifies the VerticalTextAlignment property.

C#
public static readonly BindableProperty VerticalTextAlignmentProperty

Properties

Gets or sets the background color.

C#
public Color BackgroundColor { get; set; }

Gets or sets the border color.

C#
public Color BorderColor { get; set; }

Gets or sets the border thickness.

C#
public Thickness BorderThickness { get; set; }

Gets or sets a value indicating the horizontal text alignment.

C#
public TextAlignment HorizontalTextAlignment { get; set; }

Gets or sets the color for the Footer's text.

C#
public Color TextColor { get; set; }

TextFontAttributes

FontAttributes

Gets or sets the FontAttributes for the Footer.

C#
public FontAttributes TextFontAttributes { get; set; }

Gets or sets the FontFamily of the Footer.

C#
public string TextFontFamily { get; set; }

Gets or sets the size of the Footer.

C#
[TypeConverter(typeof(FontSizeConverter))]
public double TextFontSize { get; set; }

TextMargin

Thickness

Gets or sets the margin for Footer.

C#
public Thickness TextMargin { get; set; }

Gets or sets a value indicating the vertical text alignment.

C#
public TextAlignment VerticalTextAlignment { get; set; }