I would like to format a range of cells in an Excel Worksheet that are already part of a named range. How is it possible to format this table in the Excel worksheet with banded rows? I want it just like Excel does it for a table formatting.
Is this banding of rows possible with the present Telerik SpreadProcessing library?
Hi,
I'm working on document word processing. My task is quite simple, basically I need to take a DOCX template, manipulate it by replacing some fields, with values taken from other parts, and adding some TableRow on it and, finally, I need to export it into PDF format.
This works but unfortunaley the PDF I see is not equal to the docx template from where I start, so do you know some workaround that may help me to fix this issue.
Thank you for your attention.
Hi
Is there a way to get the un rounded .Net double value of a formula cell?
Instead of using the GetResultValueAsString method used in the examples:
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets.Add();
worksheet.Cells[0, 0].SetValue("=SUM(A2, 3)");
worksheet.Cells[1, 0].SetValue(10);
ICellValue cellValue = worksheet.Cells[0, 0].GetValue().Value;
CellValueFormat format = worksheet.Cells[0, 0].GetFormat().Value;
string valueAsString = cellValue.GetValueAsString(format); // =SUM(A2, 3)
string resultValue = cellValue.GetResultValueAsString(format); // 13
Hi,
Which is the better way of getting the 'as displayed' cell value?
Dim selection As CellSelection = worksheet.Cells(i, j) Dim value As ICellValue = selection.GetValue().Value Dim format As CellValueFormat = selection.GetFormat().Value Dim formatResult As CellValueFormatResult = format.GetFormatResult(value) Dim result As String result = value.GetResultValueAsString(format) 'vs. result = formatResult.VisibleInfosText
Thanks,
Sid
Hi,
I like to use the PageSetup in RadSpreadstreamProcessing. I have an generated Excel File and I would like to set Papersize and other configurations. When I integrate it in my Code the IPageSetupExporter is not known.
using (IWorkbookExporter workbookExporter = SpreadExporter.CreateWorkbookExporter(format, documentStream))
{
using (IWorksheetExporter worksheetExporter = workbookExporter.CreateWorksheetExporter(nameWorksheet))
{
..........
using (IPageSetupExporter pageSetupExporter = worksheetExporter.CreatePageSetupExporter())
{
..................
}
}
}
I get also the message that the IWorksheetExporter doesn't include a definition "CreatePageSetupExporter"?
Has anyone an example how to use this?
Regards
John
Hello,
many problemes with this code :
PdfFormatProvider provider = new PdfFormatProvider();
RadFixedDocument document = provider.Import(File.ReadAllBytes(InputFileWithInteractiveForms6));
with pdf exemple of telerik (InteractiveForms.pdf) it is ok.
with pdf issues of Excel or Word on my pc (save as .pdf) it is ok.
but with pdf issues of Nuance Software.
sometime, i have this error : Object reference not set to an instance of an object
sometime : Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.DocumentStructure.PdfResource' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfDictionary
the properties of my file are :
can you help me ?
thank you
eric
Hi there,
What is the easiest way to change the font weight of a text?
Thank you.
I've been scouring the docs, but I can't find anything.
I have to fall back to using a Syncfusion PDF, but I want to remove that dependency.