Forum Discussion
Mustafa_A
3 years agoContributor II
Found the solution:
I used Cube View Extender to format the pdf report. (Page 340 in XF OS manual).
Here is my code:
Try
Select Case args.FunctionType
Case Is = CVExtenderFunctionType.FormatReportUIItem
Dim uiItem As CVExtenderReportUIItem = args.Report.CurrentUIItem
If uiItem.UIItemType =XFReportUIItemType.DataCellLabel Then
uiItem.FontSize = 9.5
' UiItem.Bold = True
Else If uiItem.UIItemType = XFReportUIItemType.RowHeaderLabel Then
uiItem.FontSize = 9.5
End If
End Select
- johnal673 years agoContributor
I'm trying to make a report fit to page like your original issue, but it doesn't look like that code is doing anything to make it fit to one page. Maybe I just don't understand, but is that what the code is doing?
Related Content
- 12 months ago
- 2 years ago
- 6 months ago
- 3 years ago