SSRS Guides

Playlist Tutorials

https://www.youtube.com/playlist?list=PL7A29088C98E92D5F

Trello

 

 

Change default page size/shape

Properties — top right box (Property Page) shows Reports Properties & Page Setup

Label Dimensions

Body Width

  • 14.9cm width
  • 9cm length

Page Size

  • 15.2cm width
  • 10.5cm length

 

Change Text Box Orientation
Properties -> Localization -> WritingMode = Vertical

 

Function called for ThinkWW Label Generation

        [HttpPost, ActionName("Iprint")]
        [FormValueRequired("testSsrs")]
        public virtual IActionResult TestSsrs(PrintConfigurationModel model)
        {
        if (!_permissionService.Authorize(StandardPermissionProvider.ManageSettings))
        return AccessDeniedDataTablesJson();
        
        var reportName = model.TestReportName;
        var reportBytes = _printService.RenderAsync(reportName, new List<ParameterValue>());
        var fileName = reportName.Split(Path.DirectorySeparatorChar).Last() + ".pdf";



        return File(reportBytes.Result, MimeTypes.ApplicationPdf, fileName);
    }

 

Updated on 1 June 2023

Was this article helpful?

Related Articles

Leave a Comment