/// <summary> /// Sets the font color for the selected text of the RichTextBox /// </summary> /// <param name="color">Color to apply</param> /// <returns>Returns true on success, false on failure</returns> public static bool SelectionFontColor(this RichTextBox richTextBox, Color color) { return(RichTextBoxHelper.SelectionFontColor(richTextBox, color)); }