• Download Trial
  • Purchase
  • Contact Us
  • Login

ProductsGreat pdf developer solutions
  •  
  • PDFNet SDK
  • SilverDox SDK
  • PDF2Image
  • PDF2Text
  • XPSConvert
  • PDF2XPS
  • PDF2SVG
  • PDF PageMaster
  • PDF/A Manager
  • PDFSecure
  • PDF CosEdit
SupportDeveloper 2 developer support
  •  
  • Annual Maintenance Subscription
  • Technical Support & Resources
  • Professional Services
  • Support FAQ
ResourcesCommunity & developer resources
  •  
  • PDFTron Labs
  • Standards
  • PDF & Environment
  • Industry News
  • Newsletter
  • Whitepapers/Datasheets
Why PDFTronTrusted pdf experts with great solutions
  •  
  • Benefits
  • Our Customers
  • Testimonials
About UsThe story behind the company
  •  
  • News & Press
  • Contact Us
  • Careers
  • CO-OP &
    Internship Opportunities
  • Partners/Alliances
  • Resellers

Home // Products // SilverDox SDK // Support // What's New

  • Products
  • PDFNet SDK
  • SilverDox SDK
  • Overview
  • Benefits
  • Features
  • Support
  • What's New
  • FAQ
  • Documentation
  • Sample Code
  • Forum
  • Download Trial
  • Request a Quote
  • PDF2Image
  • PDF2Text
  • XPSConvert
  • PDF2XPS
  • PDF2SVG
  • PDF PageMaster
  • PDF/A Manager
  • PDFSecure
  • PDF CosEdit
Sub Navigation

Browse by Functionality

PDF for Silverlight

What's New

Expand AllCollapse All

+February 8, 2012 - Version 1.3.0

  • Support for Silverlight 5. The SDK now includes two dll's - SilverDox-SL4.dll compiled with Silverlight 4 (SL4) and SilverDox-SL5.dll with Silverlight 5 (SL5). Both versions of the dll are compatible with the SL5 runtime. SL5 version of the DLL will compress print jobs when using a PostScript printer.
  • Landscape pages are now printed in a landscape orientation.
  • Print jobs can now optionally fit to page (new API: PDFTron.SilverDox.Documents.Print(bool fitToPage = true, List<Canvas> annotationCanvases = null))
  • Developers can now create custom popup canvases (new API: PDFTron.SilverDox.Documents.Annotations.Annotation.CreatePopupCanvas())
  • Out of browser (OOB) support
  • Bug fixes.
 
