RichTextBox: Exception when loading a table with a specific layout in R2 2022
This works with R1 2022 SP1
foreach (Span span in paragraphCopy.EnumerateChildrenOfType<Span>())
{
if (string.IsNullOrEmpty(span.Text))
{
span.Text = " ";
}
}