{"id":625,"date":"2019-12-18T22:23:18","date_gmt":"2019-12-18T21:23:18","guid":{"rendered":"https:\/\/thomasjansen.eu\/?p=625"},"modified":"2019-12-18T22:31:15","modified_gmt":"2019-12-18T21:31:15","slug":"add-styled-text-to-richtextbox","status":"publish","type":"post","link":"https:\/\/thomas-jansen.eu\/?p=625","title":{"rendered":"Add styled text to RichTextBox"},"content":{"rendered":"\n<p>Add a text with a specific font and color to a RichTextBox control.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>static class extensionMethods\n{\n  public static void AppendText(this RichTextBox textBox, string appendText, \n  System.Drawing.Color textColor = null, Font TextFont = null)\n  {\n      textBox.SelectionStart = textBox.TextLength;\n      textBox.SelectionLength = 0;\n      if (textColor != null) textBox.SelectionColor = textColor;\n      if (textFont != null)  textBox.SelectionFont = textFont;\n      textBox.AppendText(appendText);\n      textBox.SelectionColor = textBox.ForeColor;\n   }\n};<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Add a text with a specific font and color to a RichTextBox control.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-625","post","type-post","status-publish","format-standard","hentry","category-c"],"_links":{"self":[{"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=\/wp\/v2\/posts\/625","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=625"}],"version-history":[{"count":1,"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=\/wp\/v2\/posts\/625\/revisions"}],"predecessor-version":[{"id":626,"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=\/wp\/v2\/posts\/625\/revisions\/626"}],"wp:attachment":[{"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=625"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=625"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thomas-jansen.eu\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=625"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}