We are excited to announce new release of GroupDocs.Viewer Cloud 18.7. This monthly release is introducing DGN and DWF file format support along with a number of new features and improvements like “DefaultFontName” property is introduced in PDF, Html, CAD, ODG, SVG and MetaFile Images. Please check the detailed release notes of this version

New Features - GroupDocs.Viewer Cloud 18.7

These are the new features included in this regular monthly release.

  • Added ISFF-based DGN (V7) file format support
  • Included extended support for DefaultFontName setting to PDF documents when rendering into PDF
  • Added render CAD documents by specifying coordinates
  • Added DWF file format support
  • Included extended support for DefaultFontName option for MS Project documents when rendering into PDF
  • Added support for rendering password protected ODT and OTT formats
  • Added support for Changing language for header of emails
  • Included Settings for page size when rendering Email documents as PDF and image

Improvements

These are the major improvements included in this regular monthly release.

  • Improved compression for rendering into HTML with EnableMinification setting
  • Extended DefaultFontName setting support for ODG, SVG and MetaFile Images
  • Extended support for DefaultFontName option for CAD documents
  • Eliminated the gap between list of tasks and footer when rendering MS Project documents
  • Extended support for DefaultFontName setting to PDF documents when rendering into HTML

How to create PDF document with Default Font

A new property “DefaultFontName” is introduced in this version that allows to create documents with user specified font, please have a look at this sample code.

 var request = new HtmlCreatePdfFileRequest
        {
            FileName = "sample2.pdf",
            PdfFileOptions = new GroupDocs.Viewer.Cloud.Sdk.Model.PdfFileOptions
            {
                DefaultFontName = "Arial"
            }
        }; 

How to change email field labels

Introducing “FieldLabels” property, that is available under “EmailOptions” it allows to change the email labels, please have a look at this sample code.

 var request = new HtmlCreatePagesCacheRequest
        {
            FileName = "with-attachment.msg",
            Folder = "viewerdocs",
            HtmlOptions = new GroupDocs.Viewer.Cloud.Sdk.Model.HtmlOptions()
            {
                EmailOptions = new GroupDocs.Viewer.Cloud.Sdk.Model.EmailOptions()
                {
                    FieldLabels = new List() { new FieldLabel() { Field = "From", Label = "Sender" }, new FieldLabel() { Field = "To", Label = "Receiver" } }
                }
            }
        }; 

How to render CAD document by Coordinates or Tiles"Tiles" property available under “CadOptions” that allows to render a CAD document by Coordinates or Tiles, please have a look at this sample code.

 var request = new HtmlCreatePagesCacheRequest
        {
            FileName = "sample.DXF",
            HtmlOptions = new GroupDocs.Viewer.Cloud.Sdk.Model.HtmlOptions
            {
                CadOptions = new CadOptions()
                {
                    Tiles = new List() { 
                        new Tile() { Height = 800, StartPointX = 0, StartPointY = 0, Width = 1300 },
                        new Tile() { Height = 800, StartPointX = 1300, StartPointY = 0, Width = 1300 },
                        new Tile() { Height = 800, StartPointX = 0, StartPointY = 800, Width = 1300 },
                        new Tile() { Height = 800, StartPointX = 1300, StartPointY = 800, Width = 1300 }
                    }
                }
            }
        }; 

GroupDocs.Viewer Cloud Resources

Following are the links to some useful resources you may need to accomplish your tasks.

Start a Free Trial Today

Start a free trial today – all you need is to sign up with the GroupDocs Cloud service. Once you have signed up, you are ready to try the powerful file processing features offered by GroupDocs Cloud.