As of now there is no method in Report Utilities to set the control width, but you can set the width of the control via script by using ReturnARControl method of Report Utilities.
Sample Script Code -
|
Code:
|
Dim arControl As ARControl
arControl = ReportUtilities.ReturnARControl(rpt,"GroupHeader1","txtCompanyAddress")
arControl.Width = 2 |
Syntax –
ReturnARControl(ByVal report As ActiveReport3, ByVal sectionName As String, ByVal controlName As String) As ARControl
Hope it helps.