ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / RichTextBox Class / Html Property
Example

In This Topic
    Html Property (RichTextBox)
    In This Topic
    Sets or returns the hypertext to be rendered in the control.
    Syntax
    'Declaration
     
    Public Property Html As String
    public string Html {get; set;}

    Property Value

    Valid hypertext with tags which will be rendered in the control.
    Remarks
    \n" + this.RichTextBox1.Text;}
    Example
    private void reportHeader1_Format(object sender, System.EventArgs e)
    {
        RichTextBox1.Html = RichTextBox1.Text;
    }
    Private Sub ReportHeader1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ReportHeader1.Format
        RichTextBox1.Html = RichTextBox1.Text
    End Sub
    See Also