+January 26, 2011 - Version 1.2.0

  • Includes a new Part Retriever, HttpStreamingPartRetriever. This part retriever is used to retrieve a document from an HTTP server that does not support byte-serving, or optionally when the document is converted to Silverlight XPS (XOD) on demand. This retriever transfers the entire document in order from beginning to end, with pages and thumbnails displayed as each page arrives. For more information on the difference between the available part retrievers and how to choose the correct one, see the new documentation article "SilverDox Part Retrievers" available through http://www.pdftron.com/silverdox/documentation/Index.html
  • Part Retrievers have three new boolean properties referenced by DocumentViewer to toggle document background loading, whether to use pre-generated thumbnails or built-in thumbnails, and whether to show an enlarged thumbnail in place before page content is available.
  • DocPub supports new platforms (Windows, Linux, and Mac).
  • DocPub supports incremental conversion and streaming using the new '--console_out' option. When this option is specified, DocPub will write the output to the console rather than a file which allows output files to be streamed to the consumer.
  • Implements a workaround for a bug in Silverlight where opacity masks are incorrectly transformed (http://groups.google.com/group/silverdox/ t/da0abac91c925635/). By default PDFNet and DocPub will rasterize pages with opacity masks that may cause viewing problems. This change will not affect text search/highlighting which will still work as expected. A new option '--no_mask_workaround' can be used to disable rendering of pages containing opacity masks.
  • Bug fixes.

New Types and Methods in SilverDox:

Namespace PDFTron.SilverDox.IO
class HttpStreamingPartRetriever

Boolean IPartRetriever.BackgroundLoadDocument
Boolean IPartRetriever.ShowThumbnailBeforePageContent
Boolean IPartRetriever.UseDocumentThumbnailIfAvailable

Changed Types and Methods in SilverDox:

Namespace PDFTron.SilverDox.Documents:
  • OnLoadThumbnailAsynchCallbackArgs.BitmapImage is now of type BitmapSource rather than BitmapImage

Removed Types and Methods in SilverDox:

Namespace PDFTron.SilverDox.Controls:
  • Boolean DocumentViewer.ThumbnailOnScroll (now controlled by IPartRetriever.ShowThumbnailBeforePageContent)
Namespace PDFTron.SilverDox.Documents:
  • Boolean Document.BackgroundLoading (now controlled by IPartRetriever.BackgroundLoadDocument)
+December 16, 2010 - Version 1.0.4

  • DocumentViewer has greatly improved support for annotations. A new namespace has been added 'PDFTron.SilverDox.Documents.Annotations' that contains classes that allow the document to be annotated with built-in and custom-developped annotation types. A sample project is available as part of the SDK download and a live demo is available here: http://www.pdftron.com/silverdox/samplecode.html#Annotations
  • DocumentViewer's mouse and keyboard event handlers are now protected, allowing developers to add to or override their behavior.
  • A number of minor bug fixes.

New Types and Methods in SilverDox:

Namespace PDFTron.SilverDox.Documents.Annotations:
class AnnotationManager
abstract class Annotation
  class Sticky
  abstract class Markup
   class Ellipse
   class FreeHand
   class Line
   class Rectangle
   abstract class TextMarkup
    class TextHightlight
    class TextStrikeout
    class TextUnderline
Namespace PDFTron.SilverDox.Controls:
DocumentViewer.ZoomTo()

DocumentViewer.AnnotationManager

DocumentViewer.OnContentKeyDown()
DocumentViewer.OnCOntentKeyUp()
DocumentViewer.OnContentMouseEnter()
DocumentViewer.OnContentMouseLeave()
DocumentViewer.OnContentMouseLeftButtonDown()
DocumentViewer.OnContentMouseLeftButtonUp()
DocumentViewer.OnContentMouseMove()
DocumentViewer.OnContentMouseRightButtonDown()
DocumentViewer.OnContentMouseRightButtonUp()
DocumentViewer.OnContentMouseWheel()

DocumentViewer.ToolModes.PanAndAnnotationEdit
DocumentViewer.ToolModes.AnnotationEdit
DocumentViewer.ToolModes.AnnotationCreateCustom
DocumentViewer.ToolModes.AnnotationCreateEllipse
DocumentViewer.ToolModes.AnnotationCreateFreeHand
DocumentViewer.ToolModes.AnnotationCreateLine
DocumentViewer.ToolModes.AnnotationCreateRectangle
DocumentViewer.ToolModes.AnnotationCreateSticky
DocumentViewer.ToolModes.AnnotationCreateTextHighlight
DocumentViewer.ToolModes.AnnotationCreateTextStrikeout
DocumentViewer.ToolModes.AnnotationCreateTextUnderline

class FullTextSearch Control (replaces WholeDocumentSearchControl)
Namespace PDFTron.SilverDox.Documents:
Document.Link.ResidentPageNumber

Document.PageInfo.Annotations

Changed Types and Methods in SilverDox:

Namespace PDFTron.SilverDox.Documents:
Document.Print()

Removed Types and Methods in SilverDox:

Namespace PDFTron.SilverDox.Controls:
class WholeDocumentSearchControl (replaced with FullTextSearchControl)

DocumentViewer.AnnotationLayer
+September 29, 2010 - Version 1.0

  • Please check out the Feature listing for the brand new release of SilverDox.
Next Steps:
  • Download Trial
  • Purchase

See Licensing Options

Sub Navigation
  • 2012 PDFTRON SYSTEMS, INC, ALL RIGHTS RESERVED |
  • LEGAL |
  • SITEMAP |
  • CAREERS |
  • CONTACT US