ArcGISPortalViewer.Popup.Converters.HtmlToTextConverter.SetParagraphInlineCollection C# (CSharp) Method

SetParagraphInlineCollection() private static method

private static SetParagraphInlineCollection ( Paragraph p, List newValue ) : void
p Windows.UI.Xaml.Documents.Paragraph
newValue List
return void
        private static void SetParagraphInlineCollection(Paragraph p, List<Inline> newValue)
        {
            p.Inlines.Clear();
            foreach (Inline line in newValue)
            {
                p.Inlines.Add(line);
            }
        }