Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1763 - Silverlight3.5 doesn’t compile in Visual Studio 2008
Summary: Silverlight3.5 doesn’t compile in Visual Studio 2008
Status: CONFIRMED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Silverlight (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/directline/vi...
Keywords:
Depends on:
Blocks:
 
Reported: 2017-02-02 06:04 EST by sandra pazos
Modified: 2017-02-03 05:57 EST (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sandra pazos 2017-02-02 06:04:48 EST
Silverlight3.5 doesn’t compile in Visual Studio 2008. Basically, the problem appear in VS2008 is caused because the default parameter specifiers are not permitted. 
The problem is produced in class CanvasPDF.cs and Export.Cs, specifically in methods below:
CanvasPDF.cs EndPenBrush method

   #if !VS2010
      private void EndPenBrush(bool useBuilder)
   #else
      private void EndPenBrush(bool useBuilder = true)         
   #endif

Export.cs DrawTo method

   #if SILVERLIGHT 

   #if VS2010
    private void DrawTo(PDFDocument page, Rect rect, Graphics3DPDF canvas =       null)
   #else
    private void DrawTo(PDFDocument page, Rect rect, Graphics3DPDF canvas)
   #endif