Hi,
Is there a way to set background for IRowExporter like set color for ICellExporter,seems we only can loop all cells in a row and set one by one now ?
thank you !

currently ,we can set fore color for cell ,like
ICellExporter cellExporter = rowExporter.CreateCellExporter()
var color = System.Drawing.ColorTranslator.FromHtml("#0095ff");
cellExporter.SetFormat(new SpreadCellFormat() { ForeColor = new SpreadThemableColor(new SpreadColor(color.R, color.G, color.B))} );
but how to set background color for cell,i searched API but find nothing,anyone good idea?
thank you

Hello,
I am trying to create Word document from scratch. I prepared a asp.net webforms application and got a System DataTable
How do I insert a table from a datatable using Telerik RadWordsProcessing?
Thank you

First cell of table should not allow wrapping but always does. Does it have anything to do with the fact that I'm using a flow document instead of fixed? There seems to be very little documentation or samples of flow documents.
public void Mvce(){ Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider provider = new Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider(); RadFlowDocument document = new RadFlowDocument(); RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document); Table t = editor.InsertTable(); TableCell cell0 = new TableCell(document); cell0.CanWrapContent = false; //AddBlock() not available??? Its in the documentation: // https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/editing/tablecell#adding-cell-content cell0.Blocks.AddParagraph().Inlines.AddRun("ClientName:"); TableCell cellLong = new TableCell(document); cellLong.Blocks.AddParagraph().Inlines.AddRun("Nullam sit amet dui porta, imperdiet quam sit amet, consequat diam. In vel orci rutrum, vehicula purus ullamcorper, ornare lorem. Sed at arcu ultrices, fringilla augue in, condimentum quam. Sed pretium faucibus"); var row = t.Rows.AddTableRow(); row.Cells.Add(cell0); row.Cells.Add(cellLong); using (Stream output = File.OpenWrite("sample.pdf")) { provider.Export(document, output); } Process.Start("sample.pdf");}

Hi,
In my MVC project, we used custom-server-side code to export grid data to Excel by utilizing Telerik.Document.SpreadsheedStreaming library. I explore Processing Document and didn’t find any interface related adding filter and frozen row to the sheet. Do I have the way to do the job? Any suggestion will be truly appreciated!

I am trying to print existing pdfs from a database. I am working mainly in asp.net expecting the print to happen on the server. This works for other types of files and I also use Telerik reporting which automatically prints reports on the server. The problem is what do I use to open an existing pdf and then send it to a printer without user interface.

Hi,
I do HtmlFormatProvider.Import (html), in html have Images, there is an exception (ParamName: data)
(Telerik ASP.NET AJAX 2015.1.104.45)
Why?

I was curious to know the process for simply freezing a specified set of rows at the top.
For example, we have a title section which takes up 7 rows, with each set of cells in a row merged to the number of columns. The variable colSpan would be the number of header columns in the spreadsheet.
worksheet.MergeCells(0, 0, 0, colSpan - 1); // first title segmentworksheet.MergeCells(1, 0, 1, colSpan - 1); // second title segment...
I simply want to be able to freeze those top rows and be able to scroll both vertically and horizontally through the data below the frozen rows.
using (IWorksheetViewExporter worksheetView = worksheet.CreateWorksheetViewExporter()) { worksheetView.SetFreezePanes(8, colSpan); }
However, when I use the freeze panes method, you can scroll vertically through all the content, but the horizontal scrolling starts in the cell at the bottom right of the last title row. How can I achieve horizontal scrolling beginning at the first row and first cell of the rows below the title rows?
Thank you.

HI,
We used IWorksheetExporter (Telerik.Documents.SpreadsheetStreaming library) to create Excel file. But did not find any method to create Header and Footer. Does anyone know how to do it? Thanks.
