Visual Basic (Declaration) | |
---|---|
Public Property Html As System.String |
C# | |
---|---|
public System.string Html {get; set;} |
Property Value
Valid hypertext with tags which will be rendered in the control.\n" + this.RichTextBox1.Text;}
C# | Copy Code |
---|---|
private void reportHeader1_Format(object sender, System.EventArgs e) { RichTextBox1.Html = RichTextBox1.Text; } |
Visual Basic | Copy Code |
---|---|
Private Sub ReportHeader1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ReportHeader1.Format RichTextBox1.Html = RichTextBox1.Text End Sub |