2 implementations of ILineHeightElement
Microsoft.Maui.Controls (2)
Label\Label.cs (1)
15 public partial class Label : View, IFontElement, ITextElement, ITextAlignmentElement, ILineHeightElement, IElementConfiguration<Label>, IDecorableTextElement, IPaddingElement, ILabel
Span.cs (1)
10 public class Span : GestureElement, IFontElement, IStyleElement, ITextElement, ILineHeightElement, IDecorableTextElement
7 references to ILineHeightElement
Microsoft.Maui.Controls (7)
Label\Label.cs (1)
263 void ILineHeightElement.OnLineHeightChanged(double oldValue, double newValue) =>
LineHeightElement.cs (4)
8 /// <summary>Bindable property for <see cref="ILineHeightElement.LineHeight"/>.</summary> 10 BindableProperty.Create(nameof(ILineHeightElement.LineHeight), typeof(double), typeof(ILineHeightElement), -1.0d, 15 ((ILineHeightElement)bindable).OnLineHeightChanged((double)oldValue, (double)newValue);
Properties\AssemblyInfo.cs (1)
129[assembly: StyleProperty("line-height", typeof(ILineHeightElement), nameof(LineHeightElement.LineHeightProperty), Inherited = true)]
Span.cs (1)
195 void ILineHeightElement.OnLineHeightChanged(double oldValue, double newValue)