Using the Right-To-Left Mode in the Viewer
Our sample projects and report templates can help you learn the basics of working with our products.This example shows how to display the Report Viewer in the Right-To-Left mode. It is enough to set the option
In the
Also, you can read more about this in the article Right to Left mode for other components.
In the screenshot below you can see the result of the sample code:

StiOptions.Viewer.RightToLeft to the StiRightToLeftType.Yes value. This can be done in the application initialization method:
public Form1()
{
StiOptions.Viewer.RightToLeft = StiRightToLeftType.Yes;
//
// Required for Windows Form Designer support
//
InitializeComponent();
}
In the
Form1_Load() event, load the report:
private void Form1_Load(object sender, System.EventArgs e)
{
if (File.Exists("..\\BookmarksAndHyperlinks.mrt")) stiReport1.Load("..\\BookmarksAndHyperlinks.mrt");
else MessageBox.Show("File \"BookmarksAndHyperlinks.mrt\" not found");
stiReport1.Render(true);
stiReport1.Info.Zoom = panel1.Zoom;
if (stiReport1.CompiledReport != null) stiReport1.CompiledReport.Info.Zoom = panel1.Zoom;
panel1.Refresh();
}
Also, you can read more about this in the article Right to Left mode for other components.
In the screenshot below you can see the result of the sample code:
