//
namespace TestNs
{
partial class Grid
{
#nullable enable annotations
///
/// Defines the RowSpan attached property.
///
public static readonly global::Avalonia.AttachedProperty RowSpanProperty =
global::Avalonia.AvaloniaProperty.RegisterAttached("RowSpan", defaultValue: 1);
public static partial int GetRowSpan(global::Avalonia.Visual element)
=> element.GetValue(RowSpanProperty);
///
/// Sets the value of the attached property on the specified object.
///
public static void SetRowSpan(global::Avalonia.Visual element, int value)
=> element.SetValue(RowSpanProperty, value);
#nullable restore annotations
#nullable enable annotations
///
/// Defines the FontSize attached property.
///
public static readonly global::Avalonia.AttachedProperty FontSizeProperty =
global::Avalonia.AvaloniaProperty.RegisterAttached("FontSize", inherits: true);
public static partial double GetFontSize(global::Avalonia.Visual element)
=> element.GetValue(FontSizeProperty);
///
/// Sets the value of the attached property on the specified object.
///
public static void SetFontSize(global::Avalonia.Visual element, double value)
=> element.SetValue(FontSizeProperty, value);
#nullable restore annotations
}
}