1 implementation of Runs
Microsoft.Maui.Graphics (1)
Text\AbstractAttributedText.cs (1)
8
public abstract IReadOnlyList<IAttributedTextRun>
Runs
{ get; }
13 references to Runs
Microsoft.Maui.Graphics (13)
Text\AttributedTextExtensions.cs (10)
35
if (attributedText.
Runs
== null)
38
if (attributedText.
Runs
is List<IAttributedTextRun> list)
41
return attributedText.
Runs
.ToList();
91
if (text.
Runs
== null || text.
Runs
.Count == 0)
95
if (!(startIndexForSearch < text.
Runs
.Count))
103
var run = text.
Runs
[index];
149
} while (index < text.
Runs
.Count);
164
if (text.
Runs
?.Count > 0)
166
foreach (var run in text.
Runs
)
Text\XmlAttributedTextWriter.cs (3)
43
if (attributedText.
Runs
!= null && attributedText.
Runs
.Count > 0)
45
foreach (var run in attributedText.
Runs
)