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

In This Topic
    Text Property (RichTextBox)
    In This Topic
    Gets or sets the current text in the RichTextBox.
    Syntax
    'Declaration
     
    Public Property Text As String
    public string Text {get; set;}

    Property Value

    The text displayed in the control.
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.rtbActiveReport.Text = "Confidential";
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
        Me.rtbActiveReport.Text = "Confidential"
    End Sub
    See Also