Hey Guys, I have a simple question that I cannot answer.
I have a library of reports that I call successfully. I have a form with a report viewer which shows the report. The problem is, for this 1 report, a field does not require the entire size of the presized text box. I can easily resize the text box, but I fail to be able to move it to the right. userscore is the report object.
I have a library of reports that I call successfully. I have a form with a report viewer which shows the report. The problem is, for this 1 report, a field does not require the entire size of the presized text box. I can easily resize the text box, but I fail to be able to move it to the right. userscore is the report object.
userscore.detcol3.Value = "=average"; |
userscore.detcol3.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right; |
userscore.detcol3.Width *= .75; |
userscore.detcol3.Style.BackgroundColor = Color.Teal; |
userscore.detcol3.Location.X.Add(new Unit(1.0, UnitType.Inch)); |