ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / ReportInfo Class / RightToLeft Property
Example

In This Topic
    RightToLeft Property (ReportInfo)
    In This Topic
    Determines whether text will be displayed in right-to-left order for this control.
    Syntax
    'Declaration
     
    Public Property RightToLeft As Boolean
    public bool RightToLeft {get; set;}
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)   
    {   
        this.reportInfo1.RightToLeft = false;  
    }
    Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format 
        Me.ReportInfo1.RightToLeft = False 
    End Sub
    See Also