I am also experiencing a similar problem with the property "Point"
5 Answers, 1 is accepted
I am afraid we miss to add this information in our documentation. Nevertheless after the next uploading of the documentation the missing information will be included in each Getting Started help article in Assembly References section.
Regards,
Kostadin
Telerik
I am also having the same issue. I did not get an error relating to windowsbase but I do get an error telling me that: Type 'Size' is not defined. I am trying to mimic the demo code. I have the following imports:
Imports Telerik.Windows.Documents.Fixed
Imports Telerik.Windows.Documents.Core
Imports Telerik.Windows.Zip
Imports Telerik.Windows.Documents.Fixed.FormatProviders.Pdf
Imports Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export
Imports Telerik.Windows.Documents.Fixed.Model
Imports Telerik.Windows.Documents.Fixed.Model.ColorSpaces
Imports Telerik.Windows.Documents.Fixed.Model.Editing
Imports Telerik.Windows.Documents.Fixed.Model.Editing.Flow
Imports Telerik.Windows.Documents.Fixed.Model.Fonts
Imports Telerik.Windows.Documents.Fixed.Model.Graphics
Overkill - but trying to narrow down the problem. The problem occurs when I try to set the page size as follows:
Dim document As New RadFixedDocument()
Dim page As RadFixedPage = document.Pages.AddPage()
page.Size = New Size(600, 750)
Can you help me past this issue?
Thanks, Ken
Here is a list with all namespaces used in demo.
using
System;
using
System.IO;
using
System.Windows;
using
Telerik.Windows.Documents.Fixed.FormatProviders.Pdf;
using
Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export;
using
Telerik.Windows.Documents.Fixed.Model;
using
Telerik.Windows.Documents.Fixed.Model.ColorSpaces;
using
Telerik.Windows.Documents.Fixed.Model.Editing;
using
Telerik.Windows.Documents.Fixed.Model.Editing.Flow;
using
Telerik.Windows.Documents.Fixed.Model.Fonts;
using
Telerik.Windows.Documents.Fixed.Model.Graphics;
I assume the cause for this exception is that you did not include System.Windows namespace in your case. Could you please try using them and let me know about the result?
Regards,
Kostadin
Telerik