I am attempting to format the text, according to the attached example, and place keylines of different sizes. Any help would be appreciated.
Dim document As New RadFlowDocument()Dim editor As New RadFlowDocumentEditor(document)'insert logoeditor.InsertBreak(BreakType.LineBreak)Using fs As New FileStream(System.Web.HttpContext.Current.Server.MapPath("~/Assets/logo.png"), FileMode.Open, FileAccess.Read) editor.InsertImageInline(fs, "png")End Usingeditor.InsertBreak(BreakType.LineBreak)editor.InsertBreak(BreakType.LineBreak)editor.InsertBreak(BreakType.LineBreak)editor.InsertLine("Application Name")editor.InsertLine("Application ID")editor.InsertLine("Status")editor.InsertLine("Deadline Date")