Hi
I have been testing the PDFProcessing library, and have one question I hope you could answer.
In my application I need to create a PDF documentation, with content like texts, tables, images etc.
Is there any way I can add a UIElement just like adding a text or image to a RadFixedPage?
I have previously been using the FlowDocument where you can add UIElements...
Kind regards
Jesper
I've used the example show in de docs to import a csv file into a worksheet:
http://docs.telerik.com/devtools/aspnet-ajax/controls/spreadprocessing/formats-and-conversion/csv/csvformatprovider
After importing the file, the worksheet is filled with the proper data. However, the Columns.Count and Rows.Count properties are set on the maximum they can be, not the number of imported rows and columns.
What is the fast way to find out which rows and columns are empty? I want to stop processing the document as soon as I've reached the first empty row.
So I'm following the sample on this page:
http://demos.telerik.com/aspnet-ajax/wordsprocessing/generate-documents/defaultcs.aspx
I've been able to create my document object, editor object and added lines, etc. to the file and it produces a docx without issue. What I'm trying to figure out is how to set the pageorientation to landscape. I've been looking and haven't found any way to accomplish this. I saw a sections pageorientation in the docs but I don't see how to access it.
Thanks,
Richard

I am currently creating a pdf document using your PdfFormatProvider.
Inserting text does not include any "-" (dash) characters.
Dim partNumberBlock = partNumberCell.Blocks.AddBlock()SetTextProperties(partNumberBlock, RgbColors.Black, 18, FontsRepository.Helvetica)partNumberBlock.InsertText(sws.Z_No.ToString())partNumberBlock.InsertLineBreak()I am using your ​FontRepository and have tried various of the standard fonts.
Is the problem similar to the previous post about german characters and the dash is just not part of the font.
Any help would be appreciated
David Charles Ocasio

Hi,
Filling the cells one by one is time-consuming.
Is there any faster way? Something like CopyFromRecordset method.
Is there any way to insert data into CellRange using RecordSet/Array etc?
Hi,
I am new in using RadWordsProcessing , I am building report in docx. Requirement is too divide one page in different section, so that i can turn off particular section based on user requirement. How can i divide one page in different section ? because when i try to create other section, it gets created in next page.
Hi,
I have class library, i am trying to use
RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document);
Stream stream = new MemoryStream(RQST_ATTACH);
editor.InsertImageInline(stream, "png", new System.Windows.Size(660, 237));​
But System.Windows.Size is supported not supported in class library, is there any other way i can deal with this ?

Hello,
I am writing a very specific type of a report, which I have to control line height, dynamically generate content, and fill in a chart object. I'm currently doing this using OpenXML and Microsoft Word. When created, the end result is exported into PDF. This always seemed like overkill for me, and I would have preferred to use Telerik Reporting, except that Reporting doesn't let me set specific line heights.
In any case, I would like to try to dynamically build a web page of the report that I'm doing, which would be formatted exactly as I need it to be, and would also incorporate a RadChart. I would like to use either WordsProcessing or PDFProcessing to take the MemoryStream of this HTML page, and output it to PDF. Is this possible? I don't see any specific examples, although I see there is a conversion demo which can take HTML as input and create a PDF as output.
Thank you,
Alex

Hey,
i recently needed to downgrade a project from .NET 4.0 to .NET 3.5
I used the SpreadExportRenderer in TelerikExport.dll for exporting a PivotGrid to Excel and now the code isn't working any more because of some missing dlls. It seems like the whole Telerik.Windows.Documents.* libraries and TelerikExport.dll is not availiable for .NET 3.5. They are located in the Bin40 folder, nut not in regular Bin (i have UI for WinForms Q2 2015 installied).
Is there something i am missing?
Thanks & Cheers,
Jens

Could an example be provided on how to create a PDF and set the Margins and Orientation for WinForms?
And if this involves the orientation involves use of PageRotation, could you please include how to rotate the text to match the rotation?
