1 implementation of Text
Microsoft.Maui.Graphics (1)
Text\AbstractAttributedText.cs (1)
7 public abstract string Text { get; }
16 references to Text
Microsoft.Maui.Graphics (15)
Text\AttributedTextExtensions.cs (11)
13 if (attributedText?.Text == null) 21 var text = attributedText.Text; 30 if (attributedText?.Text == null) 46 var text = attributedText.Text; 55 if (attributedText?.Text == null) 63 using (var sr = new StringReader(attributedText.Text)) 156 if (text?.Text == null) 162 var end = text.Text.Length; 171 var noAttrValue = text.Text.Substring(start, noAttrLength); 179 var value = text.Text.Substring(start, length); 192 var value = text.Text.Substring(start);
Text\XmlAttributedTextWriter.cs (4)
24 if (attributedText != null && !string.IsNullOrEmpty(attributedText.Text)) 26 bool encode = attributedText.Text.IndexOf("]]", StringComparison.Ordinal) != -1; 32 byte[] bytes = Encoding.UTF8.GetBytes(attributedText.Text); 39 writer.Write(attributedText.Text);
Microsoft.Maui.Graphics.Skia (1)
SkiaCanvas.cs (1)
689 DrawString(value?.Text, x, y, width, height, HorizontalAlignment.Left, VerticalAlignment.Top);