Adnan Ali
Adnan Ali

Reputation: 802

How to align crystal report from right to left

i am using crystal reports with visual studio 2013. i used cross tab report to show data, the problem is i have data in URDU language which starts from right to left but when i put data in cross tab it increases from left to right and i want cross tab should increase its length from right to left. i tried but did not find any way to do it. so how can i achieve this . i want this

enter image description here

instead of this enter image description here

Upvotes: 0

Views: 4232

Answers (2)

Saad Fouas
Saad Fouas

Reputation: 1

you can loop against report object and change location of it Example :

private void SetLocationOfLineObject(ReportObject fild)
{
   fild.Left = rptAcc1.PrintOptions.PageContentWidth - (fild.Left  );
}

Upvotes: 0

Siva
Siva

Reputation: 9101

you can do It by right click and format and then selecting right to left instead of left to right.

enter image description here

Upvotes: 4

Related Questions